2010-11-29 19:13:04 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 19:13:04 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02: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 19:13:04 +01: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 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-11-29 19:13:04 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2010-11-29 19:13:04 +01: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-27 00:02:21 +01:00
|
|
|
#include "player.h"
|
2014-09-12 00:22:05 +02:00
|
|
|
|
2022-01-09 18:46:36 +01:00
|
|
|
#include <cmath>
|
2015-04-07 12:13:12 +02:00
|
|
|
#include "threading/mutex_auto_lock.h"
|
2014-09-12 00:22:05 +02:00
|
|
|
#include "util/numeric.h"
|
2013-04-24 12:52:46 +02:00
|
|
|
#include "hud.h"
|
2010-11-27 00:02:21 +01:00
|
|
|
#include "constants.h"
|
2011-11-14 20:41:30 +01:00
|
|
|
#include "gamedef.h"
|
2012-03-31 15:23:26 +02:00
|
|
|
#include "settings.h"
|
2014-09-12 00:22:05 +02:00
|
|
|
#include "log.h"
|
2014-08-03 22:19:07 +02:00
|
|
|
#include "porting.h" // strlcpy
|
2024-09-14 12:10:11 +02:00
|
|
|
#include <tuple>
|
2011-05-16 17:13:17 +02:00
|
|
|
|
2014-08-03 22:19:07 +02:00
|
|
|
|
2024-08-13 02:50:36 +02:00
|
|
|
bool is_valid_player_name(std::string_view name) {
|
|
|
|
return !name.empty() && name.size() <= PLAYERNAME_SIZE && string_allowed(name, PLAYERNAME_ALLOWED_CHARS);
|
|
|
|
}
|
|
|
|
|
2023-11-12 15:28:29 +01:00
|
|
|
Player::Player(const std::string &name, IItemDefManager *idef):
|
2017-06-18 19:55:15 +02:00
|
|
|
inventory(idef)
|
2010-11-27 00:02:21 +01:00
|
|
|
{
|
2023-11-12 15:25:46 +01:00
|
|
|
m_name = name;
|
2014-08-03 22:19:07 +02:00
|
|
|
|
2011-01-28 00:38:16 +01:00
|
|
|
inventory.clear();
|
|
|
|
inventory.addList("main", PLAYER_INVENTORY_SIZE);
|
2012-08-19 23:29:56 +02:00
|
|
|
InventoryList *craft = inventory.addList("craft", 9);
|
|
|
|
craft->setWidth(3);
|
2012-01-21 21:21:41 +01:00
|
|
|
inventory.addList("craftpreview", 1);
|
2011-01-28 00:38:16 +01:00
|
|
|
inventory.addList("craftresult", 1);
|
2014-09-02 18:53:20 +02:00
|
|
|
inventory.setModified(false);
|
2012-07-19 13:09:16 +02:00
|
|
|
|
|
|
|
// Can be redefined via Lua
|
2013-04-26 01:27:22 +02:00
|
|
|
inventory_formspec = "size[8,7.5]"
|
2012-07-19 13:09:16 +02: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 10:48:54 +02:00
|
|
|
"listring[]"
|
2012-07-19 13:09:16 +02:00
|
|
|
"list[current_player;craftpreview;7,1;1,1;]";
|
2013-02-08 21:54:01 +01:00
|
|
|
|
2015-08-13 09:16:50 +02:00
|
|
|
// Initialize movement settings at default values, so movement can work
|
|
|
|
// if the server fails to send them
|
2013-04-26 01:27:22 +02: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 10:45:32 +01:00
|
|
|
local_animation_speed = 0.0;
|
2013-04-05 13:03:28 +02:00
|
|
|
|
2015-08-13 09:16:50 +02:00
|
|
|
hud_flags =
|
|
|
|
HUD_FLAG_HOTBAR_VISIBLE | HUD_FLAG_HEALTHBAR_VISIBLE |
|
|
|
|
HUD_FLAG_CROSSHAIR_VISIBLE | HUD_FLAG_WIELDITEM_VISIBLE |
|
2017-08-18 17:43:31 +02:00
|
|
|
HUD_FLAG_BREATHBAR_VISIBLE | HUD_FLAG_MINIMAP_VISIBLE |
|
2023-02-20 21:00:37 +01:00
|
|
|
HUD_FLAG_MINIMAP_RADAR_VISIBLE | HUD_FLAG_BASIC_DEBUG |
|
|
|
|
HUD_FLAG_CHAT_VISIBLE;
|
2013-05-04 02:08:52 +02:00
|
|
|
|
|
|
|
hud_hotbar_itemcount = HUD_HOTBAR_ITEMCOUNT_DEFAULT;
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
|
|
|
|
2012-03-19 03:04:16 +01:00
|
|
|
Player::~Player()
|
|
|
|
{
|
2014-07-02 23:33:18 +02:00
|
|
|
clearHud();
|
2012-03-19 03:04:16 +01:00
|
|
|
}
|
|
|
|
|
2019-08-07 19:16:31 +02:00
|
|
|
void Player::setWieldIndex(u16 index)
|
|
|
|
{
|
|
|
|
const InventoryList *mlist = inventory.getList("main");
|
|
|
|
m_wield_index = MYMIN(index, mlist ? mlist->getSize() : 0);
|
|
|
|
}
|
|
|
|
|
2024-08-12 15:35:13 +02:00
|
|
|
u16 Player::getWieldIndex()
|
|
|
|
{
|
|
|
|
return std::min(m_wield_index, getMaxHotbarItemcount());
|
|
|
|
}
|
|
|
|
|
2019-08-07 19:16:31 +02:00
|
|
|
ItemStack &Player::getWieldedItem(ItemStack *selected, ItemStack *hand) const
|
|
|
|
{
|
|
|
|
assert(selected);
|
|
|
|
|
|
|
|
const InventoryList *mlist = inventory.getList("main"); // TODO: Make this generic
|
|
|
|
const InventoryList *hlist = inventory.getList("hand");
|
|
|
|
|
|
|
|
if (mlist && m_wield_index < mlist->getSize())
|
|
|
|
*selected = mlist->getItem(m_wield_index);
|
|
|
|
|
|
|
|
if (hand && hlist)
|
|
|
|
*hand = hlist->getItem(0);
|
|
|
|
|
|
|
|
// Return effective tool item
|
|
|
|
return (hand && selected->name.empty()) ? *hand : *selected;
|
|
|
|
}
|
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
u32 Player::addHud(HudElement *toadd)
|
|
|
|
{
|
2015-04-07 12:13:12 +02:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 21:33:09 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
u32 id = getFreeHudID();
|
2012-03-19 03:04:16 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
if (id < hud.size())
|
|
|
|
hud[id] = toadd;
|
|
|
|
else
|
|
|
|
hud.push_back(toadd);
|
2012-03-19 04:25:09 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
return id;
|
|
|
|
}
|
2012-03-19 04:25:09 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
HudElement* Player::getHud(u32 id)
|
|
|
|
{
|
2015-04-07 12:13:12 +02:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 20:09:44 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
if (id < hud.size())
|
|
|
|
return hud[id];
|
2012-03-19 04:25:09 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-03-19 04:25:09 +01:00
|
|
|
|
2024-01-14 17:46:29 +01:00
|
|
|
void Player::hudApply(std::function<void(const std::vector<HudElement*>&)> f)
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(m_mutex);
|
|
|
|
f(hud);
|
|
|
|
}
|
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
HudElement* Player::removeHud(u32 id)
|
|
|
|
{
|
2015-04-07 12:13:12 +02:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 20:09:44 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
HudElement* retval = NULL;
|
|
|
|
if (id < hud.size()) {
|
|
|
|
retval = hud[id];
|
|
|
|
hud[id] = NULL;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::clearHud()
|
|
|
|
{
|
2015-04-07 12:13:12 +02:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-03-22 20:09:44 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
while(!hud.empty()) {
|
|
|
|
delete hud.back();
|
|
|
|
hud.pop_back();
|
|
|
|
}
|
|
|
|
}
|
2018-04-18 20:56:01 +02:00
|
|
|
|
2024-08-12 15:35:13 +02:00
|
|
|
u16 Player::getMaxHotbarItemcount()
|
|
|
|
{
|
|
|
|
InventoryList *mainlist = inventory.getList("main");
|
|
|
|
return mainlist ? std::min(mainlist->getSize(), (u32) hud_hotbar_itemcount) : 0;
|
|
|
|
}
|
|
|
|
|
2024-10-01 17:21:42 +02:00
|
|
|
void PlayerControl::setMovementFromKeys()
|
|
|
|
{
|
|
|
|
bool a_up = direction_keys & (1 << 0),
|
|
|
|
a_down = direction_keys & (1 << 1),
|
|
|
|
a_left = direction_keys & (1 << 2),
|
|
|
|
a_right = direction_keys & (1 << 3);
|
|
|
|
|
|
|
|
if (a_up || a_down || a_left || a_right) {
|
|
|
|
// if contradictory keys pressed, stay still
|
|
|
|
if (a_up && a_down && a_left && a_right)
|
|
|
|
movement_speed = 0.0f;
|
|
|
|
else if (a_up && a_down && !a_left && !a_right)
|
|
|
|
movement_speed = 0.0f;
|
|
|
|
else if (!a_up && !a_down && a_left && a_right)
|
|
|
|
movement_speed = 0.0f;
|
|
|
|
else
|
|
|
|
// If there is a keyboard event, assume maximum speed
|
|
|
|
movement_speed = 1.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check keyboard for input
|
|
|
|
float x = 0, y = 0;
|
|
|
|
if (a_up)
|
|
|
|
y += 1;
|
|
|
|
if (a_down)
|
|
|
|
y -= 1;
|
|
|
|
if (a_left)
|
|
|
|
x -= 1;
|
|
|
|
if (a_right)
|
|
|
|
x += 1;
|
|
|
|
|
|
|
|
if (x != 0 || y != 0)
|
|
|
|
// If there is a keyboard event, it takes priority
|
|
|
|
movement_direction = std::atan2(x, y);
|
|
|
|
}
|
|
|
|
|
2024-10-15 15:47:23 +02:00
|
|
|
#if CHECK_CLIENT_BUILD()
|
2022-01-09 18:46:36 +01:00
|
|
|
|
|
|
|
u32 PlayerControl::getKeysPressed() const
|
|
|
|
{
|
|
|
|
u32 keypress_bits =
|
|
|
|
( (u32)(jump & 1) << 4) |
|
|
|
|
( (u32)(aux1 & 1) << 5) |
|
|
|
|
( (u32)(sneak & 1) << 6) |
|
|
|
|
( (u32)(dig & 1) << 7) |
|
|
|
|
( (u32)(place & 1) << 8) |
|
|
|
|
( (u32)(zoom & 1) << 9)
|
|
|
|
;
|
|
|
|
|
|
|
|
// If any direction keys are pressed pass those through
|
|
|
|
if (direction_keys != 0)
|
|
|
|
{
|
|
|
|
keypress_bits |= direction_keys;
|
|
|
|
}
|
|
|
|
// Otherwise set direction keys based on joystick movement (for mod compatibility)
|
|
|
|
else if (isMoving())
|
|
|
|
{
|
|
|
|
float abs_d;
|
|
|
|
|
|
|
|
// (absolute value indicates forward / backward)
|
2024-02-26 21:54:48 +01:00
|
|
|
abs_d = std::abs(movement_direction);
|
2022-01-09 18:46:36 +01:00
|
|
|
if (abs_d < 3.0f / 8.0f * M_PI)
|
|
|
|
keypress_bits |= (u32)1; // Forward
|
|
|
|
if (abs_d > 5.0f / 8.0f * M_PI)
|
|
|
|
keypress_bits |= (u32)1 << 1; // Backward
|
|
|
|
|
|
|
|
// rotate entire coordinate system by 90 degree
|
|
|
|
abs_d = movement_direction + M_PI_2;
|
|
|
|
if (abs_d >= M_PI)
|
|
|
|
abs_d -= 2 * M_PI;
|
2024-02-26 21:54:48 +01:00
|
|
|
abs_d = std::abs(abs_d);
|
2022-01-09 18:46:36 +01:00
|
|
|
// (value now indicates left / right)
|
|
|
|
if (abs_d < 3.0f / 8.0f * M_PI)
|
|
|
|
keypress_bits |= (u32)1 << 2; // Left
|
|
|
|
if (abs_d > 5.0f / 8.0f * M_PI)
|
|
|
|
keypress_bits |= (u32)1 << 3; // Right
|
|
|
|
}
|
|
|
|
|
|
|
|
return keypress_bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void PlayerControl::unpackKeysPressed(u32 keypress_bits)
|
|
|
|
{
|
|
|
|
direction_keys = keypress_bits & 0xf;
|
|
|
|
jump = keypress_bits & (1 << 4);
|
|
|
|
aux1 = keypress_bits & (1 << 5);
|
|
|
|
sneak = keypress_bits & (1 << 6);
|
|
|
|
dig = keypress_bits & (1 << 7);
|
|
|
|
place = keypress_bits & (1 << 8);
|
|
|
|
zoom = keypress_bits & (1 << 9);
|
|
|
|
}
|
2024-09-14 12:10:11 +02:00
|
|
|
|
2024-10-01 17:21:42 +02:00
|
|
|
v2f PlayerControl::getMovement() const
|
|
|
|
{
|
|
|
|
return v2f(std::sin(movement_direction), std::cos(movement_direction)) * movement_speed;
|
|
|
|
}
|
|
|
|
|
2024-09-14 12:10:11 +02:00
|
|
|
static auto tie(const PlayerPhysicsOverride &o)
|
|
|
|
{
|
|
|
|
// Make sure to add new members to this list!
|
|
|
|
return std::tie(
|
|
|
|
o.speed, o.jump, o.gravity, o.sneak, o.sneak_glitch, o.new_move, o.speed_climb,
|
|
|
|
o.speed_crouch, o.liquid_fluidity, o.liquid_fluidity_smooth, o.liquid_sink,
|
|
|
|
o.acceleration_default, o.acceleration_air, o.speed_fast, o.acceleration_fast,
|
|
|
|
o.speed_walk
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PlayerPhysicsOverride::operator==(const PlayerPhysicsOverride &other) const
|
|
|
|
{
|
|
|
|
return tie(*this) == tie(other);
|
|
|
|
}
|