Newer
Older
music / app / src / main / java / com / lukas / music / instruments / effect / EffectType.kt
/*
 * Copyright (C) 2022 Lukas Eisenhauer
 *
 * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or(at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package com.lukas.music.instruments.effect

import com.lukas.music.util.format

enum class EffectType(
    private val title: String,
    val parameterDescriptions: Array<EffectParameterDescription?>
) {
    LowPass("low pass filter",
        arrayOf(
            EffectParameterDescription(-1f, 3f, 1f) {
                "cutoff: ${it.value.format(1)} octaves"
            }
        )),
    Noise(
        "noise",
        arrayOf(
            null
        )
    ),
    Distortion("distortion", arrayOf(
        EffectParameterDescription(1f, 4f, 1f) {
            "strength: ${it.value.format(1)}x"
        }
    ))
    ;

    override fun toString(): String {
        return title
    }

    companion object {
        val VALUES = values()
    }
}