2017-01-08 10:49:47 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2010-2017 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
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
|
|
|
|
(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
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "util/serialize.h"
|
|
|
|
#include "util/pointedthing.h"
|
2017-08-16 22:11:45 +02:00
|
|
|
#include "client.h"
|
2017-01-08 10:49:47 +01:00
|
|
|
#include "clientenvironment.h"
|
|
|
|
#include "clientsimpleobject.h"
|
|
|
|
#include "clientmap.h"
|
2017-04-25 19:38:08 +02:00
|
|
|
#include "scripting_client.h"
|
2017-01-08 10:49:47 +01:00
|
|
|
#include "mapblock_mesh.h"
|
|
|
|
#include "event.h"
|
|
|
|
#include "collision.h"
|
|
|
|
#include "profiler.h"
|
|
|
|
#include "raycast.h"
|
|
|
|
#include "voxelalgorithms.h"
|
2017-01-11 09:03:07 +01:00
|
|
|
#include "settings.h"
|
2015-07-06 18:53:30 +02:00
|
|
|
#include <algorithm>
|
2017-06-26 20:11:17 +02:00
|
|
|
#include "client/renderingengine.h"
|
2017-01-08 10:49:47 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
ClientEnvironment
|
|
|
|
*/
|
|
|
|
|
2017-06-26 20:11:17 +02:00
|
|
|
ClientEnvironment::ClientEnvironment(ClientMap *map,
|
2017-06-20 00:04:18 +02:00
|
|
|
ITextureSource *texturesource, Client *client):
|
2017-03-17 07:48:29 +01:00
|
|
|
Environment(client),
|
2017-01-08 10:49:47 +01:00
|
|
|
m_map(map),
|
|
|
|
m_texturesource(texturesource),
|
2017-06-20 00:04:18 +02:00
|
|
|
m_client(client)
|
2017-01-08 10:49:47 +01:00
|
|
|
{
|
|
|
|
char zero = 0;
|
|
|
|
memset(attachement_parent_ids, zero, sizeof(attachement_parent_ids));
|
|
|
|
}
|
|
|
|
|
|
|
|
ClientEnvironment::~ClientEnvironment()
|
|
|
|
{
|
|
|
|
// delete active objects
|
2017-08-17 08:11:39 +02:00
|
|
|
for (auto &active_object : m_active_objects) {
|
|
|
|
delete active_object.second;
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
|
2017-08-17 08:11:39 +02:00
|
|
|
for (auto &simple_object : m_simple_objects) {
|
|
|
|
delete simple_object;
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Drop/delete map
|
|
|
|
m_map->drop();
|
2017-04-05 12:30:52 +02:00
|
|
|
|
|
|
|
delete m_local_player;
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Map & ClientEnvironment::getMap()
|
|
|
|
{
|
|
|
|
return *m_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClientMap & ClientEnvironment::getClientMap()
|
|
|
|
{
|
|
|
|
return *m_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::setLocalPlayer(LocalPlayer *player)
|
|
|
|
{
|
|
|
|
DSTACK(FUNCTION_NAME);
|
|
|
|
/*
|
|
|
|
It is a failure if already is a local player
|
|
|
|
*/
|
|
|
|
FATAL_ERROR_IF(m_local_player != NULL,
|
|
|
|
"Local player already allocated");
|
|
|
|
|
|
|
|
m_local_player = player;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::step(float dtime)
|
|
|
|
{
|
|
|
|
DSTACK(FUNCTION_NAME);
|
|
|
|
|
|
|
|
/* Step time of day */
|
|
|
|
stepTimeOfDay(dtime);
|
|
|
|
|
|
|
|
// Get some settings
|
2017-01-09 20:39:22 +01:00
|
|
|
bool fly_allowed = m_client->checkLocalPrivilege("fly");
|
2017-01-08 10:49:47 +01:00
|
|
|
bool free_move = fly_allowed && g_settings->getBool("free_move");
|
|
|
|
|
|
|
|
// Get local player
|
|
|
|
LocalPlayer *lplayer = getLocalPlayer();
|
|
|
|
assert(lplayer);
|
|
|
|
// collision info queue
|
|
|
|
std::vector<CollisionInfo> player_collisions;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Get the speed the player is going
|
|
|
|
*/
|
|
|
|
bool is_climbing = lplayer->is_climbing;
|
|
|
|
|
|
|
|
f32 player_speed = lplayer->getSpeed().getLength();
|
|
|
|
|
|
|
|
/*
|
|
|
|
Maximum position increment
|
|
|
|
*/
|
|
|
|
//f32 position_max_increment = 0.05*BS;
|
|
|
|
f32 position_max_increment = 0.1*BS;
|
|
|
|
|
|
|
|
// Maximum time increment (for collision detection etc)
|
|
|
|
// time = distance / speed
|
|
|
|
f32 dtime_max_increment = 1;
|
|
|
|
if(player_speed > 0.001)
|
|
|
|
dtime_max_increment = position_max_increment / player_speed;
|
|
|
|
|
|
|
|
// Maximum time increment is 10ms or lower
|
|
|
|
if(dtime_max_increment > 0.01)
|
|
|
|
dtime_max_increment = 0.01;
|
|
|
|
|
|
|
|
// Don't allow overly huge dtime
|
|
|
|
if(dtime > 0.5)
|
|
|
|
dtime = 0.5;
|
|
|
|
|
|
|
|
f32 dtime_downcount = dtime;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Stuff that has a maximum time increment
|
|
|
|
*/
|
|
|
|
|
|
|
|
u32 loopcount = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
loopcount++;
|
|
|
|
|
|
|
|
f32 dtime_part;
|
|
|
|
if(dtime_downcount > dtime_max_increment)
|
|
|
|
{
|
|
|
|
dtime_part = dtime_max_increment;
|
|
|
|
dtime_downcount -= dtime_part;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dtime_part = dtime_downcount;
|
|
|
|
/*
|
|
|
|
Setting this to 0 (no -=dtime_part) disables an infinite loop
|
|
|
|
when dtime_part is so small that dtime_downcount -= dtime_part
|
|
|
|
does nothing
|
|
|
|
*/
|
|
|
|
dtime_downcount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Handle local player
|
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
|
|
|
// Apply physics
|
|
|
|
if(!free_move && !is_climbing)
|
|
|
|
{
|
|
|
|
// Gravity
|
|
|
|
v3f speed = lplayer->getSpeed();
|
|
|
|
if(!lplayer->in_liquid)
|
|
|
|
speed.Y -= lplayer->movement_gravity * lplayer->physics_override_gravity * dtime_part * 2;
|
|
|
|
|
|
|
|
// Liquid floating / sinking
|
|
|
|
if(lplayer->in_liquid && !lplayer->swimming_vertical)
|
|
|
|
speed.Y -= lplayer->movement_liquid_sink * dtime_part * 2;
|
|
|
|
|
|
|
|
// Liquid resistance
|
|
|
|
if(lplayer->in_liquid_stable || lplayer->in_liquid)
|
|
|
|
{
|
|
|
|
// How much the node's viscosity blocks movement, ranges between 0 and 1
|
|
|
|
// Should match the scale at which viscosity increase affects other liquid attributes
|
|
|
|
const f32 viscosity_factor = 0.3;
|
|
|
|
|
|
|
|
v3f d_wanted = -speed / lplayer->movement_liquid_fluidity;
|
|
|
|
f32 dl = d_wanted.getLength();
|
|
|
|
if(dl > lplayer->movement_liquid_fluidity_smooth)
|
|
|
|
dl = lplayer->movement_liquid_fluidity_smooth;
|
|
|
|
dl *= (lplayer->liquid_viscosity * viscosity_factor) + (1 - viscosity_factor);
|
|
|
|
|
|
|
|
v3f d = d_wanted.normalize() * dl;
|
|
|
|
speed += d;
|
|
|
|
}
|
|
|
|
|
|
|
|
lplayer->setSpeed(speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Move the lplayer.
|
|
|
|
This also does collision detection.
|
|
|
|
*/
|
|
|
|
lplayer->move(dtime_part, this, position_max_increment,
|
|
|
|
&player_collisions);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while(dtime_downcount > 0.001);
|
|
|
|
|
|
|
|
//std::cout<<"Looped "<<loopcount<<" times."<<std::endl;
|
|
|
|
|
2017-08-17 08:11:39 +02:00
|
|
|
for (const CollisionInfo &info : player_collisions) {
|
2017-01-08 10:49:47 +01:00
|
|
|
v3f speed_diff = info.new_speed - info.old_speed;;
|
|
|
|
// Handle only fall damage
|
|
|
|
// (because otherwise walking against something in fast_move kills you)
|
2017-08-17 08:11:39 +02:00
|
|
|
if (speed_diff.Y < 0 || info.old_speed.Y >= 0)
|
2017-01-08 10:49:47 +01:00
|
|
|
continue;
|
|
|
|
// Get rid of other components
|
|
|
|
speed_diff.X = 0;
|
|
|
|
speed_diff.Z = 0;
|
|
|
|
f32 pre_factor = 1; // 1 hp per node/s
|
|
|
|
f32 tolerance = BS*14; // 5 without damage
|
|
|
|
f32 post_factor = 1; // 1 hp per node/s
|
2017-08-17 08:11:39 +02:00
|
|
|
if (info.type == COLLISION_NODE) {
|
2017-01-09 20:39:22 +01:00
|
|
|
const ContentFeatures &f = m_client->ndef()->
|
2017-01-08 10:49:47 +01:00
|
|
|
get(m_map->getNodeNoEx(info.node_p));
|
|
|
|
// Determine fall damage multiplier
|
|
|
|
int addp = itemgroup_get(f.groups, "fall_damage_add_percent");
|
|
|
|
pre_factor = 1.0 + (float)addp/100.0;
|
|
|
|
}
|
|
|
|
float speed = pre_factor * speed_diff.getLength();
|
2017-05-21 11:18:38 +02:00
|
|
|
if (speed > tolerance) {
|
|
|
|
f32 damage_f = (speed - tolerance) / BS * post_factor;
|
|
|
|
u8 damage = (u8)MYMIN(damage_f + 0.5, 255);
|
|
|
|
if (damage != 0) {
|
2017-01-08 10:49:47 +01:00
|
|
|
damageLocalPlayer(damage, true);
|
|
|
|
MtEvent *e = new SimpleTriggerEvent("PlayerFallingDamage");
|
2017-01-09 20:39:22 +01:00
|
|
|
m_client->event()->put(e);
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-13 15:55:30 +01:00
|
|
|
if (m_client->moddingEnabled()) {
|
|
|
|
m_script->environment_step(dtime);
|
|
|
|
}
|
2017-01-22 11:17:41 +01:00
|
|
|
|
2017-01-08 10:49:47 +01:00
|
|
|
// Protocol v29 make this behaviour obsolete
|
2017-01-09 20:39:22 +01:00
|
|
|
if (getGameDef()->getProtoVersion() < 29) {
|
2017-04-15 09:25:43 +02:00
|
|
|
if (m_lava_hurt_interval.step(dtime, 1.0)) {
|
|
|
|
v3f pf = lplayer->getPosition();
|
|
|
|
|
|
|
|
// Feet, middle and head
|
|
|
|
v3s16 p1 = floatToInt(pf + v3f(0, BS * 0.1, 0), BS);
|
|
|
|
MapNode n1 = m_map->getNodeNoEx(p1);
|
|
|
|
v3s16 p2 = floatToInt(pf + v3f(0, BS * 0.8, 0), BS);
|
|
|
|
MapNode n2 = m_map->getNodeNoEx(p2);
|
|
|
|
v3s16 p3 = floatToInt(pf + v3f(0, BS * 1.6, 0), BS);
|
|
|
|
MapNode n3 = m_map->getNodeNoEx(p3);
|
|
|
|
|
|
|
|
u32 damage_per_second = 0;
|
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
|
|
|
m_client->ndef()->get(n1).damage_per_second);
|
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
|
|
|
m_client->ndef()->get(n2).damage_per_second);
|
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
|
|
|
m_client->ndef()->get(n3).damage_per_second);
|
|
|
|
|
|
|
|
if (damage_per_second != 0)
|
|
|
|
damageLocalPlayer(damage_per_second, true);
|
|
|
|
}
|
|
|
|
|
2017-01-08 10:49:47 +01:00
|
|
|
/*
|
|
|
|
Drowning
|
|
|
|
*/
|
|
|
|
if (m_drowning_interval.step(dtime, 2.0)) {
|
|
|
|
v3f pf = lplayer->getPosition();
|
|
|
|
|
|
|
|
// head
|
|
|
|
v3s16 p = floatToInt(pf + v3f(0, BS * 1.6, 0), BS);
|
|
|
|
MapNode n = m_map->getNodeNoEx(p);
|
2017-01-09 20:39:22 +01:00
|
|
|
ContentFeatures c = m_client->ndef()->get(n);
|
2017-01-08 10:49:47 +01:00
|
|
|
u8 drowning_damage = c.drowning;
|
|
|
|
if (drowning_damage > 0 && lplayer->hp > 0) {
|
|
|
|
u16 breath = lplayer->getBreath();
|
|
|
|
if (breath > 10) {
|
|
|
|
breath = 11;
|
|
|
|
}
|
|
|
|
if (breath > 0) {
|
|
|
|
breath -= 1;
|
|
|
|
}
|
|
|
|
lplayer->setBreath(breath);
|
|
|
|
updateLocalPlayerBreath(breath);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lplayer->getBreath() == 0 && drowning_damage > 0) {
|
|
|
|
damageLocalPlayer(drowning_damage, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_breathing_interval.step(dtime, 0.5)) {
|
|
|
|
v3f pf = lplayer->getPosition();
|
|
|
|
|
|
|
|
// head
|
|
|
|
v3s16 p = floatToInt(pf + v3f(0, BS * 1.6, 0), BS);
|
|
|
|
MapNode n = m_map->getNodeNoEx(p);
|
2017-01-09 20:39:22 +01:00
|
|
|
ContentFeatures c = m_client->ndef()->get(n);
|
2017-01-08 10:49:47 +01:00
|
|
|
if (!lplayer->hp) {
|
|
|
|
lplayer->setBreath(11);
|
|
|
|
} else if (c.drowning == 0) {
|
|
|
|
u16 breath = lplayer->getBreath();
|
|
|
|
if (breath <= 10) {
|
|
|
|
breath += 1;
|
|
|
|
lplayer->setBreath(breath);
|
|
|
|
updateLocalPlayerBreath(breath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update lighting on local player (used for wield item)
|
|
|
|
u32 day_night_ratio = getDayNightRatio();
|
|
|
|
{
|
|
|
|
// Get node at head
|
|
|
|
|
|
|
|
// On InvalidPositionException, use this as default
|
|
|
|
// (day: LIGHT_SUN, night: 0)
|
|
|
|
MapNode node_at_lplayer(CONTENT_AIR, 0x0f, 0);
|
|
|
|
|
|
|
|
v3s16 p = lplayer->getLightPosition();
|
|
|
|
node_at_lplayer = m_map->getNodeNoEx(p);
|
|
|
|
|
2017-01-09 20:39:22 +01:00
|
|
|
u16 light = getInteriorLight(node_at_lplayer, 0, m_client->ndef());
|
2017-01-12 15:46:30 +01:00
|
|
|
final_color_blend(&lplayer->light_color, light, day_night_ratio);
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Step active objects and update lighting of them
|
|
|
|
*/
|
|
|
|
|
|
|
|
g_profiler->avg("CEnv: num of objects", m_active_objects.size());
|
|
|
|
bool update_lighting = m_active_object_light_update_interval.step(dtime, 0.21);
|
2017-08-17 08:11:39 +02:00
|
|
|
for (auto &ao_it : m_active_objects) {
|
|
|
|
ClientActiveObject* obj = ao_it.second;
|
2017-01-08 10:49:47 +01:00
|
|
|
// Step object
|
|
|
|
obj->step(dtime, this);
|
|
|
|
|
2017-08-17 08:11:39 +02:00
|
|
|
if (update_lighting) {
|
2017-01-08 10:49:47 +01:00
|
|
|
// Update lighting
|
|
|
|
u8 light = 0;
|
|
|
|
bool pos_ok;
|
|
|
|
|
|
|
|
// Get node at head
|
|
|
|
v3s16 p = obj->getLightPosition();
|
|
|
|
MapNode n = m_map->getNodeNoEx(p, &pos_ok);
|
|
|
|
if (pos_ok)
|
2017-01-09 20:39:22 +01:00
|
|
|
light = n.getLightBlend(day_night_ratio, m_client->ndef());
|
2017-01-08 10:49:47 +01:00
|
|
|
else
|
|
|
|
light = blend_light(day_night_ratio, LIGHT_SUN, 0);
|
|
|
|
|
|
|
|
obj->updateLight(light);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Step and handle simple objects
|
|
|
|
*/
|
|
|
|
g_profiler->avg("CEnv: num of simple objects", m_simple_objects.size());
|
2017-08-17 08:11:39 +02:00
|
|
|
for (auto i = m_simple_objects.begin(); i != m_simple_objects.end();) {
|
|
|
|
auto cur = i;
|
2017-01-08 10:49:47 +01:00
|
|
|
ClientSimpleObject *simple = *cur;
|
|
|
|
|
|
|
|
simple->step(dtime);
|
|
|
|
if(simple->m_to_be_removed) {
|
|
|
|
delete simple;
|
|
|
|
i = m_simple_objects.erase(cur);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::addSimpleObject(ClientSimpleObject *simple)
|
|
|
|
{
|
|
|
|
m_simple_objects.push_back(simple);
|
|
|
|
}
|
|
|
|
|
|
|
|
GenericCAO* ClientEnvironment::getGenericCAO(u16 id)
|
|
|
|
{
|
|
|
|
ClientActiveObject *obj = getActiveObject(id);
|
|
|
|
if (obj && obj->getType() == ACTIVEOBJECT_TYPE_GENERIC)
|
|
|
|
return (GenericCAO*) obj;
|
2017-08-17 08:11:39 +02:00
|
|
|
|
|
|
|
return NULL;
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ClientActiveObject* ClientEnvironment::getActiveObject(u16 id)
|
|
|
|
{
|
2017-08-17 08:11:39 +02:00
|
|
|
auto n = m_active_objects.find(id);
|
2017-01-08 10:49:47 +01:00
|
|
|
if (n == m_active_objects.end())
|
|
|
|
return NULL;
|
|
|
|
return n->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isFreeClientActiveObjectId(const u16 id,
|
2017-06-04 21:00:04 +02:00
|
|
|
ClientActiveObjectMap &objects)
|
2017-01-08 10:49:47 +01:00
|
|
|
{
|
2017-08-17 08:11:39 +02:00
|
|
|
return id != 0 && objects.find(id) == objects.end();
|
2017-01-08 10:49:47 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-06-04 21:00:04 +02:00
|
|
|
u16 getFreeClientActiveObjectId(ClientActiveObjectMap &objects)
|
2017-01-08 10:49:47 +01:00
|
|
|
{
|
|
|
|
//try to reuse id's as late as possible
|
|
|
|
static u16 last_used_id = 0;
|
|
|
|
u16 startid = last_used_id;
|
|
|
|
for(;;) {
|
|
|
|
last_used_id ++;
|
|
|
|
if (isFreeClientActiveObjectId(last_used_id, objects))
|
|
|
|
return last_used_id;
|
|
|
|
|
|
|
|
if (last_used_id == startid)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 ClientEnvironment::addActiveObject(ClientActiveObject *object)
|
|
|
|
{
|
|
|
|
assert(object); // Pre-condition
|
|
|
|
if(object->getId() == 0)
|
|
|
|
{
|
|
|
|
u16 new_id = getFreeClientActiveObjectId(m_active_objects);
|
|
|
|
if(new_id == 0)
|
|
|
|
{
|
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
|
|
|
<<"no free ids available"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
object->setId(new_id);
|
|
|
|
}
|
|
|
|
if (!isFreeClientActiveObjectId(object->getId(), m_active_objects)) {
|
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
|
|
|
<<"id is not free ("<<object->getId()<<")"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
|
|
|
<<"added (id="<<object->getId()<<")"<<std::endl;
|
|
|
|
m_active_objects[object->getId()] = object;
|
2017-07-02 20:29:58 +02:00
|
|
|
object->addToScene(m_texturesource);
|
2017-01-08 10:49:47 +01:00
|
|
|
{ // Update lighting immediately
|
|
|
|
u8 light = 0;
|
|
|
|
bool pos_ok;
|
|
|
|
|
|
|
|
// Get node at head
|
|
|
|
v3s16 p = object->getLightPosition();
|
|
|
|
MapNode n = m_map->getNodeNoEx(p, &pos_ok);
|
|
|
|
if (pos_ok)
|
2017-01-09 20:39:22 +01:00
|
|
|
light = n.getLightBlend(getDayNightRatio(), m_client->ndef());
|
2017-01-08 10:49:47 +01:00
|
|
|
else
|
|
|
|
light = blend_light(getDayNightRatio(), LIGHT_SUN, 0);
|
|
|
|
|
|
|
|
object->updateLight(light);
|
|
|
|
}
|
|
|
|
return object->getId();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::addActiveObject(u16 id, u8 type,
|
|
|
|
const std::string &init_data)
|
|
|
|
{
|
|
|
|
ClientActiveObject* obj =
|
2017-01-09 20:39:22 +01:00
|
|
|
ClientActiveObject::create((ActiveObjectType) type, m_client, this);
|
2017-01-08 10:49:47 +01:00
|
|
|
if(obj == NULL)
|
|
|
|
{
|
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
|
|
|
<<"id="<<id<<" type="<<type<<": Couldn't create object"
|
|
|
|
<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
obj->setId(id);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
obj->initialize(init_data);
|
|
|
|
}
|
|
|
|
catch(SerializationError &e)
|
|
|
|
{
|
|
|
|
errorstream<<"ClientEnvironment::addActiveObject():"
|
|
|
|
<<" id="<<id<<" type="<<type
|
|
|
|
<<": SerializationError in initialize(): "
|
|
|
|
<<e.what()
|
|
|
|
<<": init_data="<<serializeJsonString(init_data)
|
|
|
|
<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
addActiveObject(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::removeActiveObject(u16 id)
|
|
|
|
{
|
|
|
|
verbosestream<<"ClientEnvironment::removeActiveObject(): "
|
|
|
|
<<"id="<<id<<std::endl;
|
|
|
|
ClientActiveObject* obj = getActiveObject(id);
|
|
|
|
if (obj == NULL) {
|
|
|
|
infostream<<"ClientEnvironment::removeActiveObject(): "
|
|
|
|
<<"id="<<id<<" not found"<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
obj->removeFromScene(true);
|
|
|
|
delete obj;
|
|
|
|
m_active_objects.erase(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::processActiveObjectMessage(u16 id, const std::string &data)
|
|
|
|
{
|
|
|
|
ClientActiveObject *obj = getActiveObject(id);
|
|
|
|
if (obj == NULL) {
|
|
|
|
infostream << "ClientEnvironment::processActiveObjectMessage():"
|
|
|
|
<< " got message for id=" << id << ", which doesn't exist."
|
|
|
|
<< std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
obj->processMessage(data);
|
|
|
|
} catch (SerializationError &e) {
|
|
|
|
errorstream<<"ClientEnvironment::processActiveObjectMessage():"
|
|
|
|
<< " id=" << id << " type=" << obj->getType()
|
|
|
|
<< " SerializationError in processMessage(): " << e.what()
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Callbacks for activeobjects
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ClientEnvironment::damageLocalPlayer(u8 damage, bool handle_hp)
|
|
|
|
{
|
|
|
|
LocalPlayer *lplayer = getLocalPlayer();
|
|
|
|
assert(lplayer);
|
|
|
|
|
|
|
|
if (handle_hp) {
|
|
|
|
if (lplayer->hp > damage)
|
|
|
|
lplayer->hp -= damage;
|
|
|
|
else
|
|
|
|
lplayer->hp = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_PLAYER_DAMAGE;
|
|
|
|
event.player_damage.amount = damage;
|
|
|
|
event.player_damage.send_to_server = handle_hp;
|
|
|
|
m_client_event_queue.push(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::updateLocalPlayerBreath(u16 breath)
|
|
|
|
{
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_PLAYER_BREATH;
|
|
|
|
event.player_breath.amount = breath;
|
|
|
|
m_client_event_queue.push(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Client likes to call these
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ClientEnvironment::getActiveObjects(v3f origin, f32 max_d,
|
|
|
|
std::vector<DistanceSortedActiveObject> &dest)
|
|
|
|
{
|
2017-08-17 08:11:39 +02:00
|
|
|
for (auto &ao_it : m_active_objects) {
|
|
|
|
ClientActiveObject* obj = ao_it.second;
|
2017-01-08 10:49:47 +01:00
|
|
|
|
|
|
|
f32 d = (obj->getPosition() - origin).getLength();
|
|
|
|
|
2017-08-17 08:11:39 +02:00
|
|
|
if (d > max_d)
|
2017-01-08 10:49:47 +01:00
|
|
|
continue;
|
|
|
|
|
2017-08-17 08:11:39 +02:00
|
|
|
dest.emplace_back(obj, d);
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-29 17:25:25 +02:00
|
|
|
ClientEnvEvent ClientEnvironment::getClientEnvEvent()
|
2017-01-08 10:49:47 +01:00
|
|
|
{
|
2017-04-29 17:25:25 +02:00
|
|
|
FATAL_ERROR_IF(m_client_event_queue.empty(),
|
|
|
|
"ClientEnvironment::getClientEnvEvent(): queue is empty");
|
|
|
|
|
|
|
|
ClientEnvEvent event = m_client_event_queue.front();
|
|
|
|
m_client_event_queue.pop();
|
2017-01-08 10:49:47 +01:00
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
2016-07-23 21:11:20 +02:00
|
|
|
void ClientEnvironment::getSelectedActiveObjects(
|
|
|
|
const core::line3d<f32> &shootline_on_map,
|
|
|
|
std::vector<PointedThing> &objects)
|
2017-01-08 10:49:47 +01:00
|
|
|
{
|
2016-07-23 21:11:20 +02:00
|
|
|
std::vector<DistanceSortedActiveObject> allObjects;
|
2017-01-08 10:49:47 +01:00
|
|
|
getActiveObjects(shootline_on_map.start,
|
2016-07-23 21:11:20 +02:00
|
|
|
shootline_on_map.getLength() + 10.0f, allObjects);
|
2017-01-08 10:49:47 +01:00
|
|
|
const v3f line_vector = shootline_on_map.getVector();
|
|
|
|
|
2017-08-17 08:11:39 +02:00
|
|
|
for (const auto &allObject : allObjects) {
|
|
|
|
ClientActiveObject *obj = allObject.obj;
|
2016-07-23 21:11:20 +02:00
|
|
|
aabb3f selection_box;
|
|
|
|
if (!obj->getSelectionBox(&selection_box))
|
2017-01-08 10:49:47 +01:00
|
|
|
continue;
|
2017-08-17 08:11:39 +02:00
|
|
|
|
|
|
|
const v3f &pos = obj->getPosition();
|
2016-07-23 21:11:20 +02:00
|
|
|
aabb3f offsetted_box(selection_box.MinEdge + pos,
|
|
|
|
selection_box.MaxEdge + pos);
|
2017-01-08 10:49:47 +01:00
|
|
|
|
|
|
|
v3f current_intersection;
|
|
|
|
v3s16 current_normal;
|
|
|
|
if (boxLineCollision(offsetted_box, shootline_on_map.start, line_vector,
|
2016-07-23 21:11:20 +02:00
|
|
|
¤t_intersection, ¤t_normal)) {
|
2017-08-17 08:11:39 +02:00
|
|
|
objects.emplace_back((s16) obj->getId(), current_intersection, current_normal,
|
|
|
|
(current_intersection - shootline_on_map.start).getLengthSQ());
|
2017-01-08 10:49:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|