summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/ByteSetting.kt
blob: 6ec0a765effb0a8279c3584538c9f4a536c55e47 (plain) (blame)
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
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

package org.yuzu.yuzu_emu.features.settings.model

import org.yuzu.yuzu_emu.utils.NativeConfig

enum class ByteSetting(
    override val key: String,
    override val category: Settings.Category
) : AbstractByteSetting {
    AUDIO_VOLUME("volume", Settings.Category.Audio);

    override val byte: Byte
        get() = NativeConfig.getByte(key, false)

    override fun setByte(value: Byte) = NativeConfig.setByte(key, value)

    override val defaultValue: Byte by lazy { NativeConfig.getByte(key, true) }

    override val valueAsString: String
        get() = byte.toString()

    override fun reset() = NativeConfig.setByte(key, defaultValue)
}