Search in sources :

Example 6 with Button

use of com.ldtteam.blockout.controls.Button in project Structurize by ldtteam.

the class WindowMultiBlock method rightClick.

@Override
public boolean rightClick(final double mx, final double my) {
    Pane pane = this.findPaneForClick(mx, my);
    if (pane instanceof View) {
        pane = ((View) pane).findPaneForClick(mx, my);
    }
    if (pane instanceof Button && pane.isEnabled()) {
        final Direction newFacing;
        switch(pane.getID()) {
            case BUTTON_UP:
                newFacing = UP;
                break;
            case BUTTON_DOWN:
                newFacing = DOWN;
                break;
            case BUTTON_FORWARD:
                newFacing = NORTH;
                break;
            case BUTTON_BACKWARD:
                newFacing = SOUTH;
                break;
            case BUTTON_RIGHT:
                newFacing = EAST;
                break;
            case BUTTON_LEFT:
                newFacing = WEST;
                break;
            default:
                newFacing = UP;
                break;
        }
        enable(output, newFacing, true);
        return true;
    }
    return false;
}
Also used : Button(com.ldtteam.blockout.controls.Button) Pane(com.ldtteam.blockout.Pane) View(com.ldtteam.blockout.views.View) Direction(net.minecraft.util.Direction)

Example 7 with Button

use of com.ldtteam.blockout.controls.Button in project Structurize by ldtteam.

the class DropDownList method updateDropDownItem.

/**
 * Update an pane item in the list.
 *
 * @param rowPane which need the update
 * @param index   of the item
 * @param label   use for this item
 */
private void updateDropDownItem(@NotNull final Pane rowPane, final int index, final IFormattableTextComponent label) {
    final Button choiceButton = rowPane.findPaneOfTypeByID("button", Button.class);
    if (choiceButton != null) {
        choiceButton.setText(label);
        choiceButton.setHandler(this);
    }
}
Also used : Button(com.ldtteam.blockout.controls.Button)

Example 8 with Button

use of com.ldtteam.blockout.controls.Button in project minecolonies by ldtteam.

the class WindowHireWorker method onOpened.

/**
 * Called when the GUI has been opened. Will fill the fields and lists.
 */
