mirror of
https://codeberg.org/moonleay/Gimble.git
synced 2024-11-23 07:12:50 +00:00
feat: add ESC resets mode setting
This commit is contained in:
parent
d59cf8f9f0
commit
dc732cc39f
7 changed files with 35 additions and 3 deletions
|
@ -27,5 +27,6 @@ data class GimbalClientConfig(
|
|||
val guiSettings: GimbalGuiSettings = GimbalGuiSettings(),
|
||||
val toastSettings: ToastSettings = ToastSettings.ALL,
|
||||
val playerFlySpeed: Int = 100,
|
||||
val shouldEscResetMode: Boolean = true,
|
||||
val defaultMode: Mode = Mode.NORMAL
|
||||
)
|
||||
|
|
|
@ -55,7 +55,9 @@ object ClientEditor {
|
|||
this.CURRENT_MODE = config.defaultMode
|
||||
return
|
||||
}
|
||||
this.setMode(config.defaultMode)
|
||||
if (!config.shouldEscResetMode) return
|
||||
this.CURRENT_MODE = config.defaultMode
|
||||
onUpdated()
|
||||
}
|
||||
|
||||
fun onConnectedToNewWorld() {
|
||||
|
|
|
@ -88,6 +88,7 @@ class GimbalEditHudGui(private val parent: Screen, private val cfg: ClientConfig
|
|||
),
|
||||
toastSettings = oldConf.toastSettings,
|
||||
playerFlySpeed = oldConf.playerFlySpeed,
|
||||
shouldEscResetMode = oldConf.shouldEscResetMode,
|
||||
defaultMode = oldConf.defaultMode
|
||||
)
|
||||
|
||||
|
|
|
@ -74,6 +74,7 @@ class GimbalSettingsGui(private val parent: Screen, private val cfg: ClientConfi
|
|||
guiSettings = newGui,
|
||||
toastSettings = cfg.config.toastSettings,
|
||||
playerFlySpeed = cfg.config.playerFlySpeed,
|
||||
shouldEscResetMode = cfg.config.shouldEscResetMode,
|
||||
defaultMode = cfg.config.defaultMode
|
||||
)
|
||||
cfg.updateConfig(newConf)
|
||||
|
@ -134,6 +135,7 @@ class GimbalSettingsGui(private val parent: Screen, private val cfg: ClientConfi
|
|||
),
|
||||
toastSettings = oldConfig.toastSettings,
|
||||
playerFlySpeed = oldConfig.playerFlySpeed,
|
||||
shouldEscResetMode = oldConfig.shouldEscResetMode,
|
||||
defaultMode = oldConfig.defaultMode
|
||||
)
|
||||
cfg.updateConfig(newConfig)
|
||||
|
@ -179,6 +181,7 @@ class GimbalSettingsGui(private val parent: Screen, private val cfg: ClientConfi
|
|||
guiSettings = oldConfig.guiSettings,
|
||||
toastSettings = this.toastSettings,
|
||||
playerFlySpeed = oldConfig.playerFlySpeed,
|
||||
shouldEscResetMode = oldConfig.shouldEscResetMode,
|
||||
defaultMode = oldConfig.defaultMode
|
||||
)
|
||||
cfg.updateConfig(newConfig)
|
||||
|
@ -206,11 +209,33 @@ class GimbalSettingsGui(private val parent: Screen, private val cfg: ClientConfi
|
|||
guiSettings = oldConfig.guiSettings,
|
||||
toastSettings = this.toastSettings,
|
||||
playerFlySpeed = this.playerFlySpeed,
|
||||
shouldEscResetMode = oldConfig.shouldEscResetMode,
|
||||
defaultMode = oldConfig.defaultMode
|
||||
)
|
||||
cfg.updateConfig(newConfig)
|
||||
})
|
||||
|
||||
this.addDrawableChild(CyclingButtonWidget.onOffBuilder()
|
||||
.initially(cfg.config.shouldEscResetMode)
|
||||
.build(
|
||||
this.width / 2 - 155,
|
||||
this.height / 6 + 24 * 3,
|
||||
150,
|
||||
20,
|
||||
Text.translatable(TranslationKeys.Gui.Config.SHOULD_ESC_RESET_MODE)
|
||||
) { _: CyclingButtonWidget<Boolean?>?, isEnabled: Boolean? ->
|
||||
val newConf = GimbalClientConfig(
|
||||
guiSettings = cfg.config.guiSettings,
|
||||
toastSettings = cfg.config.toastSettings,
|
||||
playerFlySpeed = cfg.config.playerFlySpeed,
|
||||
shouldEscResetMode = isEnabled?: true,
|
||||
defaultMode = cfg.config.defaultMode
|
||||
)
|
||||
cfg.updateConfig(newConf)
|
||||
})
|
||||
|
||||
|
||||
|
||||
this.addDrawableChild<CyclingButtonWidget<Mode>>(
|
||||
CyclingButtonWidget.builder<Mode> { value: Mode? ->
|
||||
if (value == null) {
|
||||
|
@ -222,7 +247,7 @@ class GimbalSettingsGui(private val parent: Screen, private val cfg: ClientConfi
|
|||
.initially(this.defaultMode)
|
||||
.build(
|
||||
this.width / 2 - 155 + 160,
|
||||
this.height / 6 + 24 * 2,
|
||||
this.height / 6 + 24 * 3,
|
||||
150,
|
||||
20,
|
||||
Text.translatable(TranslationKeys.Gui.Config.DEFAULT_MODE)
|
||||
|
@ -240,6 +265,7 @@ class GimbalSettingsGui(private val parent: Screen, private val cfg: ClientConfi
|
|||
guiSettings = oldConfig.guiSettings,
|
||||
toastSettings = oldConfig.toastSettings,
|
||||
playerFlySpeed = oldConfig.playerFlySpeed,
|
||||
shouldEscResetMode = oldConfig.shouldEscResetMode,
|
||||
defaultMode = this.defaultMode
|
||||
)
|
||||
cfg.updateConfig(newConfig)
|
||||
|
|
|
@ -32,6 +32,7 @@ object TranslationKeys {
|
|||
const val GENERIC_DISABLED = "${BASE}disabled"
|
||||
|
||||
const val PLAYER_FLY_SPEED = "${BASE}flySpeed"
|
||||
const val SHOULD_ESC_RESET_MODE = "${BASE}shouldESCResetMode"
|
||||
const val DEFAULT_MODE = "${BASE}defaultMode"
|
||||
|
||||
object Hud {
|
||||
|
|
|
@ -56,6 +56,7 @@ class EnUsLanguageProvider(dataGenerator: FabricDataGenerator?) :
|
|||
|
||||
// Gimbal Generic Settings
|
||||
translationBuilder.add(TranslationKeys.Gui.Config.PLAYER_FLY_SPEED, "Fly Speed")
|
||||
translationBuilder.add(TranslationKeys.Gui.Config.SHOULD_ESC_RESET_MODE, "ESC Resets Mode")
|
||||
translationBuilder.add(TranslationKeys.Gui.Config.DEFAULT_MODE, "Default Mode")
|
||||
|
||||
// Gimbal Generic Gui
|
||||
|
|
|
@ -44,7 +44,7 @@ public class NormalModeMixin {
|
|||
|
||||
@Inject(method = "openPauseMenu", at = @At("HEAD"), cancellable = true)
|
||||
private void setDefaultMode(boolean pause, CallbackInfo ci) {
|
||||
if (ClientEditor.INSTANCE.isInNonDefaultMode() && ClientEditor.INSTANCE.isAllowed()) {
|
||||
if (ClientMain.CONFIG.getConfig().getShouldEscResetMode() && ClientEditor.INSTANCE.isInNonDefaultMode() && ClientEditor.INSTANCE.isAllowed()) {
|
||||
assert this.player != null;
|
||||
if (this.player.isCreative()) {
|
||||
// Set the editor mode to normal
|
||||
|
|
Loading…
Reference in a new issue