]> git.lizzy.rs Git - dragonfireclient.git/blob - src/gui/cheatMenu.h
Fix github build problems #3
[dragonfireclient.git] / src / gui / cheatMenu.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 "client/client.h"
23 #include "irrlichttypes_extrabloated.h"
24 #include "script/scripting_client.h"
25 #include <cstddef>
26 #include <string>
27
28 #define CHEAT_MENU_GET_SCRIPTPTR                                                         \
29         ClientScripting *script = m_client->getScript();                                 \
30         if (!script || !script->m_cheats_loaded)                                         \
31                 return;
32
33 enum CheatMenuEntryType
34 {
35         CHEAT_MENU_ENTRY_TYPE_HEAD,
36         CHEAT_MENU_ENTRY_TYPE_CATEGORY,
37         CHEAT_MENU_ENTRY_TYPE_ENTRY,
38 };
39
40 class CheatMenu
41 {
42 public:
43         CheatMenu(Client *client);
44
45         ClientScripting *getScript() { return m_client->getScript(); }
46
47         void draw(video::IVideoDriver *driver, bool show_debug);
48
49         void drawHUD(video::IVideoDriver *driver, double dtime);
50
51         void drawEntry(video::IVideoDriver *driver, std::string name, int number,
52                         bool selected, bool active,
53                         CheatMenuEntryType entry_type = CHEAT_MENU_ENTRY_TYPE_ENTRY);
54
55         void selectUp();
56         void selectDown();
57         void selectLeft();
58         void selectRight();
59         void selectConfirm();
60
61 private:
62         bool m_cheat_layer = false;
63         int m_selected_cheat = 0;
64         int m_selected_category = 0;
65
66         int m_head_height = 50;
67         int m_entry_height = 40;
68         int m_entry_width = 200;
69         int m_gap = 3;
70
71         video::SColor m_bg_color = video::SColor(192, 255, 145, 88);
72         video::SColor m_active_bg_color = video::SColor(192, 255, 87, 53);
73         video::SColor m_font_color = video::SColor(255, 0, 0, 0);
74         video::SColor m_selected_font_color = video::SColor(255, 255, 252, 88);
75
76         FontMode fontStringToEnum(std::string str);
77
78         Client *m_client;
79
80         gui::IGUIFont *m_font = nullptr;
81         v2u32 m_fontsize;
82
83         float m_rainbow_offset = 0.0;
84 };