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.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2010-11-27 00:02:21 +01:00
|
|
|
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2010-11-27 00:02:21 +01:00
|
|
|
#include "inventory.h"
|
2017-06-18 19:55:15 +02:00
|
|
|
#include "constants.h"
|
2017-09-27 19:47:36 +02:00
|
|
|
#include "network/networkprotocol.h"
|
2017-08-14 10:52:59 +02:00
|
|
|
#include "util/basic_macros.h"
|
2014-04-15 19:49:32 +02:00
|
|
|
#include <list>
|
2017-06-06 16:29:28 +02:00
|
|
|
#include <mutex>
|
2010-11-27 00:02:21 +01:00
|
|
|
|
|
|
|
#define PLAYERNAME_SIZE 20
|
2011-05-29 20:11:16 +02:00
|
|
|
|
|
|
|
#define PLAYERNAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_"
|
2015-07-25 07:43:32 +02:00
|
|
|
#define PLAYERNAME_ALLOWED_CHARS_USER_EXPL "'a' to 'z', 'A' to 'Z', '0' to '9', '-', '_'"
|
2011-05-16 17:13:17 +02:00
|
|
|
|
2012-11-22 20:01:31 +01:00
|
|
|
struct PlayerControl
|
|
|
|
{
|
2017-08-19 14:25:35 +02:00
|
|
|
PlayerControl() = default;
|
2013-03-31 05:30:32 +02:00
|
|
|
|
2012-11-22 20:01:31 +01:00
|
|
|
PlayerControl(
|
|
|
|
bool a_up,
|
|
|
|
bool a_down,
|
|
|
|
bool a_left,
|
|
|
|
bool a_right,
|
|
|
|
bool a_jump,
|
|
|
|
bool a_aux1,
|
|
|
|
bool a_sneak,
|
2013-03-31 05:30:32 +02:00
|
|
|
bool a_zoom,
|
2012-11-22 20:01:31 +01:00
|
|
|
bool a_LMB,
|
|
|
|
bool a_RMB,
|
|
|
|
float a_pitch,
|
2016-05-27 08:35:07 +02:00
|
|
|
float a_yaw,
|
|
|
|
float a_sidew_move_joystick_axis,
|
|
|
|
float a_forw_move_joystick_axis
|
2012-11-22 20:01:31 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
up = a_up;
|
|
|
|
down = a_down;
|
|
|
|
left = a_left;
|
|
|
|
right = a_right;
|
|
|
|
jump = a_jump;
|
|
|
|
aux1 = a_aux1;
|
|
|
|
sneak = a_sneak;
|
2013-03-31 05:30:32 +02:00
|
|
|
zoom = a_zoom;
|
2012-11-22 20:01:31 +01:00
|
|
|
LMB = a_LMB;
|
|
|
|
RMB = a_RMB;
|
|
|
|
pitch = a_pitch;
|
|
|
|
yaw = a_yaw;
|
2016-05-27 08:35:07 +02:00
|
|
|
sidew_move_joystick_axis = a_sidew_move_joystick_axis;
|
|
|
|
forw_move_joystick_axis = a_forw_move_joystick_axis;
|
2012-11-22 20:01:31 +01:00
|
|
|
}
|
2017-06-18 19:55:15 +02:00
|
|
|
bool up = false;
|
|
|
|
bool down = false;
|
|
|
|
bool left = false;
|
|
|
|
bool right = false;
|
|
|
|
bool jump = false;
|
|
|
|
bool aux1 = false;
|
|
|
|
bool sneak = false;
|
|
|
|
bool zoom = false;
|
|
|
|
bool LMB = false;
|
|
|
|
bool RMB = false;
|
|
|
|
float pitch = 0.0f;
|
|
|
|
float yaw = 0.0f;
|
|
|
|
float sidew_move_joystick_axis = 0.0f;
|
|
|
|
float forw_move_joystick_axis = 0.0f;
|
2012-11-22 20:01:31 +01:00
|
|
|
};
|
|
|
|
|
2018-04-18 20:56:01 +02:00
|
|
|
struct PlayerSettings
|
|
|
|
{
|
|
|
|
bool free_move = false;
|
|
|
|
bool fast_move = false;
|
|
|
|
bool continuous_forward = false;
|
|
|
|
bool always_fly_fast = false;
|
|
|
|
bool aux1_descends = false;
|
|
|
|
bool noclip = false;
|
|
|
|
|
|
|
|
void readGlobalSettings();
|
|
|
|
};
|
|
|
|
|
2010-11-27 00:02:21 +01:00
|
|
|
class Map;
|
2012-01-23 20:23:56 +01:00
|
|
|
struct CollisionInfo;
|
2013-05-20 03:26:08 +02:00
|
|
|
struct HudElement;
|
2014-04-15 19:49:32 +02:00
|
|
|
class Environment;
|
2010-11-27 00:02:21 +01:00
|
|
|
|
|
|
|
class Player
|
|
|
|
{
|
|
|
|
public:
|
2011-05-16 11:41:19 +02:00
|
|
|
|
2016-10-08 17:56:38 +02:00
|
|
|
Player(const char *name, IItemDefManager *idef);
|
2012-03-19 03:04:16 +01:00
|
|
|
virtual ~Player() = 0;
|
2010-11-27 00:02:21 +01:00
|
|
|
|
2017-08-14 10:52:59 +02:00
|
|
|
DISABLE_CLASS_COPY(Player);
|
|
|
|
|
2014-04-15 19:49:32 +02:00
|
|
|
virtual void move(f32 dtime, Environment *env, f32 pos_max_d)
|
|
|
|
{}
|
|
|
|
virtual void move(f32 dtime, Environment *env, f32 pos_max_d,
|
2015-04-01 05:33:30 +02:00
|
|
|
std::vector<CollisionInfo> *collision_info)
|
2012-03-19 03:04:16 +01:00
|
|
|
{}
|
2010-11-27 00:02:21 +01:00
|
|
|
|
2017-08-14 10:56:06 +02:00
|
|
|
const v3f &getSpeed() const
|
2010-11-27 00:02:21 +01:00
|
|
|
{
|
|
|
|
return m_speed;
|
|
|
|
}
|
|
|
|
|
2017-08-14 10:56:06 +02:00
|
|
|
void setSpeed(const v3f &speed)
|
2010-11-27 00:02:21 +01:00
|
|
|
{
|
|
|
|
m_speed = speed;
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2016-10-08 17:56:38 +02:00
|
|
|
const char *getName() const { return m_name; }
|
2010-11-27 00:02:21 +01:00
|
|
|
|
2016-10-08 17:56:38 +02:00
|
|
|
u32 getFreeHudID()
|
2015-07-03 05:14:30 +02:00
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
size_t size = hud.size();
|
|
|
|
for (size_t i = 0; i != size; i++) {
|
|
|
|
if (!hud[i])
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-05-26 14:10:08 +02:00
|
|
|
v3f eye_offset_first;
|
|
|
|
v3f eye_offset_third;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2010-11-27 00:02:21 +01:00
|
|
|
Inventory inventory;
|
|
|
|
|
2013-02-08 21:54:01 +01:00
|
|
|
f32 movement_acceleration_default;
|
|
|
|
f32 movement_acceleration_air;
|
|
|
|
f32 movement_acceleration_fast;
|
|
|
|
f32 movement_speed_walk;
|
|
|
|
f32 movement_speed_crouch;
|
|
|
|
f32 movement_speed_fast;
|
|
|
|
f32 movement_speed_climb;
|
|
|
|
f32 movement_speed_jump;
|
|
|
|
f32 movement_liquid_fluidity;
|
|
|
|
f32 movement_liquid_fluidity_smooth;
|
|
|
|
f32 movement_liquid_sink;
|
|
|
|
f32 movement_gravity;
|
|
|
|
|
2014-04-12 13:50:22 +02:00
|
|
|
v2s32 local_animations[4];
|
2014-01-08 13:47:53 +01:00
|
|
|
float local_animation_speed;
|
|
|
|
|
2012-07-19 13:09:16 +02:00
|
|
|
std::string inventory_formspec;
|
2018-03-28 17:04:41 +02:00
|
|
|
std::string formspec_prepend;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2012-11-22 20:01:31 +01:00
|
|
|
PlayerControl control;
|
2016-10-08 10:38:04 +02:00
|
|
|
const PlayerControl& getPlayerControl() { return control; }
|
2018-04-18 20:56:01 +02:00
|
|
|
PlayerSettings &getPlayerSettings() { return m_player_settings; }
|
|
|
|
static void settingsChangedCallback(const std::string &name, void *data);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2017-06-18 19:55:15 +02:00
|
|
|
u32 keyPressed = 0;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
HudElement* getHud(u32 id);
|
|
|
|
u32 addHud(HudElement* hud);
|
|
|
|
HudElement* removeHud(u32 id);
|
|
|
|
void clearHud();
|
|
|
|
|
2013-04-24 12:52:46 +02:00
|
|
|
u32 hud_flags;
|
2013-05-04 02:08:52 +02:00
|
|
|
s32 hud_hotbar_itemcount;
|
2010-11-27 00:02:21 +01:00
|
|
|
protected:
|
|
|
|
char m_name[PLAYERNAME_SIZE];
|
|
|
|
v3f m_speed;
|
2013-06-28 16:06:34 +02:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
std::vector<HudElement *> hud;
|
2015-03-22 20:09:44 +01:00
|
|
|
private:
|
|
|
|
// Protect some critical areas
|
|
|
|
// hud for example can be modified by EmergeThread
|
|
|
|
// and ServerThread
|
2017-06-06 16:29:28 +02:00
|
|
|
std::mutex m_mutex;
|
2018-04-18 20:56:01 +02:00
|
|
|
PlayerSettings m_player_settings;
|
2010-11-27 00:02:21 +01:00
|
|
|
};
|