blob: 7351a4a0edd89f7e058e780fdbc9b03d6b3fdbef (
plain)
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
|
/*
* Copyright (C) 2022 Linnea Gräf
*
* This file is part of NotEnoughUpdates.
*
* NotEnoughUpdates is free software: you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* NotEnoughUpdates is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>.
*/
package io.github.moulberry.notenoughupdates.miscfeatures
import com.google.gson.JsonElement
import io.github.moulberry.notenoughupdates.NotEnoughUpdates
import io.github.moulberry.notenoughupdates.autosubscribe.NEUAutoSubscribe
import io.github.moulberry.notenoughupdates.events.RepositoryReloadEvent
import io.github.moulberry.notenoughupdates.util.NotificationHandler
import io.github.moulberry.notenoughupdates.util.Shimmy
import io.github.moulberry.notenoughupdates.util.Utils
import io.github.moulberry.notenoughupdates.util.kotlin.fromJson
import net.minecraft.client.Minecraft
import net.minecraftforge.client.event.GuiOpenEvent
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import net.minecraftforge.fml.common.gameevent.TickEvent
@NEUAutoSubscribe
object EnforcedConfigValues {
class EnforcedValue {
// lateinit var because we use gson (instead of kotlinx.serialization which can handle data classes)
lateinit var path: String
lateinit var value: JsonElement
}
class EnforcedValueData {
var enforcedValues: List<EnforcedValue> = listOf()
var notificationPSA: List<String>? = null
var chatPSA: List<String>? = null
lateinit var affectedVersions: List<Int>
}
var enforcedValues: List<EnforcedValueData> = listOf()
@SubscribeEvent
fun onRepoReload(event: RepositoryReloadEvent) {
val fixedValues = event.repositoryRoot.resolve("enforced_values")
enforcedValues = if (fixedValues.exists()) {
fixedValues.listFiles()
.filter {
it != null && it.isFile && it.canRead()
}
.map {
NotEnoughUpdates.INSTANCE.manager.gson.fromJson<EnforcedValueData>(it.readText())
}.filter {
NotEnoughUpdates.VERSION_ID in it.affectedVersions
}
} else {
listOf()
}
if (!event.isFirstLoad)
sendPSAs()
}
@SubscribeEvent
fun onGuiClose(event: GuiOpenEvent) {
enforceOntoConfig(NotEnoughUpdates.INSTANCE.config ?: return)
}
var hasSentPSAsOnce = false
@SubscribeEvent
fun onTick(tickEvent: TickEvent.ClientTickEvent) {
if (hasSentPSAsOnce || Minecraft.getMinecraft().thePlayer == null || !NotEnoughUpdates.INSTANCE.isOnSkyblock) return
hasSentPSAsOnce = true
sendPSAs()
enforceOntoConfig(NotEnoughUpdates.INSTANCE.config ?: return)
}
fun sendPSAs() {
val notification = enforcedValues.flatMap { it.notificationPSA ?: emptyList() }
if (notification.isNotEmpty()) {
NotificationHandler.displayNotification(notification, true)
}
val chat = enforcedValues.flatMap { it.chatPSA ?: emptyList() }
if (chat.isNotEmpty()) {
for (line in chat) {
Utils.addChatMessage(line)
}
}
}
fun enforceOntoConfig(config: Any) {
for (enforcedValue in enforcedValues.flatMap { it.enforcedValues }) {
val shimmy = Shimmy.makeShimmy(config, enforcedValue.path.split("."))
if (shimmy == null) {
println("Could not create shimmy for path ${enforcedValue.path}")
continue
}
val currentValue = shimmy.getJson()
if (currentValue != enforcedValue.value) {
println("Resetting ${enforcedValue.path} to ${enforcedValue.value} from $currentValue")
shimmy.setJson(enforcedValue.value)
}
}
}
fun isBlockedFromEditing(optionPath: String): Boolean {
return enforcedValues.flatMap { it.enforcedValues }.any { it.path == optionPath }
}
}
|