Examples of IngamePlanning


Examples of de.zelosfan.timedstrategy.gameStates.IngamePlanning

        world = new World(Main.mapObjectMap.get("map" + mapID));
        Main.gameStateManager.instanceHashMap.put("MapDisplay", new MapDisplay());
        Main.gameStateManager.instanceHashMap.put("UserInterface", new UserInterface());

        Main.gameStateManager.setCurrentGameState(new IngamePlanning(Main.gameStateManager, true));
    }
View Full Code Here

Examples of de.zelosfan.timedstrategy.gameStates.IngamePlanning

        }
    }

    public void changeToPlanningPhase() {
        Main.gameStateManager.setCurrentGameState(new IngamePlanning(Main.gameStateManager, true));
        currentAction = CurrentAction.NOTHING;

        visible.clear();
        for (Entity entity: Main.game.world.entities) {
            entity.offsetY = 0;
View Full Code Here

Examples of de.zelosfan.timedstrategy.gameStates.IngamePlanning

        } else if (Main.map >= 6) {
            rendermanager.drawIndependent(Main.textureRegionObjectMap.get("end"), 0, 0, 1, 0.8f, 0);
        } else {
            Main.game = new Game(Main.map);
            Main.game.changeToPlanningPhase();
            Main.gameStateManager.setCurrentGameState(new IngamePlanning(Main.gameStateManager, true));
        }
    }
View Full Code Here

Examples of de.zelosfan.timedstrategy.gameStates.IngamePlanning

        }

        if (Main.map >= 0) {
            Main.game = new Game(Main.map);
            Main.game.changeToPlanningPhase();
            Main.gameStateManager.setCurrentGameState(new IngamePlanning(Main.gameStateManager, true));
        } else {
            Main.map++;
        }
        return false;
    }
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.