]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/cpp_api/s_cheats.h
Merge branch 'master' of https://github.com/minetest/minetest
[dragonfireclient.git] / src / script / cpp_api / s_cheats.h
1 /*
2 Dragonfire
3 Copyright (C) 2020 Elias Fleckenstein <eliasfleckenstein@web.de>
4
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.
9
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.
14
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.
18 */
19
20 #pragma once
21
22 #include "cpp_api/s_base.h"
23 #include <vector>
24 #include <string>
25
26 class ScriptApiCheatsCheat
27 {
28 public:
29         ScriptApiCheatsCheat(const std::string &name, const std::string &setting);
30         ScriptApiCheatsCheat(const std::string &name, const int &function);
31         std::string m_name;
32         bool is_enabled();
33         void toggle(lua_State *L, int error_handler);
34
35 private:
36         std::string m_setting;
37         int m_function_ref;
38 };
39
40 class ScriptApiCheatsCategory
41 {
42 public:
43         ScriptApiCheatsCategory(const std::string &name);
44         ~ScriptApiCheatsCategory();
45         std::string m_name;
46         void read_cheats(lua_State *L);
47         std::vector<ScriptApiCheatsCheat *> m_cheats;
48 };
49
50 class ScriptApiCheats : virtual public ScriptApiBase
51 {
52 public:
53         virtual ~ScriptApiCheats();
54         void init_cheats();
55         void toggle_cheat(ScriptApiCheatsCheat *cheat);
56         bool m_cheats_loaded = false;
57         std::vector<ScriptApiCheatsCategory *> m_cheat_categories;
58 };