Add scroll_container formspec element (redo) (#9101)
[oweals/minetest.git] / src / hud.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2018 celeron55, Perttu Ahola <celeron55@gmail.com>
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 "hud.h"
21 #include <cmath>
22
23 const struct EnumString es_HudElementType[] =
24 {
25         {HUD_ELEM_IMAGE,     "image"},
26         {HUD_ELEM_TEXT,      "text"},
27         {HUD_ELEM_STATBAR,   "statbar"},
28         {HUD_ELEM_INVENTORY, "inventory"},
29         {HUD_ELEM_WAYPOINT,  "waypoint"},
30         {HUD_ELEM_IMAGE_WAYPOINT, "image_waypoint"},
31         {0, NULL},
32 };
33
34 const struct EnumString es_HudElementStat[] =
35 {
36         {HUD_STAT_POS,    "position"},
37         {HUD_STAT_POS,    "pos"}, /* Deprecated, only for compatibility's sake */
38         {HUD_STAT_NAME,   "name"},
39         {HUD_STAT_SCALE,  "scale"},
40         {HUD_STAT_TEXT,   "text"},
41         {HUD_STAT_NUMBER, "number"},
42         {HUD_STAT_ITEM,   "item"},
43         {HUD_STAT_DIR,    "direction"},
44         {HUD_STAT_ALIGN,  "alignment"},
45         {HUD_STAT_OFFSET, "offset"},
46         {HUD_STAT_WORLD_POS, "world_pos"},
47         {HUD_STAT_SIZE,    "size"},
48         {HUD_STAT_Z_INDEX, "z_index"},
49         {0, NULL},
50 };
51
52 const struct EnumString es_HudBuiltinElement[] =
53 {
54         {HUD_FLAG_HOTBAR_VISIBLE,        "hotbar"},
55         {HUD_FLAG_HEALTHBAR_VISIBLE,     "healthbar"},
56         {HUD_FLAG_CROSSHAIR_VISIBLE,     "crosshair"},
57         {HUD_FLAG_WIELDITEM_VISIBLE,     "wielditem"},
58         {HUD_FLAG_BREATHBAR_VISIBLE,     "breathbar"},
59         {HUD_FLAG_MINIMAP_VISIBLE,       "minimap"},
60         {HUD_FLAG_MINIMAP_RADAR_VISIBLE, "minimap_radar"},
61         {0, NULL},
62 };