Minetest 5.9.0-dev
 
Loading...
Searching...
No Matches
quicktune_shortcutter.h
Go to the documentation of this file.
1/*
2Minetest
3Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU Lesser General Public License as published by
7the Free Software Foundation; either version 2.1 of the License, or
8(at your option) any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU Lesser General Public License for more details.
14
15You should have received a copy of the GNU Lesser General Public License along
16with this program; if not, write to the Free Software Foundation, Inc.,
1751 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18*/
19
20#pragma once
21
22#include "quicktune.h"
23
25{
26private:
27 std::vector<std::string> m_names;
29 std::string m_message;
30public:
31 bool hasMessage() const
32 {
33 return !m_message.empty();
34 }
35
36 std::string getMessage()
37 {
38 std::string s = m_message;
39 m_message.clear();
40 if (!s.empty())
41 return std::string("[quicktune] ") + s;
42 return "";
43 }
44 std::string getSelectedName()
45 {
46 if(m_selected_i < m_names.size())
47 return m_names[m_selected_i];
48 return "(nothing)";
49 }
50 void next()
51 {
53 if(m_selected_i < m_names.size()-1)
55 else
56 m_selected_i = 0;
57 m_message = std::string("Selected \"")+getSelectedName()+"\"";
58 }
59 void prev()
60 {
62 if(m_selected_i > 0)
64 else
65 m_selected_i = m_names.size()-1;
66 m_message = std::string("Selected \"")+getSelectedName()+"\"";
67 }
68 void inc()
69 {
71 val.relativeAdd(0.05);
72 m_message = std::string("\"")+getSelectedName()
73 +"\" = "+val.getString();
75 }
76 void dec()
77 {
79 val.relativeAdd(-0.05);
80 m_message = std::string("\"")+getSelectedName()
81 +"\" = "+val.getString();
83 }
84};
Definition: quicktune_shortcutter.h:25
std::vector< std::string > m_names
Definition: quicktune_shortcutter.h:27
void prev()
Definition: quicktune_shortcutter.h:59
void inc()
Definition: quicktune_shortcutter.h:68
u32 m_selected_i
Definition: quicktune_shortcutter.h:28
void dec()
Definition: quicktune_shortcutter.h:76
std::string m_message
Definition: quicktune_shortcutter.h:29
std::string getMessage()
Definition: quicktune_shortcutter.h:36
void next()
Definition: quicktune_shortcutter.h:50
std::string getSelectedName()
Definition: quicktune_shortcutter.h:44
bool hasMessage() const
Definition: quicktune_shortcutter.h:31
QuicktuneValue getQuicktuneValue(const std::string &name)
Definition: quicktune.cpp:59
void setQuicktuneValue(const std::string &name, const QuicktuneValue &val)
Definition: quicktune.cpp:71
const std::vector< std::string > & getQuicktuneNames()
Definition: quicktune.cpp:54
Definition: quicktune.h:60
void relativeAdd(float amount)
Definition: quicktune.cpp:35
std::string getString()
Definition: quicktune.cpp:24