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
|
package moe.nea.firmament.features.mining
import me.shedaniel.math.Rectangle
import kotlinx.serialization.Serializable
import kotlin.time.Duration.Companion.seconds
import net.minecraft.block.Blocks
import net.minecraft.client.gui.DrawContext
import net.minecraft.client.gui.screen.ingame.HandledScreen
import net.minecraft.entity.player.PlayerInventory
import net.minecraft.item.Items
import net.minecraft.screen.GenericContainerScreenHandler
import net.minecraft.screen.slot.Slot
import net.minecraft.text.Text
import moe.nea.firmament.Firmament
import moe.nea.firmament.annotations.Subscribe
import moe.nea.firmament.commands.thenExecute
import moe.nea.firmament.events.ChestInventoryUpdateEvent
import moe.nea.firmament.events.CommandEvent
import moe.nea.firmament.events.ScreenChangeEvent
import moe.nea.firmament.events.SlotRenderEvents
import moe.nea.firmament.gui.config.ManagedConfig
import moe.nea.firmament.mixins.accessor.AccessorHandledScreen
import moe.nea.firmament.util.ClipboardUtils
import moe.nea.firmament.util.MC
import moe.nea.firmament.util.TemplateUtil
import moe.nea.firmament.util.TimeMark
import moe.nea.firmament.util.customgui.CustomGui
import moe.nea.firmament.util.customgui.customGui
import moe.nea.firmament.util.mc.CommonTextures
import moe.nea.firmament.util.mc.SlotUtils.clickRightMouseButton
import moe.nea.firmament.util.mc.displayNameAccordingToNbt
import moe.nea.firmament.util.render.drawGuiTexture
import moe.nea.firmament.util.unformattedString
import moe.nea.firmament.util.useMatch
object HotmPresets {
val SHARE_PREFIX = "FIRMHOTM/"
@Serializable
data class HotmPreset(
val perks: List<PerkPreset>,
)
@Serializable
data class PerkPreset(val perkName: String)
var hotmCommandSent = TimeMark.farPast()
val hotmInventoryName = "Heart of the Mountain"
@Subscribe
fun onScreenOpen(event: ScreenChangeEvent) {
val title = event.new?.title?.unformattedString
if (title != hotmInventoryName) return
val screen = event.new as? HandledScreen<*> ?: return
val oldHandler = (event.old as? HandledScreen<*>)?.customGui
if (oldHandler is HotmScrollPrompt) {
event.new.customGui = oldHandler
oldHandler.setNewScreen(screen)
return
}
if (hotmCommandSent.passedTime() > 5.seconds) return
hotmCommandSent = TimeMark.farPast()
screen.customGui = HotmScrollPrompt(screen)
}
class HotmScrollPrompt(var screen: HandledScreen<*>) : CustomGui() {
var bounds = Rectangle(
0, 0, 0, 0
)
fun setNewScreen(screen: HandledScreen<*>) {
this.screen = screen
onInit()
hasScrolled = false
}
override fun render(drawContext: DrawContext, delta: Float, mouseX: Int, mouseY: Int) {
drawContext.drawGuiTexture(
CommonTextures.genericWidget(),
bounds.x, bounds.y,
bounds.width,
bounds.height,
)
drawContext.drawCenteredTextWithShadow(
MC.font,
if (hasAll) {
Text.translatable("firmament.hotmpreset.copied")
} else if (!hasScrolled) {
Text.translatable("firmament.hotmpreset.scrollprompt")
} else {
Text.translatable("firmament.hotmpreset.scrolled")
},
bounds.centerX,
bounds.centerY - 5,
-1
)
}
var hasScrolled = false
var hasAll = false
override fun mouseClick(mouseX: Double, mouseY: Double, button: Int): Boolean {
if (!hasScrolled) {
val slot = screen.screenHandler.getSlot(8)
println("Clicking ${slot.stack}")
slot.clickRightMouseButton(screen.screenHandler)
}
hasScrolled = true
return super.mouseClick(mouseX, mouseY, button)
}
override fun shouldDrawForeground(): Boolean {
return false
}
override fun getBounds(): List<Rectangle> {
return listOf(bounds)
}
override fun onInit() {
bounds = Rectangle(
screen.width / 2 - 150,
screen.height / 2 - 100,
300, 200
)
val screen = screen as AccessorHandledScreen
screen.x_Firmament = bounds.x
screen.y_Firmament = bounds.y
screen.backgroundWidth_Firmament = bounds.width
screen.backgroundHeight_Firmament = bounds.height
}
override fun moveSlot(slot: Slot) {
slot.x = -10000
}
val coveredRows = mutableSetOf<Int>()
val unlockedPerks = mutableSetOf<String>()
val allRows = (1..10).toSet()
fun onNewItems(event: ChestInventoryUpdateEvent) {
val handler = screen.screenHandler as? GenericContainerScreenHandler ?: return
for (it in handler.slots) {
if (it.inventory is PlayerInventory) continue
val stack = it.stack
val name = stack.displayNameAccordingToNbt.unformattedString
tierRegex.useMatch(name) {
coveredRows.add(group("tier").toInt())
}
if (stack.item == Items.DIAMOND
|| stack.item == Items.EMERALD
|| stack.item == Blocks.EMERALD_BLOCK.asItem()
) {
unlockedPerks.add(name)
}
}
if (allRows == coveredRows) {
ClipboardUtils.setTextContent(TemplateUtil.encodeTemplate(SHARE_PREFIX, HotmPreset(
unlockedPerks.map { PerkPreset(it) }
)))
hasAll = true
}
}
}
val tierRegex = "Tier (?<tier>[0-9]+)".toPattern()
var highlightedPerks: Set<String> = emptySet()
@Subscribe
fun onSlotUpdates(event: ChestInventoryUpdateEvent) {
val customGui = (event.inventory as? HandledScreen<*>)?.customGui
if (customGui is HotmScrollPrompt) {
customGui.onNewItems(event)
}
}
@Subscribe
fun resetOnScreen(event: ScreenChangeEvent) {
if (event.new != null && event.new.title.unformattedString != hotmInventoryName) {
highlightedPerks = emptySet()
}
}
@Subscribe
fun onSlotRender(event: SlotRenderEvents.Before) {
if (hotmInventoryName == MC.screenName
&& event.slot.stack.displayNameAccordingToNbt.unformattedString in highlightedPerks
) {
event.highlight((Firmament.identifier("hotm_perk_preset")))
}
}
@Subscribe
fun onCommand(event: CommandEvent.SubCommand) {
event.subcommand("exporthotm") {
thenExecute {
hotmCommandSent = TimeMark.now()
MC.sendCommand("hotm")
source.sendFeedback(Text.translatable("firmament.hotmpreset.openinghotm"))
}
}
event.subcommand("importhotm") {
thenExecute {
val template =
TemplateUtil.maybeDecodeTemplate<HotmPreset>(SHARE_PREFIX, ClipboardUtils.getTextContents())
if (template == null) {
source.sendFeedback(Text.translatable("firmament.hotmpreset.failedimport"))
} else {
highlightedPerks = template.perks.mapTo(mutableSetOf()) { it.perkName }
source.sendFeedback(Text.translatable("firmament.hotmpreset.okayimport"))
MC.sendCommand("hotm")
}
}
}
}
}
|