Package transientlibs.tex

Examples of transientlibs.tex.Branch


        renderList.menus.clear();

        Detonator.INSTANCE.interfaceElementList.clear();
        Detonator.INSTANCE.interfaceElements.clear();

        Branch initBranch = new Branch();
        Tex.loadText("gui/" + fromFile);
        initBranch.processSilently();

        //Log.info("currently loaded: " + Detonator.INSTANCE.interfaceElements.values().size());
        for (IMarker m : Detonator.INSTANCE.interfaceElementList) {
            interfaceElements.add(m);
            renderList.add(m);
View Full Code Here


           
            if (lastLandmark().eval == null) {

                //Log.info("added eval branch");

                lastLandmark().eval = new Branch();
                Branch.lastBranch = lastLandmark().eval;

                //if (Branch.lastBranch == null) {
//                    Log.error("Branch was not set!");
//                }
View Full Code Here

    public static void runGlobalInit() {

        Log.info("Working directory: "+System.getProperty("user.dir"));

        Branch initBranch = new Branch();
        loadGlobalText("data/init/config.dat");
        initBranch.processSilently();
    }
View Full Code Here

        initBranch.processSilently();
    }

    public static void runGameInit(String fromFolder) {

        Branch initBranch = new Branch();

        Log.info("Load init data from: " + Detonator.INSTANCE.gameDataDir + "gameinit.dat");

        loadText(fromFolder+"/gameinit.dat");

        initBranch.processSilently();
    }
View Full Code Here

        initBranch.processSilently();
    }

    public static void runInit() {

        Branch initBranch = new Branch();

        Log.info("Load init data from: " + Detonator.INSTANCE.gameDataDir + "init.dat");

        loadText("init.dat");



        initBranch.processSilently();
    }
View Full Code Here

            if (lastAction().eval == null) {

                //Log.info("added eval branch");

                lastAction().eval = new Branch();
                Branch.lastBranch = lastAction().eval;

                //if (Branch.lastBranch == null) {
//                    Log.error("Branch was not set!");
//                }
View Full Code Here

            if (lastEvent().eval == null) {

                //Log.info("added eval branch");

                lastEvent().eval = new Branch();
                Branch.lastBranch = lastEvent().eval;

                //if (Branch.lastBranch == null) {
//                    Log.error("Branch was not set!");
//                }
View Full Code Here

TOP

Related Classes of transientlibs.tex.Branch

Copyright © 2018 www.massapicom. 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.