mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-09 10:04:05 +09:00
68 lines
2.3 KiB
Kotlin
68 lines
2.3 KiB
Kotlin
package net.torvald.terrarum.modulebasegame.ui
|
|
|
|
import net.torvald.terrarum.App
|
|
import net.torvald.terrarum.Yaml
|
|
|
|
|
|
|
|
object UITitleRemoConYaml {
|
|
|
|
/**
|
|
* YAML indent with a space, separate label and class with " : " (\x20\x3A\x20)
|
|
*
|
|
* The class must be the UICanvas
|
|
*/
|
|
val menuBase = """
|
|
- MENU_MODE_SINGLEPLAYER : net.torvald.terrarum.modulebasegame.ui.UILoadSavegame
|
|
- MENU_OPTIONS
|
|
- MENU_LABEL_GRAPHICS : net.torvald.terrarum.modulebasegame.ui.UIGraphicsControlPanel
|
|
- MENU_OPTIONS_CONTROLS : net.torvald.terrarum.modulebasegame.ui.UIKeyboardControlPanel
|
|
- MENU_LABEL_IME : net.torvald.terrarum.modulebasegame.ui.UIIMEConfig
|
|
- MENU_LABEL_SOUND : net.torvald.terrarum.modulebasegame.ui.UISoundControlPanel
|
|
- MENU_LABEL_LANGUAGE : net.torvald.terrarum.modulebasegame.ui.UITitleLanguage
|
|
- CREDITS_GAME : net.torvald.terrarum.ModOptionsHost
|
|
- GAME_GENRE_MISC : net.torvald.terrarum.modulebasegame.ui.UIPerformanceControlPanel
|
|
- MENU_LABEL_RETURN+WRITETOCONFIG+RESIZEIFNEEDED
|
|
- MENU_MODULES : net.torvald.terrarum.modulebasegame.ui.UITitleModules
|
|
- MENU_LABEL_RETURN
|
|
- MENU_LABEL_CREDITS
|
|
- MENU_LABEL_COPYRIGHT : net.torvald.terrarum.modulebasegame.ui.UITitleCredits
|
|
- MENU_CREDIT_GPL_DNT : net.torvald.terrarum.modulebasegame.ui.UITitleGPL3
|
|
- MENU_LABEL_SYSTEM_INFO : net.torvald.terrarum.modulebasegame.ui.UISystemInfo
|
|
- MENU_LABEL_RETURN
|
|
- MENU_LABEL_QUIT
|
|
"""
|
|
|
|
val menuBaseDev = """
|
|
- MENU_MODE_BUILDINGMAKER : net.torvald.terrarum.modulebasegame.ui.UIProxyNewBuildingMaker
|
|
""" + menuBase
|
|
|
|
val menuWithSavefile = """
|
|
- MENU_LABEL_CONTINUE : net.torvald.terrarum.modulebasegame.ui.UIProxyLoadLatestSave
|
|
"""
|
|
|
|
val menuNewGame = """
|
|
"""
|
|
|
|
// todo add MENU_IO_IMPORT
|
|
val injectedMenuSingleCharSel = """
|
|
- MENU_IO_IMPORT : net.torvald.terrarum.modulebasegame.ui.UIImportAvatar
|
|
- CONTEXT_CHARACTER_NEW : net.torvald.terrarum.modulebasegame.ui.UINewCharacter
|
|
- MENU_LABEL_RETURN
|
|
"""
|
|
|
|
val injectedMenuSingleWorldSel = """
|
|
- CONTEXT_WORLD_NEW : net.torvald.terrarum.modulebasegame.ui.UINewWorld
|
|
- MENU_LABEL_RETURN
|
|
"""
|
|
|
|
val injectedMenuSingleSaveManage = """
|
|
- MENU_LABEL_RETURN
|
|
"""
|
|
|
|
operator fun invoke(hasSave: Boolean) =
|
|
// Yaml((if (hasSave) menuWithSavefile else menuNewGame) + menuBase).parse()
|
|
Yaml(if (App.IS_DEVELOPMENT_BUILD) menuBaseDev else menuBase).parse()
|
|
}
|
|
|