Search in sources :

Example 1 with Touchable

use of io.anuke.ucore.scene.event.Touchable in project Mindustry by Anuken.

the class HudFragment method build.

public void build() {
    // menu at top left
    new table() {

        {
            atop();
            aleft();
            new table() {

                {
                    new table() {

                        {
                            left();
                            float dsize = 58;
                            defaults().size(dsize).left();
                            float isize = 40;
                            menu = new imagebutton("icon-menu", isize, ui.paused::show).get();
                            flip = new imagebutton("icon-arrow-up", isize, () -> {
                                if (wavetable.getActions().size != 0)
                                    return;
                                float dur = 0.3f;
                                Interpolation in = Interpolation.pow3Out;
                                flip.getStyle().imageUp = Core.skin.getDrawable(shown ? "icon-arrow-down" : "icon-arrow-up");
                                if (shown) {
                                    blockfrag.toggle(false, dur, in);
                                    wavetable.actions(Actions.translateBy(0, wavetable.getHeight() + dsize, dur, in), Actions.call(() -> shown = false));
                                    infolabel.actions(Actions.translateBy(0, wavetable.getHeight(), dur, in), Actions.call(() -> shown = false));
                                } else {
                                    shown = true;
                                    blockfrag.toggle(true, dur, in);
                                    wavetable.actions(Actions.translateBy(0, -wavetable.getTranslation().y, dur, in));
                                    infolabel.actions(Actions.translateBy(0, -infolabel.getTranslation().y, dur, in));
                                }
                            }).get();
                            new imagebutton("icon-pause", isize, () -> {
                                if (android)
                                    DebugFragment.printDebugInfo();
                                if (Net.active() && android) {
                                    ui.listfrag.visible = !ui.listfrag.visible;
                                } else {
                                    state.set(state.is(State.paused) ? State.playing : State.paused);
                                }
                            }).update(i -> {
                                if (Net.active() && android) {
                                    i.getStyle().imageUp = Core.skin.getDrawable("icon-players");
                                } else {
                                    i.setDisabled(Net.active());
                                    i.getStyle().imageUp = Core.skin.getDrawable(state.is(State.paused) ? "icon-play" : "icon-pause");
                                }
                            }).get();
                            new imagebutton("icon-settings", isize, () -> {
                                if (Net.active() && android) {
                                    if (ui.chatfrag.chatOpen()) {
                                        ui.chatfrag.hide();
                                    } else {
                                        ui.chatfrag.toggle();
                                    }
                                } else {
                                    ui.settings.show();
                                }
                            }).update(i -> {
                                if (Net.active() && android) {
                                    i.getStyle().imageUp = Core.skin.getDrawable("icon-chat");
                                } else {
                                    i.getStyle().imageUp = Core.skin.getDrawable("icon-settings");
                                }
                            }).get();
                        }
                    }.end();
                    row();
                    new table() {

                        {
                            touchable(Touchable.enabled);
                            visible(() -> shown);
                            addWaveTable();
                        }
                    }.fillX().end();
                    row();
                    visible(() -> !state.is(State.menu));
                    infolabel = new Label(() -> (Settings.getBool("fps") ? (Gdx.graphics.getFramesPerSecond() + " FPS") + (threads.isEnabled() ? " / " + threads.getFPS() + " TPS" : "") + (Net.client() && !gwt ? "\nPing: " + Net.getPing() : "") : ""));
                    row();
                    add(infolabel).size(-1);
                }
            }.end();
        }
    }.end();
    // tutorial ui table
    new table() {

        {
            control.tutorial().buildUI(this);
            visible(() -> control.tutorial().active());
        }
    }.end();
    // paused table
    new table() {

        {
            visible(() -> state.is(State.paused) && !Net.active());
            atop();
            new table("pane") {

                {
                    new label("[orange]< " + Bundles.get("text.paused") + " >").scale(0.75f).pad(6);
                }
            }.end();
        }
    }.end();
    // respawn background table
    new table("white") {

        {
            respawntable = get();
            respawntable.setColor(Color.CLEAR);
            update(t -> {
                if (state.is(State.menu)) {
                    respawntable.setColor(Color.CLEAR);
                }
            });
        }
    }.end();
    // respawn table
    new table() {

        {
            new table("pane") {

                {
                    new label(() -> "[orange]" + Bundles.get("text.respawn") + " " + (int) (control.getRespawnTime() / 60)).scale(0.75f).pad(10);
                    visible(() -> control.getRespawnTime() > 0 && !state.is(State.menu));
                }
            }.end();
        }
    }.end();
    new table() {

        {
            abottom();
            visible(() -> !state.is(State.menu) && control.getSaves().isSaving());
            new label("$text.saveload");
        }
    }.end();
    blockfrag.build();
}
Also used : io.anuke.ucore.scene.builders.table(io.anuke.ucore.scene.builders.table) Core(io.anuke.ucore.core.Core) Bundles(io.anuke.ucore.util.Bundles) Settings(io.anuke.ucore.core.Settings) io.anuke.ucore.scene.builders.imagebutton(io.anuke.ucore.scene.builders.imagebutton) Gdx(com.badlogic.gdx.Gdx) Net(io.anuke.mindustry.net.Net) Color(com.badlogic.gdx.graphics.Color) io.anuke.ucore.scene.builders.label(io.anuke.ucore.scene.builders.label) Label(io.anuke.ucore.scene.ui.Label) ImageButton(io.anuke.ucore.scene.ui.ImageButton) Table(io.anuke.ucore.scene.ui.layout.Table) Actions(io.anuke.ucore.scene.actions.Actions) Interpolation(com.badlogic.gdx.math.Interpolation) Vars(io.anuke.mindustry.Vars) State(io.anuke.mindustry.core.GameState.State) Touchable(io.anuke.ucore.scene.event.Touchable) Interpolation(com.badlogic.gdx.math.Interpolation) Label(io.anuke.ucore.scene.ui.Label) io.anuke.ucore.scene.builders.label(io.anuke.ucore.scene.builders.label) io.anuke.ucore.scene.builders.imagebutton(io.anuke.ucore.scene.builders.imagebutton) io.anuke.ucore.scene.builders.table(io.anuke.ucore.scene.builders.table)

