3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "quicktune.h"
22 #include <jmutexautolock.h>
23 #include "util/string.h"
25 std::string QuicktuneValue::getString()
31 return ftos(value_QVT_FLOAT.current);
33 return "<invalid type>";
35 void QuicktuneValue::relativeAdd(float amount)
41 value_QVT_FLOAT.current += amount * (value_QVT_FLOAT.max - value_QVT_FLOAT.min);
42 if(value_QVT_FLOAT.current > value_QVT_FLOAT.max)
43 value_QVT_FLOAT.current = value_QVT_FLOAT.max;
44 if(value_QVT_FLOAT.current < value_QVT_FLOAT.min)
45 value_QVT_FLOAT.current = value_QVT_FLOAT.min;
50 static std::map<std::string, QuicktuneValue> g_values;
51 static std::vector<std::string> g_names;
52 JMutex *g_mutex = NULL;
54 static void makeMutex()
57 g_mutex = new JMutex();
62 std::vector<std::string> getQuicktuneNames()
67 QuicktuneValue getQuicktuneValue(const std::string &name)
70 JMutexAutoLock lock(*g_mutex);
71 std::map<std::string, QuicktuneValue>::iterator i = g_values.find(name);
72 if(i == g_values.end()){
80 void setQuicktuneValue(const std::string &name, const QuicktuneValue &val)
83 JMutexAutoLock lock(*g_mutex);
85 g_values[name].modified = true;
88 void updateQuicktuneValue(const std::string &name, QuicktuneValue &val)
91 JMutexAutoLock lock(*g_mutex);
92 std::map<std::string, QuicktuneValue>::iterator i = g_values.find(name);
93 if(i == g_values.end()){
95 g_names.push_back(name);
98 QuicktuneValue &ref = i->second;
103 ref.modified = false;