Search in sources :

Example 1 with LazyOptional

use of net.minecraftforge.common.util.LazyOptional in project Overloaded by CJ-MC-Mods.

the class MultiArmorGuiScreen method init.

@Override
protected void init() {
    super.init();
    LazyOptional<IGenericDataStorage> opData = getHelmetDataStorage(Minecraft.getInstance().player);
    if (!opData.isPresent()) {
        this.minecraft.setScreen(null);
        this.minecraft.player.displayClientMessage(new StringTextComponent("Multi-Helmet not equipped."), true);
        return;
    }
    IGenericDataStorage data = opData.orElseThrow(() -> new RuntimeException("Impossible Condition"));
    Map<String, Float> floats = data.getFloatMap();
    Map<String, Boolean> booleans = data.getBooleanMap();
    addButton(new Button(this.width / 2, this.height / 4 + 100, 150, 20, new StringTextComponent("Save"), b -> {
        MultiArmorSettingsMessage message = new MultiArmorSettingsMessage((float) flightSpeed.getEffectiveValue(), (float) groundSpeed.getEffectiveValue(), noClipFlightLock.getBooleanState(), this.flightEnabled.getBooleanState(), this.feedEnabled.getBooleanState(), this.healEnabled.getBooleanState(), this.removeHarmfulEnabled.getBooleanState(), this.giveAirEnabled.getBooleanState(), this.extinguishEnabled.getBooleanState());
        Overloaded.proxy.networkWrapper.sendToServer(message);
        this.minecraft.setScreen(null);
    }));
    addButton(new Button(this.width / 2 - 150, this.height / 4 + 100, 150, 20, new StringTextComponent("Cancel"), b -> this.minecraft.setScreen(null)));
    float flightSpeedValue = floats.getOrDefault(DataKeys.FLIGHT_SPEED, Default.FLIGHT_SPEED);
    this.flightSpeed = addButton(new GenericSlider(this.width / 2 - 150, this.height / 4, 0, (float) OverloadedConfig.INSTANCE.multiArmorConfig.maxFlightSpeed, flightSpeedValue, "Flight Speed:"));
    this.flightSpeedTextBox = addButton(new GuiPositiveFloatTextField(this.font, this.flightSpeed.x, this.flightSpeed.y, this.flightSpeed.getWidth(), this.flightSpeed.getHeight(), flightSpeedValue, 0, (float) OverloadedConfig.INSTANCE.multiArmorConfig.maxFlightSpeed));
    this.flightSpeedTextBox.setVisible(false);
    this.flightEnabled = addButton(new ToggleButton(this.width / 2 - 150, this.height / 4 + 20, booleans.getOrDefault(DataKeys.FLIGHT, Default.FLIGHT), "Flight:"));
    float groundSpeedValue = floats.getOrDefault(DataKeys.GROUND_SPEED, Default.GROUND_SPEED);
    this.groundSpeed = addButton(new GenericSlider(this.width / 2, this.height / 4, 0, (float) OverloadedConfig.INSTANCE.multiArmorConfig.maxGroundSpeed, groundSpeedValue, "Ground Speed:"));
    this.groundSpeedTextBox = addButton(new GuiPositiveFloatTextField(this.font, this.groundSpeed.x, this.groundSpeed.y, this.groundSpeed.getWidth(), this.groundSpeed.getHeight(), groundSpeedValue, 0, (float) OverloadedConfig.INSTANCE.multiArmorConfig.maxGroundSpeed));
    this.groundSpeedTextBox.setVisible(false);
    this.feedEnabled = addButton(new ToggleButton(this.width / 2, this.height / 4 + 20, booleans.getOrDefault(DataKeys.FEED, Default.FEED), "Feeder:"));
    this.healEnabled = addButton(new ToggleButton(this.width / 2 - 150, this.height / 4 + 40, booleans.getOrDefault(DataKeys.HEAL, Default.HEAL), "Healer:"));
    this.removeHarmfulEnabled = addButton(new ToggleButton(this.width / 2, this.height / 4 + 40, booleans.getOrDefault(DataKeys.REMOVE_HARMFUL, Default.REMOVE_HARMFUL), "Remove Harmful Potions:"));
    this.giveAirEnabled = addButton(new ToggleButton(this.width / 2 - 150, this.height / 4 + 60, booleans.getOrDefault(DataKeys.GIVE_AIR, Default.GIVE_AIR), "Airer:"));
    this.extinguishEnabled = addButton(new ToggleButton(this.width / 2, this.height / 4 + 60, booleans.getOrDefault(DataKeys.EXTINGUISH, Default.EXTINGUISH), "Extinguisher:"));
    this.noClipFlightLock = addButton(new ToggleButton(this.width / 2 - 75, this.height / 4 + 80, booleans.getOrDefault(DataKeys.NOCLIP_FLIGHT_LOCK, Default.NOCLIP_FLIGHT_LOCK), "No Clip Flight Lock:"));
}
Also used : Default(com.cjm721.overloaded.item.functional.armor.MultiArmorConstants.Default) OverloadedConfig(com.cjm721.overloaded.config.OverloadedConfig) OnlyIn(net.minecraftforge.api.distmarker.OnlyIn) DataKeys(com.cjm721.overloaded.item.functional.armor.MultiArmorConstants.DataKeys) PlayerEntity(net.minecraft.entity.player.PlayerEntity) Overloaded(com.cjm721.overloaded.Overloaded) MultiArmorSettingsMessage(com.cjm721.overloaded.network.packets.MultiArmorSettingsMessage) GenericSlider(com.cjm721.overloaded.client.gui.button.GenericSlider) ToggleButton(com.cjm721.overloaded.client.gui.button.ToggleButton) GENERIC_DATA_STORAGE(com.cjm721.overloaded.capabilities.CapabilityGenericDataStorage.GENERIC_DATA_STORAGE) Dist(net.minecraftforge.api.distmarker.Dist) LazyOptional(net.minecraftforge.common.util.LazyOptional) GuiPositiveFloatTextField(com.cjm721.overloaded.client.gui.button.GuiPositiveFloatTextField) ItemStack(net.minecraft.item.ItemStack) ItemMultiHelmet(com.cjm721.overloaded.item.functional.armor.ItemMultiHelmet) Screen(net.minecraft.client.gui.screen.Screen) Minecraft(net.minecraft.client.Minecraft) IGenericDataStorage(com.cjm721.overloaded.storage.IGenericDataStorage) Button(net.minecraft.client.gui.widget.button.Button) Map(java.util.Map) StringTextComponent(net.minecraft.util.text.StringTextComponent) Nonnull(javax.annotation.Nonnull) MatrixStack(com.mojang.blaze3d.matrix.MatrixStack) Nullable(javax.annotation.Nullable) ToggleButton(com.cjm721.overloaded.client.gui.button.ToggleButton) GuiPositiveFloatTextField(com.cjm721.overloaded.client.gui.button.GuiPositiveFloatTextField) IGenericDataStorage(com.cjm721.overloaded.storage.IGenericDataStorage) ToggleButton(com.cjm721.overloaded.client.gui.button.ToggleButton) Button(net.minecraft.client.gui.widget.button.Button) GenericSlider(com.cjm721.overloaded.client.gui.button.GenericSlider) StringTextComponent(net.minecraft.util.text.StringTextComponent) MultiArmorSettingsMessage(com.cjm721.overloaded.network.packets.MultiArmorSettingsMessage)

