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
|
package at.hannibal2.skyhanni.test
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.events.GuiKeyPressEvent
import at.hannibal2.skyhanni.test.command.CopyItemCommand.copyItemToClipboard
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.KSerializable
import at.hannibal2.skyhanni.utils.KeyboardManager.isKeyHeld
import at.hannibal2.skyhanni.utils.KotlinTypeAdapterFactory
import at.hannibal2.skyhanni.utils.OSUtils
import at.hannibal2.skyhanni.utils.json.ItemStackTypeAdapterFactory
import at.hannibal2.skyhanni.utils.json.NBTTypeAdapter
import at.hannibal2.skyhanni.utils.json.fromJson
import com.google.gson.GsonBuilder
import com.google.gson.JsonElement
import net.minecraft.item.ItemStack
import net.minecraft.nbt.NBTTagCompound
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.io.InputStreamReader
import java.io.Reader
object TestExportTools {
private val config get() = SkyHanniMod.feature.dev.debug
val gson = GsonBuilder()
.registerTypeAdapterFactory(KotlinTypeAdapterFactory())
.registerTypeAdapter(NBTTagCompound::class.java, NBTTypeAdapter)
.registerTypeAdapterFactory(ItemStackTypeAdapterFactory)
.create()
class Key<T> internal constructor(val name: String)
val Item = Key<ItemStack>("Item")
@KSerializable
data class TestValue(
val type: String,
val data: JsonElement,
)
private fun <T> toJson(key: Key<T>, value: T): String {
return gson.toJson(TestValue(key.name, gson.toJsonTree(value)))
}
inline fun <reified T> fromJson(key: Key<T>, reader: Reader): T {
val serializable = gson.fromJson<TestValue>(reader)
require(key.name == serializable.type)
return gson.fromJson(serializable.data)
}
@SubscribeEvent
fun onKeybind(event: GuiKeyPressEvent) {
if (!config.copyItemDataCompressed.isKeyHeld() && !config.copyItemData.isKeyHeld()) return
val stack = event.guiContainer.slotUnderMouse?.stack ?: return
if (config.copyItemData.isKeyHeld()) {
copyItemToClipboard(stack)
return
}
val json = toJson(Item, stack)
OSUtils.copyToClipboard(json)
ChatUtils.chat("Compressed item info copied into the clipboard!")
}
inline fun <reified T> getTestData(category: Key<T>, name: String): T {
val reader = InputStreamReader(javaClass.getResourceAsStream("/testdata/${category.name}/$name.json")!!)
return fromJson(category, reader)
}
@SubscribeEvent
fun onConfigFix(event: ConfigUpdaterMigrator.ConfigFixEvent) {
event.move(3, "dev.copyNBTDataCompressed", "dev.debug.copyNBTDataCompressed")
event.move(4, "dev.debug.copyNBTData", "dev.debug.copyItemData")
event.move(4, "dev.debug.copyNBTDataCompressed", "dev.debug.copyItemDataCompressed")
}
}
|