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