Updated ServerFactory to allow parsing of tab-deliminated Server Datatable Files (.sdf txt files) to Interchangeable File Format for source control diff viewing instead of using binary files

An IFF is created for the corresponding SDF if: one does not exist or the SDF's modify date is > than the IFF's modify date
This commit is contained in:
Waverunner
2015-07-20 12:42:41 -04:00
parent 9763777731
commit e225aa8727
11 changed files with 454 additions and 10 deletions
+5
View File
@@ -45,6 +45,11 @@ public class SWGFile {
public SWGFile() {}
public SWGFile(String fileName, String type) {
this(type);
this.fileName = fileName;
}
public SWGFile(String type) {
this.type = type;
this.master = new IffNode(type, true);