@Override
public void onOpened() {
    updateCitizens();
    findPaneOfTypeByID(AUTO_HIRE_WARN, Text.class).off();
    citizenList.setDataProvider(new ScrollingList.DataProvider() {

        @Override
        public int getElementCount() {
            return citizens.size();
        }

        @Override
        public void updateElement(final int index, @NotNull final Pane rowPane) {
            @NotNull final ICitizenDataView citizen = citizens.get(index);
            final Button isPaused = rowPane.findPaneOfTypeByID(BUTTON_PAUSE, Button.class);
            if (selectedModule.canAssign(citizen) && !selectedModule.isFull() && !selectedModule.getAssignedCitizens().contains(citizen.getId())) {
                rowPane.findPaneOfTypeByID(BUTTON_FIRE, Button.class).off();
                rowPane.findPaneOfTypeByID(BUTTON_DONE, Button.class).on();
                isPaused.off();
                rowPane.findPaneOfTypeByID(BUTTON_RESTART, Button.class).off();
            } else if ((selectedModule.isFull()) && !selectedModule.getAssignedCitizens().contains(citizen.getId())) {
                rowPane.findPaneOfTypeByID(BUTTON_FIRE, Button.class).off();
                rowPane.findPaneOfTypeByID(BUTTON_DONE, Button.class).off();
                isPaused.off();
                rowPane.findPaneOfTypeByID(BUTTON_RESTART, Button.class).off();
            } else {
                rowPane.findPaneOfTypeByID(BUTTON_DONE, Button.class).off();
                rowPane.findPaneOfTypeByID(BUTTON_FIRE, Button.class).on();
                if ((!selectedModule.getColony().isManualHiring() && selectedModule.getHiringMode() == HiringMode.DEFAULT) || (selectedModule.getHiringMode() == HiringMode.AUTO)) {
                    rowPane.findPaneOfTypeByID(BUTTON_FIRE, Button.class).disable();
                    findPaneOfTypeByID(AUTO_HIRE_WARN, Text.class).on();
                }
                isPaused.on();
                isPaused.setText(LanguageHandler.format(citizen.isPaused() ? COM_MINECOLONIES_COREMOD_GUI_HIRE_UNPAUSE : COM_MINECOLONIES_COREMOD_GUI_HIRE_PAUSE));
            }
            if (citizen.isPaused()) {
                rowPane.findPaneOfTypeByID(BUTTON_RESTART, Button.class).on();
            } else {
                rowPane.findPaneOfTypeByID(BUTTON_RESTART, Button.class).off();
            }
            final StringTextComponent intermString = new StringTextComponent(" ");
            final TextBuilder textBuilder = PaneBuilders.textBuilder();
            textBuilder.append(new StringTextComponent(""));
            int skillCount = citizen.getCitizenSkillHandler().getSkills().entrySet().size();
            final Skill primary = selectedModule instanceof WorkerBuildingModuleView ? ((WorkerBuildingModuleView) selectedModule).getPrimarySkill() : null;
            final Skill secondary = selectedModule instanceof WorkerBuildingModuleView ? ((WorkerBuildingModuleView) selectedModule).getSecondarySkill() : null;
            for (final Map.Entry<Skill, Tuple<Integer, Double>> entry : citizen.getCitizenSkillHandler().getSkills().entrySet()) {
                final String skillName = entry.getKey().name().toLowerCase(Locale.US);
                final int skillLevel = entry.getValue().getA();
                final Style skillStyle = createColor(primary, secondary, entry.getKey());
                textBuilder.append(new TranslationTextComponent("com.minecolonies.coremod.gui.citizen.skills." + skillName).setStyle(skillStyle));
                textBuilder.append(new StringTextComponent(": " + skillLevel).setStyle(skillStyle));
                if (--skillCount > 0) {
                    textBuilder.append(intermString);
                }
            }
            // finish the current line
            textBuilder.newLine();
            rowPane.findPaneOfTypeByID(CITIZEN_LABEL, Text.class).setText((citizen.getJob().isEmpty() ? "" : LanguageHandler.format(citizen.getJob()) + ": ") + citizen.getName());
            rowPane.findPaneOfTypeByID(ATTRIBUTES_LABEL, Text.class).setText(textBuilder.getText());
            final JobEntry entry = selectedModule.getJobEntry();
            PaneBuilders.tooltipBuilder().hoverPane(rowPane.findPaneOfTypeByID(ATTRIBUTES_LABEL, Text.class)).build().setText(new TranslationTextComponent(entry.getKey().toString() + ".skills.desc"));
        }
    });
    jobList.setDataProvider(new ScrollingList.DataProvider() {

        @Override
        public int getElementCount() {
            return moduleViews.size();
        }

        @Override
        public void updateElement(final int index, @NotNull final Pane rowPane) {
            final JobEntry entry = moduleViews.get(index).getJobEntry();
            final Button button = rowPane.findPaneOfTypeByID(BUTTON_JOB, Button.class);
            button.setText(new TranslationTextComponent(entry.getTranslationKey()));
            if (entry.equals(selectedModule.getJobEntry())) {
                button.disable();
            } else {
                button.enable();
            }
            PaneBuilders.tooltipBuilder().hoverPane(button).build().setText(new TranslationTextComponent(entry.getKey().toString() + ".job.desc"));
        }
    });
}
Also used : Text(com.ldtteam.blockout.controls.Text) WorkerBuildingModuleView(com.minecolonies.coremod.colony.buildings.moduleviews.WorkerBuildingModuleView) Pane(com.ldtteam.blockout.Pane) JobEntry(com.minecolonies.api.colony.jobs.registry.JobEntry) Skill(com.minecolonies.api.entity.citizen.Skill) JobEntry(com.minecolonies.api.colony.jobs.registry.JobEntry) TextBuilder(com.ldtteam.blockout.controls.AbstractTextBuilder.TextBuilder) Button(com.ldtteam.blockout.controls.Button) Style(net.minecraft.util.text.Style) TranslationTextComponent(net.minecraft.util.text.TranslationTextComponent) StringTextComponent(net.minecraft.util.text.StringTextComponent) ICitizenDataView(com.minecolonies.api.colony.ICitizenDataView) ScrollingList(com.ldtteam.blockout.views.ScrollingList)

