2010-11-29 13:13:04 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 13:13:04 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04: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 13:13:04 -05: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 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-11-29 13:13:04 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2010-11-29 13:13:04 -05: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 18:02:21 -05:00
|
|
|
#ifndef PLAYER_HEADER
|
|
|
|
#define PLAYER_HEADER
|
|
|
|
|
2012-06-16 21:00:31 -04:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2010-11-26 18:02:21 -05:00
|
|
|
#include "inventory.h"
|
2012-06-16 18:29:13 -04:00
|
|
|
#include "constants.h" // BS
|
2014-04-15 13:49:32 -04:00
|
|
|
#include <list>
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
#define PLAYERNAME_SIZE 20
|
2011-05-29 14:11:16 -04:00
|
|
|
|
|
|
|
#define PLAYERNAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_"
|
2011-05-16 11:13:17 -04:00
|
|
|
|
2012-11-22 14:01:31 -05:00
|
|
|
struct PlayerControl
|
|
|
|
{
|
|
|
|
PlayerControl()
|
|
|
|
{
|
|
|
|
up = false;
|
|
|
|
down = false;
|
|
|
|
left = false;
|
|
|
|
right = false;
|
|
|
|
jump = false;
|
|
|
|
aux1 = false;
|
|
|
|
sneak = false;
|
|
|
|
LMB = false;
|
|
|
|
RMB = false;
|
|
|
|
pitch = 0;
|
|
|
|
yaw = 0;
|
|
|
|
}
|
|
|
|
PlayerControl(
|
|
|
|
bool a_up,
|
|
|
|
bool a_down,
|
|
|
|
bool a_left,
|
|
|
|
bool a_right,
|
|
|
|
bool a_jump,
|
|
|
|
bool a_aux1,
|
|
|
|
bool a_sneak,
|
|
|
|
bool a_LMB,
|
|
|
|
bool a_RMB,
|
|
|
|
float a_pitch,
|
|
|
|
float a_yaw
|
|
|
|
)
|
|
|
|
{
|
|
|
|
up = a_up;
|
|
|
|
down = a_down;
|
|
|
|
left = a_left;
|
|
|
|
right = a_right;
|
|
|
|
jump = a_jump;
|
|
|
|
aux1 = a_aux1;
|
|
|
|
sneak = a_sneak;
|
|
|
|
LMB = a_LMB;
|
|
|
|
RMB = a_RMB;
|
|
|
|
pitch = a_pitch;
|
|
|
|
yaw = a_yaw;
|
|
|
|
}
|
|
|
|
bool up;
|
|
|
|
bool down;
|
|
|
|
bool left;
|
|
|
|
bool right;
|
|
|
|
bool jump;
|
|
|
|
bool aux1;
|
|
|
|
bool sneak;
|
|
|
|
bool LMB;
|
|
|
|
bool RMB;
|
|
|
|
float pitch;
|
|
|
|
float yaw;
|
|
|
|
};
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
class Map;
|
2011-11-14 14:41:30 -05:00
|
|
|
class IGameDef;
|
2012-01-23 14:23:56 -05:00
|
|
|
struct CollisionInfo;
|
2012-03-18 22:04:16 -04:00
|
|
|
class PlayerSAO;
|
2013-05-19 21:26:08 -04:00
|
|
|
struct HudElement;
|
2014-04-15 13:49:32 -04:00
|
|
|
class Environment;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
class Player
|
|
|
|
{
|
|
|
|
public:
|
2011-05-16 05:41:19 -04:00
|
|
|
|
2014-08-03 16:19:07 -04:00
|
|
|
Player(IGameDef *gamedef, const char *name);
|
2012-03-18 22:04:16 -04:00
|
|
|
virtual ~Player() = 0;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2014-04-15 13:49:32 -04:00
|
|
|
virtual void move(f32 dtime, Environment *env, f32 pos_max_d)
|
|
|
|
{}
|
|
|
|
virtual void move(f32 dtime, Environment *env, f32 pos_max_d,
|
|
|
|
std::list<CollisionInfo> *collision_info)
|
2012-03-18 22:04:16 -04:00
|
|
|
{}
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
v3f getSpeed()
|
|
|
|
{
|
|
|
|
return m_speed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setSpeed(v3f speed)
|
|
|
|
{
|
|
|
|
m_speed = speed;
|
|
|
|
}
|
|
|
|
|
2013-02-08 15:54:01 -05:00
|
|
|
void accelerateHorizontal(v3f target_speed, f32 max_increase);
|
|
|
|
void accelerateVertical(v3f target_speed, f32 max_increase);
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
v3f getPosition()
|
|
|
|
{
|
|
|
|
return m_position;
|
|
|
|
}
|
|
|
|
|
2011-11-15 14:00:39 -05:00
|
|
|
v3s16 getLightPosition() const;
|
2011-08-10 01:38:51 -04:00
|
|
|
|
2011-09-20 12:25:29 -04:00
|
|
|
v3f getEyeOffset()
|
2011-08-10 02:06:30 -04:00
|
|
|
{
|
|
|
|
// This is at the height of the eyes of the current figure
|
2012-03-29 14:21:34 -04:00
|
|
|
// return v3f(0, BS*1.5, 0);
|
2011-08-10 02:06:30 -04:00
|
|
|
// This is more like in minecraft
|
2012-03-29 14:21:34 -04:00
|
|
|
if(camera_barely_in_ceiling)
|
|
|
|
return v3f(0,BS*1.5,0);
|
|
|
|
else
|
|
|
|
return v3f(0,BS*1.625,0);
|
2011-09-20 12:25:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
v3f getEyePosition()
|
|
|
|
{
|
|
|
|
return m_position + getEyeOffset();
|
2011-08-10 02:06:30 -04:00
|
|
|
}
|
|
|
|
|
2011-08-08 10:15:53 -04:00
|
|
|
virtual void setPosition(const v3f &position)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
2014-08-28 20:22:19 -04:00
|
|
|
if (position != m_position)
|
|
|
|
m_dirty = true;
|
2010-11-26 18:02:21 -05:00
|
|
|
m_position = position;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPitch(f32 pitch)
|
|
|
|
{
|
2014-08-28 20:22:19 -04:00
|
|
|
if (pitch != m_pitch)
|
|
|
|
m_dirty = true;
|
2010-11-26 18:02:21 -05:00
|
|
|
m_pitch = pitch;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void setYaw(f32 yaw)
|
|
|
|
{
|
2014-08-28 20:22:19 -04:00
|
|
|
if (yaw != m_yaw)
|
|
|
|
m_dirty = true;
|
2010-11-26 18:02:21 -05:00
|
|
|
m_yaw = yaw;
|
|
|
|
}
|
|
|
|
|
|
|
|
f32 getPitch()
|
|
|
|
{
|
|
|
|
return m_pitch;
|
|
|
|
}
|
|
|
|
|
|
|
|
f32 getYaw()
|
|
|
|
{
|
|
|
|
return m_yaw;
|
|
|
|
}
|
|
|
|
|
2013-07-19 13:50:33 -04:00
|
|
|
u16 getBreath()
|
|
|
|
{
|
|
|
|
return m_breath;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void setBreath(u16 breath)
|
|
|
|
{
|
2014-08-28 20:22:19 -04:00
|
|
|
if (breath != m_breath)
|
|
|
|
m_dirty = true;
|
2013-07-19 13:50:33 -04:00
|
|
|
m_breath = breath;
|
|
|
|
}
|
|
|
|
|
2011-12-28 10:34:07 -05:00
|
|
|
f32 getRadPitch()
|
|
|
|
{
|
|
|
|
return -1.0 * m_pitch * core::DEGTORAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
f32 getRadYaw()
|
|
|
|
{
|
|
|
|
return (m_yaw + 90.) * core::DEGTORAD;
|
|
|
|
}
|
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
const char * getName() const
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2013-04-16 18:15:53 -04:00
|
|
|
core::aabbox3d<f32> getCollisionbox() {
|
|
|
|
return m_collisionbox;
|
|
|
|
}
|
|
|
|
|
2013-08-10 22:09:45 -04:00
|
|
|
u32 getFreeHudID() const {
|
|
|
|
size_t size = hud.size();
|
|
|
|
for (size_t i = 0; i != size; i++) {
|
|
|
|
if (!hud[i])
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2012-03-18 22:04:16 -04:00
|
|
|
virtual bool isLocal() const
|
|
|
|
{ return false; }
|
|
|
|
virtual PlayerSAO *getPlayerSAO()
|
|
|
|
{ return NULL; }
|
|
|
|
virtual void setPlayerSAO(PlayerSAO *sao)
|
|
|
|
{ assert(0); }
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2011-01-27 18:38:16 -05:00
|
|
|
/*
|
|
|
|
serialize() writes a bunch of text that can contain
|
|
|
|
any characters except a '\0', and such an ending that
|
|
|
|
deSerialize stops reading exactly at the right point.
|
|
|
|
*/
|
|
|
|
void serialize(std::ostream &os);
|
2013-06-21 14:32:28 -04:00
|
|
|
void deSerialize(std::istream &is, std::string playername);
|
2011-01-14 18:26:29 -05:00
|
|
|
|
2014-09-02 12:53:20 -04:00
|
|
|
bool checkModified() const
|
2013-06-28 10:06:34 -04:00
|
|
|
{
|
2014-09-02 12:53:20 -04:00
|
|
|
return m_dirty || inventory.checkModified();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setModified(const bool x)
|
|
|
|
{
|
|
|
|
m_dirty = x;
|
|
|
|
if (x == false)
|
|
|
|
inventory.setModified(x);
|
2013-06-28 10:06:34 -04:00
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
bool touching_ground;
|
2011-02-07 18:12:55 -05:00
|
|
|
// This oscillates so that the player jumps a bit above the surface
|
2013-02-08 15:54:01 -05:00
|
|
|
bool in_liquid;
|
2011-02-07 18:12:55 -05:00
|
|
|
// This is more stable and defines the maximum speed of the player
|
2013-02-08 15:54:01 -05:00
|
|
|
bool in_liquid_stable;
|
|
|
|
// Gets the viscosity of water to calculate friction
|
|
|
|
u8 liquid_viscosity;
|
2011-07-27 17:38:48 -04:00
|
|
|
bool is_climbing;
|
2013-02-08 15:54:01 -05:00
|
|
|
bool swimming_vertical;
|
2012-03-29 14:21:34 -04:00
|
|
|
bool camera_barely_in_ceiling;
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
Inventory inventory;
|
|
|
|
|
2013-02-08 15:54:01 -05: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;
|
|
|
|
|
2013-04-05 07:03:28 -04:00
|
|
|
float physics_override_speed;
|
|
|
|
float physics_override_jump;
|
|
|
|
float physics_override_gravity;
|
2013-12-03 12:51:15 -05:00
|
|
|
bool physics_override_sneak;
|
|
|
|
bool physics_override_sneak_glitch;
|
2013-04-05 07:03:28 -04:00
|
|
|
|
2014-04-12 07:50:22 -04:00
|
|
|
v2s32 local_animations[4];
|
2014-01-08 07:47:53 -05:00
|
|
|
float local_animation_speed;
|
|
|
|
|
2011-04-21 12:35:17 -04:00
|
|
|
u16 hp;
|
|
|
|
|
2012-04-27 20:06:25 -04:00
|
|
|
float hurt_tilt_timer;
|
|
|
|
float hurt_tilt_strength;
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
u16 peer_id;
|
2013-07-19 13:50:33 -04:00
|
|
|
|
2012-07-19 07:09:16 -04:00
|
|
|
std::string inventory_formspec;
|
2012-11-22 14:01:31 -05:00
|
|
|
|
|
|
|
PlayerControl control;
|
|
|
|
PlayerControl getPlayerControl()
|
|
|
|
{
|
|
|
|
return control;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 keyPressed;
|
2013-04-13 18:20:22 -04:00
|
|
|
|
2014-05-25 08:34:32 -04:00
|
|
|
|
|
|
|
HudElement* getHud(u32 id);
|
|
|
|
u32 addHud(HudElement* hud);
|
|
|
|
HudElement* removeHud(u32 id);
|
|
|
|
void clearHud();
|
|
|
|
u32 maxHudId() {
|
|
|
|
return hud.size();
|
|
|
|
}
|
|
|
|
|
2013-04-24 06:52:46 -04:00
|
|
|
u32 hud_flags;
|
2013-05-03 20:08:52 -04:00
|
|
|
s32 hud_hotbar_itemcount;
|
2010-11-26 18:02:21 -05:00
|
|
|
protected:
|
2011-11-14 14:41:30 -05:00
|
|
|
IGameDef *m_gamedef;
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
char m_name[PLAYERNAME_SIZE];
|
2013-07-19 13:50:33 -04:00
|
|
|
u16 m_breath;
|
2010-11-26 18:02:21 -05:00
|
|
|
f32 m_pitch;
|
|
|
|
f32 m_yaw;
|
|
|
|
v3f m_speed;
|
|
|
|
v3f m_position;
|
2013-04-16 18:15:53 -04:00
|
|
|
core::aabbox3d<f32> m_collisionbox;
|
2013-06-28 10:06:34 -04:00
|
|
|
|
2014-08-03 16:19:07 -04:00
|
|
|
bool m_dirty;
|
2014-05-25 08:34:32 -04:00
|
|
|
|
|
|
|
std::vector<HudElement *> hud;
|
2010-11-26 18:02:21 -05:00
|
|
|
};
|
|
|
|
|
2013-04-11 14:23:38 -04:00
|
|
|
|
2012-03-18 22:04:16 -04:00
|
|
|
/*
|
|
|
|
Player on the server
|
|
|
|
*/
|
|
|
|
class RemotePlayer : public Player
|
|
|
|
{
|
|
|
|
public:
|
2014-08-03 16:19:07 -04:00
|
|
|
RemotePlayer(IGameDef *gamedef, const char *name):
|
|
|
|
Player(gamedef, name),
|
|
|
|
m_sao(NULL)
|
|
|
|
{}
|
2012-03-18 22:04:16 -04:00
|
|
|
virtual ~RemotePlayer() {}
|
|
|
|
|
2014-06-01 13:11:37 -04:00
|
|
|
void save(std::string savedir);
|
2014-05-30 16:04:07 -04:00
|
|
|
|
2012-03-18 22:04:16 -04:00
|
|
|
PlayerSAO *getPlayerSAO()
|
|
|
|
{ return m_sao; }
|
|
|
|
void setPlayerSAO(PlayerSAO *sao)
|
|
|
|
{ m_sao = sao; }
|
|
|
|
void setPosition(const v3f &position);
|
2012-11-22 14:01:31 -05:00
|
|
|
|
2012-03-18 22:04:16 -04:00
|
|
|
private:
|
|
|
|
PlayerSAO *m_sao;
|
|
|
|
};
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
#endif
|
|
|
|
|