4cb6f28235e67022aee20346b5bd127f8b9318b3
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / controller / Fader.java
1 /*
2  * Sonitus - Fader.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sonitus.data.controller;
19
20 import net.pterodactylus.sonitus.data.Controller;
21
22 /**
23  * A {@link Controller} that implements a simple fader.
24  *
25  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
26  */
27 public abstract class Fader extends AbstractController {
28
29         /** Creates a new fader that is at maximum position. */
30         public Fader() {
31                 this(1.0);
32         }
33
34         /**
35          * Creates a new fader that is at the given position.
36          *
37          * @param currentValue
38          *              The current value of the fader (from {@code 0.0} to {@code 1.0})
39          */
40         public Fader(double currentValue) {
41                 super(0, Integer.MAX_VALUE, false, (int) (Math.max(0, Math.min(1, currentValue)) * Integer.MAX_VALUE));
42         }
43
44 }