Spaces:
Build error
Build error
File size: 13,777 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
package com.mojang.realmsclient.gui.screens;
import com.google.common.collect.ImmutableList;
import com.mojang.realmsclient.dto.RealmsServer;
import com.mojang.realmsclient.dto.RealmsWorldOptions;
import java.util.List;
import java.util.function.Consumer;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.components.AbstractSliderButton;
import net.minecraft.client.gui.components.Button;
import net.minecraft.client.gui.components.CycleButton;
import net.minecraft.client.gui.components.EditBox;
import net.minecraft.client.gui.components.PopupScreen;
import net.minecraft.network.chat.CommonComponents;
import net.minecraft.network.chat.Component;
import net.minecraft.realms.RealmsLabel;
import net.minecraft.realms.RealmsScreen;
import net.minecraft.util.Mth;
import net.minecraft.world.Difficulty;
import net.minecraft.world.level.GameType;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class RealmsSlotOptionsScreen extends RealmsScreen {
private static final int DEFAULT_DIFFICULTY = 2;
public static final List<Difficulty> DIFFICULTIES = ImmutableList.of(Difficulty.PEACEFUL, Difficulty.EASY, Difficulty.NORMAL, Difficulty.HARD);
private static final int DEFAULT_GAME_MODE = 0;
public static final List<GameType> GAME_MODES = ImmutableList.of(GameType.SURVIVAL, GameType.CREATIVE, GameType.ADVENTURE);
private static final Component NAME_LABEL = Component.translatable("mco.configure.world.edit.slot.name");
static final Component SPAWN_PROTECTION_TEXT = Component.translatable("mco.configure.world.spawnProtection");
private EditBox nameEdit;
protected final RealmsConfigureWorldScreen parentScreen;
private int column1X;
private int columnWidth;
private final RealmsWorldOptions options;
private final RealmsServer.WorldType worldType;
private Difficulty difficulty;
private GameType gameMode;
private final String defaultSlotName;
private String worldName;
private boolean pvp;
private boolean spawnMonsters;
int spawnProtection;
private boolean commandBlocks;
private boolean forceGameMode;
RealmsSlotOptionsScreen.SettingsSlider spawnProtectionButton;
public RealmsSlotOptionsScreen(RealmsConfigureWorldScreen p_89886_, RealmsWorldOptions p_89887_, RealmsServer.WorldType p_89888_, int p_89889_) {
super(Component.translatable("mco.configure.world.buttons.options"));
this.parentScreen = p_89886_;
this.options = p_89887_;
this.worldType = p_89888_;
this.difficulty = findByIndex(DIFFICULTIES, p_89887_.difficulty, 2);
this.gameMode = findByIndex(GAME_MODES, p_89887_.gameMode, 0);
this.defaultSlotName = p_89887_.getDefaultSlotName(p_89889_);
this.setWorldName(p_89887_.getSlotName(p_89889_));
if (p_89888_ == RealmsServer.WorldType.NORMAL) {
this.pvp = p_89887_.pvp;
this.spawnProtection = p_89887_.spawnProtection;
this.forceGameMode = p_89887_.forceGameMode;
this.spawnMonsters = p_89887_.spawnMonsters;
this.commandBlocks = p_89887_.commandBlocks;
} else {
this.pvp = true;
this.spawnProtection = 0;
this.forceGameMode = false;
this.spawnMonsters = true;
this.commandBlocks = true;
}
}
@Override
public void onClose() {
this.minecraft.setScreen(this.parentScreen);
}
private static <T> T findByIndex(List<T> p_167525_, int p_167526_, int p_167527_) {
try {
return p_167525_.get(p_167526_);
} catch (IndexOutOfBoundsException indexoutofboundsexception) {
return p_167525_.get(p_167527_);
}
}
private static <T> int findIndex(List<T> p_167529_, T p_167530_, int p_167531_) {
int i = p_167529_.indexOf(p_167530_);
return i == -1 ? p_167531_ : i;
}
@Override
public void init() {
this.columnWidth = 170;
this.column1X = this.width / 2 - this.columnWidth;
int i = this.width / 2 + 10;
if (this.worldType != RealmsServer.WorldType.NORMAL) {
Component component;
if (this.worldType == RealmsServer.WorldType.ADVENTUREMAP) {
component = Component.translatable("mco.configure.world.edit.subscreen.adventuremap");
} else if (this.worldType == RealmsServer.WorldType.INSPIRATION) {
component = Component.translatable("mco.configure.world.edit.subscreen.inspiration");
} else {
component = Component.translatable("mco.configure.world.edit.subscreen.experience");
}
this.addLabel(new RealmsLabel(component, this.width / 2, 26, 16711680));
}
this.nameEdit = this.addWidget(
new EditBox(this.minecraft.font, this.column1X, row(1), this.columnWidth, 20, null, Component.translatable("mco.configure.world.edit.slot.name"))
);
this.nameEdit.setMaxLength(10);
this.nameEdit.setValue(this.worldName);
this.nameEdit.setResponder(this::setWorldName);
CycleButton<Boolean> cyclebutton3 = this.addRenderableWidget(
CycleButton.onOffBuilder(this.pvp)
.create(
i, row(1), this.columnWidth, 20, Component.translatable("mco.configure.world.pvp"), (p_167546_, p_167547_) -> this.pvp = p_167547_
)
);
this.addRenderableWidget(
CycleButton.builder(GameType::getShortDisplayName)
.withValues(GAME_MODES)
.withInitialValue(this.gameMode)
.create(
this.column1X,
row(3),
this.columnWidth,
20,
Component.translatable("selectWorld.gameMode"),
(p_167515_, p_167516_) -> this.gameMode = p_167516_
)
);
this.spawnProtectionButton = this.addRenderableWidget(new RealmsSlotOptionsScreen.SettingsSlider(i, row(3), this.columnWidth, this.spawnProtection, 0.0F, 16.0F));
Component component1 = Component.translatable("mco.configure.world.spawn_toggle.message");
CycleButton<Boolean> cyclebutton = CycleButton.onOffBuilder(this.difficulty != Difficulty.PEACEFUL && this.spawnMonsters)
.create(
i,
row(5),
this.columnWidth,
20,
Component.translatable("mco.configure.world.spawnMonsters"),
this.confirmDangerousOption(component1, p_231327_ -> this.spawnMonsters = p_231327_)
);
this.addRenderableWidget(
CycleButton.builder(Difficulty::getDisplayName)
.withValues(DIFFICULTIES)
.withInitialValue(this.difficulty)
.create(this.column1X, row(5), this.columnWidth, 20, Component.translatable("options.difficulty"), (p_167519_, p_167520_) -> {
this.difficulty = p_167520_;
if (this.worldType == RealmsServer.WorldType.NORMAL) {
boolean flag = this.difficulty != Difficulty.PEACEFUL;
cyclebutton.active = flag;
cyclebutton.setValue(flag && this.spawnMonsters);
}
})
);
this.addRenderableWidget(cyclebutton);
CycleButton<Boolean> cyclebutton1 = this.addRenderableWidget(
CycleButton.onOffBuilder(this.forceGameMode)
.create(
this.column1X,
row(7),
this.columnWidth,
20,
Component.translatable("mco.configure.world.forceGameMode"),
(p_167534_, p_167535_) -> this.forceGameMode = p_167535_
)
);
CycleButton<Boolean> cyclebutton2 = this.addRenderableWidget(
CycleButton.onOffBuilder(this.commandBlocks)
.create(
i,
row(7),
this.columnWidth,
20,
Component.translatable("mco.configure.world.commandBlocks"),
(p_167522_, p_167523_) -> this.commandBlocks = p_167523_
)
);
if (this.worldType != RealmsServer.WorldType.NORMAL) {
cyclebutton3.active = false;
cyclebutton.active = false;
this.spawnProtectionButton.active = false;
cyclebutton2.active = false;
cyclebutton1.active = false;
}
if (this.difficulty == Difficulty.PEACEFUL) {
cyclebutton.active = false;
}
this.addRenderableWidget(
Button.builder(Component.translatable("mco.configure.world.buttons.done"), p_89910_ -> this.saveSettings())
.bounds(this.column1X, row(13), this.columnWidth, 20)
.build()
);
this.addRenderableWidget(Button.builder(CommonComponents.GUI_CANCEL, p_340725_ -> this.onClose()).bounds(i, row(13), this.columnWidth, 20).build());
}
private CycleButton.OnValueChange<Boolean> confirmDangerousOption(Component p_231324_, Consumer<Boolean> p_231325_) {
return (p_340728_, p_340729_) -> {
if (p_340729_) {
p_231325_.accept(true);
} else {
this.minecraft.setScreen(RealmsPopups.warningPopupScreen(this, p_231324_, p_340724_ -> {
p_231325_.accept(false);
p_340724_.onClose();
}));
}
};
}
@Override
public Component getNarrationMessage() {
return CommonComponents.joinForNarration(this.getTitle(), this.createLabelNarration());
}
@Override
public void render(GuiGraphics p_283210_, int p_283172_, int p_281531_, float p_283191_) {
super.render(p_283210_, p_283172_, p_281531_, p_283191_);
p_283210_.drawCenteredString(this.font, this.title, this.width / 2, 17, -1);
p_283210_.drawString(this.font, NAME_LABEL, this.column1X + this.columnWidth / 2 - this.font.width(NAME_LABEL) / 2, row(0) - 5, -1);
this.nameEdit.render(p_283210_, p_283172_, p_281531_, p_283191_);
}
private void setWorldName(String p_231314_) {
if (p_231314_.equals(this.defaultSlotName)) {
this.worldName = "";
} else {
this.worldName = p_231314_;
}
}
private void saveSettings() {
int i = findIndex(DIFFICULTIES, this.difficulty, 2);
int j = findIndex(GAME_MODES, this.gameMode, 0);
if (this.worldType != RealmsServer.WorldType.ADVENTUREMAP
&& this.worldType != RealmsServer.WorldType.EXPERIENCE
&& this.worldType != RealmsServer.WorldType.INSPIRATION) {
boolean flag = this.worldType == RealmsServer.WorldType.NORMAL && this.difficulty != Difficulty.PEACEFUL && this.spawnMonsters;
this.parentScreen
.saveSlotSettings(
new RealmsWorldOptions(
this.pvp,
flag,
this.spawnProtection,
this.commandBlocks,
i,
j,
this.options.hardcore,
this.forceGameMode,
this.worldName,
this.options.version,
this.options.compatibility
)
);
} else {
this.parentScreen
.saveSlotSettings(
new RealmsWorldOptions(
this.options.pvp,
this.options.spawnMonsters,
this.options.spawnProtection,
this.options.commandBlocks,
i,
j,
this.options.hardcore,
this.options.forceGameMode,
this.worldName,
this.options.version,
this.options.compatibility
)
);
}
}
@OnlyIn(Dist.CLIENT)
class SettingsSlider extends AbstractSliderButton {
private final double minValue;
private final double maxValue;
public SettingsSlider(final int p_89946_, final int p_89947_, final int p_89948_, final int p_89949_, final float p_89950_, final float p_89951_) {
super(p_89946_, p_89947_, p_89948_, 20, CommonComponents.EMPTY, 0.0);
this.minValue = (double)p_89950_;
this.maxValue = (double)p_89951_;
this.value = (double)((Mth.clamp((float)p_89949_, p_89950_, p_89951_) - p_89950_) / (p_89951_ - p_89950_));
this.updateMessage();
}
@Override
public void applyValue() {
if (RealmsSlotOptionsScreen.this.spawnProtectionButton.active) {
RealmsSlotOptionsScreen.this.spawnProtection = (int)Mth.lerp(Mth.clamp(this.value, 0.0, 1.0), this.minValue, this.maxValue);
}
}
@Override
protected void updateMessage() {
this.setMessage(
CommonComponents.optionNameValue(
RealmsSlotOptionsScreen.SPAWN_PROTECTION_TEXT,
(Component)(RealmsSlotOptionsScreen.this.spawnProtection == 0
? CommonComponents.OPTION_OFF
: Component.literal(String.valueOf(RealmsSlotOptionsScreen.this.spawnProtection)))
)
);
}
}
} |