Example 2 with LazyOptional

use of net.minecraftforge.common.util.LazyOptional in project MinecraftForge by MinecraftForge.

the class SidedInvWrapper method create.

@SuppressWarnings("unchecked")
public static LazyOptional<IItemHandlerModifiable>[] create(WorldlyContainer inv, Direction... sides) {
    LazyOptional<IItemHandlerModifiable>[] ret = new LazyOptional[sides.length];
    for (int x = 0; x < sides.length; x++) {
        final Direction side = sides[x];
        ret[x] = LazyOptional.of(() -> new SidedInvWrapper(inv, side));
    }
    return ret;
}
Also used : LazyOptional(net.minecraftforge.common.util.LazyOptional) Direction(net.minecraft.core.Direction)

Aggregations

LazyOptional (net.minecraftforge.common.util.LazyOptional)2 Overloaded (com.cjm721.overloaded.Overloaded)1 GENERIC_DATA_STORAGE (com.cjm721.overloaded.capabilities.CapabilityGenericDataStorage.GENERIC_DATA_STORAGE)1 GenericSlider (com.cjm721.overloaded.client.gui.button.GenericSlider)1 GuiPositiveFloatTextField (com.cjm721.overloaded.client.gui.button.GuiPositiveFloatTextField)1 ToggleButton (com.cjm721.overloaded.client.gui.button.ToggleButton)1 OverloadedConfig (com.cjm721.overloaded.config.OverloadedConfig)1 ItemMultiHelmet (com.cjm721.overloaded.item.functional.armor.ItemMultiHelmet)1 DataKeys (com.cjm721.overloaded.item.functional.armor.MultiArmorConstants.DataKeys)1 Default (com.cjm721.overloaded.item.functional.armor.MultiArmorConstants.Default)1 MultiArmorSettingsMessage (com.cjm721.overloaded.network.packets.MultiArmorSettingsMessage)1 IGenericDataStorage (com.cjm721.overloaded.storage.IGenericDataStorage)1 MatrixStack (com.mojang.blaze3d.matrix.MatrixStack)1 Map (java.util.Map)1 Nonnull (javax.annotation.Nonnull)1 Nullable (javax.annotation.Nullable)1 Minecraft (net.minecraft.client.Minecraft)1 Screen (net.minecraft.client.gui.screen.Screen)1 Button (net.minecraft.client.gui.widget.button.Button)1 Direction (net.minecraft.core.Direction)1