Example 2 with Touchable

use of io.anuke.ucore.scene.event.Touchable in project Mindustry by Anuken.

the class PlacementFragment method build.

public void build() {
    if (!android)
        return;
    InputHandler input = control.input();
    float s = 50f;
    float translation = Unit.dp.scl(58f);
    new table() {

        {
            visible(() -> !state.is(State.menu));
            abottom();
            aleft();
            ButtonGroup<ImageButton> placeGroup = new ButtonGroup<>();
            ButtonGroup<ImageButton> breakGroup = new ButtonGroup<>();
            update(t -> {
                if ((input.recipe == null) == placing) {
                    float i = 0.1f;
                    Interpolation n = Interpolation.pow3Out;
                    if (input.recipe == null) {
                        placing = false;
                        container.clearActions();
                        container.actions(Actions.translateBy(0, -(container.getTranslation().y + translation), i, n));
                        if (!input.lastBreakMode.both)
                            input.placeMode = input.lastBreakMode;
                    } else {
                        placing = true;
                        container.clearActions();
                        container.actions(Actions.translateBy(0, -(container.getTranslation().y), i, n));
                        input.placeMode = input.lastPlaceMode;
                    }
                }
                if (!input.placeMode.delete) {
                    placeGroup.setMinCheckCount(1);
                    for (ImageButton button : placeGroup.getButtons()) {
                        if (button.getName().equals(input.placeMode.name())) {
                            button.setChecked(true);
                            break;
                        }
                    }
                } else {
                    placeGroup.setMinCheckCount(0);
                    for (ImageButton button : placeGroup.getButtons()) button.setChecked(false);
                }
                if (input.placeMode.delete || input.breakMode.both) {
                    PlaceMode mode = input.breakMode;
                    breakGroup.setMinCheckCount(1);
                    for (ImageButton button : breakGroup.getButtons()) {
                        if (button.getName().equals(mode.name())) {
                            button.setChecked(true);
                            break;
                        }
                    }
                } else {
                    breakGroup.setMinCheckCount(0);
                    for (ImageButton button : breakGroup.getButtons()) button.setChecked(false);
                }
            });
            container = new table() {

                {
                    modelabel = new label("").get();
                    row();
                    // break menu
                    new table() {

                        {
                            abottom();
                            aleft();
                            height(s + 5 + 4);
                            next = new table("pane") {

                                {
                                    margin(5f);
                                    defaults().padBottom(-5.5f);
                                    new imagebutton("icon-arrow-right", 10 * 3, () -> {
                                        toggle(!shown);
                                    }).update(l -> l.getStyle().imageUp = Core.skin.getDrawable(shown ? "icon-arrow-left" : "icon-" + input.breakMode.name())).size(s, s + 4);
                                }
                            }.end().get();
                            breaktable = new table("pane") {

                                {
                                    visible(() -> shown);
                                    margin(5f);
                                    marginLeft(-(Unit.dp.scl(1f) - 1f) * 2.5f);
                                    touchable(Touchable.enabled);
                                    aleft();
                                    defaults().size(s, s + 4);
                                    for (PlaceMode mode : PlaceMode.values()) {
                                        if (!mode.shown || !mode.delete)
                                            continue;
                                        defaults().padBottom(-5.5f);
                                        ImageButton button = new imagebutton("icon-" + mode.name(), "toggle", 10 * 3, () -> {
                                            control.input().resetCursor();
                                            input.breakMode = mode;
                                            input.lastBreakMode = mode;
                                            if (!mode.both) {
                                                input.placeMode = mode;
                                            } else {
                                                input.placeMode = input.lastPlaceMode;
                                            }
                                            modeText(Bundles.format("text.mode.break", mode.toString()));
                                        }).group(breakGroup).get();
                                        button.setName(mode.name());
                                        button.released(() -> {
                                            // TODO hack
                                            if (mode == PlaceMode.areaDelete) {
                                                ((AndroidInput) input).placing = false;
                                            }
                                        });
                                    }
                                }
                            }.end().get();
                            breaktable.getParent().swapActor(breaktable, next);
                            breaktable.getTranslation().set(-breaktable.getPrefWidth(), 0);
                        }
                    }.end().get();
                    row();
                    // place menu
                    new table() {

                        {
                            touchable(Touchable.enabled);
                            aleft();
                            new table("pane") {

                                {
                                    margin(5f);
                                    aleft();
                                    defaults().size(s, s + 4).padBottom(-5.5f);
                                    Color color = Color.GRAY;
                                    new imagebutton("icon-cancel", 14 * 3, () -> {
                                        input.recipe = null;
                                    }).imageColor(color).visible(() -> input.recipe != null);
                                    for (PlaceMode mode : PlaceMode.values()) {
                                        if (!mode.shown || mode.delete)
                                            continue;
                                        new imagebutton("icon-" + mode.name(), "toggle", 10 * 3, () -> {
                                            control.input().resetCursor();
                                            input.placeMode = mode;
                                            input.lastPlaceMode = mode;
                                            modeText(Bundles.format("text.mode.place", mode.toString()));
                                        }).group(placeGroup).get().setName(mode.name());
                                    }
                                    new imagebutton("icon-arrow", 14 * 3, () -> {
                                        input.rotation = Mathf.mod(input.rotation + 1, 4);
                                    }).imageColor(color).visible(() -> input.recipe != null).update(image -> {
                                        image.getImage().setRotation(input.rotation * 90);
                                        image.getImage().setOrigin(Align.center);
                                    });
                                }
                            }.left().end();
                        }
                    }.left().end();
                }
            }.end().get();
            container.setTranslation(0, -translation);
        }
    }.end();
}
Also used : io.anuke.ucore.scene.builders.table(io.anuke.ucore.scene.builders.table) Core(io.anuke.ucore.core.Core) Bundles(io.anuke.ucore.util.Bundles) AndroidInput(io.anuke.mindustry.input.AndroidInput) io.anuke.ucore.scene.builders.imagebutton(io.anuke.ucore.scene.builders.imagebutton) Align(com.badlogic.gdx.utils.Align) Color(com.badlogic.gdx.graphics.Color) InputHandler(io.anuke.mindustry.input.InputHandler) io.anuke.ucore.scene.builders.label(io.anuke.ucore.scene.builders.label) Label(io.anuke.ucore.scene.ui.Label) PlaceMode(io.anuke.mindustry.input.PlaceMode) ButtonGroup(io.anuke.ucore.scene.ui.ButtonGroup) ImageButton(io.anuke.ucore.scene.ui.ImageButton) Table(io.anuke.ucore.scene.ui.layout.Table) Actions(io.anuke.ucore.scene.actions.Actions) Interpolation(com.badlogic.gdx.math.Interpolation) Unit(io.anuke.ucore.scene.ui.layout.Unit) Mathf(io.anuke.ucore.util.Mathf) Vars(io.anuke.mindustry.Vars) State(io.anuke.mindustry.core.GameState.State) Touchable(io.anuke.ucore.scene.event.Touchable) InputHandler(io.anuke.mindustry.input.InputHandler) Color(com.badlogic.gdx.graphics.Color) PlaceMode(io.anuke.mindustry.input.PlaceMode) io.anuke.ucore.scene.builders.label(io.anuke.ucore.scene.builders.label) AndroidInput(io.anuke.mindustry.input.AndroidInput) Interpolation(com.badlogic.gdx.math.Interpolation) ImageButton(io.anuke.ucore.scene.ui.ImageButton) ButtonGroup(io.anuke.ucore.scene.ui.ButtonGroup) io.anuke.ucore.scene.builders.imagebutton(io.anuke.ucore.scene.builders.imagebutton) io.anuke.ucore.scene.builders.table(io.anuke.ucore.scene.builders.table)

