Search in sources :

Example 26 with UILabel

use of org.terasology.nui.widgets.UILabel in project Terasology by MovingBlocks.

the class NewGameScreen method initialise.

@Override
public void initialise() {
    setAnimationSystem(MenuAnimationSystems.createDefaultSwipeAnimation());
    UILabel gameTypeTitle = find("gameTypeTitle", UILabel.class);
    if (gameTypeTitle != null) {
        gameTypeTitle.bindText(new ReadOnlyBinding<String>() {

            @Override
            public String get() {
                if (isLoadingAsServer()) {
                    return translationSystem.translate("${engine:menu#select-multiplayer-game-sub-title}");
                } else {
                    return translationSystem.translate("${engine:menu#select-singleplayer-game-sub-title}");
                }
            }
        });
    }
    final UIText gameName = find("gameName", UIText.class);
    setGameName(gameName);
    final UIDropdownScrollable<Module> gameplay = find("gameplay", UIDropdownScrollable.class);
    gameplay.setOptions(getGameplayModules());
    gameplay.setVisibleOptions(5);
    gameplay.bindSelection(new Binding<Module>() {

        Module selected;

        @Override
        public Module get() {
            return selected;
        }

        @Override
        public void set(Module value) {
            setSelectedGameplayModule(value);
            selected = value;
        }
    });
    gameplay.setOptionRenderer(new StringTextRenderer<Module>() {

        @Override
        public String getString(Module value) {
            return value.getMetadata().getDisplayName().value();
        }

        @Override
        public void draw(Module value, Canvas canvas) {
            canvas.getCurrentStyle().setTextColor(validateModuleDependencies(value.getId()) ? Color.WHITE : Color.RED);
            super.draw(value, canvas);
            canvas.getCurrentStyle().setTextColor(Color.WHITE);
        }
    });
    UILabel gameplayDescription = find("gameplayDescription", UILabel.class);
    gameplayDescription.bindText(new ReadOnlyBinding<String>() {

        @Override
        public String get() {
            Module selectedModule = gameplay.getSelection();
            if (selectedModule != null) {
                return selectedModule.getMetadata().getDescription().value();
            } else {
                return "";
            }
        }
    });
    AdvancedGameSetupScreen advancedSetupGameScreen = getManager().createScreen(AdvancedGameSetupScreen.ASSET_URI, AdvancedGameSetupScreen.class);
    WidgetUtil.trySubscribe(this, "advancedSetup", button -> {
        universeWrapper.setGameName(gameName.getText());
        advancedSetupGameScreen.setUniverseWrapper(universeWrapper);
        triggerForwardAnimation(advancedSetupGameScreen);
    });
    WidgetUtil.trySubscribe(this, "play", button -> {
        if (gameName.getText().isEmpty()) {
            universeWrapper.setGameName(GameProvider.getNextGameName());
        }
        universeWrapper.setGameName(GameProvider.getNextGameName(gameName.getText()));
        if (gameplay.getOptions().isEmpty()) {
            logger.error("No gameplay modules present");
            MessagePopup errorPopup = getManager().pushScreen(MessagePopup.ASSET_URI, MessagePopup.class);
            errorPopup.setMessage("Error", "Can't create new game without modules!");
        }
        GameManifest gameManifest = GameManifestProvider.createGameManifest(universeWrapper, moduleManager, config);
        if (gameManifest != null) {
            gameEngine.changeState(new StateLoading(gameManifest, (isLoadingAsServer()) ? NetworkMode.DEDICATED_SERVER : NetworkMode.NONE));
        } else {
            MessagePopup errorPopup = getManager().createScreen(MessagePopup.ASSET_URI, MessagePopup.class);
            errorPopup.setMessage("Error", "Can't create new game!");
        }
    });
    WidgetUtil.trySubscribe(this, "close", button -> {
        if (GameProvider.isSavesFolderEmpty()) {
            // skip selectGameScreen and get back directly to main screen
            getManager().pushScreen("engine:mainMenuScreen");
        } else {
            triggerBackAnimation();
        }
    });
    WidgetUtil.trySubscribe(this, "mainMenu", button -> {
        getManager().pushScreen("engine:mainMenuScreen");
    });
}
Also used : UILabel(org.terasology.nui.widgets.UILabel) StateLoading(org.terasology.engine.core.modes.StateLoading) Canvas(org.terasology.nui.Canvas) AdvancedGameSetupScreen(org.terasology.engine.rendering.nui.layers.mainMenu.advancedGameSetupScreen.AdvancedGameSetupScreen) GameManifest(org.terasology.engine.game.GameManifest) UIText(org.terasology.nui.widgets.UIText) Module(org.terasology.gestalt.module.Module)

Example 27 with UILabel

use of org.terasology.nui.widgets.UILabel in project Terasology by MovingBlocks.

the class WorldSetupScreen method onOpened.

@Override
public void onOpened() {
    super.onOpened();
    UILabel subitle = find("subtitle", UILabel.class);
    subitle.setText(translationSystem.translate("${engine:menu#world-setup}") + " for " + world.getWorldName().toString());
    UIText customWorldName = find("customisedWorldName", UIText.class);
    setCustomWorldName(customWorldName);
}
Also used : UILabel(org.terasology.nui.widgets.UILabel) UIText(org.terasology.nui.widgets.UIText)

Aggregations

UILabel (org.terasology.nui.widgets.UILabel)27 UIButton (org.terasology.nui.widgets.UIButton)7 List (java.util.List)5 RowLayout (org.terasology.nui.layouts.RowLayout)5 Vector2i (org.joml.Vector2i)4 UICheckbox (org.terasology.nui.widgets.UICheckbox)4 UISpace (org.terasology.nui.widgets.UISpace)4 UIText (org.terasology.nui.widgets.UIText)4 Map (java.util.Map)3 Collectors (java.util.stream.Collectors)3 Logger (org.slf4j.Logger)3 LoggerFactory (org.slf4j.LoggerFactory)3 UIWidget (org.terasology.nui.UIWidget)3 ColumnLayout (org.terasology.nui.layouts.ColumnLayout)3 UISlider (org.terasology.nui.widgets.UISlider)3 Defaults (com.google.common.base.Defaults)2 JsonElement (com.google.gson.JsonElement)2 Constructor (java.lang.reflect.Constructor)2 InvocationTargetException (java.lang.reflect.InvocationTargetException)2 Parameter (java.lang.reflect.Parameter)2