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
|
#include "format-jef.h"
#include "emb-file.h"
#include "emb-logging.h"
#include "emb-time.h"
#include "helpers-binary.h"
#include "helpers-misc.h"
#include "emb-stitch.h"
#include <stdio.h>
#include <stdlib.h>
static char sewDecode(unsigned char inputByte)
{
return (inputByte >= 0x80) ? (char) (-~(inputByte - 1)) : (char) inputByte; /* TODO: fix return statement */
}
/*! Reads a file with the given \a fileName and loads the data into \a pattern.
* Returns \c true if successful, otherwise returns \c false. */
int readSew(EmbPattern* pattern, const char* fileName)
{
EmbFile* file = 0;
int i;
int fileLength;
char dx = 0, dy = 0;
int flags;
int numberOfColors;
char thisStitchIsJump = 0;
if(!pattern) { embLog_error("format-sew.c readSew(), pattern argument is null\n"); return 0; }
if(!fileName) { embLog_error("format-sew.c readSew(), fileName argument is null\n"); return 0; }
file = embFile_open(fileName, "rb");
if(!file)
{
embLog_error("format-sew.c readSew(), cannot open %s for reading\n", fileName);
return 0;
}
embFile_seek(file, 0x00, SEEK_END);
fileLength = embFile_tell(file);
embFile_seek(file, 0x00, SEEK_SET);
numberOfColors = binaryReadByte(file);
numberOfColors += (binaryReadByte(file) << 8);
for(i = 0; i < numberOfColors; i++)
{
embPattern_addThread(pattern, jefThreads[binaryReadInt16(file)]);
}
embFile_seek(file, 0x1D78, SEEK_SET);
for(i = 0; embFile_tell(file) < fileLength; i++)
{
unsigned char b0 = binaryReadByte(file);
unsigned char b1 = binaryReadByte(file);
flags = NORMAL;
if(thisStitchIsJump)
{
flags = TRIM;
thisStitchIsJump = 0;
}
if(b0 == 0x80)
{
if(b1 == 1)
{
b0 = binaryReadByte(file);
b1 = binaryReadByte(file);
flags = STOP;
}
else if((b1 == 0x02) || (b1 == 0x04))
{
thisStitchIsJump = 1;
b0 = binaryReadByte(file);
b1 = binaryReadByte(file);
flags = TRIM;
}
else if(b1 == 0x10)
{
break;
}
}
dx = sewDecode(b0);
dy = sewDecode(b1);
if(abs(dx) == 127 || abs(dy) == 127)
{
thisStitchIsJump = 1;
flags = TRIM;
}
embPattern_addStitchRel(pattern, dx / 10.0, dy / 10.0, flags, 1);
}
printf("current position: %ld\n", embFile_tell(file));
embFile_close(file);
/* Check for an END stitch and add one if it is not present */
if(pattern->lastStitch->stitch.flags != END)
embPattern_addStitchRel(pattern, 0, 0, END, 1);
return 1;
}
static void sewEncode(unsigned char* b, char dx, char dy, int flags)
{
if(!b)
{
embLog_error("format-exp.c expEncode(), b argument is null\n");
return;
}
if(flags == STOP)
{
b[0] = 0x80;
b[1] = 1;
b[2] = dx;
b[3] = dy;
}
else if (flags == END)
{
b[0] = 0x80;
b[1] = 0x10;
b[2] = 0;
b[3] = 0;
}
else if(flags == TRIM || flags == JUMP)
{
b[0] = 0x80;
b[1] = 2;
b[2] = dx;
b[3] = dy;
}
else
{
b[0] = dx;
b[1] = dy;
}
}
/*! Writes the data from \a pattern to a file with the given \a fileName.
* Returns \c true if successful, otherwise returns \c false. */
int writeSew(EmbPattern* pattern, const char* fileName)
{
int colorlistSize, minColors, i;
EmbFile* file = 0;
EmbThreadList* threadPointer = 0;
EmbStitchList* stitches = 0;
double dx = 0.0, dy = 0.0;
double xx = 0.0, yy = 0.0;
int flags = 0;
unsigned char b[4];
if(!pattern) { embLog_error("format-sew.c writeSew(), pattern argument is null\n"); return 0; }
if(!fileName) { embLog_error("format-sew.c writeSew(), fileName argument is null\n"); return 0; }
if(!embStitchList_count(pattern->stitchList))
{
embLog_error("format-sew.c writeSew(), pattern contains no stitches\n");
return 0;
}
/* Check for an END stitch and add one if it is not present */
if (pattern->lastStitch->stitch.flags != END)
{
embPattern_addStitchRel(pattern, 0, 0, END, 1);
}
file = embFile_open(fileName, "wb");
if(!file)
{
embLog_error("format-sew.c writeJef(), cannot open %s for writing\n", fileName);
return 0;
}
colorlistSize = embThreadList_count(pattern->threadList);
minColors = max(colorlistSize, 6);
binaryWriteInt(file, 0x74 + (minColors * 4));
binaryWriteInt(file, 0x0A);
while(threadPointer)
{
binaryWriteInt(file, embThread_findNearestColorInArray(threadPointer->thread.color, (EmbThread*)jefThreads, 79));
threadPointer = threadPointer->next;
}
for(i = 0; i < (minColors - colorlistSize); i++)
{
binaryWriteInt(file, 0x0D);
}
for(i = 2; i < 7538; i++)
{
embFile_printf(file, " ");
}
stitches = pattern->stitchList;
while(stitches)
{
dx = stitches->stitch.xx * 10.0 - xx;
dy = stitches->stitch.yy * 10.0 - yy;
xx = stitches->stitch.xx * 10.0;
yy = stitches->stitch.yy * 10.0;
flags = stitches->stitch.flags;
sewEncode(b, (char)roundDouble(dx), (char)roundDouble(dy), flags);
if((b[0] == 0x80) && ((b[1] == 1) || (b[1] == 2) || (b[1] == 4) || (b[1] == 0x10)))
{
embFile_printf(file, "%c%c%c%c", b[0], b[1], b[2], b[3]);
}
else
{
binaryWriteByte(file, b[0]);
binaryWriteByte(file, b[1]);
}
stitches = stitches->next;
}
embFile_close(file);
return 1;
}
/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */
|