]> git.lizzy.rs Git - dragonfireclient.git/blob - src/gui/cheatMenu.cpp
Only draw tracers to objects that are not attached (that fixes tracers to armor)
[dragonfireclient.git] / src / gui / cheatMenu.cpp
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 #include "cheatMenu.h"
21 #include "script/scripting_client.h"
22 #include "client/client.h"
23 #include "client/fontengine.h"
24
25 CheatMenu::CheatMenu(Client *client):
26         m_client(client)
27 {
28         m_font = g_fontengine->getFont(FONT_SIZE_UNSPECIFIED, FM_Fallback);
29
30         if (!m_font) {
31                 errorstream << "CheatMenu: Unable to load fallback font" << std::endl;
32         } else {
33                 core::dimension2d<u32> dim = m_font->getDimension(L"M");
34                 m_fontsize = v2u32(dim.Width, dim.Height);
35                 m_font->grab();
36         }
37         m_fontsize.X = MYMAX(m_fontsize.X, 1);
38         m_fontsize.Y = MYMAX(m_fontsize.Y, 1);
39 }
40
41 void CheatMenu::drawEntry(video::IVideoDriver* driver, std::string name, int number, bool selected, bool active, CheatMenuEntryType entry_type)
42 {
43         int x = m_gap, y = m_gap, width = m_entry_width, height = m_entry_height;
44         video::SColor *bgcolor = &m_bg_color, *fontcolor = &m_font_color;
45         if (entry_type == CHEAT_MENU_ENTRY_TYPE_HEAD) {
46                 bgcolor = &m_active_bg_color;
47                 height = m_head_height;
48         } else {
49                 bool is_category = entry_type == CHEAT_MENU_ENTRY_TYPE_CATEGORY;
50                 y += m_gap + m_head_height + (number + (is_category ? 0 : m_selected_category)) * (m_entry_height + m_gap);     
51                 x += (is_category ? 0 : m_gap + m_entry_width);
52                 if (active)
53                         bgcolor = &m_active_bg_color;
54                 if (selected)
55                         fontcolor = &m_selected_font_color;
56         }
57         driver->draw2DRectangle(*bgcolor, core::rect<s32>(x, y, x + width, y + height));
58         if (selected)
59                 driver->draw2DRectangleOutline(core::rect<s32>(x - 1, y - 1, x + width, y + height), *fontcolor);
60         int fx = x + 5, fy = y + (height - m_fontsize.Y) / 2;
61         core::rect<s32> fontbounds(fx, fy, fx + m_fontsize.X * name.size(), fy + m_fontsize.Y);
62         m_font->draw(name.c_str(), fontbounds, *fontcolor, false, false);
63 }
64
65 void CheatMenu::draw(video::IVideoDriver* driver, bool show_debug)
66 {
67         CHEAT_MENU_GET_SCRIPTPTR
68         
69         if (! show_debug)
70                 drawEntry(driver, "Dragonfireclient", 0, false, false, CHEAT_MENU_ENTRY_TYPE_HEAD);
71         int category_count = 0;
72         for (auto category = script->m_cheat_categories.begin(); category != script->m_cheat_categories.end(); category++) {
73                 bool is_selected = category_count == m_selected_category;
74                 drawEntry(driver, (*category)->m_name, category_count, is_selected, false, CHEAT_MENU_ENTRY_TYPE_CATEGORY);
75                 if (is_selected && m_cheat_layer) {
76                         int cheat_count = 0;
77                         for (auto cheat = (*category)->m_cheats.begin(); cheat != (*category)->m_cheats.end(); cheat++) {
78                                 drawEntry(driver, (*cheat)->m_name, cheat_count, cheat_count == m_selected_cheat, (*cheat)->is_enabled());
79                                 cheat_count++;
80                         }
81                 }
82                 category_count++;
83         }
84 }
85
86 void CheatMenu::selectUp()
87 {
88         CHEAT_MENU_GET_SCRIPTPTR
89         
90         int max = (m_cheat_layer ? script->m_cheat_categories[m_selected_category]->m_cheats.size() : script->m_cheat_categories.size()) - 1;
91         int *selected = m_cheat_layer ? &m_selected_cheat : &m_selected_category;
92         --*selected;
93         if (*selected < 0)
94                 *selected = max;
95 }
96
97 void CheatMenu::selectDown()
98 {
99         CHEAT_MENU_GET_SCRIPTPTR
100         
101         int max = (m_cheat_layer ? script->m_cheat_categories[m_selected_category]->m_cheats.size() : script->m_cheat_categories.size()) - 1;
102         int *selected = m_cheat_layer ? &m_selected_cheat : &m_selected_category;
103         ++*selected;
104         if (*selected > max)
105                 *selected = 0;
106 }
107
108 void CheatMenu::selectRight()
109 {
110         if (m_cheat_layer)
111                 return;
112         m_cheat_layer = true;
113         m_selected_cheat = 0;
114 }
115
116 void CheatMenu::selectLeft()
117 {       
118         if (! m_cheat_layer)
119                 return;
120         m_cheat_layer = false;
121 }
122
123 void CheatMenu::selectConfirm()
124 {       
125         CHEAT_MENU_GET_SCRIPTPTR
126         
127         if (m_cheat_layer)
128                 script->toggle_cheat(script->m_cheat_categories[m_selected_category]->m_cheats[m_selected_cheat]);
129 }