Search in sources :

Example 6 with Interpolation

use of com.badlogic.gdx.math.Interpolation 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

Interpolation (com.badlogic.gdx.math.Interpolation)6 Color (com.badlogic.gdx.graphics.Color)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 InputAdapter (com.badlogic.gdx.InputAdapter)1 InputMultiplexer (com.badlogic.gdx.InputMultiplexer)1 ShapeRenderer (com.badlogic.gdx.graphics.glutils.ShapeRenderer)1 Actor (com.badlogic.gdx.scenes.scene2d.Actor)1 Stage (com.badlogic.gdx.scenes.scene2d.Stage)1