]> git.lizzy.rs Git - minetest.git/blob - src/hud.h
Huge overhaul of the entire MapgenParams system
[minetest.git] / src / hud.h
1 /*
2 Minetest
3 Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
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 #ifndef HUD_HEADER
21 #define HUD_HEADER
22
23 #include "irrlichttypes_extrabloated.h"
24 #include <string>
25
26 #define HUD_DIR_LEFT_RIGHT 0
27 #define HUD_DIR_RIGHT_LEFT 1
28 #define HUD_DIR_TOP_BOTTOM 2
29 #define HUD_DIR_BOTTOM_TOP 3
30
31 #define HUD_CORNER_UPPER  0
32 #define HUD_CORNER_LOWER  1
33 #define HUD_CORNER_CENTER 2
34
35 #define HUD_FLAG_HOTBAR_VISIBLE    (1 << 0)
36 #define HUD_FLAG_HEALTHBAR_VISIBLE (1 << 1)
37 #define HUD_FLAG_CROSSHAIR_VISIBLE (1 << 2)
38 #define HUD_FLAG_WIELDITEM_VISIBLE (1 << 3)
39 #define HUD_FLAG_BREATHBAR_VISIBLE (1 << 4)
40
41 #define HUD_PARAM_HOTBAR_ITEMCOUNT 1
42 #define HUD_PARAM_HOTBAR_IMAGE 2
43 #define HUD_PARAM_HOTBAR_SELECTED_IMAGE 3
44
45 #define HUD_HOTBAR_ITEMCOUNT_DEFAULT 8
46 #define HUD_HOTBAR_ITEMCOUNT_MAX     23
47
48 enum HudElementType {
49         HUD_ELEM_IMAGE     = 0,
50         HUD_ELEM_TEXT      = 1,
51         HUD_ELEM_STATBAR   = 2,
52         HUD_ELEM_INVENTORY = 3,
53         HUD_ELEM_WAYPOINT  = 4,
54 };
55
56 enum HudElementStat {
57         HUD_STAT_POS = 0,
58         HUD_STAT_NAME,
59         HUD_STAT_SCALE,
60         HUD_STAT_TEXT,
61         HUD_STAT_NUMBER,
62         HUD_STAT_ITEM,
63         HUD_STAT_DIR,
64         HUD_STAT_ALIGN,
65         HUD_STAT_OFFSET,
66         HUD_STAT_WORLD_POS
67 };
68
69 struct HudElement {
70         HudElementType type;
71         v2f pos;
72         std::string name;
73         v2f scale;
74         std::string text;
75         u32 number;
76         u32 item;
77         u32 dir;
78         v2f align;
79         v2f offset;
80         v3f world_pos;
81 };
82
83 #ifndef SERVER
84
85 #include <vector>
86 #include <IGUIFont.h>
87 #include "irr_aabb3d.h"
88
89 class IGameDef;
90 class ITextureSource;
91 class Inventory;
92 class InventoryList;
93 class LocalPlayer;
94 struct ItemStack;
95
96 class Hud {
97 public:
98         video::IVideoDriver *driver;
99         scene::ISceneManager* smgr;
100         gui::IGUIEnvironment *guienv;
101         gui::IGUIFont *font;
102         u32 text_height;
103         IGameDef *gamedef;
104         LocalPlayer *player;
105         Inventory *inventory;
106         ITextureSource *tsrc;
107
108         v2u32 screensize;
109         v2s32 displaycenter;
110         s32 hotbar_imagesize;
111         
112         video::SColor crosshair_argb;
113         video::SColor selectionbox_argb;
114         bool use_crosshair_image;
115         std::string hotbar_image;
116         bool use_hotbar_image;
117         std::string hotbar_selected_image;
118         bool use_hotbar_selected_image;
119         
120         Hud(video::IVideoDriver *driver,scene::ISceneManager* smgr,
121                 gui::IGUIEnvironment* guienv, gui::IGUIFont *font,
122                 u32 text_height, IGameDef *gamedef,
123                 LocalPlayer *player, Inventory *inventory);
124         
125         void drawItem(v2s32 upperleftpos, s32 imgsize, s32 itemcount,
126                 InventoryList *mainlist, u16 selectitem, u16 direction);
127         void drawLuaElements();
128         void drawStatbar(v2s32 pos, u16 corner, u16 drawdir,
129                                          std::string texture, s32 count, v2s32 offset);
130         
131         void drawHotbar(v2s32 centerlowerpos, s32 halfheartcount, u16 playeritem, s32 breath);
132         void resizeHotbar();
133         
134         void drawCrosshair();
135         void drawSelectionBoxes(std::vector<aabb3f> &hilightboxes);
136 };
137
138 void drawItemStack(video::IVideoDriver *driver,
139                 gui::IGUIFont *font,
140                 const ItemStack &item,
141                 const core::rect<s32> &rect,
142                 const core::rect<s32> *clip,
143                 IGameDef *gamedef);
144
145
146 #endif
147
148 #endif