Package transientlibs.tex

Examples of transientlibs.tex.StringAnalyst.openFile()


        MapInfo newInfo = new MapInfo();

        mapCatalogue.add(newInfo);
        newInfo.filePath = fromFile;

        reader.openFile(fromFile);

        loadStage = 0;
        //loadYCounter = 1;
        loadYCounter = 0;
View Full Code Here


        //end stealing from Maps.loadMap(String theFile)

        //if (reader.mapLineCount == -1) {reader.countMapSize(fromFile, null);}

        reader.countMapSize(new StringReader(randMap), null); //new method
        reader.openFile(new StringReader(randMap));//new method

        //resume stealing from Maps.loadMap(String theFile)
        currentMap = new BasicMap(randMap);
        Detonator.INSTANCE.currentMap = currentMap;
View Full Code Here

        if (validFile) {

            StringAnalyst reader = new StringAnalyst();


            reader.openFile(checkFileName);

//        Log.info("add module from dir: "+fromDir);
            modules.add(new Module());
            lastModule = modules.get(modules.size() - 1);
            lastModule.dirName = fromDir;
View Full Code Here

        if (StringAnalyst.isFileExist("perks.dat")) {

        StringAnalyst reader = new StringAnalyst();


        reader.openFile("perks.dat");

        while (!reader.eof) {


            reader.readRow(); //reader.getNextString(); reader.getNextString();
View Full Code Here

        if (StringAnalyst.isFileExist("domains.dat")) {

        StringAnalyst reader = new StringAnalyst();


        reader.openFile("domains.dat");

        while (!reader.eof) {


        reader.readRow();
View Full Code Here

if (StringAnalyst.isFileExist("motivations.dat")) {

        StringAnalyst reader = new StringAnalyst();


        reader.openFile("motivations.dat");

        while (!reader.eof) {


        reader.readRow();
View Full Code Here

     if (StringAnalyst.isFileExist("activities.dat")) {

        StringAnalyst reader = new StringAnalyst();


        reader.openFile("activities.dat");

        while (!reader.eof) {


        reader.readRow();
View Full Code Here

if (StringAnalyst.isFileExist("npcs.dat")) {

        StringAnalyst reader = new StringAnalyst();


        reader.openFile("npcs.dat");

        while (!reader.eof) {


        reader.readRow();
View Full Code Here

        if (StringAnalyst.isFileExist("stats.dat")) {

            StringAnalyst reader = new StringAnalyst();


            reader.openFile("stats.dat");

            while (!reader.eof) {

                reader.readRow();
                analyzeStringForStats(reader);
View Full Code Here

        boolean validFile = (new File(Detonator.INSTANCE.gameDataDir + "sound.dat")).exists();
        if (validFile) {
            StringAnalyst reader = new StringAnalyst();


            reader.openFile("sound.dat");

            while (!reader.eof) {


                reader.readRow();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.