-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathProgramStateIO.java
More file actions
639 lines (571 loc) · 26.1 KB
/
Copy pathProgramStateIO.java
File metadata and controls
639 lines (571 loc) · 26.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
package de.peeeq.wurstio.intermediateLang.interpreter;
import com.google.common.collect.Maps;
import de.peeeq.wurstio.map.importer.ImportFile;
import de.peeeq.wurstio.mpq.MpqEditor;
import de.peeeq.wurstio.objectreader.ObjectFileType;
import de.peeeq.wurstscript.WLogger;
import de.peeeq.wurstscript.gui.WurstGui;
import de.peeeq.wurstscript.intermediatelang.interpreter.ProgramState;
import de.peeeq.wurstscript.jassIm.ImProg;
import de.peeeq.wurstscript.jassIm.ImStmt;
import de.peeeq.wurstscript.utils.Utils;
import net.moonlightflower.wc3libs.bin.ObjMod;
import net.moonlightflower.wc3libs.bin.Wc3BinInputStream;
import net.moonlightflower.wc3libs.bin.Wc3BinOutputStream;
import net.moonlightflower.wc3libs.bin.app.objMod.*;
import net.moonlightflower.wc3libs.dataTypes.app.War3Int;
import net.moonlightflower.wc3libs.dataTypes.app.War3String;
import net.moonlightflower.wc3libs.txt.WTS;
import org.eclipse.jdt.annotation.Nullable;
import org.jetbrains.annotations.NotNull;
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.*;
import java.util.stream.Collectors;
public class ProgramStateIO extends ProgramState {
private static final int GENERATED_BY_WURST = 42;
private static final String OBJECT_CACHE_MANIFEST = "wurst_object_cache.txt";
private @Nullable ImStmt lastStatement;
private @Nullable final MpqEditor mpqEditor;
private final Map<ObjectFileType, ObjMod<? extends ObjMod.Obj>> dataStoreMap = Maps.newLinkedHashMap();
private final Map<ObjectFileType, String> dataStoreHashes = Maps.newLinkedHashMap();
private int id = 0;
private final Map<String, ObjMod.Obj> objDefinitions = Maps.newLinkedHashMap();
private PrintStream outStream = System.err;
private @Nullable WTS trigStrings = null;
private final Optional<File> mapFile;
/**
* Tracks which object files have been modified during compiletime
*/
private static class ObjectCacheManifest {
Map<String, ObjectFileEntry> objectFiles = new HashMap<>();
static class ObjectFileEntry {
String fileType;
String hash;
long timestamp;
int objectCount;
ObjectFileEntry(String fileType, String hash, long timestamp, int objectCount) {
this.fileType = fileType;
this.hash = hash;
this.timestamp = timestamp;
this.objectCount = objectCount;
}
}
String serialize() {
StringBuilder sb = new StringBuilder();
sb.append("# Wurst Object Cache Manifest v1\n");
sb.append("# Format: fileType|hash|timestamp|objectCount\n");
for (Map.Entry<String, ObjectFileEntry> entry : objectFiles.entrySet()) {
ObjectFileEntry e = entry.getValue();
sb.append(e.fileType)
.append("|")
.append(e.hash)
.append("|")
.append(e.timestamp)
.append("|")
.append(e.objectCount)
.append("\n");
}
return sb.toString();
}
static ObjectCacheManifest deserialize(String data) {
ObjectCacheManifest manifest = new ObjectCacheManifest();
if (data == null || data.isEmpty()) {
return manifest;
}
String[] lines = data.split("\n");
for (String line : lines) {
if (line.startsWith("#") || line.trim().isEmpty()) {
continue;
}
String[] parts = line.split("\\|");
if (parts.length == 4) {
try {
String fileType = parts[0];
String hash = parts[1];
long timestamp = Long.parseLong(parts[2]);
int objectCount = Integer.parseInt(parts[3]);
manifest.objectFiles.put(fileType,
new ObjectFileEntry(fileType, hash, timestamp, objectCount));
} catch (NumberFormatException e) {
WLogger.warning("Invalid object cache manifest line: " + line);
}
}
}
return manifest;
}
boolean hasEntry(String fileType) {
return objectFiles.containsKey(fileType);
}
boolean hashMatches(String fileType, String hash) {
ObjectFileEntry entry = objectFiles.get(fileType);
return entry != null && entry.hash.equals(hash);
}
void putEntry(String fileType, String hash, int objectCount) {
objectFiles.put(fileType, new ObjectFileEntry(fileType, hash, System.currentTimeMillis(), objectCount));
}
}
public ProgramStateIO(Optional<File> mapFile, @Nullable MpqEditor mpqEditor, WurstGui gui, ImProg prog, boolean isCompiletime) {
super(gui, prog, isCompiletime);
this.mapFile = mapFile;
this.mpqEditor = mpqEditor;
}
@Override
public void setLastStatement(ImStmt s) {
lastStatement = s;
}
@Override
public @Nullable ImStmt getLastStatement() {
return lastStatement;
}
@Override
public WurstGui getGui() {
return super.getGui();
}
private String getTrigString(int id) {
return loadTrigStrings().getEntry(id);
}
private WTS loadTrigStrings() {
WTS res = trigStrings;
if (res != null) {
return res;
}
try {
byte[] wts = mpqEditor.extractFile("war3map.wts");
res = new WTS(new ByteArrayInputStream(wts));
} catch (Exception e) {
// dummy result
res = new WTS();
WLogger.warning("Could not load trigger strings");
WLogger.info(e);
}
trigStrings = res;
return res;
}
ObjMod<? extends ObjMod.Obj> getDataStore(String fileExtension) {
return getDataStore(ObjectFileType.fromExt(fileExtension));
}
private ObjMod<? extends ObjMod.Obj> getDataStore(ObjectFileType filetype) throws Error {
ObjMod<? extends ObjMod.Obj> dataStore = dataStoreMap.get(filetype);
if (dataStore != null) {
return dataStore;
}
if (mpqEditor == null) {
// without a map: create empty object file
dataStore = filetypeToObjmod(filetype);
dataStore.setFormat(ObjMod.EncodingFormat.OBJ_0x2);
dataStoreMap.put(filetype, dataStore);
return dataStore;
}
try {
// extract specific object file:
String fileName = "war3map." + filetype.getExt();
String skinFileName = "war3mapSkin." + filetype.getExt();
try {
if (mpqEditor.hasFile(fileName)) {
byte[] w3_ = mpqEditor.extractFile(fileName);
Wc3BinInputStream in = new Wc3BinInputStream(new ByteArrayInputStream(w3_));
switch (filetype) {
case UNITS:
W3U w3u = new W3U(in);
if (mpqEditor.hasFile(skinFileName)) {
byte[] w3s_ = mpqEditor.extractFile(skinFileName);
Wc3BinInputStream inS = new Wc3BinInputStream(new ByteArrayInputStream(w3s_));
W3U skin = new W3U(inS);
w3u.merge(skin);
mpqEditor.deleteFile(skinFileName);
}
dataStore = w3u;
break;
case ITEMS:
W3T w3t = new W3T(in);
if (mpqEditor.hasFile(skinFileName)) {
byte[] w3s_ = mpqEditor.extractFile(skinFileName);
Wc3BinInputStream inS = new Wc3BinInputStream(new ByteArrayInputStream(w3s_));
W3T skin = new W3T(inS);
w3t.merge(skin);
mpqEditor.deleteFile(skinFileName);
}
dataStore = w3t;
break;
case DESTRUCTABLES:
W3B w3b = new W3B(in);
if (mpqEditor.hasFile(skinFileName)) {
byte[] w3s_ = mpqEditor.extractFile(skinFileName);
Wc3BinInputStream inS = new Wc3BinInputStream(new ByteArrayInputStream(w3s_));
W3B skin = new W3B(inS);
w3b.merge(skin);
mpqEditor.deleteFile(skinFileName);
}
dataStore = w3b;
break;
case DOODADS:
W3D w3d = new W3D(in);
if (mpqEditor.hasFile(skinFileName)) {
byte[] w3s_ = mpqEditor.extractFile(skinFileName);
Wc3BinInputStream inS = new Wc3BinInputStream(new ByteArrayInputStream(w3s_));
W3D skin = new W3D(inS);
w3d.merge(skin);
mpqEditor.deleteFile(skinFileName);
}
dataStore = w3d;
break;
case ABILITIES:
W3A w3a = new W3A(in);
if (mpqEditor.hasFile(skinFileName)) {
byte[] w3s_ = mpqEditor.extractFile(skinFileName);
Wc3BinInputStream inS = new Wc3BinInputStream(new ByteArrayInputStream(w3s_));
W3A skin = new W3A(inS);
w3a.merge(skin);
mpqEditor.deleteFile(skinFileName);
}
dataStore = w3a;
break;
case BUFFS:
W3H w3h = new W3H(in);
if (mpqEditor.hasFile(skinFileName)) {
byte[] w3s_ = mpqEditor.extractFile(skinFileName);
Wc3BinInputStream inS = new Wc3BinInputStream(new ByteArrayInputStream(w3s_));
W3H skin = new W3H(inS);
w3h.merge(skin);
mpqEditor.deleteFile(skinFileName);
}
dataStore = w3h;
break;
case UPGRADES:
W3Q w3q = new W3Q(in);
if (mpqEditor.hasFile(skinFileName)) {
byte[] w3s_ = mpqEditor.extractFile(skinFileName);
Wc3BinInputStream inS = new Wc3BinInputStream(new ByteArrayInputStream(w3s_));
W3Q skin = new W3Q(inS);
w3q.merge(skin);
mpqEditor.deleteFile(skinFileName);
}
dataStore = w3q;
break;
}
in.close();
replaceTrigStrings(dataStore);
} else {
dataStore = filetypeToObjmod(filetype);
dataStore.setFormat(ObjMod.EncodingFormat.OBJ_0x2);
}
} catch (IOException | InterruptedException e) {
// TODO maybe tell the user, that something has gone wrong
WLogger.info("Could not extract file: " + fileName);
WLogger.info(e);
dataStore = filetypeToObjmod(filetype);
dataStore.setFormat(ObjMod.EncodingFormat.OBJ_0x2);
}
dataStoreMap.put(filetype, dataStore);
// clean datastore, remove all objects created by wurst
deleteWurstObjects(dataStore);
} catch (Exception e) {
WLogger.severe(e);
throw new Error(e);
}
return dataStore;
}
@NotNull
private ObjMod<? extends ObjMod.Obj> filetypeToObjmod(ObjectFileType filetype) {
switch (filetype) {
case UNITS:
return new W3U();
case ITEMS:
return new W3T();
case DESTRUCTABLES:
return new W3B();
case DOODADS:
return new W3D();
case ABILITIES:
return new W3A();
case BUFFS:
return new W3H();
case UPGRADES:
return new W3Q();
}
return null;
}
private void replaceTrigStrings(ObjMod<? extends ObjMod.Obj> dataStore) {
replaceTrigStringsInTable(dataStore.getOrigObjs());
replaceTrigStringsInTable(dataStore.getCustomObjs());
}
private void replaceTrigStringsInTable(List<? extends ObjMod.Obj> modifiedTable) {
for (ObjMod.Obj od : modifiedTable) {
for (ObjMod.Obj.Mod mod : od.getMods()) {
if (mod.getValType() == ObjMod.ValType.STRING && mod.getVal() instanceof War3String) {
War3String stringVal = (War3String) mod.getVal();
if (stringVal.getVal().startsWith("TRIGSTR_")) {
try {
int id = Integer.parseInt(stringVal.getVal().substring("TRIGSTR_".length()), 10);
String newVal = getTrigString(id);
stringVal.set_val(newVal);
} catch (NumberFormatException e) {
// ignore
}
}
}
}
}
}
private void deleteWurstObjects(ObjMod<? extends ObjMod.Obj> dataStore) {
for (ObjMod.Obj next : dataStore.getCustomObjs()) {
for (ObjMod.Obj.Mod om : next.getMods()) {
if (om.getId().getVal().equals("wurs") && om.getVal() instanceof War3Int) {
War3Int val = (War3Int) om.getVal();
if (val.getVal() == GENERATED_BY_WURST) {
dataStore.removeObj(next.getId());
break;
}
}
}
}
}
String addObjectDefinition(ObjMod.Obj objDef) {
id++;
String key = "obj" + id;
objDefinitions.put(key, objDef);
return key;
}
ObjMod.Obj getObjectDefinition(String key) {
return objDefinitions.get(key);
}
/**
* Calculate hash of an object file's contents
*/
private String calculateObjectFileHash(ObjMod<? extends ObjMod.Obj> dataStore) {
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
Wc3BinOutputStream out = new Wc3BinOutputStream(baos);
dataStore.write(out, ObjMod.EncodingFormat.OBJ_0x2);
out.close();
byte[] data = baos.toByteArray();
return ImportFile.calculateHash(data);
} catch (Exception e) {
WLogger.warning("Could not calculate object file hash: " + e.getMessage());
return String.valueOf(System.currentTimeMillis());
}
}
/**
* Load the object cache manifest from MPQ
*/
private ObjectCacheManifest loadObjectCacheManifest() {
if (mpqEditor == null) {
return new ObjectCacheManifest();
}
try {
if (mpqEditor.hasFile(OBJECT_CACHE_MANIFEST)) {
byte[] data = mpqEditor.extractFile(OBJECT_CACHE_MANIFEST);
String content = new String(data, StandardCharsets.UTF_8);
WLogger.info("Loaded object cache manifest from MPQ");
return ObjectCacheManifest.deserialize(content);
}
} catch (Exception e) {
WLogger.info("Could not load object cache manifest: " + e.getMessage());
}
return new ObjectCacheManifest();
}
/**
* Save the object cache manifest to MPQ
*/
private void saveObjectCacheManifest(ObjectCacheManifest manifest) {
if (mpqEditor == null) {
return;
}
try {
String serialized = manifest.serialize();
byte[] data = serialized.getBytes(StandardCharsets.UTF_8);
mpqEditor.deleteFile(OBJECT_CACHE_MANIFEST);
mpqEditor.insertFile(OBJECT_CACHE_MANIFEST, data);
WLogger.info("Saved object cache manifest to MPQ");
} catch (Exception e) {
WLogger.warning("Could not save object cache manifest: " + e.getMessage());
}
}
@Override
public void writeBack(boolean inject) {
gui.sendProgress("Writing back generated objects");
long startTime = System.currentTimeMillis();
ObjectCacheManifest oldManifest = loadObjectCacheManifest();
ObjectCacheManifest newManifest = new ObjectCacheManifest();
int filesProcessed = 0, filesUpdated = 0, filesSkipped = 0;
boolean anyFileWritten = false;
for (ObjectFileType fileType : ObjectFileType.values()) {
filesProcessed++;
ObjMod<? extends ObjMod.Obj> dataStore = getDataStore(fileType);
if (dataStore.getObjsList().isEmpty()) {
WLogger.info("Object file " + fileType.getExt() + " is empty, skipping");
continue;
}
// Compute hash of what we intend to write
String currentHash = calculateObjectFileHash(dataStore);
dataStoreHashes.put(fileType, currentHash);
boolean mpqHasSame = false;
if (mpqEditor != null && mpqEditor.hasFile("war3map." + fileType.getExt())) {
try {
byte[] existing = mpqEditor.extractFile("war3map." + fileType.getExt());
String existingHash = ImportFile.calculateHash(existing);
mpqHasSame = existingHash.equals(currentHash);
} catch (Exception e) {
WLogger.info("Could not validate MPQ content for " + fileType.getExt() + ": " + e.getMessage());
}
}
boolean manifestSaysSame = oldManifest.hasEntry(fileType.getExt())
&& oldManifest.hashMatches(fileType.getExt(), currentHash);
// Only skip if BOTH the manifest and the actual MPQ content match
if (manifestSaysSame && mpqHasSame) {
WLogger.info("Object file " + fileType.getExt() + " unchanged (hash match), skipping writeback");
filesSkipped++;
if (inject) {
newManifest.putEntry(fileType.getExt(), currentHash, dataStore.getObjsList().size());
}
continue;
}
WLogger.info("Object file " + fileType.getExt() + " changed or MPQ out of sync, writing back");
filesUpdated++;
writebackObjectFile(dataStore, fileType, inject);
anyFileWritten = anyFileWritten || inject;
if (inject) {
newManifest.putEntry(fileType.getExt(), currentHash, dataStore.getObjsList().size());
}
}
// Always write the .w3o (debug aid) – but do NOT touch the manifest for it
// writeW3oFile();
// Only persist a new manifest if we actually injected files
if (inject && anyFileWritten) {
saveObjectCacheManifest(newManifest);
} else {
WLogger.info("Skipping manifest update (inject=" + inject + ", anyFileWritten=" + anyFileWritten + ")");
}
long endTime = System.currentTimeMillis();
WLogger.info(String.format(
"Object writeback complete in %dms: %d files processed, %d updated, %d skipped",
endTime - startTime, filesProcessed, filesUpdated, filesSkipped));
}
private void writeW3oFile() {
Optional<File> objFile = getObjectEditingOutputFolder().map(fo -> new File(fo, "wurstCreatedObjects.w3o"));
try (Wc3BinOutputStream objFileStream = new Wc3BinOutputStream(objFile.get())) {
objFileStream.writeInt32(1); // version
for (ObjectFileType fileType : ObjectFileType.values()) {
ObjMod<? extends ObjMod.Obj> dataStore = getDataStore(fileType);
if (!dataStore.getObjs().isEmpty()) {
objFileStream.writeInt32(1); // exists
dataStore.write(objFileStream, ObjMod.EncodingFormat.OBJ_0x2);
} else {
objFileStream.writeInt32(0); // does not exist
}
}
} catch (Error | IOException e) {
WLogger.severe(e);
}
}
private void writebackObjectFile(ObjMod<? extends ObjMod.Obj> dataStore, ObjectFileType fileType, boolean inject) throws Error {
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
Wc3BinOutputStream out = new Wc3BinOutputStream(baos);
Optional<File> folder = getObjectEditingOutputFolder();
dataStore.write(out, ObjMod.EncodingFormat.OBJ_0x2);
out.close();
byte[] w3_ = baos.toByteArray();
exportToWurst(dataStore, fileType, new File(folder.get(), "WurstExportedObjects_" + fileType.getExt() + ".wurst.txt").toPath());
if (inject) {
if (mpqEditor == null) {
throw new RuntimeException("Map file must be given with '-injectobjects' option.");
}
String filenameInMpq = "war3map." + fileType.getExt();
mpqEditor.deleteFile(filenameInMpq);
mpqEditor.insertFile(filenameInMpq, w3_);
WLogger.info("Injected modified object file: " + filenameInMpq);
}
} catch (Exception e) {
WLogger.severe(e);
throw new Error(e);
}
}
public void exportToWurst(ObjMod<? extends ObjMod.Obj> dataStore,
ObjectFileType fileType, Path outFile) throws IOException {
try (BufferedWriter out = Files.newBufferedWriter(outFile, StandardCharsets.UTF_8)) {
out.write("package WurstExportedObjects_" + fileType.getExt() + "\n");
out.write("import ObjEditingNatives\n\n");
out.write("// Modified Table (contains all custom objects)\n\n");
exportToWurst(dataStore.getCustomObjs(), fileType, out);
out.write("// Original Table (contains all modified default/melee objects)\n" +
"// These are emitted when createObjectDefinition uses the same base/new id.\n\n");
exportToWurst(dataStore.getOrigObjs(), fileType, out);
}
}
public void exportToWurst(List<? extends ObjMod.Obj> customObjs, ObjectFileType fileType, Appendable out) throws IOException {
for (ObjMod.Obj obj : customObjs) {
// Original-table objects (melee overrides) have no base/new id in wc3libs.
// For Wurst export we represent them as same-id overrides.
String objectId = obj.getId().getVal();
String oldId = (obj.getBaseId() != null ? obj.getBaseId().getVal() : objectId);
String newId = (obj.getNewId() != null ? obj.getNewId().getVal() : objectId);
out.append("@compiletime function create_").append(fileType.getExt()).append("_").append(newId)
.append("()\n");
out.append("\tlet def = createObjectDefinition(\"").append(fileType.getExt()).append("\", '");
out.append(newId);
out.append("', '");
out.append(oldId);
out.append("')\n");
for (ObjMod.Obj.Mod m : obj.getMods()) {
if (fileType.usesLevels() && m instanceof ObjMod.Obj.ExtendedMod) {
ObjMod.Obj.ExtendedMod extendedMod = (ObjMod.Obj.ExtendedMod) m;
out.append("\t..setLvlData").append(valTypeToFuncPostfix(extendedMod.getValType())).append("(\"");
out.append(m.toString());
out.append("\", ")
.append(String.valueOf(extendedMod.getLevel()))
.append(", ")
.append(String.valueOf(extendedMod.getDataPt())).append(", ")
.append((extendedMod.getValType() == ObjMod.ValType.STRING) ?
Utils.escapeString(extendedMod.getVal().toString()) :
extendedMod.getVal().toString())
.append(")\n");
} else {
out.append("\t..set").append(valTypeToFuncPostfix(m.getValType())).append("(\"");
out.append(m.toString());
out.append("\", ").append((m.getValType() == ObjMod.ValType.STRING) ?
Utils.escapeString(m.getVal().toString()) :
m.getVal().toString()).append(")\n");
}
}
out.append("\n\n");
}
}
private String valTypeToFuncPostfix(ObjMod.ValType valType) {
switch (valType) {
case INT:
return "Int";
case REAL:
return "Real";
case UNREAL:
return "Unreal";
case STRING:
return "String";
}
return "Int";
}
private Optional<File> getObjectEditingOutputFolder() {
if (!mapFile.isPresent()) {
File folder = new File("_build", "objectEditingOutput");
folder.mkdirs();
return Optional.of(folder);
}
Optional<File> folder = mapFile.map(fi -> new File(fi.getParent(), "objectEditingOutput"));
if (!folder.get().exists() && !folder.get().mkdirs()) {
WLogger.info("Could not create folder " + folder.map(File::getAbsoluteFile));
return Optional.empty();
}
return folder;
}
@Override
public PrintStream getOutStream() {
return outStream;
}
@Override
public void setOutStream(PrintStream os) {
outStream = os;
}
}