-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtext_to_gcode.py
executable file
·118 lines (94 loc) · 3.65 KB
/
text_to_gcode.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/python3
#pylint: disable=no-member
from enum import Enum
import os
import math
import argparse
class Instr:
class Type(Enum):
move = 0,
write = 1,
def __init__(self, *args):
if len(args) == 1 and type(args[0]) is str: # args must be a data str
attributes = args[0].split(' ')
# G_ X__ Y__
self.type = Instr.Type.move if attributes[0][1] == '0' else Instr.Type.write
self.x = float(attributes[1][1:])
self.y = float(attributes[2][1:])
elif len(args) == 3 and type(args[0]) is Instr.Type and type(args[1]) is float and type(args[2]) is float:
self.type, self.x, self.y = args
else:
raise TypeError("Instr() takes one (str) or three (Instr.Type, float, float) arguments")
def __repr__(self):
return "G%d X%.2f Y%.2f" % (self.type.value[0], self.x, self.y)
def translated(self, x, y):
return Instr(self.type, self.x + x, self.y + y)
class Letter:
def __init__(self, *args):
if len(args) == 1 and type(args[0]) is str:
self.instructions = []
for line in args[0].split('\n'):
if line != "":
self.instructions.append(Instr(line))
pointsOnX = [instr.x for instr in self.instructions]
self.width = max(pointsOnX) - min(pointsOnX)
elif len(args) == 2 and type(args[0]) is list and type(args[1]) is float:
self.instructions = args[0]
self.width = args[1]
else:
raise TypeError("Letter() takes one (str) or two (list, float) arguments")
def __repr__(self):
return "\n".join([repr(instr) for instr in self.instructions]) + "\n"
def translated(self, x, y):
return Letter([instr.translated(x, y) for instr in self.instructions], self.width)
def readLetters(directory):
letters = {
" ": Letter([], 4.0),
"\n": Letter([], math.inf)
}
for root,_,filenames in os.walk(directory):
for filename in filenames:
file = open(os.path.join(root,filename),"r")
letterRepr = file.readline()[1]
letter = Letter(file.read())
letters[letterRepr] = letter
return letters
def textToGcode(letters, text, lineLength, lineSpacing, padding):
# used for fast string concatenation
gcodeLettersArray = []
offsetX, offsetY = 0, 0
for char in text:
letter = letters[char].translated(offsetX, offsetY)
gcodeLettersArray.append(repr(letter))
offsetX += letter.width + padding
if offsetX >= lineLength:
offsetX = 0
offsetY -= lineSpacing
return "".join(gcodeLettersArray)
def parseArgs(namespace):
argParser = argparse.ArgumentParser(fromfile_prefix_chars="@",
description="Compiles text into 2D gcode for plotters")
argParser.add_argument_group("Data options")
argParser.add_argument("-i", "--input", type=argparse.FileType('r'), default="-", metavar="FILE",
help="File to read characters from")
argParser.add_argument("-o", "--output", type=argparse.FileType('w'), required=True, metavar="FILE",
help="File in which to save the gcode result")
argParser.add_argument("-g", "--gcode-directory", type=str, default="./ascii_gcode/", metavar="DIR",
help="Directory containing the gcode information for all used characters")
argParser.add_argument_group("Text options")
argParser.add_argument("-l", "--line-length", type=float, required=True,
help="Maximum length of a line")
argParser.add_argument("-s", "--line-spacing", type=float, default=8.0,
help="Distance between two subsequent lines")
argParser.add_argument("-p", "--padding", type=float, default=1.5,
help="Empty space between characters")
argParser.parse_args(namespace=namespace)
def main():
class Args: pass
parseArgs(Args)
letters = readLetters(Args.gcode_directory)
data = Args.input.read()
gcode = textToGcode(letters, data, Args.line_length, Args.line_spacing, Args.padding)
Args.output.write(gcode)
if __name__ == '__main__':
main()