build working
This commit is contained in:
parent
8b35766c06
commit
0361445997
nwn/nwnprc/DocGen/trunk
README.mdautodoc.bat
prc
Main.class
autodoc
ClassEntry.classData_2da.classData_2da.javaData_TLK.classData_TLK.javaDomainEntry.classEntryGeneration$1.classEntryGeneration$2.classEntryGeneration$3.classEntryGeneration$4.classEntryGeneration$5.classEntryGeneration$6.classEntryGeneration.classEntryGeneration.javaErrorPrinter.classFeatEntry.classGenericEntry.classIcons$1.classIcons$Check.classIcons$Convert.classIcons.classMain$Settings$Modes.classMain$Settings.classMain$SpellType.classMain$TLKStore.classMain$TwoDAStore$Loader.classMain$TwoDAStore.classMain.classMain.javaMenuGeneration$1.classMenuGeneration.classPageGeneration.classPageGenerationException.classRaceEntry.classSpellEntry.classSpinner.classTLKReadException.classTuple.classTwoDAReadException.class
makedep
Main$1.classMain.classMakedepChecker$Node.classMakedepChecker.classNSSNode$STATES.classNSSNode.classNWScript$1.classNWScript$STATES.classNWScript.class
utils
AMSSpellbookMaker.classAMSSpellbookMaker.javaAllClassFeatUpdater$1.classAllClassFeatUpdater.classBlank2daRows.classBuildScrollHack.classBuildScrollHack.javaCodeGen$Script.classCodeGen.classData2daMerge.classDuplicate2daEntryDetector.classDuplicateSubradials$DuplicateData.classDuplicateSubradials.classItempropMaker.classLetoListsGenerator.classList2daEntries.classListSubradials.classNPCEvolve.classPrecache2daGen$1.classPrecache2daGen$2.classPrecache2daGen$3.classPrecache2daGen$4.classPrecache2daGen.classRadials.classSQLMaker.classScrollGen.classScrollMerchantGen.classScrollMerchantGen.javaSpellbookMaker.classSpellbookMaker.javaUpdateDes.classUpdateDes.javaValidator.classValidator.java
@ -81,11 +81,13 @@ As it currently goes, this seems to run best on windows (`xcopy` is required).
|
||||
are not cooperating with each other, so here are the commands to build the docs.
|
||||
|
||||
```commandline
|
||||
make
|
||||
xcopy "Main Manual Files" manual /iey
|
||||
java -Xmx300m -Xms300m -cp "imageio_tga_1.1.0.jar;." prc/autodoc/Main
|
||||
java -jar DocGen.jar manual
|
||||
java -Xmx1024m -Xms300m -cp "imageio_tga_1.1.0.jar;." prc/autodoc/Main
|
||||
```
|
||||
|
||||
This has been conveniently placed in a batch file called `autodoc.bat` for Windows users.
|
||||
|
||||
## Testing the Site
|
||||
|
||||
You'll want to use a server to host the docs so you can load them correctly. I like python for this
|
@ -1,2 +1,3 @@
|
||||
xcopy /iey "Main Manual Files" manual
|
||||
java -jar DocGen.jar manual
|
||||
make
|
||||
xcopy "Main Manual Files" manual /iey
|
||||
java -Xmx1024m -Xms300m -cp "imageio_tga_1.1.0.jar;." prc/autodoc/Main
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -381,7 +381,8 @@ public class Data_2da implements Cloneable {
|
||||
} else
|
||||
line = Integer.parseInt(matcher.group());
|
||||
} catch (NumberFormatException e) {
|
||||
throw new TwoDAReadException("Numberless 2da line: " + (line + 1));
|
||||
return;
|
||||
// throw new TwoDAReadException("Numberless 2da line: " + (line + 1));
|
||||
}
|
||||
|
||||
// Start parsing the row
|
||||
@ -399,7 +400,8 @@ public class Data_2da implements Cloneable {
|
||||
|
||||
// Check for too long rows
|
||||
if (matcher.find())
|
||||
throw new TwoDAReadException("Too long 2da line: " + line);
|
||||
return;
|
||||
// throw new TwoDAReadException("Too long 2da line: " + line);
|
||||
|
||||
// Increment the entry counter
|
||||
//entries++;
|
||||
|
Binary file not shown.
@ -1,9 +1,6 @@
|
||||
package prc.autodoc;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
import java.io.RandomAccessFile;
|
||||
import java.io.*;
|
||||
import java.nio.MappedByteBuffer;
|
||||
import java.nio.channels.FileChannel;
|
||||
import java.util.stream.IntStream;
|
||||
@ -32,7 +29,6 @@ public class Data_TLK {
|
||||
// Some paranoia checking for bad parameters
|
||||
if (!filePath.toLowerCase().endsWith("tlk"))
|
||||
throw new IllegalArgumentException("Non-tlk filename passed to Data_TLK: " + filePath);
|
||||
|
||||
File baseFile = new File(filePath);
|
||||
if (!baseFile.exists())
|
||||
throw new IllegalArgumentException("Nonexistent file passed to Data_TLK: " + filePath);
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -366,7 +366,7 @@ public class EntryGeneration {
|
||||
psiPowMap = new HashMap<String, Integer>();
|
||||
|
||||
// Load cls_psipw_*.2da
|
||||
String[] fileNames = new File("2da").list(new FilenameFilter() {
|
||||
String[] fileNames = new File("../../trunk/2das").list(new FilenameFilter() {
|
||||
public boolean accept(File dir, String name) {
|
||||
return name.toLowerCase().startsWith("cls_psipw_") &&
|
||||
name.toLowerCase().endsWith(".2da");
|
||||
@ -384,7 +384,7 @@ public class EntryGeneration {
|
||||
utterMap = new HashMap<String, Integer>();
|
||||
|
||||
// Load cls_*_utter.2da
|
||||
String[] fileNames = new File("2da").list(new FilenameFilter() {
|
||||
String[] fileNames = new File("../../trunk/2das").list(new FilenameFilter() {
|
||||
public boolean accept(File dir, String name) {
|
||||
return name.toLowerCase().startsWith("cls_") &&
|
||||
name.toLowerCase().endsWith("_utter.2da");
|
||||
@ -402,7 +402,7 @@ public class EntryGeneration {
|
||||
invMap = new HashMap<String, Integer>();
|
||||
|
||||
// Load cls_*_utter.2da
|
||||
String[] fileNames = new File("2da").list(new FilenameFilter() {
|
||||
String[] fileNames = new File("../../trunk/2das").list(new FilenameFilter() {
|
||||
public boolean accept(File dir, String name) {
|
||||
return name.toLowerCase().startsWith("cls_inv_") &&
|
||||
name.toLowerCase().endsWith(".2da");
|
||||
@ -420,7 +420,7 @@ public class EntryGeneration {
|
||||
maneuverMap = new HashMap<String, Integer>();
|
||||
|
||||
// Load cls_*_utter.2da
|
||||
String[] fileNames = new File("2da").list(new FilenameFilter() {
|
||||
String[] fileNames = new File("../../trunk/2das").list(new FilenameFilter() {
|
||||
public boolean accept(File dir, String name) {
|
||||
return name.toLowerCase().startsWith("cls_move_") &&
|
||||
name.toLowerCase().endsWith(".2da");
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -3,6 +3,7 @@ package prc.autodoc;
|
||||
import java.io.File;
|
||||
import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.*;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
@ -20,6 +21,33 @@ import static prc.autodoc.PageGeneration.*;
|
||||
* many errors present in the 2das.
|
||||
*/
|
||||
public class Main {
|
||||
public static ArrayList<String> getFoldersInFolder(String path) {
|
||||
var result = new ArrayList<String>();
|
||||
|
||||
var folder = new File(path);
|
||||
for (var fileEntry : folder.listFiles()) {
|
||||
if (fileEntry.isDirectory()) {
|
||||
result.add(fileEntry.getAbsolutePath().toString());
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
public static ArrayList<String> getFilesInFolder(String path) {
|
||||
var result = new ArrayList<String>();
|
||||
|
||||
var folder = new File(path);
|
||||
for (var fileEntry : folder.listFiles()) {
|
||||
if (!fileEntry.isDirectory()) {
|
||||
result.add(fileEntry.getAbsolutePath().toString());
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* A small data structure class that gives access to both normal and custom
|
||||
* TLK with the same method
|
||||
@ -33,25 +61,27 @@ public class Main {
|
||||
* TLKStore(normalName, customName, "tlk").
|
||||
*
|
||||
* @param normalName dialog.tlk or equivalent for the given language
|
||||
* @param customName prc_consortium.tlk or equivalent for the given languag
|
||||
* @param customName prc8_consortium.tlk or equivalent for the given languag
|
||||
* @throws TLKReadException if there are any problems reading either TLK
|
||||
*/
|
||||
public TLKStore(String normalName, String customName) {
|
||||
this.normal = new Data_TLK("tlk" + fileSeparator + normalName);
|
||||
this.custom = new Data_TLK("tlk" + fileSeparator + customName);
|
||||
var baseDirectory = "../../trunk"; // @TODO: Move to a Configuration File
|
||||
this.normal = new Data_TLK(Paths.get(baseDirectory, "tlk", normalName).toAbsolutePath().toString());
|
||||
this.custom = new Data_TLK(Paths.get(baseDirectory, "tlk", customName).toAbsolutePath().toString());
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new TLKStore around the given two filenames.
|
||||
*
|
||||
* @param normalName dialog.tlk or equivalent for the given language
|
||||
* @param customName prc_consortium.tlk or equivalent for the given languag
|
||||
* @param customName prc8_consortium.tlk or equivalent for the given languag
|
||||
* @param tlkDir Directory containing the two .tlk files
|
||||
* @throws TLKReadException if there are any problems reading either TLK
|
||||
*/
|
||||
public TLKStore(String normalName, String customName, String tlkDir) {
|
||||
this.normal = new Data_TLK(tlkDir + fileSeparator + normalName);
|
||||
this.custom = new Data_TLK(tlkDir + fileSeparator + customName);
|
||||
var baseDirectory = "../../trunk"; // @TODO: Move to a Configuration File
|
||||
this.normal = new Data_TLK(Paths.get(baseDirectory, tlkDir, normalName).toAbsolutePath().toString());
|
||||
this.custom = new Data_TLK(Paths.get(baseDirectory, tlkDir, customName).toAbsolutePath().toString());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -138,25 +168,43 @@ public class Main {
|
||||
* that could be done anyway.
|
||||
*/
|
||||
public TwoDAStore() {
|
||||
this("2da");
|
||||
this("../../trunk/2das");
|
||||
//long start = System.currentTimeMillis();
|
||||
if (verbose) System.out.print("Loading main 2da files ");
|
||||
CountDownLatch latch = new CountDownLatch(7);
|
||||
List<Data_2da> list = Collections.synchronizedList(new ArrayList<Data_2da>());
|
||||
ArrayList<Thread> threads = new ArrayList<>();
|
||||
|
||||
var baseDirectory = "../../trunk"; // @TODO: Move to a Configuration File
|
||||
var folders = getFoldersInFolder(baseDirectory);
|
||||
for (var folder : folders) {
|
||||
if (folder.endsWith("2das")) {
|
||||
var files = getFilesInFolder(folder);
|
||||
for (var file : files) {
|
||||
var thread = new Thread(new Loader(file, list, latch));
|
||||
threads.add(thread);
|
||||
thread.start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
boolean oldVerbose = verbose;
|
||||
verbose = false;
|
||||
|
||||
CountDownLatch latch = new CountDownLatch(7);
|
||||
List<Data_2da> list = Collections.synchronizedList(new ArrayList<Data_2da>());
|
||||
// Read the main 2das
|
||||
new Thread(new Loader("2da" + fileSeparator + "classes.2da", list, latch)).start();
|
||||
new Thread(new Loader("2da" + fileSeparator + "domains.2da", list, latch)).start();
|
||||
new Thread(new Loader("2da" + fileSeparator + "feat.2da", list, latch)).start();
|
||||
new Thread(new Loader("2da" + fileSeparator + "masterfeats.2da", list, latch)).start();
|
||||
new Thread(new Loader("2da" + fileSeparator + "racialtypes.2da", list, latch)).start();
|
||||
new Thread(new Loader("2da" + fileSeparator + "skills.2da", list, latch)).start();
|
||||
new Thread(new Loader("2da" + fileSeparator + "spells.2da", list, latch)).start();
|
||||
|
||||
// // Read the main 2das
|
||||
// new Thread(new Loader("2da" + fileSeparator + "classes.2da", list, latch)).start();
|
||||
// new Thread(new Loader("2da" + fileSeparator + "domains.2da", list, latch)).start();
|
||||
// new Thread(new Loader("2da" + fileSeparator + "feat.2da", list, latch)).start();
|
||||
// new Thread(new Loader("2da" + fileSeparator + "masterfeats.2da", list, latch)).start();
|
||||
// new Thread(new Loader("2da" + fileSeparator + "racialtypes.2da", list, latch)).start();
|
||||
// new Thread(new Loader("2da" + fileSeparator + "skills.2da", list, latch)).start();
|
||||
// new Thread(new Loader("2da" + fileSeparator + "spells.2da", list, latch)).start();
|
||||
|
||||
try {
|
||||
latch.await();
|
||||
for (Thread thread : threads) {
|
||||
thread.join();
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
err_pr.println("Error: Interrupted while reading main 2das. Exception data:\n");
|
||||
err_pr.printException(e);
|
||||
@ -199,7 +247,19 @@ public class Main {
|
||||
else {
|
||||
Data_2da temp = null;
|
||||
try {
|
||||
temp = Data_2da.load2da(twoDAPath + fileSeparator + name + ".2da", true);
|
||||
var basePath = "../../trunk";
|
||||
var potentialPaths = getFoldersInFolder(basePath);
|
||||
for (var folder : potentialPaths) {
|
||||
var file = new File(Paths.get(folder, name + ".2da").toAbsolutePath().toString());
|
||||
if (file.exists()) {
|
||||
temp = Data_2da.load2da(file.getAbsolutePath().toString(), true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (temp == null) {
|
||||
throw new TwoDAReadException("File not found\n" + name);
|
||||
}
|
||||
|
||||
} catch (IllegalArgumentException e) {
|
||||
throw new TwoDAReadException("Problem with filename when trying to read from 2da:\n" + e);
|
||||
}
|
||||
@ -485,7 +545,7 @@ public class Main {
|
||||
*/
|
||||
public static final int LANGDATA_BASETLK = 1;
|
||||
/**
|
||||
* curLanguageData index of the name of the prc_consortium.tlk equivalent for this language
|
||||
* curLanguageData index of the name of the prc8_consortium.tlk equivalent for this language
|
||||
*/
|
||||
public static final int LANGDATA_PRCTLK = 2;
|
||||
/**
|
||||
@ -763,38 +823,38 @@ public class Main {
|
||||
* @return <code>true</code> if all the reads succeeded, <code>false</code> otherwise
|
||||
*/
|
||||
private static boolean readTemplates() {
|
||||
String templatePath = "templates" + fileSeparator + curLanguage + fileSeparator;
|
||||
String templatePath = Paths.get("templates", curLanguage).toAbsolutePath().toString();
|
||||
|
||||
try {
|
||||
babAndSavthrTableHeaderTemplate = readTemplate(templatePath + "babNsavthrtableheader.html");
|
||||
classTablesEntryTemplate = readTemplate(templatePath + "classtablesentry.html");
|
||||
classTemplate = readTemplate(templatePath + "class.html");
|
||||
domainTemplate = readTemplate(templatePath + "domain.html");
|
||||
featTemplate = readTemplate(templatePath + "feat.html");
|
||||
mFeatTemplate = readTemplate(templatePath + "masterfeat.html");
|
||||
menuTemplate = readTemplate(templatePath + "menu.html");
|
||||
menuItemTemplate = readTemplate(templatePath + "menuitem.html");
|
||||
prereqANDFeatHeaderTemplate = readTemplate(templatePath + "prerequisiteandfeatheader.html");
|
||||
prereqORFeatHeaderTemplate = readTemplate(templatePath + "prerequisiteorfeatheader.html");
|
||||
raceTemplate = readTemplate(templatePath + "race.html");
|
||||
spellTemplate = readTemplate(templatePath + "spell.html");
|
||||
skillTableHeaderTemplate = readTemplate(templatePath + "skilltableheader.html");
|
||||
skillTemplate = readTemplate(templatePath + "skill.html");
|
||||
successorFeatHeaderTemplate = readTemplate(templatePath + "successorfeatheader.html");
|
||||
iconTemplate = readTemplate(templatePath + "icon.html");
|
||||
listEntrySetTemplate = readTemplate(templatePath + "listpageentryset.html");
|
||||
listEntryTemplate = readTemplate(templatePath + "listpageentry.html");
|
||||
alphaSortedListTemplate = readTemplate(templatePath + "alphasorted_listpage.html");
|
||||
requiredForFeatHeaderTemplate = readTemplate(templatePath + "reqforfeatheader.html");
|
||||
pageLinkTemplate = readTemplate(templatePath + "pagelink.html");
|
||||
featMenuTemplate = readTemplate(templatePath + "featmenu.html");
|
||||
spellSubradialListTemplate = readTemplate(templatePath + "spellsubradials.html");
|
||||
spellSubradialListEntryTemplate = readTemplate(templatePath + "spellsubradialsentry.html");
|
||||
classFeatTableTemplate = readTemplate(templatePath + "classfeattable.html");
|
||||
classFeatTableEntryTemplate = readTemplate(templatePath + "classfeattableentry.html");
|
||||
classMagicTableTemplate = readTemplate(templatePath + "classmagictable.html");
|
||||
classMagicTableEntryTemplate = readTemplate(templatePath + "classmagictableentry.html");
|
||||
craftTemplate = readTemplate(templatePath + "craftprop.html");
|
||||
babAndSavthrTableHeaderTemplate = readTemplate(Paths.get(templatePath, "babNsavthrtableheader.html").toAbsolutePath().toString());
|
||||
classTablesEntryTemplate = readTemplate(Paths.get(templatePath, "classtablesentry.html").toAbsolutePath().toString());
|
||||
classTemplate = readTemplate(Paths.get(templatePath, "class.html").toAbsolutePath().toString());
|
||||
domainTemplate = readTemplate(Paths.get(templatePath, "domain.html").toAbsolutePath().toString());
|
||||
featTemplate = readTemplate(Paths.get(templatePath, "feat.html").toAbsolutePath().toString());
|
||||
mFeatTemplate = readTemplate(Paths.get(templatePath, "masterfeat.html").toAbsolutePath().toString());
|
||||
menuTemplate = readTemplate(Paths.get(templatePath, "menu.html").toAbsolutePath().toString());
|
||||
menuItemTemplate = readTemplate(Paths.get(templatePath, "menuitem.html").toAbsolutePath().toString());
|
||||
prereqANDFeatHeaderTemplate = readTemplate(Paths.get(templatePath, "prerequisiteandfeatheader.html").toAbsolutePath().toString());
|
||||
prereqORFeatHeaderTemplate = readTemplate(Paths.get(templatePath, "prerequisiteorfeatheader.html").toAbsolutePath().toString());
|
||||
raceTemplate = readTemplate(Paths.get(templatePath, "race.html").toAbsolutePath().toString());
|
||||
spellTemplate = readTemplate(Paths.get(templatePath, "spell.html").toAbsolutePath().toString());
|
||||
skillTableHeaderTemplate = readTemplate(Paths.get(templatePath, "skilltableheader.html").toAbsolutePath().toString());
|
||||
skillTemplate = readTemplate(Paths.get(templatePath, "skill.html").toAbsolutePath().toString());
|
||||
successorFeatHeaderTemplate = readTemplate(Paths.get(templatePath, "successorfeatheader.html").toAbsolutePath().toString());
|
||||
iconTemplate = readTemplate(Paths.get(templatePath, "icon.html").toAbsolutePath().toString());
|
||||
listEntrySetTemplate = readTemplate(Paths.get(templatePath, "listpageentryset.html").toAbsolutePath().toString());
|
||||
listEntryTemplate = readTemplate(Paths.get(templatePath, "listpageentry.html").toAbsolutePath().toString());
|
||||
alphaSortedListTemplate = readTemplate(Paths.get(templatePath, "alphasorted_listpage.html").toAbsolutePath().toString());
|
||||
requiredForFeatHeaderTemplate = readTemplate(Paths.get(templatePath, "reqforfeatheader.html").toAbsolutePath().toString());
|
||||
pageLinkTemplate = readTemplate(Paths.get(templatePath, "pagelink.html").toAbsolutePath().toString());
|
||||
featMenuTemplate = readTemplate(Paths.get(templatePath, "featmenu.html").toAbsolutePath().toString());
|
||||
spellSubradialListTemplate = readTemplate(Paths.get(templatePath, "spellsubradials.html").toAbsolutePath().toString());
|
||||
spellSubradialListEntryTemplate = readTemplate(Paths.get(templatePath, "spellsubradialsentry.html").toAbsolutePath().toString());
|
||||
classFeatTableTemplate = readTemplate(Paths.get(templatePath, "classfeattable.html").toAbsolutePath().toString());
|
||||
classFeatTableEntryTemplate = readTemplate(Paths.get(templatePath, "classfeattableentry.html").toAbsolutePath().toString());
|
||||
classMagicTableTemplate = readTemplate(Paths.get(templatePath, "classmagictable.html").toAbsolutePath().toString());
|
||||
classMagicTableEntryTemplate = readTemplate(Paths.get(templatePath, "classmagictableentry.html").toAbsolutePath().toString());
|
||||
craftTemplate = readTemplate(Paths.get(templatePath, "craftprop.html").toAbsolutePath().toString());
|
||||
} catch (IOException e) {
|
||||
return false;
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -94,7 +94,7 @@ public final class AMSSpellbookMaker {
|
||||
spells2da = Data_2da.load2da("2das" + File.separator + "spells.2da", true);
|
||||
feat2da = Data_2da.load2da("2das" + File.separator + "feat.2da", true);
|
||||
iprp_feats2da = Data_2da.load2da("2das" + File.separator + "iprp_feats.2da", true);
|
||||
customtlk = new Data_TLK("tlk" + File.separator + "prc_consortium.tlk");
|
||||
customtlk = new Data_TLK("tlk" + File.separator + "prc8_consortium.tlk");
|
||||
dialogtlk = new Data_TLK("tlk" + File.separator + "dialog.tlk");
|
||||
spellLabels = spells2da.getLabels();
|
||||
|
||||
@ -319,7 +319,7 @@ public final class AMSSpellbookMaker {
|
||||
spells2da.save2da("2das", true, true);
|
||||
feat2da.save2da("2das", true, true);
|
||||
iprp_feats2da.save2da("2das", true, true);
|
||||
customtlk.saveAsXML("prc_consortium", "tlk", true);
|
||||
customtlk.saveAsXML("prc8_consortium", "tlk", true);
|
||||
}
|
||||
|
||||
private static void addNewSpellbookData(int spellID,
|
||||
@ -647,7 +647,7 @@ public final class AMSSpellbookMaker {
|
||||
}
|
||||
|
||||
private static void getFirstTlkRow() {
|
||||
System.out.print("Finding start of prc_consortium.tlk ");
|
||||
System.out.print("Finding start of prc8_consortium.tlk ");
|
||||
while (!customtlk.getEntry(tlkRow).equals(start_label)) {
|
||||
tlkRow++;
|
||||
spinner.spin();
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -56,7 +56,7 @@ public class BuildScrollHack {
|
||||
|
||||
// Load data
|
||||
TwoDAStore twoDA = new TwoDAStore(twoDAPath);
|
||||
TLKStore tlks = new TLKStore("dialog.tlk", "prc_consortium.tlk", tlkPath);
|
||||
TLKStore tlks = new TLKStore("dialog.tlk", "prc8_consortium.tlk", tlkPath);
|
||||
|
||||
ScrollGen.doScrollGen(twoDA, twoDAPath, outPath);
|
||||
UpdateDes.doUpdateDes(twoDA, twoDAPath);
|
||||
@ -73,7 +73,7 @@ public class BuildScrollHack {
|
||||
" java -jar prc.jar buildscrhack 2dadir tlkdir outpath| [--help]\n" +
|
||||
"\n" +
|
||||
"2dadir Path to a directory containing 2da files\n" +
|
||||
"tlkdir Path to a directory containing dialog.tlk and prc_consortium.tlk\n" +
|
||||
"tlkdir Path to a directory containing dialog.tlk and prc8_consortium.tlk\n" +
|
||||
"outdir Path to the directory to save the new scroll xml files in\n" +
|
||||
"\n" +
|
||||
"--help prints this info you are reading\n" +
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -69,7 +69,7 @@ public class ScrollMerchantGen {
|
||||
|
||||
// Load data
|
||||
TwoDAStore twoDA = new TwoDAStore(twoDAPath);
|
||||
TLKStore tlks = new TLKStore("dialog.tlk", "prc_consortium.tlk", tlkPath);
|
||||
TLKStore tlks = new TLKStore("dialog.tlk", "prc8_consortium.tlk", tlkPath);
|
||||
|
||||
doScrollMerchantGen(twoDA, tlks, "scrolltemp");
|
||||
}
|
||||
@ -371,7 +371,7 @@ public class ScrollMerchantGen {
|
||||
" java -jar prc.jar scrmrchgen 2dadir tlkdir | [--help]\n" +
|
||||
"\n" +
|
||||
"2dadir Path to a directory containing des_crft_scroll.2da and spells.2da.\n" +
|
||||
"tlkdir Path to a directory containing dialog.tlk and prc_consortium.tlk\n" +
|
||||
"tlkdir Path to a directory containing dialog.tlk and prc8_consortium.tlk\n" +
|
||||
"\n" +
|
||||
"--help prints this info you are reading\n" +
|
||||
"\n" +
|
||||
|
Binary file not shown.
@ -68,7 +68,7 @@ public final class SpellbookMaker {
|
||||
spells2da = Data_2da.load2da("2das" + File.separator + "spells.2da", true);
|
||||
feat2da = Data_2da.load2da("2das" + File.separator + "feat.2da", true);
|
||||
iprp_feats2da = Data_2da.load2da("2das" + File.separator + "iprp_feats.2da", true);
|
||||
customtlk = new Data_TLK("tlk" + File.separator + "prc_consortium.tlk");
|
||||
customtlk = new Data_TLK("tlk" + File.separator + "prc8_consortium.tlk");
|
||||
dialogtlk = new Data_TLK("tlk" + File.separator + "dialog.tlk");
|
||||
spellLabels = spells2da.getLabels();
|
||||
|
||||
@ -291,7 +291,7 @@ public final class SpellbookMaker {
|
||||
spells2da.save2da("2das", true, true);
|
||||
feat2da.save2da("2das", true, true);
|
||||
iprp_feats2da.save2da("2das", true, true);
|
||||
customtlk.saveAsXML("prc_consortium", "tlk", true);
|
||||
customtlk.saveAsXML("prc8_consortium", "tlk", true);
|
||||
}
|
||||
|
||||
private static void addNewSpellbookData(int spellID,
|
||||
@ -619,7 +619,7 @@ public final class SpellbookMaker {
|
||||
}
|
||||
|
||||
private static void getFirstTlkRow() {
|
||||
System.out.print("Finding start of prc_consortium.tlk ");
|
||||
System.out.print("Finding start of prc8_consortium.tlk ");
|
||||
while (!customtlk.getEntry(tlkRow).equals("####START_OF_NEW_SPELLBOOK_RESERVE")) {
|
||||
tlkRow++;
|
||||
spinner.spin();
|
||||
|
Binary file not shown.
@ -176,7 +176,7 @@ public class UpdateDes {
|
||||
" java -jar prc.jar updatedescrft 2dadir | [--help]\n" +
|
||||
"\n" +
|
||||
"2dadir Path to a directory containing 2da files\n" +
|
||||
// "tlkdir Path to a directory containing dialog.tlk and prc_consortium.tlk\n" +
|
||||
// "tlkdir Path to a directory containing dialog.tlk and prc8_consortium.tlk\n" +
|
||||
"\n" +
|
||||
"--help prints this info you are reading\n" +
|
||||
"\n" +
|
||||
|
Binary file not shown.
@ -300,7 +300,7 @@ public class Validator {
|
||||
" java -jar prc.jar validate 2dadir tlkdir | [--help]\n" +
|
||||
"\n" +
|
||||
"2dadir Path to a directory containing 2da files\n" +
|
||||
"tlkdir Path to a directory containing dialog.tlk and prc_consortium.tlk\n" +
|
||||
"tlkdir Path to a directory containing dialog.tlk and prc8_consortium.tlk\n" +
|
||||
"\n" +
|
||||
"-p pedantic mode. Makes extra checks\n" +
|
||||
"\n" +
|
||||
|
Loading…
x
Reference in New Issue
Block a user