Example 9 with Button

use of com.ldtteam.blockout.controls.Button in project minecolonies by ldtteam.

the class WindowPermissionsPage method onOpened.

/**
 * Executed when <code>WindowTownHall</code> is opened. Does tasks like setting buttons.
 */
@Override
public void onOpened() {
    super.onOpened();
    fillUserList();
    fillFreeBlockList();
    fillRanks();
    fillPermissionList();
    PlayerEntity player = Minecraft.getInstance().player;
    Text label = findPaneOfTypeByID(TOWNHALL_PERMISSION_ERROR, Text.class);
    Button button = findPaneOfTypeByID(BUTTON_ADD_PLAYER, Button.class);
    if (building.getColony().getPermissions().hasPermission(player, Action.EDIT_PERMISSIONS)) {
        label.hide();
        button.setEnabled(true);
    } else {
        label.show();
        button.setEnabled(false);
    }
}
Also used : Button(com.ldtteam.blockout.controls.Button) Text(com.ldtteam.blockout.controls.Text) PlayerEntity(net.minecraft.entity.player.PlayerEntity)

Example 10 with Button

use of com.ldtteam.blockout.controls.Button in project minecolonies by ldtteam.

the class WindowPermissionsPage method onRankButtonClicked.

/**
 * Change to currently selected rank to the one belonging to the clicked button
 *
 * @param button the clicked button
 */
private void onRankButtonClicked(@NotNull final Button button) {
    final int rankId = rankButtonList.getListElementIndexByPane(button);
    final Rank rank = allRankList.get(rankId);
    if (rank != null) {
        actionsRank = rank;
        button.setEnabled(false);
        findPaneOfTypeByID(BUTTON_REMOVE_RANK, Button.class).setEnabled(!actionsRank.isInitial());
        findPaneOfTypeByID(TOWNHALL_PERM_MANAGEMENT, SwitchView.class).setView(TOWNHALL_PERM_LIST);
    }
}
Also used : Button(com.ldtteam.blockout.controls.Button) SwitchView(com.ldtteam.blockout.views.SwitchView) Rank(com.minecolonies.api.colony.permissions.Rank)

Aggregations

Button (com.ldtteam.blockout.controls.Button)19 Text (com.ldtteam.blockout.controls.Text)9 TranslationTextComponent (net.minecraft.util.text.TranslationTextComponent)9 Pane (com.ldtteam.blockout.Pane)6 ScrollingList (com.ldtteam.blockout.views.ScrollingList)5 ICitizenDataView (com.minecolonies.api.colony.ICitizenDataView)5 ItemIcon (com.ldtteam.blockout.controls.ItemIcon)4 SwitchView (com.ldtteam.blockout.views.SwitchView)4 BuildingBuilderResource (com.minecolonies.coremod.colony.buildings.utils.BuildingBuilderResource)4 ItemStack (net.minecraft.item.ItemStack)4 StringTextComponent (net.minecraft.util.text.StringTextComponent)4 TextBuilder (com.ldtteam.blockout.controls.AbstractTextBuilder.TextBuilder)2 DropDownList (com.ldtteam.blockout.views.DropDownList)2 IBuildingView (com.minecolonies.api.colony.buildings.views.IBuildingView)2 JobEntry (com.minecolonies.api.colony.jobs.registry.JobEntry)2 Rank (com.minecolonies.api.colony.permissions.Rank)2 Skill (com.minecolonies.api.entity.citizen.Skill)2 AbstractBuildingGuards (com.minecolonies.coremod.colony.buildings.AbstractBuildingGuards)2 SettingsModuleView (com.minecolonies.coremod.colony.buildings.moduleviews.SettingsModuleView)2 WorkerBuildingModuleView (com.minecolonies.coremod.colony.buildings.moduleviews.WorkerBuildingModuleView)2