]> git.lizzy.rs Git - minetest.git/blob - src/player.cpp
Add chat HUD flag (#13189)
[minetest.git] / src / player.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 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 "player.h"
21
22 #include <cmath>
23 #include "threading/mutex_auto_lock.h"
24 #include "util/numeric.h"
25 #include "hud.h"
26 #include "constants.h"
27 #include "gamedef.h"
28 #include "settings.h"
29 #include "log.h"
30 #include "porting.h"  // strlcpy
31
32
33 Player::Player(const char *name, IItemDefManager *idef):
34         inventory(idef)
35 {
36         strlcpy(m_name, name, PLAYERNAME_SIZE);
37
38         inventory.clear();
39         inventory.addList("main", PLAYER_INVENTORY_SIZE);
40         InventoryList *craft = inventory.addList("craft", 9);
41         craft->setWidth(3);
42         inventory.addList("craftpreview", 1);
43         inventory.addList("craftresult", 1);
44         inventory.setModified(false);
45
46         // Can be redefined via Lua
47         inventory_formspec = "size[8,7.5]"
48                 //"image[1,0.6;1,2;player.png]"
49                 "list[current_player;main;0,3.5;8,4;]"
50                 "list[current_player;craft;3,0;3,3;]"
51                 "listring[]"
52                 "list[current_player;craftpreview;7,1;1,1;]";
53
54         // Initialize movement settings at default values, so movement can work
55         // if the server fails to send them
56         movement_acceleration_default   = 3    * BS;
57         movement_acceleration_air       = 2    * BS;
58         movement_acceleration_fast      = 10   * BS;
59         movement_speed_walk             = 4    * BS;
60         movement_speed_crouch           = 1.35 * BS;
61         movement_speed_fast             = 20   * BS;
62         movement_speed_climb            = 2    * BS;
63         movement_speed_jump             = 6.5  * BS;
64         movement_liquid_fluidity        = 1    * BS;
65         movement_liquid_fluidity_smooth = 0.5  * BS;
66         movement_liquid_sink            = 10   * BS;
67         movement_gravity                = 9.81 * BS;
68         local_animation_speed           = 0.0;
69
70         hud_flags =
71                 HUD_FLAG_HOTBAR_VISIBLE    | HUD_FLAG_HEALTHBAR_VISIBLE |
72                 HUD_FLAG_CROSSHAIR_VISIBLE | HUD_FLAG_WIELDITEM_VISIBLE |
73                 HUD_FLAG_BREATHBAR_VISIBLE | HUD_FLAG_MINIMAP_VISIBLE   |
74                 HUD_FLAG_MINIMAP_RADAR_VISIBLE | HUD_FLAG_BASIC_DEBUG   |
75                 HUD_FLAG_CHAT_VISIBLE;
76
77         hud_hotbar_itemcount = HUD_HOTBAR_ITEMCOUNT_DEFAULT;
78
79         m_player_settings.readGlobalSettings();
80         // Register player setting callbacks
81         for (const std::string &name : m_player_settings.setting_names)
82                 g_settings->registerChangedCallback(name,
83                         &Player::settingsChangedCallback, &m_player_settings);
84 }
85
86 Player::~Player()
87 {
88         // m_player_settings becomes invalid, remove callbacks
89         for (const std::string &name : m_player_settings.setting_names)
90                 g_settings->deregisterChangedCallback(name,
91                         &Player::settingsChangedCallback, &m_player_settings);
92         clearHud();
93 }
94
95 void Player::setWieldIndex(u16 index)
96 {
97         const InventoryList *mlist = inventory.getList("main");
98         m_wield_index = MYMIN(index, mlist ? mlist->getSize() : 0);
99 }
100
101 ItemStack &Player::getWieldedItem(ItemStack *selected, ItemStack *hand) const
102 {
103         assert(selected);
104
105         const InventoryList *mlist = inventory.getList("main"); // TODO: Make this generic
106         const InventoryList *hlist = inventory.getList("hand");
107
108         if (mlist && m_wield_index < mlist->getSize())
109                 *selected = mlist->getItem(m_wield_index);
110
111         if (hand && hlist)
112                 *hand = hlist->getItem(0);
113
114         // Return effective tool item
115         return (hand && selected->name.empty()) ? *hand : *selected;
116 }
117
118 u32 Player::addHud(HudElement *toadd)
119 {
120         MutexAutoLock lock(m_mutex);
121
122         u32 id = getFreeHudID();
123
124         if (id < hud.size())
125                 hud[id] = toadd;
126         else
127                 hud.push_back(toadd);
128
129         return id;
130 }
131
132 HudElement* Player::getHud(u32 id)
133 {
134         MutexAutoLock lock(m_mutex);
135
136         if (id < hud.size())
137                 return hud[id];
138
139         return NULL;
140 }
141
142 HudElement* Player::removeHud(u32 id)
143 {
144         MutexAutoLock lock(m_mutex);
145
146         HudElement* retval = NULL;
147         if (id < hud.size()) {
148                 retval = hud[id];
149                 hud[id] = NULL;
150         }
151         return retval;
152 }
153
154 void Player::clearHud()
155 {
156         MutexAutoLock lock(m_mutex);
157
158         while(!hud.empty()) {
159                 delete hud.back();
160                 hud.pop_back();
161         }
162 }
163
164 #ifndef SERVER
165
166 u32 PlayerControl::getKeysPressed() const
167 {
168         u32 keypress_bits =
169                 ( (u32)(jump  & 1) << 4) |
170                 ( (u32)(aux1  & 1) << 5) |
171                 ( (u32)(sneak & 1) << 6) |
172                 ( (u32)(dig   & 1) << 7) |
173                 ( (u32)(place & 1) << 8) |
174                 ( (u32)(zoom  & 1) << 9)
175         ;
176
177         // If any direction keys are pressed pass those through
178         if (direction_keys != 0)
179         {
180                 keypress_bits |= direction_keys;
181         }
182         // Otherwise set direction keys based on joystick movement (for mod compatibility)
183         else if (isMoving())
184         {
185                 float abs_d;
186
187                 // (absolute value indicates forward / backward)
188                 abs_d = abs(movement_direction);
189                 if (abs_d < 3.0f / 8.0f * M_PI)
190                         keypress_bits |= (u32)1; // Forward
191                 if (abs_d > 5.0f / 8.0f * M_PI)
192                         keypress_bits |= (u32)1 << 1; // Backward
193
194                 // rotate entire coordinate system by 90 degree
195                 abs_d = movement_direction + M_PI_2;
196                 if (abs_d >= M_PI)
197                         abs_d -= 2 * M_PI;
198                 abs_d = abs(abs_d);
199                 // (value now indicates left / right)
200                 if (abs_d < 3.0f / 8.0f * M_PI)
201                         keypress_bits |= (u32)1 << 2; // Left
202                 if (abs_d > 5.0f / 8.0f * M_PI)
203                         keypress_bits |= (u32)1 << 3; // Right
204         }
205
206         return keypress_bits;
207 }
208
209 #endif
210
211 void PlayerControl::unpackKeysPressed(u32 keypress_bits)
212 {
213         direction_keys = keypress_bits & 0xf;
214         jump  = keypress_bits & (1 << 4);
215         aux1  = keypress_bits & (1 << 5);
216         sneak = keypress_bits & (1 << 6);
217         dig   = keypress_bits & (1 << 7);
218         place = keypress_bits & (1 << 8);
219         zoom  = keypress_bits & (1 << 9);
220 }
221
222 void PlayerSettings::readGlobalSettings()
223 {
224         free_move = g_settings->getBool("free_move");
225         pitch_move = g_settings->getBool("pitch_move");
226         fast_move = g_settings->getBool("fast_move");
227         continuous_forward = g_settings->getBool("continuous_forward");
228         always_fly_fast = g_settings->getBool("always_fly_fast");
229         aux1_descends = g_settings->getBool("aux1_descends");
230         noclip = g_settings->getBool("noclip");
231         autojump = g_settings->getBool("autojump");
232 }
233
234 void Player::settingsChangedCallback(const std::string &name, void *data)
235 {
236         ((PlayerSettings *)data)->readGlobalSettings();
237 }