2010-11-29 10:13:04 -08:00
|
|
|
/*
|
2013-02-24 09:40:43 -08:00
|
|
|
Minetest
|
2013-02-24 10:38:45 -08:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 10:13:04 -08:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 07:56:56 -07:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2010-11-29 10:13:04 -08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 07:56:56 -07:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-11-29 10:13:04 -08:00
|
|
|
|
2012-06-05 07:56:56 -07:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2010-11-29 10:13:04 -08:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2010-11-26 15:02:21 -08:00
|
|
|
#include "player.h"
|
2014-09-11 15:22:05 -07:00
|
|
|
|
2015-04-07 03:13:12 -07:00
|
|
|
#include "threading/mutex_auto_lock.h"
|
2014-09-11 15:22:05 -07:00
|
|
|
#include "util/numeric.h"
|
2013-04-24 03:52:46 -07:00
|
|
|
#include "hud.h"
|
2010-11-26 15:02:21 -08:00
|
|
|
#include "constants.h"
|
2011-11-14 11:41:30 -08:00
|
|
|
#include "gamedef.h"
|
2012-03-31 06:23:26 -07:00
|
|
|
#include "settings.h"
|
2014-09-11 15:22:05 -07:00
|
|
|
#include "log.h"
|
2014-08-03 13:19:07 -07:00
|
|
|
#include "porting.h" // strlcpy
|
2011-05-16 08:13:17 -07:00
|
|
|
|
2014-08-03 13:19:07 -07:00
|
|
|
|
2016-10-08 08:56:38 -07:00
|
|
|
Player::Player(const char *name, IItemDefManager *idef):
|
|
|
|
inventory(idef),
|
2011-01-14 17:28:19 -08:00
|
|
|
peer_id(PEER_ID_INEXISTENT),
|
2013-08-07 10:48:31 -07:00
|
|
|
keyPressed(0),
|
2011-11-14 11:41:30 -08:00
|
|
|
// protected
|
2016-10-30 06:53:26 -07:00
|
|
|
m_speed(0,0,0)
|
2010-11-26 15:02:21 -08:00
|
|
|
{
|
2014-08-03 13:19:07 -07:00
|
|
|
strlcpy(m_name, name, PLAYERNAME_SIZE);
|
|
|
|
|
2011-01-27 15:38:16 -08:00
|
|
|
inventory.clear();
|
|
|
|
inventory.addList("main", PLAYER_INVENTORY_SIZE);
|
2015-06-25 04:06:49 -07:00
|
|
|
inventory.addList("hand", 1);
|
2012-08-19 14:29:56 -07:00
|
|
|
InventoryList *craft = inventory.addList("craft", 9);
|
|
|
|
craft->setWidth(3);
|
2012-01-21 12:21:41 -08:00
|
|
|
inventory.addList("craftpreview", 1);
|
2011-01-27 15:38:16 -08:00
|
|
|
inventory.addList("craftresult", 1);
|
2014-09-02 09:53:20 -07:00
|
|
|
inventory.setModified(false);
|
2012-07-19 04:09:16 -07:00
|
|
|
|
|
|
|
// Can be redefined via Lua
|
2013-04-25 16:27:22 -07:00
|
|
|
inventory_formspec = "size[8,7.5]"
|
2012-07-19 04:09:16 -07:00
|
|
|
//"image[1,0.6;1,2;player.png]"
|
|
|
|
"list[current_player;main;0,3.5;8,4;]"
|
|
|
|
"list[current_player;craft;3,0;3,3;]"
|
2015-06-16 01:48:54 -07:00
|
|
|
"listring[]"
|
2012-07-19 04:09:16 -07:00
|
|
|
"list[current_player;craftpreview;7,1;1,1;]";
|
2013-02-08 12:54:01 -08:00
|
|
|
|
2015-08-13 00:16:50 -07:00
|
|
|
// Initialize movement settings at default values, so movement can work
|
|
|
|
// if the server fails to send them
|
2013-04-25 16:27:22 -07:00
|
|
|
movement_acceleration_default = 3 * BS;
|
|
|
|
movement_acceleration_air = 2 * BS;
|
|
|
|
movement_acceleration_fast = 10 * BS;
|
|
|
|
movement_speed_walk = 4 * BS;
|
|
|
|
movement_speed_crouch = 1.35 * BS;
|
|
|
|
movement_speed_fast = 20 * BS;
|
|
|
|
movement_speed_climb = 2 * BS;
|
|
|
|
movement_speed_jump = 6.5 * BS;
|
|
|
|
movement_liquid_fluidity = 1 * BS;
|
|
|
|
movement_liquid_fluidity_smooth = 0.5 * BS;
|
|
|
|
movement_liquid_sink = 10 * BS;
|
|
|
|
movement_gravity = 9.81 * BS;
|
2015-03-28 02:45:32 -07:00
|
|
|
local_animation_speed = 0.0;
|
2013-04-05 04:03:28 -07:00
|
|
|
|
2015-08-13 00:16:50 -07:00
|
|
|
hud_flags =
|
|
|
|
HUD_FLAG_HOTBAR_VISIBLE | HUD_FLAG_HEALTHBAR_VISIBLE |
|
|
|
|
HUD_FLAG_CROSSHAIR_VISIBLE | HUD_FLAG_WIELDITEM_VISIBLE |
|
|
|
|
HUD_FLAG_BREATHBAR_VISIBLE | HUD_FLAG_MINIMAP_VISIBLE;
|
2013-05-03 17:08:52 -07:00
|
|
|
|
|
|
|
hud_hotbar_itemcount = HUD_HOTBAR_ITEMCOUNT_DEFAULT;
|
2011-01-27 15:38:16 -08:00
|
|
|
}
|
|
|
|
|
2012-03-18 19:04:16 -07:00
|
|
|
Player::~Player()
|
|
|
|
{
|
2014-07-02 14:33:18 -07:00
|
|
|
clearHud();
|
2012-03-18 19:04:16 -07:00
|
|
|
}
|
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
u32 Player::addHud(HudElement *toadd)
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 13:33:09 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
u32 id = getFreeHudID();
|
2012-03-18 19:04:16 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
if (id < hud.size())
|
|
|
|
hud[id] = toadd;
|
|
|
|
else
|
|
|
|
hud.push_back(toadd);
|
2012-03-18 20:25:09 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
return id;
|
|
|
|
}
|
2012-03-18 20:25:09 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
HudElement* Player::getHud(u32 id)
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 12:09:44 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
if (id < hud.size())
|
|
|
|
return hud[id];
|
2012-03-18 20:25:09 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-03-18 20:25:09 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
HudElement* Player::removeHud(u32 id)
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 12:09:44 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
HudElement* retval = NULL;
|
|
|
|
if (id < hud.size()) {
|
|
|
|
retval = hud[id];
|
|
|
|
hud[id] = NULL;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::clearHud()
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 12:09:44 -07:00
|
|
|
|
2014-05-25 05:34:32 -07:00
|
|
|
while(!hud.empty()) {
|
|
|
|
delete hud.back();
|
|
|
|
hud.pop_back();
|
|
|
|
}
|
|
|
|
}
|