|
44 | 44 |
|
45 | 45 | @EventBusSubscriber(Dist.CLIENT)
|
46 | 46 | public class EventHandler {
|
47 |
| - private final static Minecraft MINECRAFT = Minecraft.getInstance(); |
48 |
| - private final static Field WORLD_SEED = ObfuscationReflectionHelper.findField(CreateWorldScreen.class, |
49 |
| - "field_146329_I"); // worldSeed |
50 |
| - private final static WorldSettings WORLD_SETTINGS = new WorldSettings(0, GameType.CREATIVE, false, false, |
51 |
| - WorldType.FLAT) |
52 |
| - .enableCommands() |
53 |
| - .setGeneratorOptions(FlatGenerationSettings |
54 |
| - .createFlatGeneratorFromString( |
55 |
| - "minecraft:bedrock,3*minecraft:stone,52*minecraft:sandstone;minecraft:desert") |
56 |
| - .func_210834_a(JsonOps.INSTANCE).getValue()); |
| 47 | + private final static Minecraft MINECRAFT = Minecraft.getInstance(); |
| 48 | + private final static Field WORLD_SEED = ObfuscationReflectionHelper.findField(CreateWorldScreen.class, |
| 49 | + "field_146329_I"); // worldSeed |
| 50 | + private final static WorldSettings WORLD_SETTINGS = new WorldSettings(0, GameType.CREATIVE, false, false, |
| 51 | + WorldType.FLAT) |
| 52 | + .enableCommands() |
| 53 | + .setGeneratorOptions(FlatGenerationSettings |
| 54 | + .createFlatGeneratorFromString( |
| 55 | + "minecraft:bedrock,3*minecraft:stone,52*minecraft:sandstone;minecraft:desert") |
| 56 | + .func_210834_a(JsonOps.INSTANCE).getValue()); |
57 | 57 |
|
58 |
| - private static void alert(String line1, String line2, String line3, String button, Consumer<OS> consumer) { |
59 |
| - MINECRAFT |
60 |
| - .displayGuiScreen(new AlertScreen(() -> consumer.accept(Util.getOSType()), |
61 |
| - new StringTextComponent(line1).setStyle(new Style().setColor(TextFormatting.RED)), |
62 |
| - new StringTextComponent(line2 + "\n\n").appendSibling( |
63 |
| - new StringTextComponent(line3).setStyle(new Style().setColor(TextFormatting.AQUA))), |
64 |
| - button)); |
65 |
| - } |
| 58 | + private static void alert(String line1, String line2, String line3, String button, Consumer<OS> consumer) { |
| 59 | + MINECRAFT |
| 60 | + .displayGuiScreen(new AlertScreen(() -> consumer.accept(Util.getOSType()), |
| 61 | + new StringTextComponent(line1).setStyle(new Style().setColor(TextFormatting.RED)), |
| 62 | + new StringTextComponent(line2 + "\n\n").appendSibling( |
| 63 | + new StringTextComponent(line3).setStyle(new Style().setColor(TextFormatting.AQUA))), |
| 64 | + button)); |
| 65 | + } |
66 | 66 |
|
67 |
| - @SubscribeEvent |
68 |
| - public static void onHighlightBlock(HighlightBlock event) { |
69 |
| - TileEntity te = MINECRAFT.world.getTileEntity(event.getTarget().getPos()); |
70 |
| - MINECRAFT.ingameGUI.setOverlayMessage( |
71 |
| - te != null && te.getType() == Circuitry.NODE.get() ? ((NodeTileEntity) te).getTag() : "", false); |
72 |
| - } |
| 67 | + @SubscribeEvent |
| 68 | + public static void onHighlightBlock(HighlightBlock event) { |
| 69 | + TileEntity te = MINECRAFT.world.getTileEntity(event.getTarget().getPos()); |
| 70 | + MINECRAFT.ingameGUI.setOverlayMessage( |
| 71 | + te != null && te.getType() == Circuitry.NODE.get() ? ((NodeTileEntity) te).getTag() : "", false); |
| 72 | + } |
73 | 73 |
|
74 |
| - @SubscribeEvent |
75 |
| - public static void onPostInitGui(InitGuiEvent.Post event) throws IllegalAccessException { |
76 |
| - Screen screen = event.getGui(); |
77 |
| - if (screen instanceof CreateWorldScreen && WORLD_SEED.get(screen).equals("")) |
78 |
| - ((CreateWorldScreen) screen) |
79 |
| - .recreateFromExistingWorld(new WorldInfo(WORLD_SETTINGS, I18n.format("selectWorld.newWorld"))); |
80 |
| - else if (event.getGui() instanceof MainMenuScreen) { |
81 |
| - ModList list = ModList.get(); |
| 74 | + @SubscribeEvent |
| 75 | + public static void onPostInitGui(InitGuiEvent.Post event) throws IllegalAccessException { |
| 76 | + Screen screen = event.getGui(); |
| 77 | + if (screen instanceof CreateWorldScreen && WORLD_SEED.get(screen).equals("")) |
| 78 | + ((CreateWorldScreen) screen) |
| 79 | + .recreateFromExistingWorld(new WorldInfo(WORLD_SETTINGS, I18n.format("selectWorld.newWorld"))); |
| 80 | + else if (event.getGui() instanceof MainMenuScreen) { |
| 81 | + ModList list = ModList.get(); |
82 | 82 |
|
83 |
| - Set<String> allowed = ImmutableSet.of(Circuitry.MODID, ForgeVersion.MOD_ID, "minecraft"); |
84 |
| - Object[] mods = list.applyForEachModContainer(ModContainer::getModInfo).parallel() |
85 |
| - .filter(info -> !allowed.contains(info.getModId())).map(IModInfo::getDisplayName).toArray(); |
86 |
| - if (mods.length != 0) |
87 |
| - alert("Illegal mods are installed.", "You must delete the following mods before proceeding:", |
88 |
| - Arrays.toString(mods), "fml.button.open.mods.folder", |
89 |
| - os -> os.openFile(FMLPaths.MODSDIR.get().toFile())); |
| 83 | + Set<String> allowed = ImmutableSet.of(Circuitry.MODID, ForgeVersion.MOD_ID, "minecraft"); |
| 84 | + Object[] mods = list.applyForEachModContainer(ModContainer::getModInfo).parallel() |
| 85 | + .filter(info -> !allowed.contains(info.getModId())).map(IModInfo::getDisplayName).toArray(); |
| 86 | + if (mods.length != 0) |
| 87 | + alert("Illegal mods are installed.", "You must delete the following mods before proceeding:", |
| 88 | + Arrays.toString(mods), "fml.button.open.mods.folder", |
| 89 | + os -> os.openFile(FMLPaths.MODSDIR.get().toFile())); |
90 | 90 |
|
91 |
| - IModInfo info = list.getModContainerById(Circuitry.MODID).get().getModInfo(); |
92 |
| - CheckResult result = VersionChecker.getResult(info); |
93 |
| - if (result.status == Status.OUTDATED) |
94 |
| - alert(info.getDisplayName() + " is out of date.", |
95 |
| - "You must update to version " + result.target |
96 |
| - + " before proceeding.\nOpen Link will bring you to the below page:", |
97 |
| - result.url, "Open Link", os -> os.openURI(result.url)); |
| 91 | + IModInfo info = list.getModContainerById(Circuitry.MODID).get().getModInfo(); |
| 92 | + if (!info.getVersion().getQualifier().equals("NONE")) { |
| 93 | + CheckResult result = VersionChecker.getResult(info); |
| 94 | + if (result.status == Status.OUTDATED) |
| 95 | + alert(info.getDisplayName() + " is out of date.", |
| 96 | + "You must update to version " + result.target |
| 97 | + + " before proceeding.\nOpen Link will bring you to the below page:", |
| 98 | + result.url, "Open Link", os -> os.openURI(result.url)); |
| 99 | + } |
| 100 | + } |
98 | 101 | }
|
99 |
| - } |
100 | 102 | }
|
0 commit comments