-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenSave.pde
More file actions
408 lines (394 loc) · 11.1 KB
/
openSave.pde
File metadata and controls
408 lines (394 loc) · 11.1 KB
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
//*********************************
// OPEN SHAPE
void openShapeDialog()
{
noLoop();
selectInput("Select a file SVG...", "loadShape");
}
//*********************************
void loadShape(File selection)
{
if (selection == null) { println("No file selected."); }
else
{
// get filename with full path: (c:\demo\draw.png)
filename=selection.getAbsolutePath();
// extract only filename (without ext)
name = selection.getName();
int pos = name.lastIndexOf(".");
if (pos > 0) { name = name.substring(0, pos); }
dummyFile = new File(selection.getName());
loadingShape = true; // call openShape() from draw()
//println(filename, name);
}
keyPressed = false; // needed !!
mousePressed = false;
loop();
}
//*********************************
void openShape()
{
loadingShape = false;
aShape = loadShape(filename);
sbSHtype.v = 5;
cbSHstyle.s = true;
aShape.enableStyle(); // use SVG style
}
//*********************************
// OPEN STENCIL
void openStencilDialog()
{
noLoop();
selectInput("Select a file...", "loadStencil");
}
//*********************************
void loadStencil(File selection)
{
if (selection == null) { println("No file selected."); }
else
{
// get filename with full path: (c:\demo\draw.png)
filename=selection.getAbsolutePath();
// extract only filename (without ext)
name = selection.getName();
int pos = name.lastIndexOf(".");
if (pos > 0) { name = name.substring(0, pos); }
dummyFile = new File(selection.getName());
loadingStencil = true; // call openStencil() from draw()
//println(filename, name);
}
keyPressed = false; // needed !!
mousePressed = false;
loop();
}
//*********************************
void openStencil()
{
loadingStencil = false;
stencilIMG = loadImage(filename);
ysten = height/2 - stencilIMG.height/2;
xsten = width/2 - stencilIMG.width/2;
stencil = true;
}
//*********************************
// OPEN LAYER
void openLayerDialog()
{
noLoop();
selectInput("Select a file...", "loadLayer");
}
//*********************************
void loadLayer(File selection)
{
if (selection == null) { println("No file selected."); }
else
{
// get filename with full path: (c:\demo\draw.png)
filename=selection.getAbsolutePath();
// extract only filename (without ext)
name = selection.getName();
int pos = name.lastIndexOf(".");
if (pos > 0) { name = name.substring(0, pos); }
dummyFile = new File(selection.getName());
loadingLayer = true; // call openLayer() from draw()
//println(filename, name);
}
keyPressed = false; // needed !!
mousePressed = false;
loop();
}
//*********************************
void openLayer()
{
loadingLayer = false;
PImage myLayer = loadImage(filename);
// store layer for undo
storeUNDO();
//copyIMG2PG(myLayer, livelli[activeLyr].pg);
livelli[activeLyr].pg.beginDraw();
livelli[activeLyr].pg.imageMode(CENTER);
livelli[activeLyr].pg.image(myLayer,width/2,height/2);
livelli[activeLyr].pg.imageMode(CORNER);
livelli[activeLyr].pg.endDraw();
livelli[activeLyr].ln = name; // update layer name
livelli[activeLyr].updateLayerSwatch(); // update layer swatch
}
//*********************************
// OPEN DRAW
void selectFolderOpenDialog()
{
noLoop();
selectFolder("Select the folder draw to OPEN...", "folderOpenSelected", dummyFolder);
}
//*********************************
void folderOpenSelected(File selection)
{
if (selection == null) { println("No folder selected."); }
else
{
folder = selection.getAbsolutePath();
dummyFolder = new File(selection.getAbsolutePath());
filename = folder;
//println("Folder selected " + folder);
// set filename as folder name (not complete path)
int pos = filename.lastIndexOf(folderSep);
if (pos > 0) { filename = filename.substring(pos+1, filename.length()); }
//println("Filename: " + filename);
//println("Open file: " + folder + folderSep + filename + ".txt");
// open layers
loadingDraw = true; // call openDrawFromFolder() from draw()
}
keyPressed = false; // needed !!
mousePressed = false;
loop();
}
//*********************************
void openDrawFromFolder()
{
loadingDraw = false;
if (fileExists(folder + folderSep + filename + ".txt"))
{
String listLyrs[] = loadStrings(folder + folderSep + filename + ".txt");
//println("There are " + listLyrs.length + " layers");
//for (int i = 0 ; i < listLyrs.length; i++)
//{ println(listLyrs[i]); }
// open layers
for(int i=0; i<listLyrs.length; i++)
{
String fileLyr = folder + folderSep + listLyrs[i];
//println(fileLyr);
if (fileExists(fileLyr))
{
if (listLyrs[i].length() > 0)
{
//println(listLyrs[i],listLyrs[i].length());
PImage myLayer = loadImage(fileLyr);
// store layer for undo
//storeUNDO();
copyIMG2PG(myLayer, livelli[i].pg);
int pos = listLyrs[i].lastIndexOf(".");
if (pos > 0) { listLyrs[i] = listLyrs[i].substring(0, pos); }
livelli[i].ln = listLyrs[i]; // update layer name
livelli[i].lv = true; // set layer visible
livelli[i].updateLayerSwatch(); // update layer swatch
}
}
else
{
println("Layer " + folder + folderSep + listLyrs[i] + " not found.");
}
}
resetUNDO_REDO();
}
else
{
println("File " + folder + folderSep + filename + ".txt" + " not found.");
}
// open cobweb point file
if (fileExists(folder + folderSep + filename + ".web"))
{
String lista[] = loadStrings(folder + folderSep + filename + ".web");
cobweb.clear();
int numPoints = lista.length - 1;
println(numPoints);
for (int i=0; i < numPoints; i++)
{
String[] punto = split(lista[i], ",");
int x = int(punto[0]);
int y = int(punto[1]);
PVector v = new PVector(x, y, 0);
cobweb.add(0, v);
}
println(cobweb.size());
updateWeb = true;
}
}
//*********************************
// SAVE DRAW
void selectFolderSaveDialog()
{
noLoop();
selectFolder("Select the folder draw to SAVE...", "folderSaveSelected", dummyFolder);
}
//*********************************
void folderSaveSelected(File selection)
{
if (selection == null) { println("No folder selected."); }
else
{
cursor(WAIT);
folder = selection.getAbsolutePath();
dummyFolder = new File(selection.getAbsolutePath());
filename = folder;
//println("Folder selected " + folder);
// set filename as folder name (not complete path)
int pos = filename.lastIndexOf(folderSep);
if (pos > 0) { filename = filename.substring(pos+1, filename.length()); }
//println("Filename: " + filename);
//println("Save file: " + folder + folderSep + filename);
// save Draw;
saveDrawOnFolder();
noCursor();
}
keyPressed = false; // needed !!
mousePressed = false;
loop();
}
//*********************************
void saveDrawOnFolder()
{
//cursor(WAIT);
String layersStr = "";
PGraphics outLYR = createGraphics(width, height);
outLYR.beginDraw();
outLYR.clear();
outLYR.noStroke();
outLYR.fill(backCol);
outLYR.rect(0,0,width,height);
for(int i=numLayers-1; i>=0; i--)
{
if (livelli[i].lv)
{
if (livelli[i].lt != 255)
{
outLYR.tint(255,livelli[i].lt); // transparency
}
else
{
outLYR.noTint();
}
outLYR.image(livelli[i].pg,0,0);
}
}
outLYR.endDraw();
// save a single file with all layers (flatten layers)
outLYR.save(folder + folderSep + filename + ".png");
// save all layers as separate files
for(int i=0; i<numLayers; i++)
{
if (livelli[i].lv)
{
livelli[i].pg.save(folder + folderSep + livelli[i].ln + ".png");
if (i==0) { layersStr = layersStr + livelli[i].ln + ".png"; }
else { layersStr = layersStr + "|" + livelli[i].ln + ".png"; }
}
}
//println(layersStr);
// save cobweb points
if (cobweb.size() > 0)
{
String lista="", riga="";
for (int p=0; p < cobweb.size(); p++)
{
PVector v = cobweb.get(p);
riga = str((int)v.x) + "," + str((int)v.y) + "\n";
lista=lista+riga;
}
String[] outTXT = split(lista, "\n");
saveStrings(folder + folderSep + filename + ".web", outTXT);
}
// save text file with all the name of the layers (each name on separate line)
String[] layersList = split(layersStr, "|");
saveStrings(folder + folderSep + filename + ".txt", layersList);
// save current canvas (printscreen) (.tif)
save(folder + folderSep + filename + ".tif");
// save current canvas (printscreen) (.pdf)
savePDF();
// restore cursor
noCursor();
}
//*********************************
void savePDF()
{
PGraphics outPDF = createGraphics(width, height, PDF, folder + folderSep + filename + ".pdf");
outPDF.beginDraw();
PGraphics outLYR = createGraphics(width, height);
outLYR.beginDraw();
outLYR.clear();
outLYR.noStroke();
outLYR.fill(backCol);
outLYR.rect(0,0,width,height);
for(int i=numLayers-1; i>=0; i--)
{
if (livelli[i].lv)
{
if (livelli[i].lt != 255)
{
outLYR.tint(255,livelli[i].lt); // transparency
}
else
{
outLYR.noTint();
}
outLYR.image(livelli[i].pg,0,0);
}
}
outPDF.image(outLYR,0,0);
outPDF.dispose();
outPDF.endDraw(); // automatically save PDF
}
// SAVE SELECTION
void selectionSaveDialog()
{
noLoop();
selectOutput("Select a file...", "selectionSave");
}
void selectionSave(File selection)
{
if (selection == null) { println("No file selected."); }
else
{
cursor(WAIT);
if (aSelection) //copy selection
{
pixelCopyIMG = null;
pixelCopyIMG = createImage(x2sel - x1sel - 1, y2sel - y1sel - 1, ARGB);
pixelCopyIMG.loadPixels();
livelli[activeLyr].pg.beginDraw(); // open active layer PGraphics
livelli[activeLyr].pg.loadPixels();
int loc = 0;
for (int x = 0; x < (x2sel - x1sel)-1; x++)
{
for (int y = 0; y < (y2sel-y1sel)-1; y++)
{
loc = ((x + x1sel+1) + (y + y1sel+1)*width);
pixelCopyIMG.pixels[x+y*pixelCopyIMG.width] = livelli[activeLyr].pg.pixels[loc];
}
}
pixelCopyIMG.updatePixels();
livelli[activeLyr].pg.endDraw(); // close active layer PGraphics
}
else // copy layer
{
pixelCopyIMG = null;
pixelCopyIMG = createImage(width, height, ARGB);
pixelCopyIMG.loadPixels();
livelli[activeLyr].pg.beginDraw(); // open active layer PGraphics
livelli[activeLyr].pg.loadPixels();
int loc = 0;
for (int x = 0; x < width; x++)
{
for (int y = 0; y < height; y++)
{
loc = (x + y*width);
pixelCopyIMG.pixels[loc] = livelli[activeLyr].pg.pixels[loc];
}
}
pixelCopyIMG.updatePixels();
livelli[activeLyr].pg.endDraw(); // close active layer PGraphics
}
// save selection as file
pixelCopyIMG.save(selection + ".png");
// restore cursor
noCursor();
}
loop();
}
//*********************************
boolean fileExists(String path)
{
File file=new File(path);
boolean exists = file.exists();
if (exists) { return true; }
else { return false; }
}