Aggregations

Color (com.badlogic.gdx.graphics.Color)2 Interpolation (com.badlogic.gdx.math.Interpolation)2 Vars (io.anuke.mindustry.Vars)2 State (io.anuke.mindustry.core.GameState.State)2 Core (io.anuke.ucore.core.Core)2 Actions (io.anuke.ucore.scene.actions.Actions)2 io.anuke.ucore.scene.builders.imagebutton (io.anuke.ucore.scene.builders.imagebutton)2 io.anuke.ucore.scene.builders.label (io.anuke.ucore.scene.builders.label)2 io.anuke.ucore.scene.builders.table (io.anuke.ucore.scene.builders.table)2 Touchable (io.anuke.ucore.scene.event.Touchable)2 ImageButton (io.anuke.ucore.scene.ui.ImageButton)2 Label (io.anuke.ucore.scene.ui.Label)2 Table (io.anuke.ucore.scene.ui.layout.Table)2 Bundles (io.anuke.ucore.util.Bundles)2 Gdx (com.badlogic.gdx.Gdx)1 Align (com.badlogic.gdx.utils.Align)1 AndroidInput (io.anuke.mindustry.input.AndroidInput)1 InputHandler (io.anuke.mindustry.input.InputHandler)1 PlaceMode (io.anuke.mindustry.input.PlaceMode)1 Net (io.anuke.mindustry.net.Net)1