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
|
package at.hannibal2.skyhanni.features.misc
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.LorenzTickEvent
import at.hannibal2.skyhanni.events.RepositoryReloadEvent
import at.hannibal2.skyhanni.test.command.CopyErrorCommand
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.makeAccessible
import at.hannibal2.skyhanni.utils.RenderUtils.renderStringsAndItems
import at.hannibal2.skyhanni.utils.jsonobjects.ModsJson
import at.hannibal2.skyhanni.utils.renderables.Renderable
import net.minecraft.client.Minecraft
import net.minecraft.client.renderer.GlStateManager
import net.minecraftforge.client.ClientCommandHandler
import net.minecraftforge.client.event.GuiScreenEvent
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
object QuickModMenuSwitch {
private val config get() = SkyHanniMod.feature.misc.quickModMenuSwitch
private var display = emptyList<List<Any>>()
private var latestGuiPath = ""
private var mods: List<Mod>? = null
private var currentlyOpeningMod = ""
private var lastGuiOpen = 0L
@SubscribeEvent
fun onRepoReload(event: RepositoryReloadEvent) {
val modsJar = event.getConstant<ModsJson>("ModGuiSwitcher") ?: return
mods = buildList {
out@ for ((name, mod) in modsJar.mods) {
for (path in mod.guiPath) {
try {
Class.forName(path)
add(Mod(name, mod.description, mod.command, mod.guiPath))
continue@out
} catch (_: Exception) {
}
}
}
}
}
@SubscribeEvent
fun onTick(event: LorenzTickEvent) {
if (!isEnabled()) return
if (event.isMod(5)) {
update()
}
}
class Mod(val name: String, val description: List<String>, val command: String, val guiPath: List<String>) {
fun isInGui() = guiPath.any { latestGuiPath.startsWith(it) }
}
private fun update() {
var openGui = Minecraft.getMinecraft().currentScreen?.javaClass?.name ?: "none"
openGui = handleAbstractGuis(openGui)
if (latestGuiPath != openGui) {
latestGuiPath = openGui
if (SkyHanniMod.feature.dev.modMenuLog) {
LorenzUtils.debug("Open GUI: $latestGuiPath")
}
}
val mods = mods ?: return
display = if (!shouldShow(mods)) {
emptyList()
} else {
renderDisplay(mods)
}
}
private fun shouldShow(mods: List<Mod>): Boolean {
if (config.insideEscapeMenu && isEscapeMenu(latestGuiPath)) return true
if (config.insidePlayerInventory && latestGuiPath == "net.minecraft.client.gui.inventory.GuiInventory") return true
return mods.any { it.isInGui() }
}
private fun isEscapeMenu(path: String) = when (path) {
"net.minecraft.client.gui.GuiIngameMenu" -> true
"me.powns.togglesneak.gui.screens.GuiOptionsReplace" -> true
else -> false
}
private fun handleAbstractGuis(openGui: String): String {
if (openGui == "gg.essential.vigilance.gui.SettingsGui") {
val clazz = Class.forName("gg.essential.vigilance.gui.SettingsGui")
val titleBarDelegate = clazz.getDeclaredField("titleBar\$delegate").makeAccessible()
.get(Minecraft.getMinecraft().currentScreen)
val titleBar =
titleBarDelegate.javaClass.declaredFields[0].makeAccessible().get(titleBarDelegate)
val gui = titleBar.javaClass.getDeclaredField("gui").makeAccessible().get(titleBar)
val config = gui.javaClass.getDeclaredField("config").makeAccessible().get(gui)
return config.javaClass.name
}
if (openGui == "cc.polyfrost.oneconfig.gui.OneConfigGui") {
/** TODO support different oneconfig mods:
* Partly Sane Skies
* Dankers SkyBlock Mod
* Dulkir
*/
}
return openGui
}
private fun renderDisplay(mods: List<Mod>) = buildList {
for (mod in mods) {
val currentlyOpen = mod.isInGui()
val nameFormat = if (currentlyOpen) "§c" else ""
var opening = mod.name == currentlyOpeningMod
if (currentlyOpen && opening) {
currentlyOpeningMod = ""
opening = false
}
val nameSuffix = if (opening) " §7(opening...)" else ""
val renderable = Renderable.link(
Renderable.string(nameFormat + mod.name),
bypassChecks = true,
onClick = { open(mod) },
condition = { System.currentTimeMillis() > lastGuiOpen + 250 }
)
add(listOf(renderable, nameSuffix))
}
}
private fun open(mod: Mod) {
lastGuiOpen = System.currentTimeMillis()
currentlyOpeningMod = mod.name
update()
try {
when (mod.command) {
"patcher" -> {
println("try opening patcher")
// GuiUtil.open(Objects.requireNonNull(Patcher.instance.getPatcherConfig().gui()))
val patcher = Class.forName("club.sk1er.patcher.Patcher")
val instance = patcher.getDeclaredField("instance").get(null)
val config = instance.javaClass.getDeclaredMethod("getPatcherConfig").invoke(instance)
val gui = Class.forName("gg.essential.vigilance.Vigilant").getDeclaredMethod("gui").invoke(config)
val guiUtils = Class.forName("gg.essential.api.utils.GuiUtil")
for (method in guiUtils.declaredMethods) {
try {
method.invoke(null, gui)
println("opened patcher")
return
} catch (_: Exception) {
}
}
LorenzUtils.chat("§c[SkyHanni] Error trying to open the gui for mod " + mod.name + "!")
}
"hytil" -> {
println("try opening hytil")
// HytilsReborn.INSTANCE.getConfig().openGui()
val hytilsReborn = Class.forName("cc.woverflow.hytils.HytilsReborn")
val instance = hytilsReborn.getDeclaredField("INSTANCE").get(null)
val config = instance.javaClass.getDeclaredMethod("getConfig").invoke(instance)
val gui = Class.forName("gg.essential.vigilance.Vigilant").getDeclaredMethod("gui").invoke(config)
val guiUtils = Class.forName("gg.essential.api.utils.GuiUtil")
for (method in guiUtils.declaredMethods) {
try {
method.invoke(null, gui)
println("opened hytil")
return
} catch (_: Exception) {
}
}
LorenzUtils.chat("§c[SkyHanni] Error trying to open the gui for mod " + mod.name + "!")
}
else -> {
val thePlayer = Minecraft.getMinecraft().thePlayer
ClientCommandHandler.instance.executeCommand(thePlayer, "/${mod.command}")
}
}
} catch (e: Exception) {
CopyErrorCommand.logError(e, "Error trying to open the gui for mod " + mod.name)
}
}
@SubscribeEvent
fun onRenderOverlay(event: GuiScreenEvent.DrawScreenEvent.Post) {
if (!isEnabled()) return
GlStateManager.pushMatrix()
config.pos.renderStringsAndItems(display, posLabel = "Quick Mod Menu Switch")
GlStateManager.popMatrix()
}
fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled
}
|