84 lines
2.7 KiB
Kotlin
84 lines
2.7 KiB
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
package moe.nea.firmament.features
|
|
|
|
import kotlinx.serialization.Serializable
|
|
import kotlinx.serialization.serializer
|
|
import moe.nea.firmament.Firmament
|
|
import moe.nea.firmament.features.chat.ChatLinks
|
|
import moe.nea.firmament.features.debug.DebugView
|
|
import moe.nea.firmament.features.debug.DeveloperFeatures
|
|
import moe.nea.firmament.features.fixes.Fixes
|
|
import moe.nea.firmament.features.inventory.CraftingOverlay
|
|
import moe.nea.firmament.features.inventory.PriceData
|
|
import moe.nea.firmament.features.inventory.SaveCursorPosition
|
|
import moe.nea.firmament.features.inventory.SlotLocking
|
|
import moe.nea.firmament.features.inventory.storageoverlay.StorageOverlay
|
|
import moe.nea.firmament.features.texturepack.CustomSkyBlockTextures
|
|
import moe.nea.firmament.features.world.FairySouls
|
|
import moe.nea.firmament.util.data.DataHolder
|
|
|
|
object FeatureManager : DataHolder<FeatureManager.Config>(serializer(), "features", ::Config) {
|
|
@Serializable
|
|
data class Config(
|
|
val enabledFeatures: MutableMap<String, Boolean> = mutableMapOf()
|
|
)
|
|
|
|
private val features = mutableMapOf<String, FirmamentFeature>()
|
|
|
|
val allFeatures: Collection<FirmamentFeature> get() = features.values
|
|
|
|
private var hasAutoloaded = false
|
|
|
|
init {
|
|
autoload()
|
|
}
|
|
|
|
fun autoload() {
|
|
synchronized(this) {
|
|
if (hasAutoloaded) return
|
|
loadFeature(FairySouls)
|
|
// TODO: loadFeature(FishingWarning)
|
|
loadFeature(SlotLocking)
|
|
loadFeature(StorageOverlay)
|
|
loadFeature(CraftingOverlay)
|
|
loadFeature(ChatLinks)
|
|
loadFeature(SaveCursorPosition)
|
|
loadFeature(CustomSkyBlockTextures)
|
|
loadFeature(PriceData)
|
|
loadFeature(Fixes)
|
|
if (Firmament.DEBUG) {
|
|
loadFeature(DeveloperFeatures)
|
|
loadFeature(DebugView)
|
|
}
|
|
allFeatures.forEach { it.config }
|
|
hasAutoloaded = true
|
|
}
|
|
}
|
|
|
|
fun loadFeature(feature: FirmamentFeature) {
|
|
synchronized(features) {
|
|
if (feature.identifier in features) {
|
|
Firmament.logger.error("Double registering feature ${feature.identifier}. Ignoring second instance $feature")
|
|
return
|
|
}
|
|
features[feature.identifier] = feature
|
|
feature.onLoad()
|
|
}
|
|
}
|
|
|
|
fun isEnabled(identifier: String): Boolean? =
|
|
data.enabledFeatures[identifier]
|
|
|
|
|
|
fun setEnabled(identifier: String, value: Boolean) {
|
|
data.enabledFeatures[identifier] = value
|
|
markDirty()
|
|
}
|
|
|
|
}
|