forked from Embroidermodder/libembroidery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format-t01.c
222 lines (207 loc) · 4.85 KB
/
format-t01.c
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
static int decodeT01RecordFlags(unsigned char b2)
{
if (b2 == 0xF3) {
return END;
}
switch (b2 & 0xC3) {
case 0x03:
return NORMAL;
case 0x83:
return TRIM;
case 0xC3:
return STOP;
default:
return NORMAL;
}
}
/*! Reads a file with the given \a fileName and loads the data into \a pattern.
* Returns \c true if successful, otherwise returns \c false. */
static int readT01(EmbPattern* pattern, EmbFile* file, const char* fileName)
{
unsigned char b[3];
embPattern_loadExternalColorFile(pattern, fileName);
while (embFile_read(b, 1, 3, file) == 3) {
int flags;
int x = 0;
int y = 0;
if (b[0] & 0x01)
x += 1;
if (b[0] & 0x02)
x -= 1;
if (b[0] & 0x04)
x += 9;
if (b[0] & 0x08)
x -= 9;
if (b[0] & 0x80)
y += 1;
if (b[0] & 0x40)
y -= 1;
if (b[0] & 0x20)
y += 9;
if (b[0] & 0x10)
y -= 9;
if (b[1] & 0x01)
x += 3;
if (b[1] & 0x02)
x -= 3;
if (b[1] & 0x04)
x += 27;
if (b[1] & 0x08)
x -= 27;
if (b[1] & 0x80)
y += 3;
if (b[1] & 0x40)
y -= 3;
if (b[1] & 0x20)
y += 27;
if (b[1] & 0x10)
y -= 27;
if (b[2] & 0x04)
x += 81;
if (b[2] & 0x08)
x -= 81;
if (b[2] & 0x20)
y += 81;
if (b[2] & 0x10)
y -= 81;
flags = decodeT01RecordFlags(b[2]);
embPattern_addStitchRel(pattern, x / 10.0, y / 10.0, flags, 1);
if (flags == END)
break;
}
return 1;
}
static void encode_t01_record(EmbFile* file, int x, int y, int flags)
{
char b[4];
b[0] = b[1] = b[2] = 0;
/* cannot encode values > +121 or < -121. */
if (x > 121 || x < -121) {
embLog("ERROR: format-t01.c encode_t01_record(), x is not in valid range [-121,121] , x =");
/* embLog_print("%d\n", x); */
}
if (y > 121 || y < -121) {
embLog("ERROR: format-t01.c encode_t01_record(), y is not in valid range [-121,121] , y =");
/* embLog_print("%d\n", y); */
}
if (x >= +41) {
b[2] += 1 << 2;
x -= 81;
}
if (x <= -41) {
b[2] += 1 << 3;
x += 81;
}
if (x >= +14) {
b[1] += 1 << 2;
x -= 27;
}
if (x <= -14) {
b[1] += 1 << 3;
x += 27;
}
if (x >= +5) {
b[0] += 1 << 2;
x -= 9;
}
if (x <= -5) {
b[0] += 1 << 3;
x += 9;
}
if (x >= +2) {
b[1] += 1 << 0;
x -= 3;
}
if (x <= -2) {
b[1] += 1 << 1;
x += 3;
}
if (x >= +1) {
b[0] += 1 << 0;
x -= 1;
}
if (x <= -1) {
b[0] += 1 << 1;
x += 1;
}
if (x != 0) {
embLog("ERROR: format-dst.c encode_t01_record(), x should be zero yet x = %d\n");
}
if (y >= +41) {
b[2] += 1 << 5;
y -= 81;
}
if (y <= -41) {
b[2] += 1 << 4;
y += 81;
}
if (y >= +14) {
b[1] += 1 << 5;
y -= 27;
}
if (y <= -14) {
b[1] += 1 << 4;
y += 27;
}
if (y >= +5) {
b[0] += 1 << 5;
y -= 9;
}
if (y <= -5) {
b[0] += 1 << 4;
y += 9;
}
if (y >= +2) {
b[1] += 1 << 7;
y -= 3;
}
if (y <= -2) {
b[1] += 1 << 6;
y += 3;
}
if (y >= +1) {
b[0] += 1 << 7;
y -= 1;
}
if (y <= -1) {
b[0] += 1 << 6;
y += 1;
}
if (y != 0) {
embLog("ERROR: format-dst.c encode_t01_record(), y should be zero yet y = %d\n");
}
b[2] |= (char)3;
if (flags & END) {
b[0] = 0;
b[1] = 0;
b[2] = 0xF3;
}
if (flags & (JUMP | TRIM)) {
b[2] = (char)(b[2] | 0x83);
}
if (flags & STOP) {
b[2] = (char)(b[2] | 0xC3);
}
embFile_write(b, 1, 3, file);
}
/*! Writes the data from \a pattern to a file with the given \a fileName.
* Returns \c true if successful, otherwise returns \c false. */
static int writeT01(EmbPattern* pattern, EmbFile* file, const char* fileName)
{
EmbRect boundingRect;
int xx, yy, dx, dy, i;
EmbStitch st;
embPattern_correctForMaxStitchLength(pattern, 12.1, 12.1);
boundingRect = embPattern_calcBoundingBox(pattern);
xx = yy = 0;
for (i = 0; i < pattern->stitchList->count; i++) {
st = pattern->stitchList->stitch[i];
/* convert from mm to 0.1mm for file format */
dx = roundDouble(st.x * 10.0) - xx;
dy = roundDouble(st.y * 10.0) - yy;
xx = roundDouble(st.x * 10.0);
yy = roundDouble(st.y * 10.0);
encode_t01_record(file, dx, dy, st.flags);
}
return 1;
}