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
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#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"
|
2012-03-19 03:04:16 +01:00
|
|
|
#include "content_sao.h"
|
2014-09-12 00:22:05 +02:00
|
|
|
#include "filesys.h"
|
|
|
|
#include "log.h"
|
2014-08-03 22:19:07 +02:00
|
|
|
#include "porting.h" // strlcpy
|
2011-05-16 17:13:17 +02:00
|
|
|
|
2014-08-03 22:19:07 +02:00
|
|
|
|
|
|
|
Player::Player(IGameDef *gamedef, const char *name):
|
2010-11-27 00:02:21 +01:00
|
|
|
touching_ground(false),
|
2013-02-08 21:54:01 +01:00
|
|
|
in_liquid(false),
|
|
|
|
in_liquid_stable(false),
|
|
|
|
liquid_viscosity(0),
|
2011-10-15 22:07:43 +02:00
|
|
|
is_climbing(false),
|
2013-02-08 21:54:01 +01:00
|
|
|
swimming_vertical(false),
|
2012-03-29 20:21:34 +02:00
|
|
|
camera_barely_in_ceiling(false),
|
2013-08-07 19:48:31 +02:00
|
|
|
light(0),
|
2012-01-12 06:10:39 +01:00
|
|
|
inventory(gamedef->idef()),
|
2012-03-19 03:04:16 +01:00
|
|
|
hp(PLAYER_MAX_HP),
|
2013-08-07 19:48:31 +02:00
|
|
|
hurt_tilt_timer(0),
|
|
|
|
hurt_tilt_strength(0),
|
2011-01-15 02:28:19 +01:00
|
|
|
peer_id(PEER_ID_INEXISTENT),
|
2013-08-07 19:48:31 +02:00
|
|
|
keyPressed(0),
|
2011-11-14 20:41:30 +01:00
|
|
|
// protected
|
|
|
|
m_gamedef(gamedef),
|
2013-07-19 19:50:33 +02:00
|
|
|
m_breath(-1),
|
2011-02-08 00:12:55 +01:00
|
|
|
m_pitch(0),
|
|
|
|
m_yaw(0),
|
2010-11-27 00:02:21 +01:00
|
|
|
m_speed(0,0,0),
|
2013-04-17 00:15:53 +02:00
|
|
|
m_position(0,0,0),
|
2014-01-15 14:49:13 +01:00
|
|
|
m_collisionbox(-BS*0.30,0.0,-BS*0.30,BS*0.30,BS*1.75,BS*0.30),
|
2014-08-03 22:19:07 +02:00
|
|
|
m_dirty(false)
|
2010-11-27 00:02:21 +01:00
|
|
|
{
|
2014-08-03 22:19:07 +02:00
|
|
|
strlcpy(m_name, name, PLAYERNAME_SIZE);
|
|
|
|
|
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);
|
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;]"
|
|
|
|
"list[current_player;craftpreview;7,1;1,1;]";
|
2013-02-08 21:54:01 +01: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;
|
2013-04-05 13:03:28 +02:00
|
|
|
|
|
|
|
// Movement overrides are multipliers and must be 1 by default
|
2013-12-03 18:51:15 +01:00
|
|
|
physics_override_speed = 1;
|
|
|
|
physics_override_jump = 1;
|
|
|
|
physics_override_gravity = 1;
|
|
|
|
physics_override_sneak = true;
|
|
|
|
physics_override_sneak_glitch = true;
|
2013-04-24 12:52:46 +02:00
|
|
|
|
2013-04-26 01:27:22 +02:00
|
|
|
hud_flags = HUD_FLAG_HOTBAR_VISIBLE | HUD_FLAG_HEALTHBAR_VISIBLE |
|
2013-06-19 16:30:22 +02:00
|
|
|
HUD_FLAG_CROSSHAIR_VISIBLE | HUD_FLAG_WIELDITEM_VISIBLE |
|
|
|
|
HUD_FLAG_BREATHBAR_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
|
|
|
}
|
|
|
|
|
2013-02-08 21:54:01 +01:00
|
|
|
// Horizontal acceleration (X and Z), Y direction is ignored
|
|
|
|
void Player::accelerateHorizontal(v3f target_speed, f32 max_increase)
|
2010-12-22 02:33:58 +01:00
|
|
|
{
|
2013-02-08 21:54:01 +01:00
|
|
|
if(max_increase == 0)
|
|
|
|
return;
|
|
|
|
|
2011-01-17 01:40:53 +01:00
|
|
|
v3f d_wanted = target_speed - m_speed;
|
|
|
|
d_wanted.Y = 0;
|
2013-02-08 21:54:01 +01:00
|
|
|
f32 dl = d_wanted.getLength();
|
2011-01-17 01:40:53 +01:00
|
|
|
if(dl > max_increase)
|
|
|
|
dl = max_increase;
|
|
|
|
|
|
|
|
v3f d = d_wanted.normalize() * dl;
|
|
|
|
|
|
|
|
m_speed.X += d.X;
|
|
|
|
m_speed.Z += d.Z;
|
|
|
|
|
|
|
|
#if 0 // old code
|
2010-12-22 02:33:58 +01:00
|
|
|
if(m_speed.X < target_speed.X - max_increase)
|
|
|
|
m_speed.X += max_increase;
|
|
|
|
else if(m_speed.X > target_speed.X + max_increase)
|
|
|
|
m_speed.X -= max_increase;
|
|
|
|
else if(m_speed.X < target_speed.X)
|
|
|
|
m_speed.X = target_speed.X;
|
|
|
|
else if(m_speed.X > target_speed.X)
|
|
|
|
m_speed.X = target_speed.X;
|
|
|
|
|
|
|
|
if(m_speed.Z < target_speed.Z - max_increase)
|
|
|
|
m_speed.Z += max_increase;
|
|
|
|
else if(m_speed.Z > target_speed.Z + max_increase)
|
|
|
|
m_speed.Z -= max_increase;
|
|
|
|
else if(m_speed.Z < target_speed.Z)
|
|
|
|
m_speed.Z = target_speed.Z;
|
|
|
|
else if(m_speed.Z > target_speed.Z)
|
|
|
|
m_speed.Z = target_speed.Z;
|
2011-01-17 01:40:53 +01:00
|
|
|
#endif
|
2010-12-22 02:33:58 +01:00
|
|
|
}
|
|
|
|
|
2013-02-08 21:54:01 +01:00
|
|
|
// Vertical acceleration (Y), X and Z directions are ignored
|
|
|
|
void Player::accelerateVertical(v3f target_speed, f32 max_increase)
|
|
|
|
{
|
|
|
|
if(max_increase == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
f32 d_wanted = target_speed.Y - m_speed.Y;
|
|
|
|
if(d_wanted > max_increase)
|
|
|
|
d_wanted = max_increase;
|
|
|
|
else if(d_wanted < -max_increase)
|
|
|
|
d_wanted = -max_increase;
|
|
|
|
|
|
|
|
m_speed.Y += d_wanted;
|
|
|
|
|
|
|
|
#if 0 // old code
|
|
|
|
if(m_speed.Y < target_speed.Y - max_increase)
|
|
|
|
m_speed.Y += max_increase;
|
|
|
|
else if(m_speed.Y > target_speed.Y + max_increase)
|
|
|
|
m_speed.Y -= max_increase;
|
|
|
|
else if(m_speed.Y < target_speed.Y)
|
|
|
|
m_speed.Y = target_speed.Y;
|
|
|
|
else if(m_speed.Y > target_speed.Y)
|
|
|
|
m_speed.Y = target_speed.Y;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-11-15 20:00:39 +01:00
|
|
|
v3s16 Player::getLightPosition() const
|
|
|
|
{
|
|
|
|
return floatToInt(m_position + v3f(0,BS+BS/2,0), BS);
|
|
|
|
}
|
|
|
|
|
2011-01-28 00:38:16 +01:00
|
|
|
void Player::serialize(std::ostream &os)
|
|
|
|
{
|
|
|
|
// Utilize a Settings object for storing values
|
|
|
|
Settings args;
|
|
|
|
args.setS32("version", 1);
|
|
|
|
args.set("name", m_name);
|
2011-05-29 20:11:16 +02:00
|
|
|
//args.set("password", m_password);
|
2011-01-28 00:38:16 +01:00
|
|
|
args.setFloat("pitch", m_pitch);
|
|
|
|
args.setFloat("yaw", m_yaw);
|
|
|
|
args.setV3F("position", m_position);
|
2011-04-21 18:35:17 +02:00
|
|
|
args.setS32("hp", hp);
|
2013-07-19 19:50:33 +02:00
|
|
|
args.setS32("breath", m_breath);
|
2011-01-28 00:38:16 +01:00
|
|
|
|
|
|
|
args.writeLines(os);
|
|
|
|
|
|
|
|
os<<"PlayerArgsEnd\n";
|
2013-07-19 19:50:33 +02:00
|
|
|
|
2012-03-19 03:04:16 +01:00
|
|
|
inventory.serialize(os);
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
|
|
|
|
2013-06-21 20:32:28 +02:00
|
|
|
void Player::deSerialize(std::istream &is, std::string playername)
|
2011-01-28 00:38:16 +01:00
|
|
|
{
|
|
|
|
Settings args;
|
2014-09-12 00:22:05 +02:00
|
|
|
|
|
|
|
if (!args.parseConfigLines(is, "PlayerArgsEnd")) {
|
|
|
|
throw SerializationError("PlayerArgsEnd of player " +
|
|
|
|
playername + " not found!");
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
|
|
|
|
2011-11-12 14:41:29 +01:00
|
|
|
//args.getS32("version"); // Version field value not used
|
2011-01-28 00:38:16 +01:00
|
|
|
std::string name = args.get("name");
|
2014-08-03 22:19:07 +02:00
|
|
|
strlcpy(m_name, name.c_str(), PLAYERNAME_SIZE);
|
2011-11-12 14:41:29 +01:00
|
|
|
setPitch(args.getFloat("pitch"));
|
|
|
|
setYaw(args.getFloat("yaw"));
|
|
|
|
setPosition(args.getV3F("position"));
|
2011-04-21 18:35:17 +02:00
|
|
|
try{
|
|
|
|
hp = args.getS32("hp");
|
2014-05-25 14:34:32 +02:00
|
|
|
}catch(SettingNotFoundException &e) {
|
2011-04-21 18:35:17 +02:00
|
|
|
hp = 20;
|
|
|
|
}
|
2013-07-19 19:50:33 +02:00
|
|
|
try{
|
|
|
|
m_breath = args.getS32("breath");
|
2014-05-25 14:34:32 +02:00
|
|
|
}catch(SettingNotFoundException &e) {
|
2013-07-19 19:50:33 +02:00
|
|
|
m_breath = 11;
|
|
|
|
}
|
2011-01-28 00:38:16 +01:00
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
inventory.deSerialize(is);
|
2012-01-21 21:21:41 +01:00
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
if(inventory.getList("craftpreview") == NULL) {
|
2012-01-21 21:21:41 +01:00
|
|
|
// Convert players without craftpreview
|
|
|
|
inventory.addList("craftpreview", 1);
|
|
|
|
|
2012-01-23 15:28:57 +01:00
|
|
|
bool craftresult_is_preview = true;
|
|
|
|
if(args.exists("craftresult_is_preview"))
|
|
|
|
craftresult_is_preview = args.getBool("craftresult_is_preview");
|
2012-01-21 21:21:41 +01:00
|
|
|
if(craftresult_is_preview)
|
|
|
|
{
|
|
|
|
// Clear craftresult
|
|
|
|
inventory.getList("craftresult")->changeItem(0, ItemStack());
|
|
|
|
}
|
|
|
|
}
|
2013-06-28 16:06:34 +02:00
|
|
|
|
2014-08-03 22:19:07 +02:00
|
|
|
m_dirty = false;
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
u32 Player::addHud(HudElement *toadd)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
HudElement* Player::removeHud(u32 id)
|
|
|
|
{
|
|
|
|
HudElement* retval = NULL;
|
|
|
|
if (id < hud.size()) {
|
|
|
|
retval = hud[id];
|
|
|
|
hud[id] = NULL;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Player::clearHud()
|
|
|
|
{
|
|
|
|
while(!hud.empty()) {
|
|
|
|
delete hud.back();
|
|
|
|
hud.pop_back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-30 22:04:07 +02:00
|
|
|
|
2014-06-01 19:11:37 +02:00
|
|
|
void RemotePlayer::save(std::string savedir)
|
2014-05-30 22:04:07 +02:00
|
|
|
{
|
2014-06-01 19:11:37 +02:00
|
|
|
/*
|
|
|
|
* We have to open all possible player files in the players directory
|
2014-05-30 22:04:07 +02:00
|
|
|
* and check their player names because some file systems are not
|
|
|
|
* case-sensitive and player names are case-sensitive.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// A player to deserialize files into to check their names
|
2014-08-03 22:19:07 +02:00
|
|
|
RemotePlayer testplayer(m_gamedef, "");
|
2014-05-30 22:04:07 +02:00
|
|
|
|
2014-06-01 19:11:37 +02:00
|
|
|
savedir += DIR_DELIM;
|
|
|
|
std::string path = savedir + m_name;
|
2014-06-23 21:55:47 +02:00
|
|
|
for (u32 i = 0; i < PLAYER_FILE_ALTERNATE_TRIES; i++) {
|
2014-06-01 19:11:37 +02:00
|
|
|
if (!fs::PathExists(path)) {
|
|
|
|
// Open file and serialize
|
|
|
|
std::ostringstream ss(std::ios_base::binary);
|
|
|
|
serialize(ss);
|
|
|
|
if (!fs::safeWriteToFile(path, ss.str())) {
|
|
|
|
infostream << "Failed to write " << path << std::endl;
|
|
|
|
}
|
2014-08-03 22:19:07 +02:00
|
|
|
m_dirty = false;
|
2014-06-01 19:11:37 +02:00
|
|
|
return;
|
2014-05-30 22:04:07 +02:00
|
|
|
}
|
|
|
|
// Open file and deserialize
|
|
|
|
std::ifstream is(path.c_str(), std::ios_base::binary);
|
|
|
|
if (!is.good()) {
|
2014-06-01 19:11:37 +02:00
|
|
|
infostream << "Failed to open " << path << std::endl;
|
|
|
|
return;
|
2014-05-30 22:04:07 +02:00
|
|
|
}
|
2014-06-01 19:11:37 +02:00
|
|
|
testplayer.deSerialize(is, path);
|
2014-06-28 17:01:15 +02:00
|
|
|
is.close();
|
2014-05-30 22:04:07 +02:00
|
|
|
if (strcmp(testplayer.getName(), m_name) == 0) {
|
|
|
|
// Open file and serialize
|
|
|
|
std::ostringstream ss(std::ios_base::binary);
|
|
|
|
serialize(ss);
|
|
|
|
if (!fs::safeWriteToFile(path, ss.str())) {
|
|
|
|
infostream << "Failed to write " << path << std::endl;
|
|
|
|
}
|
2014-08-03 22:19:07 +02:00
|
|
|
m_dirty = false;
|
2014-05-30 22:04:07 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-06-01 19:11:37 +02:00
|
|
|
path = savedir + m_name + itos(i);
|
2014-05-30 22:04:07 +02:00
|
|
|
}
|
2014-06-01 19:11:37 +02:00
|
|
|
|
|
|
|
infostream << "Didn't find free file for player " << m_name << std::endl;
|
|
|
|
return;
|
2014-05-30 22:04:07 +02:00
|
|
|
}
|
|
|
|
|
2014-05-25 14:34:32 +02:00
|
|
|
/*
|
|
|
|
RemotePlayer
|
|
|
|
*/
|
2012-03-19 03:04:16 +01:00
|
|
|
void RemotePlayer::setPosition(const v3f &position)
|
|
|
|
{
|
|
|
|
Player::setPosition(position);
|
|
|
|
if(m_sao)
|
|
|
|
m_sao->setBasePosition(position);
|
|
|
|
}
|
2014-05-30 22:04:07 +02:00
|
|
|
|