Add YACL config menu
This commit is contained in:
@@ -12,39 +12,40 @@ import moe.nea.firmament.util.ScreenUtil.setScreenLater
|
||||
|
||||
object AllConfigsGui {
|
||||
|
||||
val allConfigs
|
||||
get() = listOf(
|
||||
RepoManager.Config
|
||||
) + FeatureManager.allFeatures.mapNotNull { it.config }
|
||||
val allConfigs
|
||||
get() = listOf(
|
||||
RepoManager.Config
|
||||
) + FeatureManager.allFeatures.mapNotNull { it.config }
|
||||
|
||||
fun <T> List<T>.toObservableList(): ObservableList<T> = ObservableList(this)
|
||||
fun <T> List<T>.toObservableList(): ObservableList<T> = ObservableList(this)
|
||||
|
||||
class MainMapping(val allConfigs: List<ManagedConfig>) {
|
||||
@get:Bind("configs")
|
||||
val configs = allConfigs.map { EntryMapping(it) }.toObservableList()
|
||||
class MainMapping(val allConfigs: List<ManagedConfig>) {
|
||||
@get:Bind("configs")
|
||||
val configs = allConfigs.map { EntryMapping(it) }.toObservableList()
|
||||
|
||||
class EntryMapping(val config: ManagedConfig) {
|
||||
@Bind
|
||||
fun name() = Text.translatable("firmament.config.${config.name}").string
|
||||
class EntryMapping(val config: ManagedConfig) {
|
||||
@Bind
|
||||
fun name() = Text.translatable("firmament.config.${config.name}").string
|
||||
|
||||
@Bind
|
||||
fun openEditor() {
|
||||
config.showConfigEditor(MC.screen)
|
||||
}
|
||||
}
|
||||
}
|
||||
@Bind
|
||||
fun openEditor() {
|
||||
config.showConfigEditor(MC.screen)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun makeBuiltInScreen(parent: Screen? = null): Screen {
|
||||
return MoulConfigUtils.loadScreen("config/main", MainMapping(allConfigs), parent)
|
||||
}
|
||||
fun makeBuiltInScreen(parent: Screen? = null): Screen {
|
||||
return MoulConfigUtils.loadScreen("config/main", MainMapping(allConfigs), parent)
|
||||
}
|
||||
|
||||
fun makeScreen(parent: Screen? = null): Screen {
|
||||
val provider = FirmamentConfigScreenProvider.providers.find { it.key == "builtin" }
|
||||
?: FirmamentConfigScreenProvider.providers.first()
|
||||
return provider.open(parent)
|
||||
}
|
||||
fun makeScreen(parent: Screen? = null): Screen {
|
||||
val wantedKey = if (RepoManager.Config.enableYacl) "yacl" else "builtin"
|
||||
val provider = FirmamentConfigScreenProvider.providers.find { it.key == wantedKey }
|
||||
?: FirmamentConfigScreenProvider.providers.first()
|
||||
return provider.open(parent)
|
||||
}
|
||||
|
||||
fun showAllGuis() {
|
||||
setScreenLater(makeScreen())
|
||||
}
|
||||
fun showAllGuis() {
|
||||
setScreenLater(makeScreen())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,22 +6,29 @@ import net.minecraft.client.gui.screen.Screen
|
||||
import moe.nea.firmament.Firmament
|
||||
|
||||
interface FirmamentConfigScreenProvider {
|
||||
val key: String
|
||||
val isEnabled: Boolean get() = true
|
||||
val key: String
|
||||
val isEnabled: Boolean get() = true
|
||||
|
||||
fun open(parent: Screen?): Screen
|
||||
fun open(parent: Screen?): Screen
|
||||
|
||||
companion object {
|
||||
private val loader = ServiceLoader.load(FirmamentConfigScreenProvider::class.java)
|
||||
companion object {
|
||||
private val loader = ServiceLoader.load(FirmamentConfigScreenProvider::class.java)
|
||||
|
||||
val providers by lazy {
|
||||
loader.stream().asSequence().mapNotNull { service ->
|
||||
kotlin.runCatching { service.get() }
|
||||
.getOrElse {
|
||||
Firmament.logger.warn("Could not load config provider ${service.type()}", it)
|
||||
null
|
||||
}
|
||||
}.filter { it.isEnabled }.toList()
|
||||
}
|
||||
}
|
||||
val providers by lazy {
|
||||
loader.stream().asSequence().mapNotNull { service ->
|
||||
kotlin.runCatching { service.get() }
|
||||
.getOrElse {
|
||||
Firmament.logger.warn("Could not load config provider ${service.type()}", it)
|
||||
null
|
||||
}
|
||||
}.filter { it.isEnabled }
|
||||
.sortedWith(Comparator.comparing(
|
||||
{ it.key },
|
||||
Comparator<String> { left, right ->
|
||||
if (left == "builtin") return@Comparator -1
|
||||
if (right == "builtin") return@Comparator 1
|
||||
return@Comparator left.compareTo(right)
|
||||
})).toList()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
package moe.nea.firmament.gui.config
|
||||
|
||||
import io.github.notenoughupdates.moulconfig.gui.component.TextComponent
|
||||
@@ -7,6 +5,7 @@ import kotlinx.serialization.json.Json
|
||||
import kotlinx.serialization.json.JsonElement
|
||||
import kotlinx.serialization.json.decodeFromJsonElement
|
||||
import kotlinx.serialization.json.encodeToJsonElement
|
||||
import net.minecraft.client.gui.screen.Screen
|
||||
import net.minecraft.text.MutableText
|
||||
import net.minecraft.text.Text
|
||||
import moe.nea.firmament.gui.FirmButtonComponent
|
||||
@@ -14,26 +13,30 @@ import moe.nea.firmament.jarvis.JarvisIntegration
|
||||
import moe.nea.firmament.util.MC
|
||||
|
||||
class HudMetaHandler(val config: ManagedConfig, val label: MutableText, val width: Int, val height: Int) :
|
||||
ManagedConfig.OptionHandler<HudMeta> {
|
||||
override fun toJson(element: HudMeta): JsonElement? {
|
||||
return Json.encodeToJsonElement(element.position)
|
||||
}
|
||||
ManagedConfig.OptionHandler<HudMeta> {
|
||||
override fun toJson(element: HudMeta): JsonElement? {
|
||||
return Json.encodeToJsonElement(element.position)
|
||||
}
|
||||
|
||||
override fun fromJson(element: JsonElement): HudMeta {
|
||||
return HudMeta(Json.decodeFromJsonElement(element), label, width, height)
|
||||
}
|
||||
override fun fromJson(element: JsonElement): HudMeta {
|
||||
return HudMeta(Json.decodeFromJsonElement(element), label, width, height)
|
||||
}
|
||||
|
||||
override fun emitGuiElements(opt: ManagedOption<HudMeta>, guiAppender: GuiAppender) {
|
||||
guiAppender.appendLabeledRow(
|
||||
opt.labelText,
|
||||
FirmButtonComponent(
|
||||
TextComponent(
|
||||
Text.stringifiedTranslatable("firmament.hud.edit", label).string),
|
||||
) {
|
||||
MC.screen = JarvisIntegration.jarvis.getHudEditor(
|
||||
guiAppender.screenAccessor.invoke(),
|
||||
listOf(opt.value)
|
||||
)
|
||||
})
|
||||
}
|
||||
fun openEditor(option: ManagedOption<HudMeta>, oldScreen: Screen) {
|
||||
MC.screen = JarvisIntegration.jarvis.getHudEditor(
|
||||
oldScreen,
|
||||
listOf(option.value)
|
||||
)
|
||||
}
|
||||
|
||||
override fun emitGuiElements(opt: ManagedOption<HudMeta>, guiAppender: GuiAppender) {
|
||||
guiAppender.appendLabeledRow(
|
||||
opt.labelText,
|
||||
FirmButtonComponent(
|
||||
TextComponent(
|
||||
Text.stringifiedTranslatable("firmament.hud.edit", label).string),
|
||||
) {
|
||||
openEditor(opt, guiAppender.screenAccessor())
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
package moe.nea.firmament.gui.config
|
||||
|
||||
import io.github.notenoughupdates.moulconfig.common.IMinecraft
|
||||
@@ -13,137 +11,63 @@ import kotlinx.serialization.json.Json
|
||||
import kotlinx.serialization.json.JsonElement
|
||||
import kotlinx.serialization.json.decodeFromJsonElement
|
||||
import kotlinx.serialization.json.encodeToJsonElement
|
||||
import net.minecraft.text.Text
|
||||
import net.minecraft.util.Formatting
|
||||
import moe.nea.firmament.gui.FirmButtonComponent
|
||||
import moe.nea.firmament.keybindings.FirmamentKeyBindings
|
||||
import moe.nea.firmament.keybindings.SavedKeyBinding
|
||||
|
||||
class KeyBindingHandler(val name: String, val managedConfig: ManagedConfig) :
|
||||
ManagedConfig.OptionHandler<SavedKeyBinding> {
|
||||
ManagedConfig.OptionHandler<SavedKeyBinding> {
|
||||
|
||||
override fun initOption(opt: ManagedOption<SavedKeyBinding>) {
|
||||
FirmamentKeyBindings.registerKeyBinding(name, opt)
|
||||
}
|
||||
override fun initOption(opt: ManagedOption<SavedKeyBinding>) {
|
||||
FirmamentKeyBindings.registerKeyBinding(name, opt)
|
||||
}
|
||||
|
||||
override fun toJson(element: SavedKeyBinding): JsonElement? {
|
||||
return Json.encodeToJsonElement(element)
|
||||
}
|
||||
override fun toJson(element: SavedKeyBinding): JsonElement? {
|
||||
return Json.encodeToJsonElement(element)
|
||||
}
|
||||
|
||||
override fun fromJson(element: JsonElement): SavedKeyBinding {
|
||||
return Json.decodeFromJsonElement(element)
|
||||
}
|
||||
override fun fromJson(element: JsonElement): SavedKeyBinding {
|
||||
return Json.decodeFromJsonElement(element)
|
||||
}
|
||||
|
||||
override fun emitGuiElements(opt: ManagedOption<SavedKeyBinding>, guiAppender: GuiAppender) {
|
||||
var editing = false
|
||||
var lastPressed = 0
|
||||
var lastPressedNonModifier = 0
|
||||
var label: String = ""
|
||||
var button: FirmButtonComponent? = null
|
||||
fun updateLabel() {
|
||||
var stroke = opt.value.format()
|
||||
if (editing) {
|
||||
stroke = Text.literal("")
|
||||
val (shift, alt, ctrl) = SavedKeyBinding.getMods(SavedKeyBinding.getModInt())
|
||||
if (shift) {
|
||||
stroke.append("SHIFT + ")
|
||||
}
|
||||
if (alt) {
|
||||
stroke.append("ALT + ")
|
||||
}
|
||||
if (ctrl) {
|
||||
stroke.append("CTRL + ")
|
||||
}
|
||||
stroke.append("???")
|
||||
stroke.styled { it.withColor(Formatting.YELLOW) }
|
||||
}
|
||||
label = (stroke).string
|
||||
managedConfig.save()
|
||||
}
|
||||
button = object : FirmButtonComponent(
|
||||
TextComponent(
|
||||
IMinecraft.instance.defaultFontRenderer,
|
||||
{ label },
|
||||
130,
|
||||
TextComponent.TextAlignment.LEFT,
|
||||
false,
|
||||
false
|
||||
), action = {
|
||||
if (editing) {
|
||||
button!!.blur()
|
||||
} else {
|
||||
editing = true
|
||||
button!!.requestFocus()
|
||||
updateLabel()
|
||||
}
|
||||
}) {
|
||||
override fun keyboardEvent(event: KeyboardEvent, context: GuiImmediateContext): Boolean {
|
||||
if (event is KeyboardEvent.KeyPressed) {
|
||||
return if (event.pressed) onKeyPressed(event.keycode, SavedKeyBinding.getModInt())
|
||||
else onKeyReleased(event.keycode, SavedKeyBinding.getModInt())
|
||||
}
|
||||
return super.keyboardEvent(event, context)
|
||||
}
|
||||
override fun emitGuiElements(opt: ManagedOption<SavedKeyBinding>, guiAppender: GuiAppender) {
|
||||
lateinit var button: FirmButtonComponent
|
||||
val sm = KeyBindingStateManager(
|
||||
{ opt.value },
|
||||
{ opt.value = it },
|
||||
{ button.blur() },
|
||||
{ button.requestFocus() }
|
||||
)
|
||||
button = object : FirmButtonComponent(
|
||||
TextComponent(
|
||||
IMinecraft.instance.defaultFontRenderer,
|
||||
{ sm.label.string },
|
||||
130,
|
||||
TextComponent.TextAlignment.LEFT,
|
||||
false,
|
||||
false
|
||||
), action = {
|
||||
sm.onClick()
|
||||
}) {
|
||||
override fun keyboardEvent(event: KeyboardEvent, context: GuiImmediateContext): Boolean {
|
||||
if (event is KeyboardEvent.KeyPressed) {
|
||||
return sm.keyboardEvent(event.keycode, event.pressed)
|
||||
}
|
||||
return super.keyboardEvent(event, context)
|
||||
}
|
||||
|
||||
override fun getBackground(context: GuiImmediateContext): NinePatch<MyResourceLocation> {
|
||||
if (editing) return activeBg
|
||||
return super.getBackground(context)
|
||||
}
|
||||
override fun getBackground(context: GuiImmediateContext): NinePatch<MyResourceLocation> {
|
||||
if (sm.editing) return activeBg
|
||||
return super.getBackground(context)
|
||||
}
|
||||
|
||||
fun onKeyPressed(ch: Int, modifiers: Int): Boolean {
|
||||
if (!editing) {
|
||||
return false
|
||||
}
|
||||
if (ch == GLFW.GLFW_KEY_ESCAPE) {
|
||||
lastPressedNonModifier = 0
|
||||
editing = false
|
||||
lastPressed = 0
|
||||
opt.value = SavedKeyBinding(GLFW.GLFW_KEY_UNKNOWN)
|
||||
updateLabel()
|
||||
blur()
|
||||
return true
|
||||
}
|
||||
if (ch == GLFW.GLFW_KEY_LEFT_SHIFT || ch == GLFW.GLFW_KEY_RIGHT_SHIFT
|
||||
|| ch == GLFW.GLFW_KEY_LEFT_ALT || ch == GLFW.GLFW_KEY_RIGHT_ALT
|
||||
|| ch == GLFW.GLFW_KEY_LEFT_CONTROL || ch == GLFW.GLFW_KEY_RIGHT_CONTROL
|
||||
) {
|
||||
lastPressed = ch
|
||||
} else {
|
||||
opt.value = SavedKeyBinding(
|
||||
ch, modifiers
|
||||
)
|
||||
editing = false
|
||||
blur()
|
||||
lastPressed = 0
|
||||
lastPressedNonModifier = 0
|
||||
}
|
||||
updateLabel()
|
||||
return true
|
||||
}
|
||||
|
||||
override fun onLostFocus() {
|
||||
lastPressedNonModifier = 0
|
||||
editing = false
|
||||
lastPressed = 0
|
||||
updateLabel()
|
||||
}
|
||||
|
||||
fun onKeyReleased(ch: Int, modifiers: Int): Boolean {
|
||||
if (!editing)
|
||||
return false
|
||||
if (lastPressedNonModifier == ch || (lastPressedNonModifier == 0 && ch == lastPressed)) {
|
||||
opt.value = SavedKeyBinding(ch, modifiers)
|
||||
editing = false
|
||||
blur()
|
||||
lastPressed = 0
|
||||
lastPressedNonModifier = 0
|
||||
}
|
||||
updateLabel()
|
||||
return true
|
||||
}
|
||||
}
|
||||
updateLabel()
|
||||
guiAppender.appendLabeledRow(opt.labelText, button)
|
||||
}
|
||||
override fun onLostFocus() {
|
||||
sm.onLostFocus()
|
||||
}
|
||||
}
|
||||
sm.updateLabel()
|
||||
guiAppender.appendLabeledRow(opt.labelText, button)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
108
src/main/kotlin/gui/config/KeyBindingStateManager.kt
Normal file
108
src/main/kotlin/gui/config/KeyBindingStateManager.kt
Normal file
@@ -0,0 +1,108 @@
|
||||
package moe.nea.firmament.gui.config
|
||||
|
||||
import org.lwjgl.glfw.GLFW
|
||||
import net.minecraft.text.Text
|
||||
import net.minecraft.util.Formatting
|
||||
import moe.nea.firmament.keybindings.SavedKeyBinding
|
||||
|
||||
class KeyBindingStateManager(
|
||||
val value: () -> SavedKeyBinding,
|
||||
val setValue: (key: SavedKeyBinding) -> Unit,
|
||||
val blur: () -> Unit,
|
||||
val requestFocus: () -> Unit,
|
||||
) {
|
||||
var editing = false
|
||||
var lastPressed = 0
|
||||
var lastPressedNonModifier = 0
|
||||
var label: Text = Text.literal("")
|
||||
|
||||
fun onClick() {
|
||||
if (editing) {
|
||||
editing = false
|
||||
blur()
|
||||
} else {
|
||||
editing = true
|
||||
requestFocus()
|
||||
}
|
||||
updateLabel()
|
||||
}
|
||||
|
||||
fun keyboardEvent(keyCode: Int, pressed: Boolean): Boolean {
|
||||
return if (pressed) onKeyPressed(keyCode, SavedKeyBinding.getModInt())
|
||||
else onKeyReleased(keyCode, SavedKeyBinding.getModInt())
|
||||
}
|
||||
|
||||
fun onKeyPressed(ch: Int, modifiers: Int): Boolean {
|
||||
if (!editing) {
|
||||
return false
|
||||
}
|
||||
if (ch == GLFW.GLFW_KEY_ESCAPE) {
|
||||
lastPressedNonModifier = 0
|
||||
editing = false
|
||||
lastPressed = 0
|
||||
setValue(SavedKeyBinding(GLFW.GLFW_KEY_UNKNOWN))
|
||||
updateLabel()
|
||||
blur()
|
||||
return true
|
||||
}
|
||||
if (ch == GLFW.GLFW_KEY_LEFT_SHIFT || ch == GLFW.GLFW_KEY_RIGHT_SHIFT
|
||||
|| ch == GLFW.GLFW_KEY_LEFT_ALT || ch == GLFW.GLFW_KEY_RIGHT_ALT
|
||||
|| ch == GLFW.GLFW_KEY_LEFT_CONTROL || ch == GLFW.GLFW_KEY_RIGHT_CONTROL
|
||||
) {
|
||||
lastPressed = ch
|
||||
} else {
|
||||
setValue(SavedKeyBinding(
|
||||
ch, modifiers
|
||||
))
|
||||
editing = false
|
||||
blur()
|
||||
lastPressed = 0
|
||||
lastPressedNonModifier = 0
|
||||
}
|
||||
updateLabel()
|
||||
return true
|
||||
}
|
||||
|
||||
fun onLostFocus() {
|
||||
lastPressedNonModifier = 0
|
||||
editing = false
|
||||
lastPressed = 0
|
||||
updateLabel()
|
||||
}
|
||||
|
||||
fun onKeyReleased(ch: Int, modifiers: Int): Boolean {
|
||||
if (!editing)
|
||||
return false
|
||||
if (lastPressedNonModifier == ch || (lastPressedNonModifier == 0 && ch == lastPressed)) {
|
||||
setValue(SavedKeyBinding(ch, modifiers))
|
||||
editing = false
|
||||
blur()
|
||||
lastPressed = 0
|
||||
lastPressedNonModifier = 0
|
||||
}
|
||||
updateLabel()
|
||||
return true
|
||||
}
|
||||
|
||||
fun updateLabel() {
|
||||
var stroke = value().format()
|
||||
if (editing) {
|
||||
stroke = Text.literal("")
|
||||
val (shift, ctrl, alt) = SavedKeyBinding.getMods(SavedKeyBinding.getModInt())
|
||||
if (shift) {
|
||||
stroke.append("SHIFT + ")
|
||||
}
|
||||
if (alt) {
|
||||
stroke.append("ALT + ")
|
||||
}
|
||||
if (ctrl) {
|
||||
stroke.append("CTRL + ")
|
||||
}
|
||||
stroke.append("???")
|
||||
stroke.styled { it.withColor(Formatting.YELLOW) }
|
||||
}
|
||||
label = stroke
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -32,7 +32,7 @@ data class SavedKeyBinding(
|
||||
return Triple(
|
||||
modifiers and GLFW.GLFW_MOD_SHIFT != 0,
|
||||
modifiers and GLFW.GLFW_MOD_CONTROL != 0,
|
||||
modifiers and GLFW.GLFW_MOD_ALT != 0
|
||||
modifiers and GLFW.GLFW_MOD_ALT != 0,
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -19,127 +19,129 @@ import moe.nea.firmament.util.MinecraftDispatcher
|
||||
import moe.nea.firmament.util.SkyblockId
|
||||
|
||||
object RepoManager {
|
||||
object Config : ManagedConfig("repo") {
|
||||
var username by string("username") { "NotEnoughUpdates" }
|
||||
var reponame by string("reponame") { "NotEnoughUpdates-REPO" }
|
||||
var branch by string("branch") { "master" }
|
||||
val autoUpdate by toggle("autoUpdate") { true }
|
||||
val reset by button("reset") {
|
||||
username = "NotEnoughUpdates"
|
||||
reponame = "NotEnoughUpdates-REPO"
|
||||
branch = "master"
|
||||
save()
|
||||
}
|
||||
object Config : ManagedConfig("repo") {
|
||||
var username by string("username") { "NotEnoughUpdates" }
|
||||
var reponame by string("reponame") { "NotEnoughUpdates-REPO" }
|
||||
var branch by string("branch") { "master" }
|
||||
val autoUpdate by toggle("autoUpdate") { true }
|
||||
val reset by button("reset") {
|
||||
username = "NotEnoughUpdates"
|
||||
reponame = "NotEnoughUpdates-REPO"
|
||||
branch = "master"
|
||||
save()
|
||||
}
|
||||
|
||||
val disableItemGroups by toggle("disable-item-groups") { true }
|
||||
val reload by button("reload") {
|
||||
save()
|
||||
RepoManager.reload()
|
||||
}
|
||||
val redownload by button("redownload") {
|
||||
save()
|
||||
RepoManager.launchAsyncUpdate(true)
|
||||
}
|
||||
}
|
||||
val enableYacl by toggle("enable-yacl") { false }
|
||||
|
||||
val currentDownloadedSha by RepoDownloadManager::latestSavedVersionHash
|
||||
val disableItemGroups by toggle("disable-item-groups") { true }
|
||||
val reload by button("reload") {
|
||||
save()
|
||||
RepoManager.reload()
|
||||
}
|
||||
val redownload by button("redownload") {
|
||||
save()
|
||||
RepoManager.launchAsyncUpdate(true)
|
||||
}
|
||||
}
|
||||
|
||||
var recentlyFailedToUpdateItemList = false
|
||||
val currentDownloadedSha by RepoDownloadManager::latestSavedVersionHash
|
||||
|
||||
val neuRepo: NEURepository = NEURepository.of(RepoDownloadManager.repoSavedLocation).apply {
|
||||
registerReloadListener(ItemCache)
|
||||
registerReloadListener(ExpLadders)
|
||||
registerReloadListener(ItemNameLookup)
|
||||
ReloadRegistrationEvent.publish(ReloadRegistrationEvent(this))
|
||||
registerReloadListener {
|
||||
Firmament.coroutineScope.launch(MinecraftDispatcher) {
|
||||
if (!trySendClientboundUpdateRecipesPacket()) {
|
||||
logger.warn("Failed to issue a ClientboundUpdateRecipesPacket (to reload REI). This may lead to an outdated item list.")
|
||||
recentlyFailedToUpdateItemList = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
var recentlyFailedToUpdateItemList = false
|
||||
|
||||
val essenceRecipeProvider = EssenceRecipeProvider()
|
||||
val recipeCache = BetterRepoRecipeCache(essenceRecipeProvider)
|
||||
val neuRepo: NEURepository = NEURepository.of(RepoDownloadManager.repoSavedLocation).apply {
|
||||
registerReloadListener(ItemCache)
|
||||
registerReloadListener(ExpLadders)
|
||||
registerReloadListener(ItemNameLookup)
|
||||
ReloadRegistrationEvent.publish(ReloadRegistrationEvent(this))
|
||||
registerReloadListener {
|
||||
Firmament.coroutineScope.launch(MinecraftDispatcher) {
|
||||
if (!trySendClientboundUpdateRecipesPacket()) {
|
||||
logger.warn("Failed to issue a ClientboundUpdateRecipesPacket (to reload REI). This may lead to an outdated item list.")
|
||||
recentlyFailedToUpdateItemList = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
init {
|
||||
neuRepo.registerReloadListener(essenceRecipeProvider)
|
||||
neuRepo.registerReloadListener(recipeCache)
|
||||
}
|
||||
val essenceRecipeProvider = EssenceRecipeProvider()
|
||||
val recipeCache = BetterRepoRecipeCache(essenceRecipeProvider)
|
||||
|
||||
fun getAllRecipes() = neuRepo.items.items.values.asSequence().flatMap { it.recipes }
|
||||
init {
|
||||
neuRepo.registerReloadListener(essenceRecipeProvider)
|
||||
neuRepo.registerReloadListener(recipeCache)
|
||||
}
|
||||
|
||||
fun getRecipesFor(skyblockId: SkyblockId): Set<NEURecipe> = recipeCache.recipes[skyblockId] ?: setOf()
|
||||
fun getUsagesFor(skyblockId: SkyblockId): Set<NEURecipe> = recipeCache.usages[skyblockId] ?: setOf()
|
||||
fun getAllRecipes() = neuRepo.items.items.values.asSequence().flatMap { it.recipes }
|
||||
|
||||
private fun trySendClientboundUpdateRecipesPacket(): Boolean {
|
||||
return MinecraftClient.getInstance().world != null && MinecraftClient.getInstance().networkHandler?.onSynchronizeRecipes(
|
||||
SynchronizeRecipesS2CPacket(mutableListOf())
|
||||
) != null
|
||||
}
|
||||
fun getRecipesFor(skyblockId: SkyblockId): Set<NEURecipe> = recipeCache.recipes[skyblockId] ?: setOf()
|
||||
fun getUsagesFor(skyblockId: SkyblockId): Set<NEURecipe> = recipeCache.usages[skyblockId] ?: setOf()
|
||||
|
||||
init {
|
||||
ClientTickEvents.START_WORLD_TICK.register(ClientTickEvents.StartWorldTick {
|
||||
if (recentlyFailedToUpdateItemList && trySendClientboundUpdateRecipesPacket())
|
||||
recentlyFailedToUpdateItemList = false
|
||||
})
|
||||
}
|
||||
private fun trySendClientboundUpdateRecipesPacket(): Boolean {
|
||||
return MinecraftClient.getInstance().world != null && MinecraftClient.getInstance().networkHandler?.onSynchronizeRecipes(
|
||||
SynchronizeRecipesS2CPacket(mutableListOf())
|
||||
) != null
|
||||
}
|
||||
|
||||
fun getNEUItem(skyblockId: SkyblockId): NEUItem? = neuRepo.items.getItemBySkyblockId(skyblockId.neuItem)
|
||||
init {
|
||||
ClientTickEvents.START_WORLD_TICK.register(ClientTickEvents.StartWorldTick {
|
||||
if (recentlyFailedToUpdateItemList && trySendClientboundUpdateRecipesPacket())
|
||||
recentlyFailedToUpdateItemList = false
|
||||
})
|
||||
}
|
||||
|
||||
fun launchAsyncUpdate(force: Boolean = false) {
|
||||
Firmament.coroutineScope.launch {
|
||||
ItemCache.ReloadProgressHud.reportProgress("Downloading", 0, -1) // TODO: replace with a proper boundy bar
|
||||
ItemCache.ReloadProgressHud.isEnabled = true
|
||||
try {
|
||||
RepoDownloadManager.downloadUpdate(force)
|
||||
ItemCache.ReloadProgressHud.reportProgress("Download complete", 1, 1)
|
||||
} finally {
|
||||
ItemCache.ReloadProgressHud.isEnabled = false
|
||||
}
|
||||
reload()
|
||||
}
|
||||
}
|
||||
fun getNEUItem(skyblockId: SkyblockId): NEUItem? = neuRepo.items.getItemBySkyblockId(skyblockId.neuItem)
|
||||
|
||||
fun reload() {
|
||||
try {
|
||||
ItemCache.ReloadProgressHud.reportProgress("Reloading from Disk",
|
||||
0,
|
||||
-1) // TODO: replace with a proper boundy bar
|
||||
ItemCache.ReloadProgressHud.isEnabled = true
|
||||
neuRepo.reload()
|
||||
} catch (exc: NEURepositoryException) {
|
||||
MinecraftClient.getInstance().player?.sendMessage(
|
||||
Text.literal("Failed to reload repository. This will result in some mod features not working.")
|
||||
)
|
||||
ItemCache.ReloadProgressHud.isEnabled = false
|
||||
exc.printStackTrace()
|
||||
}
|
||||
}
|
||||
fun launchAsyncUpdate(force: Boolean = false) {
|
||||
Firmament.coroutineScope.launch {
|
||||
ItemCache.ReloadProgressHud.reportProgress("Downloading", 0, -1) // TODO: replace with a proper boundy bar
|
||||
ItemCache.ReloadProgressHud.isEnabled = true
|
||||
try {
|
||||
RepoDownloadManager.downloadUpdate(force)
|
||||
ItemCache.ReloadProgressHud.reportProgress("Download complete", 1, 1)
|
||||
} finally {
|
||||
ItemCache.ReloadProgressHud.isEnabled = false
|
||||
}
|
||||
reload()
|
||||
}
|
||||
}
|
||||
|
||||
fun initialize() {
|
||||
if (Config.autoUpdate) {
|
||||
launchAsyncUpdate()
|
||||
} else {
|
||||
reload()
|
||||
}
|
||||
}
|
||||
fun reload() {
|
||||
try {
|
||||
ItemCache.ReloadProgressHud.reportProgress("Reloading from Disk",
|
||||
0,
|
||||
-1) // TODO: replace with a proper boundy bar
|
||||
ItemCache.ReloadProgressHud.isEnabled = true
|
||||
neuRepo.reload()
|
||||
} catch (exc: NEURepositoryException) {
|
||||
MinecraftClient.getInstance().player?.sendMessage(
|
||||
Text.literal("Failed to reload repository. This will result in some mod features not working.")
|
||||
)
|
||||
ItemCache.ReloadProgressHud.isEnabled = false
|
||||
exc.printStackTrace()
|
||||
}
|
||||
}
|
||||
|
||||
fun getPotentialStubPetData(skyblockId: SkyblockId): PetData? {
|
||||
val parts = skyblockId.neuItem.split(";")
|
||||
if (parts.size != 2) {
|
||||
return null
|
||||
}
|
||||
val (petId, rarityIndex) = parts
|
||||
if (!rarityIndex.all { it.isDigit() }) {
|
||||
return null
|
||||
}
|
||||
val intIndex = rarityIndex.toInt()
|
||||
if (intIndex !in Rarity.values().indices) return null
|
||||
if (petId !in neuRepo.constants.petNumbers) return null
|
||||
return PetData(Rarity.values()[intIndex], petId, 0.0, true)
|
||||
}
|
||||
fun initialize() {
|
||||
if (Config.autoUpdate) {
|
||||
launchAsyncUpdate()
|
||||
} else {
|
||||
reload()
|
||||
}
|
||||
}
|
||||
|
||||
fun getPotentialStubPetData(skyblockId: SkyblockId): PetData? {
|
||||
val parts = skyblockId.neuItem.split(";")
|
||||
if (parts.size != 2) {
|
||||
return null
|
||||
}
|
||||
val (petId, rarityIndex) = parts
|
||||
if (!rarityIndex.all { it.isDigit() }) {
|
||||
return null
|
||||
}
|
||||
val intIndex = rarityIndex.toInt()
|
||||
if (intIndex !in Rarity.values().indices) return null
|
||||
if (petId !in neuRepo.constants.petNumbers) return null
|
||||
return PetData(Rarity.values()[intIndex], petId, 0.0, true)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -73,6 +73,7 @@
|
||||
"firmament.config.repo.username.hint": "NotEnoughUpdates",
|
||||
"firmament.config.repo.reponame": "Repo Name",
|
||||
"firmament.config.repo.reponame.hint": "NotEnoughUpdates-REPO",
|
||||
"firmament.config.repo.enable-yacl": "Use YACL Config",
|
||||
"firmament.config.repo.branch": "Repo Branch",
|
||||
"firmament.config.repo.branch.hint": "dangerous",
|
||||
"firmament.config.repo.reset": "Reset",
|
||||
|
||||
Reference in New Issue
Block a user