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.
|
|
|
|
*/
|
|
|
|
|
2015-04-01 15:01:28 +02:00
|
|
|
#include <fstream>
|
2010-11-27 00:02:21 +01:00
|
|
|
#include "environment.h"
|
2011-01-28 00:38:16 +01:00
|
|
|
#include "filesys.h"
|
2011-02-21 15:10:36 +01:00
|
|
|
#include "porting.h"
|
2011-04-21 18:35:17 +02:00
|
|
|
#include "collision.h"
|
2011-06-17 21:20:15 +02:00
|
|
|
#include "content_mapnode.h"
|
2011-06-26 01:34:36 +02:00
|
|
|
#include "mapblock.h"
|
2011-06-26 14:48:56 +02:00
|
|
|
#include "serverobject.h"
|
|
|
|
#include "content_sao.h"
|
2011-10-12 12:53:38 +02:00
|
|
|
#include "settings.h"
|
2011-10-16 13:57:53 +02:00
|
|
|
#include "log.h"
|
2011-10-16 20:16:44 +02:00
|
|
|
#include "profiler.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "scripting_game.h"
|
2011-11-14 20:41:30 +01:00
|
|
|
#include "nodedef.h"
|
2011-11-13 11:54:33 +01:00
|
|
|
#include "nodemetadata.h"
|
2011-11-14 20:41:30 +01:00
|
|
|
#include "gamedef.h"
|
2012-03-15 23:25:18 +01:00
|
|
|
#ifndef SERVER
|
|
|
|
#include "clientmap.h"
|
2012-03-31 15:23:26 +02:00
|
|
|
#include "localplayer.h"
|
2014-11-02 03:47:43 +01:00
|
|
|
#include "mapblock_mesh.h"
|
2013-04-17 20:13:47 +02:00
|
|
|
#include "event.h"
|
2012-03-15 23:25:18 +01:00
|
|
|
#endif
|
2015-07-16 17:37:46 +02:00
|
|
|
#include "server.h"
|
2012-03-16 15:34:30 +01:00
|
|
|
#include "daynightratio.h"
|
2012-07-27 12:43:25 +02:00
|
|
|
#include "map.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "emerge.h"
|
2012-11-26 10:18:34 +01:00
|
|
|
#include "util/serialize.h"
|
2015-04-07 12:13:12 +02:00
|
|
|
#include "threading/mutex_auto_lock.h"
|
2011-10-16 13:57:53 +02:00
|
|
|
|
|
|
|
#define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")"
|
2011-05-21 13:28:58 +02:00
|
|
|
|
2016-02-09 07:08:31 +01:00
|
|
|
#define LBM_NAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyz0123456789_:"
|
|
|
|
|
2016-04-27 17:58:09 +02:00
|
|
|
// A number that is much smaller than the timeout for particle spawners should/could ever be
|
|
|
|
#define PARTICLE_SPAWNER_NO_EXPIRY -1024.f
|
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
Environment::Environment():
|
2015-11-04 03:07:32 +01:00
|
|
|
m_time_of_day_speed(0),
|
2012-03-16 15:34:30 +01:00
|
|
|
m_time_of_day(9000),
|
|
|
|
m_time_of_day_f(9000./24000),
|
2015-11-04 03:07:32 +01:00
|
|
|
m_time_conversion_skew(0.0f),
|
|
|
|
m_enable_day_night_ratio_override(false),
|
|
|
|
m_day_night_ratio_override(0.0f)
|
2010-11-27 00:02:21 +01:00
|
|
|
{
|
2014-12-06 15:37:37 +01:00
|
|
|
m_cache_enable_shaders = g_settings->getBool("enable_shaders");
|
Allow NodeTimer, ABM and block mgmt interval changes.
ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
run at every 1.0s. Block mgmt is running every 2.0sec.
However, these timers can be better tuned for both higher and lower
values by server owners. Some server owners want to, and have the
resources to send more packets per second to clients, and so they
may wish to send smaller updates sooner. Right now all ABM's are
coalesced into 1.0 second intervals, resulting in large send queues
to all clients. By reducing the amount of possible timers, one can
get a far better response rate and lower the perception of lag.
On the other side of the camp, some servers may want to increase
these values, which again isn't easily doable.
The global settings abm_interval and nodetimer_interval are set to
current values by default. I've tested with 0.2/0.5 type values
and noticed a greatly improved response and better scattering of
nodetimers, as well as enjoying not faceplanting into doors with
pressure plates anymore.
2016-03-02 08:14:26 +01:00
|
|
|
m_cache_active_block_mgmt_interval = g_settings->getFloat("active_block_mgmt_interval");
|
|
|
|
m_cache_abm_interval = g_settings->getFloat("abm_interval");
|
|
|
|
m_cache_nodetimer_interval = g_settings->getFloat("nodetimer_interval");
|
2010-11-27 00:02:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Environment::~Environment()
|
|
|
|
{
|
2011-01-15 02:28:19 +01:00
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
u32 Environment::getDayNightRatio()
|
|
|
|
{
|
2015-11-04 03:07:32 +01:00
|
|
|
MutexAutoLock lock(this->m_time_lock);
|
|
|
|
if (m_enable_day_night_ratio_override)
|
|
|
|
return m_day_night_ratio_override;
|
2015-10-27 21:03:59 +01:00
|
|
|
return time_to_daynight_ratio(m_time_of_day_f * 24000, m_cache_enable_shaders);
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
|
|
|
|
2014-06-22 23:19:10 +02:00
|
|
|
void Environment::setTimeOfDaySpeed(float speed)
|
|
|
|
{
|
|
|
|
m_time_of_day_speed = speed;
|
|
|
|
}
|
|
|
|
|
2015-11-04 03:07:32 +01:00
|
|
|
void Environment::setDayNightRatioOverride(bool enable, u32 value)
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(this->m_time_lock);
|
|
|
|
m_enable_day_night_ratio_override = enable;
|
|
|
|
m_day_night_ratio_override = value;
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:46:31 +01:00
|
|
|
void Environment::setTimeOfDay(u32 time)
|
|
|
|
{
|
2015-11-04 03:07:32 +01:00
|
|
|
MutexAutoLock lock(this->m_time_lock);
|
2016-03-06 21:02:21 +01:00
|
|
|
if (m_time_of_day > time)
|
|
|
|
m_day_count++;
|
2015-03-04 11:46:31 +01:00
|
|
|
m_time_of_day = time;
|
|
|
|
m_time_of_day_f = (float)time / 24000.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 Environment::getTimeOfDay()
|
|
|
|
{
|
2015-11-04 03:07:32 +01:00
|
|
|
MutexAutoLock lock(this->m_time_lock);
|
2015-11-03 08:56:56 +01:00
|
|
|
return m_time_of_day;
|
2015-03-04 11:46:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
float Environment::getTimeOfDayF()
|
|
|
|
{
|
2015-11-04 03:07:32 +01:00
|
|
|
MutexAutoLock lock(this->m_time_lock);
|
2015-11-03 08:56:56 +01:00
|
|
|
return m_time_of_day_f;
|
2015-03-04 11:46:31 +01:00
|
|
|
}
|
|
|
|
|
2012-03-16 15:34:30 +01:00
|
|
|
void Environment::stepTimeOfDay(float dtime)
|
|
|
|
{
|
2015-11-04 03:07:32 +01:00
|
|
|
MutexAutoLock lock(this->m_time_lock);
|
2015-11-04 06:44:55 +01:00
|
|
|
|
|
|
|
// Cached in order to prevent the two reads we do to give
|
|
|
|
// different results (can be written by code not under the lock)
|
|
|
|
f32 cached_time_of_day_speed = m_time_of_day_speed;
|
|
|
|
|
|
|
|
f32 speed = cached_time_of_day_speed * 24000. / (24. * 3600);
|
2015-11-04 03:07:32 +01:00
|
|
|
m_time_conversion_skew += dtime;
|
|
|
|
u32 units = (u32)(m_time_conversion_skew * speed);
|
2012-03-16 15:34:30 +01:00
|
|
|
bool sync_f = false;
|
2015-10-27 21:03:59 +01:00
|
|
|
if (units > 0) {
|
2012-03-16 15:34:30 +01:00
|
|
|
// Sync at overflow
|
2016-03-06 21:02:21 +01:00
|
|
|
if (m_time_of_day + units >= 24000) {
|
2012-03-16 15:34:30 +01:00
|
|
|
sync_f = true;
|
2016-03-06 21:02:21 +01:00
|
|
|
m_day_count++;
|
|
|
|
}
|
2012-03-16 15:34:30 +01:00
|
|
|
m_time_of_day = (m_time_of_day + units) % 24000;
|
2015-10-27 21:03:59 +01:00
|
|
|
if (sync_f)
|
2012-03-16 15:34:30 +01:00
|
|
|
m_time_of_day_f = (float)m_time_of_day / 24000.0;
|
|
|
|
}
|
2014-06-22 23:19:10 +02:00
|
|
|
if (speed > 0) {
|
2015-11-03 08:56:56 +01:00
|
|
|
m_time_conversion_skew -= (f32)units / speed;
|
2014-06-22 23:19:10 +02:00
|
|
|
}
|
2015-10-27 21:03:59 +01:00
|
|
|
if (!sync_f) {
|
2015-11-04 06:44:55 +01:00
|
|
|
m_time_of_day_f += cached_time_of_day_speed / 24 / 3600 * dtime;
|
2015-10-27 21:03:59 +01:00
|
|
|
if (m_time_of_day_f > 1.0)
|
2012-03-16 15:34:30 +01:00
|
|
|
m_time_of_day_f -= 1.0;
|
2015-10-27 21:03:59 +01:00
|
|
|
if (m_time_of_day_f < 0.0)
|
2012-03-16 15:34:30 +01:00
|
|
|
m_time_of_day_f += 1.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-06 21:02:21 +01:00
|
|
|
u32 Environment::getDayCount()
|
|
|
|
{
|
|
|
|
// Atomic<u32> counter
|
|
|
|
return m_day_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-02 20:06:38 +01:00
|
|
|
/*
|
|
|
|
ABMWithState
|
|
|
|
*/
|
|
|
|
|
|
|
|
ABMWithState::ABMWithState(ActiveBlockModifier *abm_):
|
|
|
|
abm(abm_),
|
|
|
|
timer(0)
|
|
|
|
{
|
|
|
|
// Initialize timer to random value to spread processing
|
|
|
|
float itv = abm->getTriggerInterval();
|
2012-01-03 12:49:47 +01:00
|
|
|
itv = MYMAX(0.001, itv); // No less than 1ms
|
|
|
|
int minval = MYMAX(-0.51*itv, -60); // Clamp to
|
|
|
|
int maxval = MYMIN(0.51*itv, 60); // +-60 seconds
|
|
|
|
timer = myrand_range(minval, maxval);
|
2012-01-02 20:06:38 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 07:08:31 +01:00
|
|
|
/*
|
|
|
|
LBMManager
|
|
|
|
*/
|
|
|
|
|
|
|
|
void LBMContentMapping::deleteContents()
|
|
|
|
{
|
|
|
|
for (std::vector<LoadingBlockModifierDef *>::iterator it = lbm_list.begin();
|
|
|
|
it != lbm_list.end(); ++it) {
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LBMContentMapping::addLBM(LoadingBlockModifierDef *lbm_def, IGameDef *gamedef)
|
|
|
|
{
|
|
|
|
// Add the lbm_def to the LBMContentMapping.
|
|
|
|
// Unknown names get added to the global NameIdMapping.
|
|
|
|
INodeDefManager *nodedef = gamedef->ndef();
|
|
|
|
|
|
|
|
lbm_list.push_back(lbm_def);
|
|
|
|
|
|
|
|
for (std::set<std::string>::const_iterator it = lbm_def->trigger_contents.begin();
|
|
|
|
it != lbm_def->trigger_contents.end(); ++it) {
|
|
|
|
std::set<content_t> c_ids;
|
|
|
|
bool found = nodedef->getIds(*it, c_ids);
|
|
|
|
if (!found) {
|
|
|
|
content_t c_id = gamedef->allocateUnknownNodeId(*it);
|
|
|
|
if (c_id == CONTENT_IGNORE) {
|
|
|
|
// Seems it can't be allocated.
|
|
|
|
warningstream << "Could not internalize node name \"" << *it
|
|
|
|
<< "\" while loading LBM \"" << lbm_def->name << "\"." << std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
c_ids.insert(c_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::set<content_t>::const_iterator iit =
|
|
|
|
c_ids.begin(); iit != c_ids.end(); ++iit) {
|
|
|
|
content_t c_id = *iit;
|
|
|
|
map[c_id].push_back(lbm_def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::vector<LoadingBlockModifierDef *> *
|
|
|
|
LBMContentMapping::lookup(content_t c) const
|
|
|
|
{
|
|
|
|
container_map::const_iterator it = map.find(c);
|
|
|
|
if (it == map.end())
|
|
|
|
return NULL;
|
|
|
|
// This first dereferences the iterator, returning
|
|
|
|
// a std::vector<LoadingBlockModifierDef *>
|
|
|
|
// reference, then we convert it to a pointer.
|
|
|
|
return &(it->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
LBMManager::~LBMManager()
|
|
|
|
{
|
|
|
|
for (std::map<std::string, LoadingBlockModifierDef *>::iterator it =
|
|
|
|
m_lbm_defs.begin(); it != m_lbm_defs.end(); ++it) {
|
|
|
|
delete it->second;
|
|
|
|
}
|
|
|
|
for (lbm_lookup_map::iterator it = m_lbm_lookup.begin();
|
|
|
|
it != m_lbm_lookup.end(); ++it) {
|
|
|
|
(it->second).deleteContents();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LBMManager::addLBMDef(LoadingBlockModifierDef *lbm_def)
|
|
|
|
{
|
|
|
|
// Precondition, in query mode the map isn't used anymore
|
|
|
|
FATAL_ERROR_IF(m_query_mode == true,
|
|
|
|
"attempted to modify LBMManager in query mode");
|
|
|
|
|
|
|
|
if (!string_allowed(lbm_def->name, LBM_NAME_ALLOWED_CHARS)) {
|
|
|
|
throw ModError("Error adding LBM \"" + lbm_def->name +
|
|
|
|
"\": Does not follow naming conventions: "
|
|
|
|
"Only chararacters [a-z0-9_:] are allowed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
m_lbm_defs[lbm_def->name] = lbm_def;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LBMManager::loadIntroductionTimes(const std::string ×,
|
|
|
|
IGameDef *gamedef, u32 now)
|
|
|
|
{
|
|
|
|
m_query_mode = true;
|
|
|
|
|
|
|
|
// name -> time map.
|
|
|
|
// Storing it in a map first instead of
|
|
|
|
// handling the stuff directly in the loop
|
|
|
|
// removes all duplicate entries.
|
|
|
|
// TODO make this std::unordered_map
|
|
|
|
std::map<std::string, u32> introduction_times;
|
|
|
|
|
|
|
|
/*
|
|
|
|
The introduction times string consists of name~time entries,
|
|
|
|
with each entry terminated by a semicolon. The time is decimal.
|
|
|
|
*/
|
|
|
|
|
|
|
|
size_t idx = 0;
|
|
|
|
size_t idx_new;
|
|
|
|
while ((idx_new = times.find(";", idx)) != std::string::npos) {
|
|
|
|
std::string entry = times.substr(idx, idx_new - idx);
|
|
|
|
std::vector<std::string> components = str_split(entry, '~');
|
|
|
|
if (components.size() != 2)
|
|
|
|
throw SerializationError("Introduction times entry \""
|
|
|
|
+ entry + "\" requires exactly one '~'!");
|
|
|
|
const std::string &name = components[0];
|
|
|
|
u32 time = from_string<u32>(components[1]);
|
|
|
|
introduction_times[name] = time;
|
|
|
|
idx = idx_new + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put stuff from introduction_times into m_lbm_lookup
|
|
|
|
for (std::map<std::string, u32>::const_iterator it = introduction_times.begin();
|
|
|
|
it != introduction_times.end(); ++it) {
|
|
|
|
const std::string &name = it->first;
|
|
|
|
u32 time = it->second;
|
|
|
|
|
|
|
|
std::map<std::string, LoadingBlockModifierDef *>::iterator def_it =
|
|
|
|
m_lbm_defs.find(name);
|
|
|
|
if (def_it == m_lbm_defs.end()) {
|
|
|
|
// This seems to be an LBM entry for
|
|
|
|
// an LBM we haven't loaded. Discard it.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
LoadingBlockModifierDef *lbm_def = def_it->second;
|
|
|
|
if (lbm_def->run_at_every_load) {
|
|
|
|
// This seems to be an LBM entry for
|
|
|
|
// an LBM that runs at every load.
|
|
|
|
// Don't add it just yet.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_lbm_lookup[time].addLBM(lbm_def, gamedef);
|
|
|
|
|
|
|
|
// Erase the entry so that we know later
|
|
|
|
// what elements didn't get put into m_lbm_lookup
|
|
|
|
m_lbm_defs.erase(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now also add the elements from m_lbm_defs to m_lbm_lookup
|
|
|
|
// that weren't added in the previous step.
|
|
|
|
// They are introduced first time to this world,
|
|
|
|
// or are run at every load (introducement time hardcoded to U32_MAX).
|
|
|
|
|
|
|
|
LBMContentMapping &lbms_we_introduce_now = m_lbm_lookup[now];
|
|
|
|
LBMContentMapping &lbms_running_always = m_lbm_lookup[U32_MAX];
|
|
|
|
|
|
|
|
for (std::map<std::string, LoadingBlockModifierDef *>::iterator it =
|
|
|
|
m_lbm_defs.begin(); it != m_lbm_defs.end(); ++it) {
|
|
|
|
if (it->second->run_at_every_load) {
|
|
|
|
lbms_running_always.addLBM(it->second, gamedef);
|
|
|
|
} else {
|
|
|
|
lbms_we_introduce_now.addLBM(it->second, gamedef);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the list, so that we don't delete remaining elements
|
|
|
|
// twice in the destructor
|
|
|
|
m_lbm_defs.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string LBMManager::createIntroductionTimesString()
|
|
|
|
{
|
|
|
|
// Precondition, we must be in query mode
|
|
|
|
FATAL_ERROR_IF(m_query_mode == false,
|
|
|
|
"attempted to query on non fully set up LBMManager");
|
|
|
|
|
|
|
|
std::ostringstream oss;
|
|
|
|
for (lbm_lookup_map::iterator it = m_lbm_lookup.begin();
|
|
|
|
it != m_lbm_lookup.end(); ++it) {
|
|
|
|
u32 time = it->first;
|
|
|
|
std::vector<LoadingBlockModifierDef *> &lbm_list = it->second.lbm_list;
|
|
|
|
for (std::vector<LoadingBlockModifierDef *>::iterator iit = lbm_list.begin();
|
|
|
|
iit != lbm_list.end(); ++iit) {
|
|
|
|
// Don't add if the LBM runs at every load,
|
|
|
|
// then introducement time is hardcoded
|
|
|
|
// and doesn't need to be stored
|
|
|
|
if ((*iit)->run_at_every_load)
|
|
|
|
continue;
|
|
|
|
oss << (*iit)->name << "~" << time << ";";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LBMManager::applyLBMs(ServerEnvironment *env, MapBlock *block, u32 stamp)
|
|
|
|
{
|
|
|
|
// Precondition, we need m_lbm_lookup to be initialized
|
|
|
|
FATAL_ERROR_IF(m_query_mode == false,
|
|
|
|
"attempted to query on non fully set up LBMManager");
|
|
|
|
v3s16 pos_of_block = block->getPosRelative();
|
|
|
|
v3s16 pos;
|
|
|
|
MapNode n;
|
|
|
|
content_t c;
|
|
|
|
lbm_lookup_map::const_iterator it = getLBMsIntroducedAfter(stamp);
|
|
|
|
for (pos.X = 0; pos.X < MAP_BLOCKSIZE; pos.X++)
|
|
|
|
for (pos.Y = 0; pos.Y < MAP_BLOCKSIZE; pos.Y++)
|
|
|
|
for (pos.Z = 0; pos.Z < MAP_BLOCKSIZE; pos.Z++)
|
|
|
|
{
|
|
|
|
n = block->getNodeNoEx(pos);
|
|
|
|
c = n.getContent();
|
|
|
|
for (LBMManager::lbm_lookup_map::const_iterator iit = it;
|
|
|
|
iit != m_lbm_lookup.end(); ++iit) {
|
|
|
|
const std::vector<LoadingBlockModifierDef *> *lbm_list =
|
|
|
|
iit->second.lookup(c);
|
|
|
|
if (!lbm_list)
|
|
|
|
continue;
|
|
|
|
for (std::vector<LoadingBlockModifierDef *>::const_iterator iit =
|
|
|
|
lbm_list->begin(); iit != lbm_list->end(); ++iit) {
|
|
|
|
(*iit)->trigger(env, pos + pos_of_block, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
|
|
|
ActiveBlockList
|
|
|
|
*/
|
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
void fillRadiusBlock(v3s16 p0, s16 r, std::set<v3s16> &list)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
|
|
|
v3s16 p;
|
|
|
|
for(p.X=p0.X-r; p.X<=p0.X+r; p.X++)
|
|
|
|
for(p.Y=p0.Y-r; p.Y<=p0.Y+r; p.Y++)
|
|
|
|
for(p.Z=p0.Z-r; p.Z<=p0.Z+r; p.Z++)
|
|
|
|
{
|
|
|
|
// Set in list
|
2012-12-20 18:19:49 +01:00
|
|
|
list.insert(p);
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-17 16:49:27 +01:00
|
|
|
void ActiveBlockList::update(std::vector<v3s16> &active_positions,
|
2011-05-22 16:00:09 +02:00
|
|
|
s16 radius,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<v3s16> &blocks_removed,
|
|
|
|
std::set<v3s16> &blocks_added)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
Create the new list
|
|
|
|
*/
|
2014-01-11 17:54:00 +01:00
|
|
|
std::set<v3s16> newlist = m_forceloaded_list;
|
2015-02-17 16:49:27 +01:00
|
|
|
for(std::vector<v3s16>::iterator i = active_positions.begin();
|
2012-12-20 18:19:49 +01:00
|
|
|
i != active_positions.end(); ++i)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
|
|
|
fillRadiusBlock(*i, radius, newlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Find out which blocks on the old list are not on the new list
|
|
|
|
*/
|
|
|
|
// Go through old list
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<v3s16>::iterator i = m_list.begin();
|
|
|
|
i != m_list.end(); ++i)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2012-12-20 18:19:49 +01:00
|
|
|
v3s16 p = *i;
|
2011-05-22 16:00:09 +02:00
|
|
|
// If not on new list, it's been removed
|
2012-12-20 18:19:49 +01:00
|
|
|
if(newlist.find(p) == newlist.end())
|
|
|
|
blocks_removed.insert(p);
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Find out which blocks on the new list are not on the old list
|
|
|
|
*/
|
|
|
|
// Go through new list
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<v3s16>::iterator i = newlist.begin();
|
|
|
|
i != newlist.end(); ++i)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2012-12-20 18:19:49 +01:00
|
|
|
v3s16 p = *i;
|
2011-05-22 16:00:09 +02:00
|
|
|
// If not on old list, it's been added
|
2012-12-20 18:19:49 +01:00
|
|
|
if(m_list.find(p) == m_list.end())
|
|
|
|
blocks_added.insert(p);
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Update m_list
|
|
|
|
*/
|
|
|
|
m_list.clear();
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<v3s16>::iterator i = newlist.begin();
|
|
|
|
i != newlist.end(); ++i)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2012-12-20 18:19:49 +01:00
|
|
|
v3s16 p = *i;
|
|
|
|
m_list.insert(p);
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
ServerEnvironment
|
|
|
|
*/
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
ServerEnvironment::ServerEnvironment(ServerMap *map,
|
2014-05-30 22:04:07 +02:00
|
|
|
GameScripting *scriptIface, IGameDef *gamedef,
|
|
|
|
const std::string &path_world) :
|
2011-02-20 23:45:14 +01:00
|
|
|
m_map(map),
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script(scriptIface),
|
2011-11-13 23:19:48 +01:00
|
|
|
m_gamedef(gamedef),
|
2014-05-30 22:04:07 +02:00
|
|
|
m_path_world(path_world),
|
2011-05-22 16:00:09 +02:00
|
|
|
m_send_recommended_timer(0),
|
2012-07-27 12:45:49 +02:00
|
|
|
m_active_block_interval_overload_skip(0),
|
2011-05-22 16:00:09 +02:00
|
|
|
m_game_time(0),
|
2012-11-26 21:31:21 +01:00
|
|
|
m_game_time_fraction_counter(0),
|
2016-02-08 22:20:04 +01:00
|
|
|
m_last_clear_objects_time(0),
|
2013-08-03 22:16:37 +02:00
|
|
|
m_recommended_send_interval(0.1),
|
|
|
|
m_max_lag_estimate(0.1)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ServerEnvironment::~ServerEnvironment()
|
|
|
|
{
|
2011-05-22 16:00:09 +02:00
|
|
|
// Clear active block list.
|
|
|
|
// This makes the next one delete all active objects.
|
|
|
|
m_active_blocks.clear();
|
|
|
|
|
|
|
|
// Convert all objects to static and delete the active objects
|
|
|
|
deactivateFarObjects(true);
|
2011-05-21 13:28:58 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
// Drop/delete map
|
|
|
|
m_map->drop();
|
2011-11-27 23:45:34 +01:00
|
|
|
|
|
|
|
// Delete ActiveBlockModifiers
|
2016-10-08 23:13:38 +02:00
|
|
|
for (std::vector<ABMWithState>::iterator
|
2012-12-20 18:19:49 +01:00
|
|
|
i = m_abms.begin(); i != m_abms.end(); ++i){
|
2011-11-28 09:33:47 +01:00
|
|
|
delete i->abm;
|
2011-11-27 23:45:34 +01:00
|
|
|
}
|
2016-10-08 23:13:38 +02:00
|
|
|
|
|
|
|
// Deallocate players
|
|
|
|
for (std::vector<RemotePlayer *>::iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); ++i) {
|
|
|
|
delete (*i);
|
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2012-07-26 21:06:45 +02:00
|
|
|
Map & ServerEnvironment::getMap()
|
|
|
|
{
|
|
|
|
return *m_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
ServerMap & ServerEnvironment::getServerMap()
|
|
|
|
{
|
|
|
|
return *m_map;
|
|
|
|
}
|
|
|
|
|
2016-10-08 12:21:41 +02:00
|
|
|
RemotePlayer *ServerEnvironment::getPlayer(const u16 peer_id)
|
|
|
|
{
|
2016-10-08 23:13:38 +02:00
|
|
|
for (std::vector<RemotePlayer *>::iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); ++i) {
|
|
|
|
RemotePlayer *player = *i;
|
|
|
|
if (player->peer_id == peer_id)
|
|
|
|
return player;
|
|
|
|
}
|
|
|
|
return NULL;
|
2016-10-08 12:21:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
RemotePlayer *ServerEnvironment::getPlayer(const char* name)
|
|
|
|
{
|
2016-10-08 23:13:38 +02:00
|
|
|
for (std::vector<RemotePlayer *>::iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); ++i) {
|
|
|
|
RemotePlayer *player = *i;
|
|
|
|
if (strcmp(player->getName(), name) == 0)
|
|
|
|
return player;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::addPlayer(RemotePlayer *player)
|
|
|
|
{
|
|
|
|
DSTACK(FUNCTION_NAME);
|
|
|
|
/*
|
|
|
|
Check that peer_ids are unique.
|
|
|
|
Also check that names are unique.
|
|
|
|
Exception: there can be multiple players with peer_id=0
|
|
|
|
*/
|
|
|
|
// If peer id is non-zero, it has to be unique.
|
|
|
|
if (player->peer_id != 0)
|
|
|
|
FATAL_ERROR_IF(getPlayer(player->peer_id) != NULL, "Peer id not unique");
|
|
|
|
// Name has to be unique.
|
|
|
|
FATAL_ERROR_IF(getPlayer(player->getName()) != NULL, "Player name not unique");
|
|
|
|
// Add.
|
|
|
|
m_players.push_back(player);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::removePlayer(RemotePlayer *player)
|
|
|
|
{
|
|
|
|
for (std::vector<RemotePlayer *>::iterator it = m_players.begin();
|
|
|
|
it != m_players.end(); ++it) {
|
|
|
|
if ((*it) == player) {
|
|
|
|
delete *it;
|
|
|
|
m_players.erase(it);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-10-08 12:21:41 +02:00
|
|
|
}
|
|
|
|
|
2013-12-11 21:33:39 +01:00
|
|
|
bool ServerEnvironment::line_of_sight(v3f pos1, v3f pos2, float stepsize, v3s16 *p)
|
2013-03-17 18:03:44 +01:00
|
|
|
{
|
|
|
|
float distance = pos1.getDistanceFrom(pos2);
|
|
|
|
|
|
|
|
//calculate normalized direction vector
|
|
|
|
v3f normalized_vector = v3f((pos2.X - pos1.X)/distance,
|
2015-02-17 16:49:27 +01:00
|
|
|
(pos2.Y - pos1.Y)/distance,
|
|
|
|
(pos2.Z - pos1.Z)/distance);
|
2013-03-17 18:03:44 +01:00
|
|
|
|
|
|
|
//find out if there's a node on path between pos1 and pos2
|
|
|
|
for (float i = 1; i < distance; i += stepsize) {
|
|
|
|
v3s16 pos = floatToInt(v3f(normalized_vector.X * i,
|
|
|
|
normalized_vector.Y * i,
|
|
|
|
normalized_vector.Z * i) +pos1,BS);
|
|
|
|
|
|
|
|
MapNode n = getMap().getNodeNoEx(pos);
|
|
|
|
|
|
|
|
if(n.param0 != CONTENT_AIR) {
|
2013-12-11 21:33:39 +01:00
|
|
|
if (p) {
|
|
|
|
*p = pos;
|
|
|
|
}
|
2013-03-17 18:03:44 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-07-26 21:06:45 +02:00
|
|
|
|
2015-07-17 16:40:41 +02:00
|
|
|
void ServerEnvironment::kickAllPlayers(AccessDeniedCode reason,
|
|
|
|
const std::string &str_reason, bool reconnect)
|
2015-07-16 17:37:46 +02:00
|
|
|
{
|
2016-10-08 23:13:38 +02:00
|
|
|
for (std::vector<RemotePlayer *>::iterator it = m_players.begin();
|
2016-10-08 16:31:22 +02:00
|
|
|
it != m_players.end(); ++it) {
|
2016-10-08 17:56:38 +02:00
|
|
|
RemotePlayer *player = dynamic_cast<RemotePlayer *>(*it);
|
|
|
|
((Server*)m_gamedef)->DenyAccessVerCompliant(player->peer_id,
|
|
|
|
player->protocol_version, reason, str_reason, reconnect);
|
2015-07-16 17:37:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-30 22:04:07 +02:00
|
|
|
void ServerEnvironment::saveLoadedPlayers()
|
2011-01-28 00:38:16 +01:00
|
|
|
{
|
2014-05-30 22:04:07 +02:00
|
|
|
std::string players_path = m_path_world + DIR_DELIM "players";
|
2011-01-28 00:38:16 +01:00
|
|
|
fs::CreateDir(players_path);
|
|
|
|
|
2016-10-08 23:13:38 +02:00
|
|
|
for (std::vector<RemotePlayer *>::iterator it = m_players.begin();
|
2014-05-30 22:04:07 +02:00
|
|
|
it != m_players.end();
|
|
|
|
++it) {
|
2016-10-30 14:53:26 +01:00
|
|
|
if ((*it)->checkModified()) {
|
|
|
|
(*it)->save(players_path, m_gamedef);
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-30 22:04:07 +02:00
|
|
|
}
|
2011-01-28 00:38:16 +01:00
|
|
|
|
2015-09-23 18:53:54 +02:00
|
|
|
void ServerEnvironment::savePlayer(RemotePlayer *player)
|
2014-05-30 22:04:07 +02:00
|
|
|
{
|
|
|
|
std::string players_path = m_path_world + DIR_DELIM "players";
|
|
|
|
fs::CreateDir(players_path);
|
2011-01-28 00:38:16 +01:00
|
|
|
|
2016-10-08 17:56:38 +02:00
|
|
|
player->save(players_path, m_gamedef);
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
|
|
|
|
2016-10-30 14:53:26 +01:00
|
|
|
RemotePlayer *ServerEnvironment::loadPlayer(const std::string &playername, PlayerSAO *sao)
|
2011-01-28 00:38:16 +01:00
|
|
|
{
|
2014-05-30 22:04:07 +02:00
|
|
|
bool newplayer = false;
|
2014-06-01 19:11:37 +02:00
|
|
|
bool found = false;
|
2015-04-01 05:33:30 +02:00
|
|
|
std::string players_path = m_path_world + DIR_DELIM "players" DIR_DELIM;
|
|
|
|
std::string path = players_path + playername;
|
|
|
|
|
2016-10-08 16:31:22 +02:00
|
|
|
RemotePlayer *player = getPlayer(playername.c_str());
|
2014-05-30 22:04:07 +02:00
|
|
|
if (!player) {
|
2016-10-08 17:56:38 +02:00
|
|
|
player = new RemotePlayer("", m_gamedef->idef());
|
2014-05-30 22:04:07 +02:00
|
|
|
newplayer = true;
|
|
|
|
}
|
2011-01-28 00:38:16 +01:00
|
|
|
|
2014-06-23 21:55:47 +02:00
|
|
|
for (u32 i = 0; i < PLAYER_FILE_ALTERNATE_TRIES; i++) {
|
2015-04-01 05:33:30 +02:00
|
|
|
//// Open file and deserialize
|
2014-05-30 22:04:07 +02:00
|
|
|
std::ifstream is(path.c_str(), std::ios_base::binary);
|
2015-04-01 05:33:30 +02:00
|
|
|
if (!is.good())
|
|
|
|
continue;
|
2016-10-30 14:53:26 +01:00
|
|
|
|
|
|
|
player->deSerialize(is, path, sao);
|
2014-06-28 17:01:15 +02:00
|
|
|
is.close();
|
2015-04-01 05:33:30 +02:00
|
|
|
|
|
|
|
if (player->getName() == playername) {
|
2014-06-01 19:11:37 +02:00
|
|
|
found = true;
|
2014-05-30 22:04:07 +02:00
|
|
|
break;
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2014-06-01 19:11:37 +02:00
|
|
|
path = players_path + playername + itos(i);
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2014-06-01 19:11:37 +02:00
|
|
|
if (!found) {
|
|
|
|
infostream << "Player file for player " << playername
|
|
|
|
<< " not found" << std::endl;
|
2015-04-01 05:33:30 +02:00
|
|
|
if (newplayer)
|
|
|
|
delete player;
|
2016-10-30 14:53:26 +01:00
|
|
|
|
2014-05-30 22:04:07 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2016-10-30 14:53:26 +01:00
|
|
|
if (newplayer) {
|
2014-05-30 22:04:07 +02:00
|
|
|
addPlayer(player);
|
2016-10-30 14:53:26 +01:00
|
|
|
}
|
2014-09-02 18:53:20 +02:00
|
|
|
player->setModified(false);
|
2014-05-30 22:04:07 +02:00
|
|
|
return player;
|
2011-01-28 00:38:16 +01:00
|
|
|
}
|
|
|
|
|
2014-05-30 22:04:07 +02:00
|
|
|
void ServerEnvironment::saveMeta()
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2014-05-30 22:04:07 +02:00
|
|
|
std::string path = m_path_world + DIR_DELIM "env_meta.txt";
|
2011-05-22 16:00:09 +02:00
|
|
|
|
|
|
|
// Open file and serialize
|
2013-08-13 19:15:06 +02:00
|
|
|
std::ostringstream ss(std::ios_base::binary);
|
2011-05-22 16:00:09 +02:00
|
|
|
|
|
|
|
Settings args;
|
|
|
|
args.setU64("game_time", m_game_time);
|
|
|
|
args.setU64("time_of_day", getTimeOfDay());
|
2016-02-08 22:20:04 +01:00
|
|
|
args.setU64("last_clear_objects_time", m_last_clear_objects_time);
|
2016-02-09 07:08:31 +01:00
|
|
|
args.setU64("lbm_introduction_times_version", 1);
|
|
|
|
args.set("lbm_introduction_times",
|
|
|
|
m_lbm_mgr.createIntroductionTimesString());
|
2016-03-06 21:02:21 +01:00
|
|
|
args.setU64("day_count", m_day_count);
|
2013-08-13 19:15:06 +02:00
|
|
|
args.writeLines(ss);
|
|
|
|
ss<<"EnvArgsEnd\n";
|
|
|
|
|
|
|
|
if(!fs::safeWriteToFile(path, ss.str()))
|
|
|
|
{
|
|
|
|
infostream<<"ServerEnvironment::saveMeta(): Failed to write "
|
|
|
|
<<path<<std::endl;
|
|
|
|
throw SerializationError("Couldn't save env meta");
|
|
|
|
}
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-30 22:04:07 +02:00
|
|
|
void ServerEnvironment::loadMeta()
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2014-05-30 22:04:07 +02:00
|
|
|
std::string path = m_path_world + DIR_DELIM "env_meta.txt";
|
2011-05-22 16:00:09 +02:00
|
|
|
|
|
|
|
// Open file and deserialize
|
|
|
|
std::ifstream is(path.c_str(), std::ios_base::binary);
|
2014-09-12 00:22:05 +02:00
|
|
|
if (!is.good()) {
|
|
|
|
infostream << "ServerEnvironment::loadMeta(): Failed to open "
|
|
|
|
<< path << std::endl;
|
2011-05-22 16:00:09 +02:00
|
|
|
throw SerializationError("Couldn't load env meta");
|
|
|
|
}
|
|
|
|
|
|
|
|
Settings args;
|
2014-09-12 00:22:05 +02:00
|
|
|
|
|
|
|
if (!args.parseConfigLines(is, "EnvArgsEnd")) {
|
|
|
|
throw SerializationError("ServerEnvironment::loadMeta(): "
|
|
|
|
"EnvArgsEnd not found!");
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
2014-09-12 00:22:05 +02:00
|
|
|
|
|
|
|
try {
|
2011-05-22 16:00:09 +02:00
|
|
|
m_game_time = args.getU64("game_time");
|
2014-09-12 00:22:05 +02:00
|
|
|
} catch (SettingNotFoundException &e) {
|
2011-05-22 16:00:09 +02:00
|
|
|
// Getting this is crucial, otherwise timestamps are useless
|
|
|
|
throw SerializationError("Couldn't load env meta game_time");
|
|
|
|
}
|
|
|
|
|
2016-03-08 05:23:34 +01:00
|
|
|
setTimeOfDay(args.exists("time_of_day") ?
|
|
|
|
// set day to morning by default
|
|
|
|
args.getU64("time_of_day") : 9000);
|
2016-02-08 22:20:04 +01:00
|
|
|
|
2016-03-08 05:23:34 +01:00
|
|
|
m_last_clear_objects_time = args.exists("last_clear_objects_time") ?
|
2016-02-08 22:20:04 +01:00
|
|
|
// If missing, do as if clearObjects was never called
|
2016-03-08 05:23:34 +01:00
|
|
|
args.getU64("last_clear_objects_time") : 0;
|
2016-02-09 07:08:31 +01:00
|
|
|
|
|
|
|
std::string lbm_introduction_times = "";
|
|
|
|
try {
|
|
|
|
u64 ver = args.getU64("lbm_introduction_times_version");
|
|
|
|
if (ver == 1) {
|
|
|
|
lbm_introduction_times = args.get("lbm_introduction_times");
|
|
|
|
} else {
|
|
|
|
infostream << "ServerEnvironment::loadMeta(): Non-supported"
|
|
|
|
<< " introduction time version " << ver << std::endl;
|
|
|
|
}
|
|
|
|
} catch (SettingNotFoundException &e) {
|
|
|
|
// No problem, this is expected. Just continue with an empty string
|
|
|
|
}
|
|
|
|
m_lbm_mgr.loadIntroductionTimes(lbm_introduction_times, m_gamedef, m_game_time);
|
|
|
|
|
2016-03-08 05:23:34 +01:00
|
|
|
m_day_count = args.exists("day_count") ?
|
|
|
|
args.getU64("day_count") : 0;
|
2016-02-09 07:08:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::loadDefaultMeta()
|
|
|
|
{
|
|
|
|
m_lbm_mgr.loadIntroductionTimes("", m_gamedef, m_game_time);
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
|
|
|
|
2011-11-27 23:45:34 +01:00
|
|
|
struct ActiveABM
|
2011-04-21 18:35:17 +02:00
|
|
|
{
|
2011-11-27 23:45:34 +01:00
|
|
|
ActiveBlockModifier *abm;
|
|
|
|
int chance;
|
2011-12-03 17:18:59 +01:00
|
|
|
std::set<content_t> required_neighbors;
|
2011-11-27 23:45:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class ABMHandler
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ServerEnvironment *m_env;
|
2015-02-17 16:49:27 +01:00
|
|
|
std::map<content_t, std::vector<ActiveABM> > m_aabms;
|
2011-11-27 23:45:34 +01:00
|
|
|
public:
|
2015-03-04 16:58:04 +01:00
|
|
|
ABMHandler(std::vector<ABMWithState> &abms,
|
2011-11-28 09:33:47 +01:00
|
|
|
float dtime_s, ServerEnvironment *env,
|
|
|
|
bool use_timers):
|
2011-11-27 23:45:34 +01:00
|
|
|
m_env(env)
|
|
|
|
{
|
|
|
|
if(dtime_s < 0.001)
|
|
|
|
return;
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
2015-03-04 16:58:04 +01:00
|
|
|
for(std::vector<ABMWithState>::iterator
|
|
|
|
i = abms.begin(); i != abms.end(); ++i) {
|
2011-11-28 09:33:47 +01:00
|
|
|
ActiveBlockModifier *abm = i->abm;
|
|
|
|
float trigger_interval = abm->getTriggerInterval();
|
|
|
|
if(trigger_interval < 0.001)
|
|
|
|
trigger_interval = 0.001;
|
2012-01-02 19:26:33 +01:00
|
|
|
float actual_interval = dtime_s;
|
2011-11-28 09:33:47 +01:00
|
|
|
if(use_timers){
|
|
|
|
i->timer += dtime_s;
|
|
|
|
if(i->timer < trigger_interval)
|
|
|
|
continue;
|
|
|
|
i->timer -= trigger_interval;
|
2012-01-02 19:26:33 +01:00
|
|
|
actual_interval = trigger_interval;
|
2011-11-28 09:33:47 +01:00
|
|
|
}
|
2011-11-27 23:45:34 +01:00
|
|
|
float chance = abm->getTriggerChance();
|
|
|
|
if(chance == 0)
|
|
|
|
chance = 1;
|
2012-04-09 22:06:24 +02:00
|
|
|
ActiveABM aabm;
|
|
|
|
aabm.abm = abm;
|
2015-10-13 06:17:33 +02:00
|
|
|
if(abm->getSimpleCatchUp()) {
|
|
|
|
float intervals = actual_interval / trigger_interval;
|
|
|
|
if(intervals == 0)
|
|
|
|
continue;
|
|
|
|
aabm.chance = chance / intervals;
|
|
|
|
if(aabm.chance == 0)
|
|
|
|
aabm.chance = 1;
|
|
|
|
} else {
|
|
|
|
aabm.chance = chance;
|
|
|
|
}
|
2011-12-03 17:18:59 +01:00
|
|
|
// Trigger neighbors
|
|
|
|
std::set<std::string> required_neighbors_s
|
|
|
|
= abm->getRequiredNeighbors();
|
|
|
|
for(std::set<std::string>::iterator
|
|
|
|
i = required_neighbors_s.begin();
|
2015-08-25 22:23:05 +02:00
|
|
|
i != required_neighbors_s.end(); ++i)
|
2012-03-31 11:30:11 +02:00
|
|
|
{
|
|
|
|
ndef->getIds(*i, aabm.required_neighbors);
|
2011-12-03 17:18:59 +01:00
|
|
|
}
|
|
|
|
// Trigger contents
|
2011-11-27 23:45:34 +01:00
|
|
|
std::set<std::string> contents_s = abm->getTriggerContents();
|
|
|
|
for(std::set<std::string>::iterator
|
2015-08-25 22:23:05 +02:00
|
|
|
i = contents_s.begin(); i != contents_s.end(); ++i)
|
2012-03-31 11:30:11 +02:00
|
|
|
{
|
|
|
|
std::set<content_t> ids;
|
|
|
|
ndef->getIds(*i, ids);
|
|
|
|
for(std::set<content_t>::const_iterator k = ids.begin();
|
2015-08-25 22:23:05 +02:00
|
|
|
k != ids.end(); ++k)
|
2012-03-31 11:30:11 +02:00
|
|
|
{
|
|
|
|
content_t c = *k;
|
2015-02-17 16:49:27 +01:00
|
|
|
std::map<content_t, std::vector<ActiveABM> >::iterator j;
|
2011-11-27 23:45:34 +01:00
|
|
|
j = m_aabms.find(c);
|
2012-03-31 11:30:11 +02:00
|
|
|
if(j == m_aabms.end()){
|
2015-02-17 16:49:27 +01:00
|
|
|
std::vector<ActiveABM> aabmlist;
|
2012-03-31 11:30:11 +02:00
|
|
|
m_aabms[c] = aabmlist;
|
|
|
|
j = m_aabms.find(c);
|
|
|
|
}
|
|
|
|
j->second.push_back(aabm);
|
2011-11-27 23:45:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-06 20:20:06 +01:00
|
|
|
// Find out how many objects the given block and its neighbours contain.
|
|
|
|
// Returns the number of objects in the block, and also in 'wider' the
|
|
|
|
// number of objects in the block and all its neighbours. The latter
|
|
|
|
// may an estimate if any neighbours are unloaded.
|
|
|
|
u32 countObjects(MapBlock *block, ServerMap * map, u32 &wider)
|
2011-04-21 18:35:17 +02:00
|
|
|
{
|
2014-03-06 20:20:06 +01:00
|
|
|
wider = 0;
|
2014-03-03 19:43:53 +01:00
|
|
|
u32 wider_unknown_count = 0;
|
|
|
|
for(s16 x=-1; x<=1; x++)
|
|
|
|
for(s16 y=-1; y<=1; y++)
|
|
|
|
for(s16 z=-1; z<=1; z++)
|
|
|
|
{
|
|
|
|
MapBlock *block2 = map->getBlockNoCreateNoEx(
|
|
|
|
block->getPos() + v3s16(x,y,z));
|
|
|
|
if(block2==NULL){
|
2014-03-06 20:20:06 +01:00
|
|
|
wider_unknown_count++;
|
2014-03-03 19:43:53 +01:00
|
|
|
continue;
|
|
|
|
}
|
2014-03-06 20:20:06 +01:00
|
|
|
wider += block2->m_static_objects.m_active.size()
|
2014-03-03 19:43:53 +01:00
|
|
|
+ block2->m_static_objects.m_stored.size();
|
|
|
|
}
|
|
|
|
// Extrapolate
|
2014-03-06 20:20:06 +01:00
|
|
|
u32 active_object_count = block->m_static_objects.m_active.size();
|
2014-03-03 19:43:53 +01:00
|
|
|
u32 wider_known_count = 3*3*3 - wider_unknown_count;
|
2014-03-06 20:20:06 +01:00
|
|
|
wider += wider_unknown_count * wider / wider_known_count;
|
|
|
|
return active_object_count;
|
|
|
|
|
|
|
|
}
|
|
|
|
void apply(MapBlock *block)
|
|
|
|
{
|
|
|
|
if(m_aabms.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
ServerMap *map = &m_env->getServerMap();
|
|
|
|
|
|
|
|
u32 active_object_count_wider;
|
|
|
|
u32 active_object_count = this->countObjects(block, map, active_object_count_wider);
|
|
|
|
m_env->m_added_objects = 0;
|
|
|
|
|
2011-11-27 23:45:34 +01:00
|
|
|
v3s16 p0;
|
|
|
|
for(p0.X=0; p0.X<MAP_BLOCKSIZE; p0.X++)
|
|
|
|
for(p0.Y=0; p0.Y<MAP_BLOCKSIZE; p0.Y++)
|
|
|
|
for(p0.Z=0; p0.Z<MAP_BLOCKSIZE; p0.Z++)
|
|
|
|
{
|
|
|
|
MapNode n = block->getNodeNoEx(p0);
|
|
|
|
content_t c = n.getContent();
|
|
|
|
v3s16 p = p0 + block->getPosRelative();
|
|
|
|
|
2015-02-17 16:49:27 +01:00
|
|
|
std::map<content_t, std::vector<ActiveABM> >::iterator j;
|
2011-11-27 23:45:34 +01:00
|
|
|
j = m_aabms.find(c);
|
|
|
|
if(j == m_aabms.end())
|
2011-04-21 18:35:17 +02:00
|
|
|
continue;
|
2011-11-27 23:45:34 +01:00
|
|
|
|
2015-02-17 16:49:27 +01:00
|
|
|
for(std::vector<ActiveABM>::iterator
|
2015-08-25 22:23:05 +02:00
|
|
|
i = j->second.begin(); i != j->second.end(); ++i) {
|
2011-11-27 23:45:34 +01:00
|
|
|
if(myrand() % i->chance != 0)
|
|
|
|
continue;
|
2011-11-29 16:09:29 +01:00
|
|
|
|
2011-12-03 17:18:59 +01:00
|
|
|
// Check neighbors
|
|
|
|
if(!i->required_neighbors.empty())
|
|
|
|
{
|
|
|
|
v3s16 p1;
|
|
|
|
for(p1.X = p.X-1; p1.X <= p.X+1; p1.X++)
|
|
|
|
for(p1.Y = p.Y-1; p1.Y <= p.Y+1; p1.Y++)
|
|
|
|
for(p1.Z = p.Z-1; p1.Z <= p.Z+1; p1.Z++)
|
|
|
|
{
|
|
|
|
if(p1 == p)
|
|
|
|
continue;
|
|
|
|
MapNode n = map->getNodeNoEx(p1);
|
|
|
|
content_t c = n.getContent();
|
|
|
|
std::set<content_t>::const_iterator k;
|
|
|
|
k = i->required_neighbors.find(c);
|
|
|
|
if(k != i->required_neighbors.end()){
|
|
|
|
goto neighbor_found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// No required neighbor found
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
neighbor_found:
|
|
|
|
|
2011-11-27 23:45:34 +01:00
|
|
|
// Call all the trigger variations
|
|
|
|
i->abm->trigger(m_env, p, n);
|
|
|
|
i->abm->trigger(m_env, p, n,
|
2014-03-21 21:12:13 +01:00
|
|
|
active_object_count, active_object_count_wider);
|
2014-03-06 20:20:06 +01:00
|
|
|
|
|
|
|
// Count surrounding objects again if the abms added any
|
|
|
|
if(m_env->m_added_objects > 0) {
|
|
|
|
active_object_count = countObjects(block, map, active_object_count_wider);
|
|
|
|
m_env->m_added_objects = 0;
|
|
|
|
}
|
2011-04-21 18:35:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-27 23:45:34 +01:00
|
|
|
};
|
2011-04-21 18:35:17 +02:00
|
|
|
|
2011-06-25 03:25:14 +02:00
|
|
|
void ServerEnvironment::activateBlock(MapBlock *block, u32 additional_dtime)
|
|
|
|
{
|
2014-02-20 13:55:32 +01:00
|
|
|
// Reset usage timer immediately, otherwise a block that becomes active
|
|
|
|
// again at around the same time as it would normally be unloaded will
|
|
|
|
// get unloaded incorrectly. (I think this still leaves a small possibility
|
|
|
|
// of a race condition between this and server::AsyncRunStep, which only
|
|
|
|
// some kind of synchronisation will fix, but it at least reduces the window
|
|
|
|
// of opportunity for it to break from seconds to nanoseconds)
|
|
|
|
block->resetUsageTimer();
|
|
|
|
|
2011-06-25 03:25:14 +02:00
|
|
|
// Get time difference
|
|
|
|
u32 dtime_s = 0;
|
|
|
|
u32 stamp = block->getTimestamp();
|
2016-02-08 22:20:04 +01:00
|
|
|
if (m_game_time > stamp && stamp != BLOCK_TIMESTAMP_UNDEFINED)
|
|
|
|
dtime_s = m_game_time - stamp;
|
2011-06-25 03:25:14 +02:00
|
|
|
dtime_s += additional_dtime;
|
|
|
|
|
2011-11-28 13:54:39 +01:00
|
|
|
/*infostream<<"ServerEnvironment::activateBlock(): block timestamp: "
|
|
|
|
<<stamp<<", game time: "<<m_game_time<<std::endl;*/
|
2011-11-27 23:45:34 +01:00
|
|
|
|
2016-02-08 22:20:04 +01:00
|
|
|
// Remove stored static objects if clearObjects was called since block's timestamp
|
|
|
|
if (stamp == BLOCK_TIMESTAMP_UNDEFINED || stamp < m_last_clear_objects_time) {
|
|
|
|
block->m_static_objects.m_stored.clear();
|
|
|
|
// do not set changed flag to avoid unnecessary mapblock writes
|
|
|
|
}
|
|
|
|
|
2011-11-27 23:45:34 +01:00
|
|
|
// Set current time as timestamp
|
|
|
|
block->setTimestampNoChangedFlag(m_game_time);
|
2011-06-25 03:25:14 +02:00
|
|
|
|
2011-11-28 13:54:39 +01:00
|
|
|
/*infostream<<"ServerEnvironment::activateBlock(): block is "
|
|
|
|
<<dtime_s<<" seconds old."<<std::endl;*/
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-06-25 03:25:14 +02:00
|
|
|
// Activate stored objects
|
2012-09-09 16:12:29 +02:00
|
|
|
activateObjects(block, dtime_s);
|
2011-06-25 03:25:14 +02:00
|
|
|
|
2016-02-09 07:08:31 +01:00
|
|
|
/* Handle LoadingBlockModifiers */
|
|
|
|
m_lbm_mgr.applyLBMs(this, block, stamp);
|
|
|
|
|
2012-03-19 01:08:04 +01:00
|
|
|
// Run node timers
|
2016-03-21 12:58:52 +01:00
|
|
|
std::vector<NodeTimer> elapsed_timers =
|
2012-03-19 01:08:04 +01:00
|
|
|
block->m_node_timers.step((float)dtime_s);
|
2016-03-21 12:58:52 +01:00
|
|
|
if (!elapsed_timers.empty()) {
|
2012-07-17 15:00:04 +02:00
|
|
|
MapNode n;
|
2016-03-21 12:58:52 +01:00
|
|
|
for (std::vector<NodeTimer>::iterator
|
2012-07-17 15:00:04 +02:00
|
|
|
i = elapsed_timers.begin();
|
2015-08-25 22:23:05 +02:00
|
|
|
i != elapsed_timers.end(); ++i){
|
2016-03-21 12:58:52 +01:00
|
|
|
n = block->getNodeNoEx(i->position);
|
|
|
|
v3s16 p = i->position + block->getPosRelative();
|
|
|
|
if (m_script->node_on_timer(p, n, i->elapsed))
|
|
|
|
block->setNodeTimer(NodeTimer(i->timeout, 0, i->position));
|
2012-07-17 15:00:04 +02:00
|
|
|
}
|
|
|
|
}
|
2011-06-25 03:25:14 +02:00
|
|
|
|
2011-11-27 23:45:34 +01:00
|
|
|
/* Handle ActiveBlockModifiers */
|
2011-11-28 09:33:47 +01:00
|
|
|
ABMHandler abmhandler(m_abms, dtime_s, this, false);
|
2011-11-27 23:45:34 +01:00
|
|
|
abmhandler.apply(block);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::addActiveBlockModifier(ActiveBlockModifier *abm)
|
|
|
|
{
|
2011-11-28 09:33:47 +01:00
|
|
|
m_abms.push_back(ABMWithState(abm));
|
2011-06-25 03:25:14 +02:00
|
|
|
}
|
|
|
|
|
2016-02-09 07:08:31 +01:00
|
|
|
void ServerEnvironment::addLoadingBlockModifierDef(LoadingBlockModifierDef *lbm)
|
|
|
|
{
|
|
|
|
m_lbm_mgr.addLBMDef(lbm);
|
|
|
|
}
|
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
bool ServerEnvironment::setNode(v3s16 p, const MapNode &n)
|
|
|
|
{
|
|
|
|
INodeDefManager *ndef = m_gamedef->ndef();
|
|
|
|
MapNode n_old = m_map->getNodeNoEx(p);
|
2014-09-01 20:20:31 +02:00
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Call destructor
|
2014-09-01 20:20:31 +02:00
|
|
|
if (ndef->get(n_old).has_on_destruct)
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->node_on_destruct(p, n_old);
|
2014-09-01 20:20:31 +02:00
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Replace node
|
2014-09-01 20:20:31 +02:00
|
|
|
if (!m_map->addNodeWithEvent(p, n))
|
2013-01-02 22:17:52 +01:00
|
|
|
return false;
|
2014-09-01 20:20:31 +02:00
|
|
|
|
|
|
|
// Update active VoxelManipulator if a mapgen thread
|
|
|
|
m_map->updateVManip(p);
|
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Call post-destructor
|
2014-09-01 20:20:31 +02:00
|
|
|
if (ndef->get(n_old).has_after_destruct)
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->node_after_destruct(p, n_old);
|
2014-09-01 20:20:31 +02:00
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Call constructor
|
2014-09-01 20:20:31 +02:00
|
|
|
if (ndef->get(n).has_on_construct)
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->node_on_construct(p, n);
|
2014-09-01 20:20:31 +02:00
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ServerEnvironment::removeNode(v3s16 p)
|
|
|
|
{
|
|
|
|
INodeDefManager *ndef = m_gamedef->ndef();
|
|
|
|
MapNode n_old = m_map->getNodeNoEx(p);
|
2014-09-01 20:20:31 +02:00
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Call destructor
|
2014-09-01 20:20:31 +02:00
|
|
|
if (ndef->get(n_old).has_on_destruct)
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->node_on_destruct(p, n_old);
|
2014-09-01 20:20:31 +02:00
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Replace with air
|
|
|
|
// This is slightly optimized compared to addNodeWithEvent(air)
|
2014-09-01 20:20:31 +02:00
|
|
|
if (!m_map->removeNodeWithEvent(p))
|
2013-01-02 22:17:52 +01:00
|
|
|
return false;
|
2014-09-01 20:20:31 +02:00
|
|
|
|
|
|
|
// Update active VoxelManipulator if a mapgen thread
|
|
|
|
m_map->updateVManip(p);
|
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Call post-destructor
|
2014-09-01 20:20:31 +02:00
|
|
|
if (ndef->get(n_old).has_after_destruct)
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->node_after_destruct(p, n_old);
|
2014-09-01 20:20:31 +02:00
|
|
|
|
2013-01-02 22:17:52 +01:00
|
|
|
// Air doesn't require constructor
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-23 15:35:49 +01:00
|
|
|
bool ServerEnvironment::swapNode(v3s16 p, const MapNode &n)
|
|
|
|
{
|
2014-09-01 20:20:31 +02:00
|
|
|
if (!m_map->addNodeWithEvent(p, n, false))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Update active VoxelManipulator if a mapgen thread
|
|
|
|
m_map->updateVManip(p);
|
|
|
|
|
|
|
|
return true;
|
2013-11-23 15:35:49 +01:00
|
|
|
}
|
|
|
|
|
2015-04-16 14:11:46 +02:00
|
|
|
void ServerEnvironment::getObjectsInsideRadius(std::vector<u16> &objects, v3f pos, float radius)
|
2011-12-28 17:18:08 +01:00
|
|
|
{
|
2016-10-05 09:03:55 +02:00
|
|
|
for (ActiveObjectMap::iterator i = m_active_objects.begin();
|
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
ServerActiveObject* obj = i->second;
|
|
|
|
u16 id = i->first;
|
2011-12-28 17:18:08 +01:00
|
|
|
v3f objectpos = obj->getBasePosition();
|
2016-10-05 09:03:55 +02:00
|
|
|
if (objectpos.getDistanceFrom(pos) > radius)
|
2011-12-28 17:18:08 +01:00
|
|
|
continue;
|
2015-04-16 14:11:46 +02:00
|
|
|
objects.push_back(id);
|
2011-12-28 17:18:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:20:04 +01:00
|
|
|
void ServerEnvironment::clearObjects(ClearObjectsMode mode)
|
2011-10-17 23:01:50 +02:00
|
|
|
{
|
2016-02-08 22:20:04 +01:00
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Removing all active objects" << std::endl;
|
2015-02-17 14:30:32 +01:00
|
|
|
std::vector<u16> objects_to_remove;
|
2016-10-05 09:03:55 +02:00
|
|
|
for (ActiveObjectMap::iterator i = m_active_objects.begin();
|
2015-02-17 14:30:32 +01:00
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
ServerActiveObject* obj = i->second;
|
2016-02-08 22:20:04 +01:00
|
|
|
if (obj->getType() == ACTIVEOBJECT_TYPE_PLAYER)
|
2012-01-24 00:00:26 +01:00
|
|
|
continue;
|
2012-12-20 18:19:49 +01:00
|
|
|
u16 id = i->first;
|
2011-10-17 23:01:50 +02:00
|
|
|
// Delete static object if block is loaded
|
2016-02-08 22:20:04 +01:00
|
|
|
if (obj->m_static_exists) {
|
2011-10-17 23:01:50 +02:00
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(obj->m_static_block);
|
2016-02-08 22:20:04 +01:00
|
|
|
if (block) {
|
2011-10-17 23:01:50 +02:00
|
|
|
block->m_static_objects.remove(id);
|
2011-11-21 12:29:16 +01:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_CLEAR_ALL_OBJECTS);
|
2011-10-17 23:01:50 +02:00
|
|
|
obj->m_static_exists = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If known by some client, don't delete immediately
|
2016-02-08 22:20:04 +01:00
|
|
|
if (obj->m_known_by_count > 0) {
|
2011-10-17 23:01:50 +02:00
|
|
|
obj->m_pending_deactivation = true;
|
|
|
|
obj->m_removed = true;
|
|
|
|
continue;
|
|
|
|
}
|
2011-12-01 12:22:33 +01:00
|
|
|
|
|
|
|
// Tell the object about removal
|
|
|
|
obj->removingFromEnvironment();
|
2011-11-11 18:33:17 +01:00
|
|
|
// Deregister in scripting api
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->removeObjectReference(obj);
|
2011-12-01 12:22:33 +01:00
|
|
|
|
2011-10-17 23:01:50 +02:00
|
|
|
// Delete active object
|
2016-02-08 22:20:04 +01:00
|
|
|
if (obj->environmentDeletes())
|
2011-12-01 22:33:48 +01:00
|
|
|
delete obj;
|
2011-10-17 23:01:50 +02:00
|
|
|
// Id to be removed from m_active_objects
|
|
|
|
objects_to_remove.push_back(id);
|
|
|
|
}
|
2015-02-17 14:30:32 +01:00
|
|
|
|
2011-10-17 23:01:50 +02:00
|
|
|
// Remove references from m_active_objects
|
2016-02-08 22:20:04 +01:00
|
|
|
for (std::vector<u16>::iterator i = objects_to_remove.begin();
|
2015-02-17 14:30:32 +01:00
|
|
|
i != objects_to_remove.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
m_active_objects.erase(*i);
|
2011-10-17 23:01:50 +02:00
|
|
|
}
|
|
|
|
|
2013-06-02 15:35:29 +02:00
|
|
|
// Get list of loaded blocks
|
2015-02-17 14:30:32 +01:00
|
|
|
std::vector<v3s16> loaded_blocks;
|
2016-02-08 22:20:04 +01:00
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Listing all loaded blocks" << std::endl;
|
2013-06-02 15:35:29 +02:00
|
|
|
m_map->listAllLoadedBlocks(loaded_blocks);
|
2016-02-08 22:20:04 +01:00
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Done listing all loaded blocks: "
|
|
|
|
<< loaded_blocks.size()<<std::endl;
|
2013-06-02 15:35:29 +02:00
|
|
|
|
|
|
|
// Get list of loadable blocks
|
2015-02-17 14:30:32 +01:00
|
|
|
std::vector<v3s16> loadable_blocks;
|
2016-02-08 22:20:04 +01:00
|
|
|
if (mode == CLEAR_OBJECTS_MODE_FULL) {
|
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Listing all loadable blocks" << std::endl;
|
|
|
|
m_map->listAllLoadableBlocks(loadable_blocks);
|
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Done listing all loadable blocks: "
|
|
|
|
<< loadable_blocks.size() << std::endl;
|
|
|
|
} else {
|
|
|
|
loadable_blocks = loaded_blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Now clearing objects in " << loadable_blocks.size()
|
|
|
|
<< " blocks" << std::endl;
|
2013-06-02 15:35:29 +02:00
|
|
|
|
|
|
|
// Grab a reference on each loaded block to avoid unloading it
|
2016-02-08 22:20:04 +01:00
|
|
|
for (std::vector<v3s16>::iterator i = loaded_blocks.begin();
|
2015-02-17 14:30:32 +01:00
|
|
|
i != loaded_blocks.end(); ++i) {
|
2013-06-02 15:35:29 +02:00
|
|
|
v3s16 p = *i;
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(block != NULL);
|
2013-06-02 15:35:29 +02:00
|
|
|
block->refGrab();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove objects in all loadable blocks
|
2016-02-08 22:20:04 +01:00
|
|
|
u32 unload_interval = U32_MAX;
|
|
|
|
if (mode == CLEAR_OBJECTS_MODE_FULL) {
|
|
|
|
unload_interval = g_settings->getS32("max_clearobjects_extra_loaded_blocks");
|
|
|
|
unload_interval = MYMAX(unload_interval, 1);
|
|
|
|
}
|
2011-10-17 23:01:50 +02:00
|
|
|
u32 report_interval = loadable_blocks.size() / 10;
|
|
|
|
u32 num_blocks_checked = 0;
|
|
|
|
u32 num_blocks_cleared = 0;
|
|
|
|
u32 num_objs_cleared = 0;
|
2016-02-08 22:20:04 +01:00
|
|
|
for (std::vector<v3s16>::iterator i = loadable_blocks.begin();
|
2015-02-17 14:30:32 +01:00
|
|
|
i != loadable_blocks.end(); ++i) {
|
2011-10-17 23:01:50 +02:00
|
|
|
v3s16 p = *i;
|
|
|
|
MapBlock *block = m_map->emergeBlock(p, false);
|
2016-02-08 22:20:04 +01:00
|
|
|
if (!block) {
|
|
|
|
errorstream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Failed to emerge block " << PP(p) << std::endl;
|
2011-10-17 23:01:50 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
u32 num_stored = block->m_static_objects.m_stored.size();
|
|
|
|
u32 num_active = block->m_static_objects.m_active.size();
|
2016-02-08 22:20:04 +01:00
|
|
|
if (num_stored != 0 || num_active != 0) {
|
2011-10-17 23:01:50 +02:00
|
|
|
block->m_static_objects.m_stored.clear();
|
|
|
|
block->m_static_objects.m_active.clear();
|
2011-11-21 12:29:16 +01:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_CLEAR_ALL_OBJECTS);
|
2011-10-17 23:01:50 +02:00
|
|
|
num_objs_cleared += num_stored + num_active;
|
|
|
|
num_blocks_cleared++;
|
|
|
|
}
|
|
|
|
num_blocks_checked++;
|
|
|
|
|
2016-02-08 22:20:04 +01:00
|
|
|
if (report_interval != 0 &&
|
|
|
|
num_blocks_checked % report_interval == 0) {
|
2011-10-17 23:01:50 +02:00
|
|
|
float percent = 100.0 * (float)num_blocks_checked /
|
2016-02-08 22:20:04 +01:00
|
|
|
loadable_blocks.size();
|
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Cleared " << num_objs_cleared << " objects"
|
|
|
|
<< " in " << num_blocks_cleared << " blocks ("
|
|
|
|
<< percent << "%)" << std::endl;
|
2011-10-17 23:01:50 +02:00
|
|
|
}
|
2016-02-08 22:20:04 +01:00
|
|
|
if (num_blocks_checked % unload_interval == 0) {
|
2013-06-02 15:35:29 +02:00
|
|
|
m_map->unloadUnreferencedBlocks();
|
|
|
|
}
|
2011-10-17 23:01:50 +02:00
|
|
|
}
|
2013-06-02 15:35:29 +02:00
|
|
|
m_map->unloadUnreferencedBlocks();
|
|
|
|
|
|
|
|
// Drop references that were added above
|
2016-02-08 22:20:04 +01:00
|
|
|
for (std::vector<v3s16>::iterator i = loaded_blocks.begin();
|
2015-02-17 14:30:32 +01:00
|
|
|
i != loaded_blocks.end(); ++i) {
|
2013-06-02 15:35:29 +02:00
|
|
|
v3s16 p = *i;
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
|
|
|
assert(block);
|
|
|
|
block->refDrop();
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:20:04 +01:00
|
|
|
m_last_clear_objects_time = m_game_time;
|
|
|
|
|
|
|
|
infostream << "ServerEnvironment::clearObjects(): "
|
|
|
|
<< "Finished: Cleared " << num_objs_cleared << " objects"
|
|
|
|
<< " in " << num_blocks_cleared << " blocks" << std::endl;
|
2011-10-17 23:01:50 +02:00
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
void ServerEnvironment::step(float dtime)
|
|
|
|
{
|
2015-10-14 08:39:30 +02:00
|
|
|
DSTACK(FUNCTION_NAME);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-04-10 22:29:36 +02:00
|
|
|
//TimeTaker timer("ServerEnv step");
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2012-03-16 15:34:30 +01:00
|
|
|
/* Step time of day */
|
|
|
|
stepTimeOfDay(dtime);
|
|
|
|
|
2012-11-26 21:31:21 +01:00
|
|
|
// Update this one
|
|
|
|
// NOTE: This is kind of funny on a singleplayer game, but doesn't
|
|
|
|
// really matter that much.
|
2015-09-02 21:21:55 +02:00
|
|
|
static const float server_step = g_settings->getFloat("dedicated_server_step");
|
|
|
|
m_recommended_send_interval = server_step;
|
2012-11-26 21:31:21 +01:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
|
|
|
Increment game time
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
m_game_time_fraction_counter += dtime;
|
|
|
|
u32 inc_i = (u32)m_game_time_fraction_counter;
|
|
|
|
m_game_time += inc_i;
|
|
|
|
m_game_time_fraction_counter -= (float)inc_i;
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
Handle players
|
|
|
|
*/
|
|
|
|
{
|
2011-10-16 21:39:35 +02:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: handle players avg", SPT_AVG);
|
2016-10-08 23:13:38 +02:00
|
|
|
for (std::vector<RemotePlayer *>::iterator i = m_players.begin();
|
2016-10-08 16:31:22 +02:00
|
|
|
i != m_players.end(); ++i) {
|
|
|
|
RemotePlayer *player = dynamic_cast<RemotePlayer *>(*i);
|
|
|
|
assert(player);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-10-16 20:16:44 +02:00
|
|
|
// Ignore disconnected players
|
|
|
|
if(player->peer_id == 0)
|
|
|
|
continue;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-10-16 20:16:44 +02:00
|
|
|
// Move
|
2014-04-15 19:49:32 +02:00
|
|
|
player->move(dtime, this, 100*BS);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
}
|
2011-04-21 18:35:17 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
|
|
|
Manage active block list
|
|
|
|
*/
|
Allow NodeTimer, ABM and block mgmt interval changes.
ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
run at every 1.0s. Block mgmt is running every 2.0sec.
However, these timers can be better tuned for both higher and lower
values by server owners. Some server owners want to, and have the
resources to send more packets per second to clients, and so they
may wish to send smaller updates sooner. Right now all ABM's are
coalesced into 1.0 second intervals, resulting in large send queues
to all clients. By reducing the amount of possible timers, one can
get a far better response rate and lower the perception of lag.
On the other side of the camp, some servers may want to increase
these values, which again isn't easily doable.
The global settings abm_interval and nodetimer_interval are set to
current values by default. I've tested with 0.2/0.5 type values
and noticed a greatly improved response and better scattering of
nodetimers, as well as enjoying not faceplanting into doors with
pressure plates anymore.
2016-03-02 08:14:26 +01:00
|
|
|
if (m_active_blocks_management_interval.step(dtime, m_cache_active_block_mgmt_interval)) {
|
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: manage act. block list avg per interval", SPT_AVG);
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
|
|
|
Get player block positions
|
|
|
|
*/
|
2015-02-17 16:49:27 +01:00
|
|
|
std::vector<v3s16> players_blockpos;
|
2016-10-08 23:13:38 +02:00
|
|
|
for (std::vector<RemotePlayer *>::iterator i = m_players.begin();
|
2015-02-17 16:49:27 +01:00
|
|
|
i != m_players.end(); ++i) {
|
2016-10-08 16:31:22 +02:00
|
|
|
RemotePlayer *player = dynamic_cast<RemotePlayer *>(*i);
|
|
|
|
assert(player);
|
2016-10-30 14:53:26 +01:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
// Ignore disconnected players
|
2016-10-08 16:31:22 +02:00
|
|
|
if (player->peer_id == 0)
|
2011-05-22 16:00:09 +02:00
|
|
|
continue;
|
2015-02-17 16:49:27 +01:00
|
|
|
|
2016-10-30 14:53:26 +01:00
|
|
|
PlayerSAO *playersao = player->getPlayerSAO();
|
|
|
|
assert(playersao);
|
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
v3s16 blockpos = getNodeBlockPos(
|
2016-10-30 14:53:26 +01:00
|
|
|
floatToInt(playersao->getBasePosition(), BS));
|
2011-05-22 16:00:09 +02:00
|
|
|
players_blockpos.push_back(blockpos);
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
|
|
|
Update list of active blocks, collecting changes
|
|
|
|
*/
|
2015-09-02 21:21:55 +02:00
|
|
|
static const s16 active_block_range = g_settings->getS16("active_block_range");
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<v3s16> blocks_removed;
|
|
|
|
std::set<v3s16> blocks_added;
|
2011-05-22 16:00:09 +02:00
|
|
|
m_active_blocks.update(players_blockpos, active_block_range,
|
|
|
|
blocks_removed, blocks_added);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Handle removed blocks
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Convert active objects that are no more in active blocks to static
|
|
|
|
deactivateFarObjects(false);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<v3s16>::iterator
|
|
|
|
i = blocks_removed.begin();
|
2015-09-02 21:21:55 +02:00
|
|
|
i != blocks_removed.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
v3s16 p = *i;
|
2011-05-22 16:00:09 +02:00
|
|
|
|
2013-04-22 00:05:47 +02:00
|
|
|
/* infostream<<"Server: Block " << PP(p)
|
|
|
|
<< " became inactive"<<std::endl; */
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
|
|
|
if(block==NULL)
|
|
|
|
continue;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-06-05 17:57:36 +02:00
|
|
|
// Set current time as timestamp (and let it set ChangedFlag)
|
2011-05-22 16:00:09 +02:00
|
|
|
block->setTimestamp(m_game_time);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Handle added blocks
|
|
|
|
*/
|
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<v3s16>::iterator
|
|
|
|
i = blocks_added.begin();
|
|
|
|
i != blocks_added.end(); ++i)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2012-12-20 18:19:49 +01:00
|
|
|
v3s16 p = *i;
|
2011-05-22 16:00:09 +02:00
|
|
|
|
2014-02-09 22:36:30 +01:00
|
|
|
MapBlock *block = m_map->getBlockOrEmerge(p);
|
2011-11-27 11:50:35 +01:00
|
|
|
if(block==NULL){
|
2012-12-20 18:19:49 +01:00
|
|
|
m_active_blocks.m_list.erase(p);
|
2011-05-22 16:00:09 +02:00
|
|
|
continue;
|
2011-11-27 11:50:35 +01:00
|
|
|
}
|
2011-06-05 17:57:36 +02:00
|
|
|
|
2011-06-25 03:25:14 +02:00
|
|
|
activateBlock(block);
|
2013-04-22 00:05:47 +02:00
|
|
|
/* infostream<<"Server: Block " << PP(p)
|
|
|
|
<< " became active"<<std::endl; */
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Mess around in active blocks
|
|
|
|
*/
|
Allow NodeTimer, ABM and block mgmt interval changes.
ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
run at every 1.0s. Block mgmt is running every 2.0sec.
However, these timers can be better tuned for both higher and lower
values by server owners. Some server owners want to, and have the
resources to send more packets per second to clients, and so they
may wish to send smaller updates sooner. Right now all ABM's are
coalesced into 1.0 second intervals, resulting in large send queues
to all clients. By reducing the amount of possible timers, one can
get a far better response rate and lower the perception of lag.
On the other side of the camp, some servers may want to increase
these values, which again isn't easily doable.
The global settings abm_interval and nodetimer_interval are set to
current values by default. I've tested with 0.2/0.5 type values
and noticed a greatly improved response and better scattering of
nodetimers, as well as enjoying not faceplanting into doors with
pressure plates anymore.
2016-03-02 08:14:26 +01:00
|
|
|
if (m_active_blocks_nodemetadata_interval.step(dtime, m_cache_nodetimer_interval)) {
|
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: mess in act. blocks avg per interval", SPT_AVG);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
Allow NodeTimer, ABM and block mgmt interval changes.
ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
run at every 1.0s. Block mgmt is running every 2.0sec.
However, these timers can be better tuned for both higher and lower
values by server owners. Some server owners want to, and have the
resources to send more packets per second to clients, and so they
may wish to send smaller updates sooner. Right now all ABM's are
coalesced into 1.0 second intervals, resulting in large send queues
to all clients. By reducing the amount of possible timers, one can
get a far better response rate and lower the perception of lag.
On the other side of the camp, some servers may want to increase
these values, which again isn't easily doable.
The global settings abm_interval and nodetimer_interval are set to
current values by default. I've tested with 0.2/0.5 type values
and noticed a greatly improved response and better scattering of
nodetimers, as well as enjoying not faceplanting into doors with
pressure plates anymore.
2016-03-02 08:14:26 +01:00
|
|
|
float dtime = m_cache_nodetimer_interval;
|
2011-05-31 19:02:55 +02:00
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<v3s16>::iterator
|
|
|
|
i = m_active_blocks.m_list.begin();
|
|
|
|
i != m_active_blocks.m_list.end(); ++i)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2012-12-20 18:19:49 +01:00
|
|
|
v3s16 p = *i;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-10-16 13:57:53 +02:00
|
|
|
/*infostream<<"Server: Block ("<<p.X<<","<<p.Y<<","<<p.Z
|
2011-05-22 16:00:09 +02:00
|
|
|
<<") being handled"<<std::endl;*/
|
|
|
|
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
|
|
|
if(block==NULL)
|
|
|
|
continue;
|
2011-06-26 20:53:11 +02:00
|
|
|
|
|
|
|
// Reset block usage timer
|
|
|
|
block->resetUsageTimer();
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
// Set current time as timestamp
|
2011-06-05 17:57:36 +02:00
|
|
|
block->setTimestampNoChangedFlag(m_game_time);
|
2011-11-27 23:45:34 +01:00
|
|
|
// If time has changed much from the one on disk,
|
|
|
|
// set block to be saved when it is unloaded
|
|
|
|
if(block->getTimestamp() > block->getDiskTimestamp() + 60)
|
|
|
|
block->raiseModified(MOD_STATE_WRITE_AT_UNLOAD,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_BLOCK_EXPIRED);
|
2011-05-31 19:02:55 +02:00
|
|
|
|
2012-03-19 01:08:04 +01:00
|
|
|
// Run node timers
|
2016-03-21 12:58:52 +01:00
|
|
|
std::vector<NodeTimer> elapsed_timers =
|
2012-07-17 15:00:04 +02:00
|
|
|
block->m_node_timers.step((float)dtime);
|
2016-03-21 12:58:52 +01:00
|
|
|
if (!elapsed_timers.empty()) {
|
2012-07-17 15:00:04 +02:00
|
|
|
MapNode n;
|
2016-10-08 16:31:22 +02:00
|
|
|
for (std::vector<NodeTimer>::iterator i = elapsed_timers.begin();
|
2016-03-21 12:58:52 +01:00
|
|
|
i != elapsed_timers.end(); ++i) {
|
|
|
|
n = block->getNodeNoEx(i->position);
|
|
|
|
p = i->position + block->getPosRelative();
|
|
|
|
if (m_script->node_on_timer(p, n, i->elapsed)) {
|
|
|
|
block->setNodeTimer(NodeTimer(
|
|
|
|
i->timeout, 0, i->position));
|
|
|
|
}
|
2012-07-17 15:00:04 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-31 19:02:55 +02:00
|
|
|
}
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
Allow NodeTimer, ABM and block mgmt interval changes.
ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
run at every 1.0s. Block mgmt is running every 2.0sec.
However, these timers can be better tuned for both higher and lower
values by server owners. Some server owners want to, and have the
resources to send more packets per second to clients, and so they
may wish to send smaller updates sooner. Right now all ABM's are
coalesced into 1.0 second intervals, resulting in large send queues
to all clients. By reducing the amount of possible timers, one can
get a far better response rate and lower the perception of lag.
On the other side of the camp, some servers may want to increase
these values, which again isn't easily doable.
The global settings abm_interval and nodetimer_interval are set to
current values by default. I've tested with 0.2/0.5 type values
and noticed a greatly improved response and better scattering of
nodetimers, as well as enjoying not faceplanting into doors with
pressure plates anymore.
2016-03-02 08:14:26 +01:00
|
|
|
if (m_active_block_modifier_interval.step(dtime, m_cache_abm_interval))
|
2012-07-27 12:45:49 +02:00
|
|
|
do{ // breakable
|
|
|
|
if(m_active_block_interval_overload_skip > 0){
|
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: ABM overload skips");
|
|
|
|
m_active_block_interval_overload_skip--;
|
|
|
|
break;
|
|
|
|
}
|
Allow NodeTimer, ABM and block mgmt interval changes.
ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
run at every 1.0s. Block mgmt is running every 2.0sec.
However, these timers can be better tuned for both higher and lower
values by server owners. Some server owners want to, and have the
resources to send more packets per second to clients, and so they
may wish to send smaller updates sooner. Right now all ABM's are
coalesced into 1.0 second intervals, resulting in large send queues
to all clients. By reducing the amount of possible timers, one can
get a far better response rate and lower the perception of lag.
On the other side of the camp, some servers may want to increase
these values, which again isn't easily doable.
The global settings abm_interval and nodetimer_interval are set to
current values by default. I've tested with 0.2/0.5 type values
and noticed a greatly improved response and better scattering of
nodetimers, as well as enjoying not faceplanting into doors with
pressure plates anymore.
2016-03-02 08:14:26 +01:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: modify in blocks avg per interval", SPT_AVG);
|
|
|
|
TimeTaker timer("modify in active blocks per interval");
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-11-27 23:45:34 +01:00
|
|
|
// Initialize handling of ActiveBlockModifiers
|
Allow NodeTimer, ABM and block mgmt interval changes.
ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
run at every 1.0s. Block mgmt is running every 2.0sec.
However, these timers can be better tuned for both higher and lower
values by server owners. Some server owners want to, and have the
resources to send more packets per second to clients, and so they
may wish to send smaller updates sooner. Right now all ABM's are
coalesced into 1.0 second intervals, resulting in large send queues
to all clients. By reducing the amount of possible timers, one can
get a far better response rate and lower the perception of lag.
On the other side of the camp, some servers may want to increase
these values, which again isn't easily doable.
The global settings abm_interval and nodetimer_interval are set to
current values by default. I've tested with 0.2/0.5 type values
and noticed a greatly improved response and better scattering of
nodetimers, as well as enjoying not faceplanting into doors with
pressure plates anymore.
2016-03-02 08:14:26 +01:00
|
|
|
ABMHandler abmhandler(m_abms, m_cache_abm_interval, this, true);
|
2011-11-27 23:45:34 +01:00
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<v3s16>::iterator
|
|
|
|
i = m_active_blocks.m_list.begin();
|
|
|
|
i != m_active_blocks.m_list.end(); ++i)
|
2011-05-31 19:02:55 +02:00
|
|
|
{
|
2012-12-20 18:19:49 +01:00
|
|
|
v3s16 p = *i;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-10-16 13:57:53 +02:00
|
|
|
/*infostream<<"Server: Block ("<<p.X<<","<<p.Y<<","<<p.Z
|
2011-05-31 19:02:55 +02:00
|
|
|
<<") being handled"<<std::endl;*/
|
|
|
|
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
2015-03-04 16:58:04 +01:00
|
|
|
if(block == NULL)
|
2011-05-31 19:02:55 +02:00
|
|
|
continue;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-05-31 19:02:55 +02:00
|
|
|
// Set current time as timestamp
|
2011-06-05 17:57:36 +02:00
|
|
|
block->setTimestampNoChangedFlag(m_game_time);
|
2011-05-31 19:02:55 +02:00
|
|
|
|
2011-11-27 23:45:34 +01:00
|
|
|
/* Handle ActiveBlockModifiers */
|
|
|
|
abmhandler.apply(block);
|
2011-05-22 16:00:09 +02:00
|
|
|
}
|
2011-11-26 11:34:52 +01:00
|
|
|
|
|
|
|
u32 time_ms = timer.stop(true);
|
|
|
|
u32 max_time_ms = 200;
|
|
|
|
if(time_ms > max_time_ms){
|
2015-10-14 07:26:03 +02:00
|
|
|
warningstream<<"active block modifiers took "
|
2011-11-26 11:34:52 +01:00
|
|
|
<<time_ms<<"ms (longer than "
|
|
|
|
<<max_time_ms<<"ms)"<<std::endl;
|
2012-07-27 12:45:49 +02:00
|
|
|
m_active_block_interval_overload_skip = (time_ms / max_time_ms) + 1;
|
2011-11-26 11:34:52 +01:00
|
|
|
}
|
2012-07-27 12:45:49 +02:00
|
|
|
}while(0);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-11-12 16:46:06 +01:00
|
|
|
/*
|
|
|
|
Step script environment (run global on_step())
|
|
|
|
*/
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->environment_Step(dtime);
|
2011-11-12 16:46:06 +01:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
Step active objects
|
|
|
|
*/
|
2011-04-10 14:16:27 +02:00
|
|
|
{
|
2011-10-16 21:39:35 +02:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: step act. objs avg", SPT_AVG);
|
2011-04-21 18:35:17 +02:00
|
|
|
//TimeTaker timer("Step active objects");
|
2011-10-16 21:39:35 +02:00
|
|
|
|
|
|
|
g_profiler->avg("SEnv: num of objects", m_active_objects.size());
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
// This helps the objects to send data at the same time
|
2011-04-21 18:35:17 +02:00
|
|
|
bool send_recommended = false;
|
|
|
|
m_send_recommended_timer += dtime;
|
2011-11-12 12:59:56 +01:00
|
|
|
if(m_send_recommended_timer > getSendRecommendedInterval())
|
2011-04-21 18:35:17 +02:00
|
|
|
{
|
2011-11-12 12:59:56 +01:00
|
|
|
m_send_recommended_timer -= getSendRecommendedInterval();
|
2011-04-21 18:35:17 +02:00
|
|
|
send_recommended = true;
|
|
|
|
}
|
|
|
|
|
2016-10-05 09:03:55 +02:00
|
|
|
for(ActiveObjectMap::iterator i = m_active_objects.begin();
|
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
ServerActiveObject* obj = i->second;
|
2011-05-22 16:00:09 +02:00
|
|
|
// Don't step if is to be removed or stored statically
|
|
|
|
if(obj->m_removed || obj->m_pending_deactivation)
|
|
|
|
continue;
|
2011-06-26 14:48:56 +02:00
|
|
|
// Step object
|
|
|
|
obj->step(dtime, send_recommended);
|
|
|
|
// Read messages from object
|
2012-12-20 18:19:49 +01:00
|
|
|
while(!obj->m_messages_out.empty())
|
2011-06-26 14:48:56 +02:00
|
|
|
{
|
2015-04-22 11:47:22 +02:00
|
|
|
m_active_object_messages.push(
|
2015-03-04 17:48:07 +01:00
|
|
|
obj->m_messages_out.front());
|
|
|
|
obj->m_messages_out.pop();
|
2011-06-26 14:48:56 +02:00
|
|
|
}
|
2011-04-21 18:35:17 +02:00
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
|
|
|
Manage active objects
|
|
|
|
*/
|
2011-04-10 22:14:41 +02:00
|
|
|
if(m_object_management_interval.step(dtime, 0.5))
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2011-10-16 21:39:35 +02:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: remove removed objs avg /.5s", SPT_AVG);
|
2011-04-10 22:14:41 +02:00
|
|
|
/*
|
|
|
|
Remove objects that satisfy (m_removed && m_known_by_count==0)
|
|
|
|
*/
|
2011-05-21 13:28:58 +02:00
|
|
|
removeRemovedObjects();
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
2016-04-27 17:58:09 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Manage particle spawner expiration
|
|
|
|
*/
|
|
|
|
if (m_particle_management_interval.step(dtime, 1.0)) {
|
2016-10-05 09:03:55 +02:00
|
|
|
for (UNORDERED_MAP<u32, float>::iterator i = m_particle_spawners.begin();
|
2016-04-27 17:58:09 +02:00
|
|
|
i != m_particle_spawners.end(); ) {
|
|
|
|
//non expiring spawners
|
|
|
|
if (i->second == PARTICLE_SPAWNER_NO_EXPIRY) {
|
|
|
|
++i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
i->second -= 1.0f;
|
|
|
|
if (i->second <= 0.f)
|
|
|
|
m_particle_spawners.erase(i++);
|
|
|
|
else
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 ServerEnvironment::addParticleSpawner(float exptime)
|
|
|
|
{
|
|
|
|
// Timers with lifetime 0 do not expire
|
|
|
|
float time = exptime > 0.f ? exptime : PARTICLE_SPAWNER_NO_EXPIRY;
|
|
|
|
|
|
|
|
u32 id = 0;
|
|
|
|
for (;;) { // look for unused particlespawner id
|
|
|
|
id++;
|
2016-10-05 09:03:55 +02:00
|
|
|
UNORDERED_MAP<u32, float>::iterator f = m_particle_spawners.find(id);
|
2016-04-27 17:58:09 +02:00
|
|
|
if (f == m_particle_spawners.end()) {
|
|
|
|
m_particle_spawners[id] = time;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2016-08-04 22:09:21 +02:00
|
|
|
u32 ServerEnvironment::addParticleSpawner(float exptime, u16 attached_id)
|
|
|
|
{
|
|
|
|
u32 id = addParticleSpawner(exptime);
|
|
|
|
m_particle_spawner_attachments[id] = attached_id;
|
|
|
|
if (ServerActiveObject *obj = getActiveObject(attached_id)) {
|
|
|
|
obj->attachParticleSpawner(id);
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::deleteParticleSpawner(u32 id, bool remove_from_object)
|
|
|
|
{
|
|
|
|
m_particle_spawners.erase(id);
|
|
|
|
UNORDERED_MAP<u32, u16>::iterator it = m_particle_spawner_attachments.find(id);
|
|
|
|
if (it != m_particle_spawner_attachments.end()) {
|
|
|
|
u16 obj_id = (*it).second;
|
|
|
|
ServerActiveObject *sao = getActiveObject(obj_id);
|
|
|
|
if (sao != NULL && remove_from_object) {
|
|
|
|
sao->detachParticleSpawner(id);
|
|
|
|
}
|
|
|
|
m_particle_spawner_attachments.erase(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
ServerActiveObject* ServerEnvironment::getActiveObject(u16 id)
|
|
|
|
{
|
2016-10-05 09:03:55 +02:00
|
|
|
ActiveObjectMap::iterator n = m_active_objects.find(id);
|
|
|
|
return (n != m_active_objects.end() ? n->second : NULL);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2016-10-05 09:03:55 +02:00
|
|
|
bool isFreeServerActiveObjectId(u16 id, ActiveObjectMap &objects)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2016-10-05 09:03:55 +02:00
|
|
|
if (id == 0)
|
2011-02-20 23:45:14 +01:00
|
|
|
return false;
|
2012-12-20 18:19:49 +01:00
|
|
|
|
|
|
|
return objects.find(id) == objects.end();
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2016-10-05 09:03:55 +02:00
|
|
|
u16 getFreeServerActiveObjectId(ActiveObjectMap &objects)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2013-04-21 15:54:29 +02:00
|
|
|
//try to reuse id's as late as possible
|
|
|
|
static u16 last_used_id = 0;
|
|
|
|
u16 startid = last_used_id;
|
2011-02-20 23:45:14 +01:00
|
|
|
for(;;)
|
|
|
|
{
|
2013-04-21 15:54:29 +02:00
|
|
|
last_used_id ++;
|
|
|
|
if(isFreeServerActiveObjectId(last_used_id, objects))
|
|
|
|
return last_used_id;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2013-04-21 15:54:29 +02:00
|
|
|
if(last_used_id == startid)
|
2011-02-20 23:45:14 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 ServerEnvironment::addActiveObject(ServerActiveObject *object)
|
|
|
|
{
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(object); // Pre-condition
|
2014-03-06 20:20:06 +01:00
|
|
|
m_added_objects++;
|
2012-09-09 16:12:29 +02:00
|
|
|
u16 id = addActiveObjectRaw(object, true, 0);
|
2011-06-05 17:57:36 +02:00
|
|
|
return id;
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Finds out what new objects have been added to
|
|
|
|
inside a radius around a position
|
|
|
|
*/
|
2016-10-30 14:53:26 +01:00
|
|
|
void ServerEnvironment::getAddedActiveObjects(PlayerSAO *playersao, s16 radius,
|
2014-11-08 14:35:55 +01:00
|
|
|
s16 player_radius,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<u16> ¤t_objects,
|
2015-08-05 22:29:47 +02:00
|
|
|
std::queue<u16> &added_objects)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
|
|
|
f32 radius_f = radius * BS;
|
2014-11-08 14:35:55 +01:00
|
|
|
f32 player_radius_f = player_radius * BS;
|
|
|
|
|
|
|
|
if (player_radius_f < 0)
|
|
|
|
player_radius_f = 0;
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
Go through the object list,
|
|
|
|
- discard m_removed objects,
|
|
|
|
- discard objects that are too far away,
|
|
|
|
- discard objects that are found in current_objects.
|
|
|
|
- add remaining objects to added_objects
|
|
|
|
*/
|
2016-10-30 14:53:26 +01:00
|
|
|
for (ActiveObjectMap::iterator i = m_active_objects.begin();
|
2015-08-05 22:29:47 +02:00
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
u16 id = i->first;
|
2015-08-05 22:29:47 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
// Get object
|
2012-12-20 18:19:49 +01:00
|
|
|
ServerActiveObject *object = i->second;
|
2016-10-30 14:53:26 +01:00
|
|
|
if (object == NULL)
|
2011-02-20 23:45:14 +01:00
|
|
|
continue;
|
2015-08-05 22:29:47 +02:00
|
|
|
|
2013-11-12 18:54:32 +01:00
|
|
|
// Discard if removed or deactivating
|
|
|
|
if(object->m_removed || object->m_pending_deactivation)
|
2011-02-20 23:45:14 +01:00
|
|
|
continue;
|
2014-11-08 14:35:55 +01:00
|
|
|
|
2016-10-30 14:53:26 +01:00
|
|
|
f32 distance_f = object->getBasePosition().
|
|
|
|
getDistanceFrom(playersao->getBasePosition());
|
2014-11-08 14:35:55 +01:00
|
|
|
if (object->getType() == ACTIVEOBJECT_TYPE_PLAYER) {
|
2011-12-02 00:08:14 +01:00
|
|
|
// Discard if too far
|
2014-11-08 14:35:55 +01:00
|
|
|
if (distance_f > player_radius_f && player_radius_f != 0)
|
2011-12-02 00:08:14 +01:00
|
|
|
continue;
|
2014-11-08 14:35:55 +01:00
|
|
|
} else if (distance_f > radius_f)
|
|
|
|
continue;
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
// Discard if already on current_objects
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<u16>::iterator n;
|
2011-02-20 23:45:14 +01:00
|
|
|
n = current_objects.find(id);
|
2012-12-20 18:19:49 +01:00
|
|
|
if(n != current_objects.end())
|
2011-02-20 23:45:14 +01:00
|
|
|
continue;
|
|
|
|
// Add to added_objects
|
2015-08-05 22:29:47 +02:00
|
|
|
added_objects.push(id);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Finds out what objects have been removed from
|
|
|
|
inside a radius around a position
|
|
|
|
*/
|
2016-10-30 14:53:26 +01:00
|
|
|
void ServerEnvironment::getRemovedActiveObjects(PlayerSAO *playersao, s16 radius,
|
2014-11-08 14:35:55 +01:00
|
|
|
s16 player_radius,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<u16> ¤t_objects,
|
2015-08-05 22:29:47 +02:00
|
|
|
std::queue<u16> &removed_objects)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
|
|
|
f32 radius_f = radius * BS;
|
2014-11-08 14:35:55 +01:00
|
|
|
f32 player_radius_f = player_radius * BS;
|
|
|
|
|
|
|
|
if (player_radius_f < 0)
|
|
|
|
player_radius_f = 0;
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
Go through current_objects; object is removed if:
|
|
|
|
- object is not found in m_active_objects (this is actually an
|
|
|
|
error condition; objects should be set m_removed=true and removed
|
|
|
|
only after all clients have been informed about removal), or
|
|
|
|
- object has m_removed=true, or
|
|
|
|
- object is too far away
|
|
|
|
*/
|
2012-12-20 18:19:49 +01:00
|
|
|
for(std::set<u16>::iterator
|
|
|
|
i = current_objects.begin();
|
|
|
|
i != current_objects.end(); ++i)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2012-12-20 18:19:49 +01:00
|
|
|
u16 id = *i;
|
2011-02-20 23:45:14 +01:00
|
|
|
ServerActiveObject *object = getActiveObject(id);
|
2011-12-02 00:08:14 +01:00
|
|
|
|
2015-08-05 22:29:47 +02:00
|
|
|
if (object == NULL) {
|
|
|
|
infostream << "ServerEnvironment::getRemovedActiveObjects():"
|
|
|
|
<< " object in current_objects is NULL" << std::endl;
|
|
|
|
removed_objects.push(id);
|
2011-12-02 00:08:14 +01:00
|
|
|
continue;
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
2011-12-02 00:08:14 +01:00
|
|
|
|
2015-08-05 22:29:47 +02:00
|
|
|
if (object->m_removed || object->m_pending_deactivation) {
|
|
|
|
removed_objects.push(id);
|
2011-12-02 00:08:14 +01:00
|
|
|
continue;
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2016-10-30 14:53:26 +01:00
|
|
|
f32 distance_f = object->getBasePosition().getDistanceFrom(playersao->getBasePosition());
|
2014-11-08 14:35:55 +01:00
|
|
|
if (object->getType() == ACTIVEOBJECT_TYPE_PLAYER) {
|
|
|
|
if (distance_f <= player_radius_f || player_radius_f == 0)
|
|
|
|
continue;
|
|
|
|
} else if (distance_f <= radius_f)
|
2011-12-02 00:08:14 +01:00
|
|
|
continue;
|
2014-11-08 14:35:55 +01:00
|
|
|
|
|
|
|
// Object is no longer visible
|
2015-08-05 22:29:47 +02:00
|
|
|
removed_objects.push(id);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-15 20:03:36 +02:00
|
|
|
void ServerEnvironment::setStaticForActiveObjectsInBlock(
|
|
|
|
v3s16 blockpos, bool static_exists, v3s16 static_block)
|
|
|
|
{
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(blockpos);
|
|
|
|
if (!block)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (std::map<u16, StaticObject>::iterator
|
|
|
|
so_it = block->m_static_objects.m_active.begin();
|
|
|
|
so_it != block->m_static_objects.m_active.end(); ++so_it) {
|
|
|
|
// Get the ServerActiveObject counterpart to this StaticObject
|
2016-10-05 09:03:55 +02:00
|
|
|
ActiveObjectMap::iterator ao_it = m_active_objects.find(so_it->first);
|
2015-08-15 20:03:36 +02:00
|
|
|
if (ao_it == m_active_objects.end()) {
|
|
|
|
// If this ever happens, there must be some kind of nasty bug.
|
|
|
|
errorstream << "ServerEnvironment::setStaticForObjectsInBlock(): "
|
|
|
|
"Object from MapBlock::m_static_objects::m_active not found "
|
|
|
|
"in m_active_objects";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ServerActiveObject *sao = ao_it->second;
|
|
|
|
sao->m_static_exists = static_exists;
|
|
|
|
sao->m_static_block = static_block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
ActiveObjectMessage ServerEnvironment::getActiveObjectMessage()
|
|
|
|
{
|
2015-04-22 00:12:01 +02:00
|
|
|
if(m_active_object_messages.empty())
|
2011-02-20 23:45:14 +01:00
|
|
|
return ActiveObjectMessage(0);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2015-04-22 00:12:01 +02:00
|
|
|
ActiveObjectMessage message = m_active_object_messages.front();
|
2015-04-22 11:47:22 +02:00
|
|
|
m_active_object_messages.pop();
|
2013-08-11 04:09:45 +02:00
|
|
|
return message;
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
/*
|
|
|
|
************ Private methods *************
|
|
|
|
*/
|
|
|
|
|
2011-06-05 17:57:36 +02:00
|
|
|
u16 ServerEnvironment::addActiveObjectRaw(ServerActiveObject *object,
|
2012-09-09 16:12:29 +02:00
|
|
|
bool set_changed, u32 dtime_s)
|
2011-06-05 17:57:36 +02:00
|
|
|
{
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(object); // Pre-condition
|
2011-10-17 09:47:06 +02:00
|
|
|
if(object->getId() == 0){
|
2011-06-05 17:57:36 +02:00
|
|
|
u16 new_id = getFreeServerActiveObjectId(m_active_objects);
|
|
|
|
if(new_id == 0)
|
|
|
|
{
|
2011-10-17 09:47:06 +02:00
|
|
|
errorstream<<"ServerEnvironment::addActiveObjectRaw(): "
|
2011-06-05 17:57:36 +02:00
|
|
|
<<"no free ids available"<<std::endl;
|
2011-12-01 22:33:48 +01:00
|
|
|
if(object->environmentDeletes())
|
|
|
|
delete object;
|
2011-06-05 17:57:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
object->setId(new_id);
|
|
|
|
}
|
2011-10-17 09:47:06 +02:00
|
|
|
else{
|
|
|
|
verbosestream<<"ServerEnvironment::addActiveObjectRaw(): "
|
|
|
|
<<"supplied with id "<<object->getId()<<std::endl;
|
|
|
|
}
|
2016-10-05 09:03:55 +02:00
|
|
|
|
|
|
|
if(!isFreeServerActiveObjectId(object->getId(), m_active_objects)) {
|
2011-10-17 09:47:06 +02:00
|
|
|
errorstream<<"ServerEnvironment::addActiveObjectRaw(): "
|
2011-06-05 17:57:36 +02:00
|
|
|
<<"id is not free ("<<object->getId()<<")"<<std::endl;
|
2011-12-01 22:33:48 +01:00
|
|
|
if(object->environmentDeletes())
|
|
|
|
delete object;
|
2011-06-05 17:57:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2015-09-15 18:37:58 +02:00
|
|
|
|
|
|
|
if (objectpos_over_limit(object->getBasePosition())) {
|
2015-09-16 16:12:59 +02:00
|
|
|
v3f p = object->getBasePosition();
|
2015-09-15 18:37:58 +02:00
|
|
|
errorstream << "ServerEnvironment::addActiveObjectRaw(): "
|
2015-09-16 16:12:59 +02:00
|
|
|
<< "object position (" << p.X << "," << p.Y << "," << p.Z
|
|
|
|
<< ") outside maximum range" << std::endl;
|
2015-09-15 18:37:58 +02:00
|
|
|
if (object->environmentDeletes())
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-16 13:57:53 +02:00
|
|
|
/*infostream<<"ServerEnvironment::addActiveObjectRaw(): "
|
2011-06-05 17:57:36 +02:00
|
|
|
<<"added (id="<<object->getId()<<")"<<std::endl;*/
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
m_active_objects[object->getId()] = object;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-10-17 09:47:06 +02:00
|
|
|
verbosestream<<"ServerEnvironment::addActiveObjectRaw(): "
|
|
|
|
<<"Added id="<<object->getId()<<"; there are now "
|
2011-10-17 10:52:38 +02:00
|
|
|
<<m_active_objects.size()<<" active objects."
|
2011-10-17 09:47:06 +02:00
|
|
|
<<std::endl;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-11-12 01:25:30 +01:00
|
|
|
// Register reference in scripting api (must be done before post-init)
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->addObjectReference(object);
|
2011-11-11 18:33:17 +01:00
|
|
|
// Post-initialize object
|
2012-09-09 16:12:29 +02:00
|
|
|
object->addedToEnvironment(dtime_s);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
// Add static data to block
|
|
|
|
if(object->isStaticAllowed())
|
|
|
|
{
|
|
|
|
// Add static object to active static list of the block
|
|
|
|
v3f objectpos = object->getBasePosition();
|
|
|
|
std::string staticdata = object->getStaticData();
|
|
|
|
StaticObject s_obj(object->getType(), objectpos, staticdata);
|
|
|
|
// Add to the block where the object is located in
|
|
|
|
v3s16 blockpos = getNodeBlockPos(floatToInt(objectpos, BS));
|
2013-11-12 18:54:32 +01:00
|
|
|
MapBlock *block = m_map->emergeBlock(blockpos);
|
|
|
|
if(block){
|
2012-12-20 18:19:49 +01:00
|
|
|
block->m_static_objects.m_active[object->getId()] = s_obj;
|
2011-12-01 17:23:58 +01:00
|
|
|
object->m_static_exists = true;
|
|
|
|
object->m_static_block = blockpos;
|
2011-06-05 17:57:36 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
if(set_changed)
|
2014-06-08 12:49:06 +02:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_ADD_ACTIVE_OBJECT_RAW);
|
2013-11-12 18:54:32 +01:00
|
|
|
} else {
|
2012-09-09 13:18:14 +02:00
|
|
|
v3s16 p = floatToInt(objectpos, BS);
|
2011-12-01 17:23:58 +01:00
|
|
|
errorstream<<"ServerEnvironment::addActiveObjectRaw(): "
|
2013-11-12 18:54:32 +01:00
|
|
|
<<"could not emerge block for storing id="<<object->getId()
|
2012-09-09 13:18:14 +02:00
|
|
|
<<" statically (pos="<<PP(p)<<")"<<std::endl;
|
2011-12-01 17:23:58 +01:00
|
|
|
}
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-06-05 17:57:36 +02:00
|
|
|
return object->getId();
|
|
|
|
}
|
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
/*
|
|
|
|
Remove objects that satisfy (m_removed && m_known_by_count==0)
|
|
|
|
*/
|
|
|
|
void ServerEnvironment::removeRemovedObjects()
|
|
|
|
{
|
2015-02-17 14:30:32 +01:00
|
|
|
std::vector<u16> objects_to_remove;
|
2016-10-05 09:03:55 +02:00
|
|
|
for(ActiveObjectMap::iterator i = m_active_objects.begin();
|
2015-02-17 14:30:32 +01:00
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
u16 id = i->first;
|
|
|
|
ServerActiveObject* obj = i->second;
|
2011-05-21 13:28:58 +02:00
|
|
|
// This shouldn't happen but check it
|
|
|
|
if(obj == NULL)
|
|
|
|
{
|
2011-10-16 13:57:53 +02:00
|
|
|
infostream<<"NULL object found in ServerEnvironment"
|
2011-05-21 13:28:58 +02:00
|
|
|
<<" while finding removed objects. id="<<id<<std::endl;
|
|
|
|
// Id to be removed from m_active_objects
|
|
|
|
objects_to_remove.push_back(id);
|
|
|
|
continue;
|
|
|
|
}
|
2011-05-22 16:00:09 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
We will delete objects that are marked as removed or thatare
|
|
|
|
waiting for deletion after deactivation
|
|
|
|
*/
|
2016-10-05 09:03:55 +02:00
|
|
|
if (!obj->m_removed && !obj->m_pending_deactivation)
|
2011-05-21 13:28:58 +02:00
|
|
|
continue;
|
2011-05-22 16:00:09 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Delete static data from block if is marked as removed
|
|
|
|
*/
|
|
|
|
if(obj->m_static_exists && obj->m_removed)
|
2011-05-21 13:28:58 +02:00
|
|
|
{
|
2012-11-26 03:16:48 +01:00
|
|
|
MapBlock *block = m_map->emergeBlock(obj->m_static_block, false);
|
|
|
|
if (block) {
|
2011-05-21 13:28:58 +02:00
|
|
|
block->m_static_objects.remove(id);
|
2011-11-21 12:29:16 +01:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_REMOVE_OBJECTS_REMOVE);
|
2011-10-17 19:19:37 +02:00
|
|
|
obj->m_static_exists = false;
|
2012-11-26 03:16:48 +01:00
|
|
|
} else {
|
2013-11-12 18:54:32 +01:00
|
|
|
infostream<<"Failed to emerge block from which an object to "
|
|
|
|
<<"be removed was loaded from. id="<<id<<std::endl;
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-22 16:00:09 +02:00
|
|
|
|
2013-11-12 18:54:32 +01:00
|
|
|
// If m_known_by_count > 0, don't actually remove. On some future
|
|
|
|
// invocation this will be 0, which is when removal will continue.
|
2011-05-21 13:28:58 +02:00
|
|
|
if(obj->m_known_by_count > 0)
|
|
|
|
continue;
|
2013-11-12 18:54:32 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Move static data from active to stored if not marked as removed
|
|
|
|
*/
|
|
|
|
if(obj->m_static_exists && !obj->m_removed){
|
|
|
|
MapBlock *block = m_map->emergeBlock(obj->m_static_block, false);
|
|
|
|
if (block) {
|
|
|
|
std::map<u16, StaticObject>::iterator i =
|
|
|
|
block->m_static_objects.m_active.find(id);
|
|
|
|
if(i != block->m_static_objects.m_active.end()){
|
|
|
|
block->m_static_objects.m_stored.push_back(i->second);
|
|
|
|
block->m_static_objects.m_active.erase(id);
|
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_REMOVE_OBJECTS_DEACTIVATE);
|
2013-11-12 18:54:32 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
infostream<<"Failed to emerge block from which an object to "
|
|
|
|
<<"be deactivated was loaded from. id="<<id<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 12:22:33 +01:00
|
|
|
// Tell the object about removal
|
|
|
|
obj->removingFromEnvironment();
|
2011-11-11 18:33:17 +01:00
|
|
|
// Deregister in scripting api
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->removeObjectReference(obj);
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
// Delete
|
2011-12-01 22:33:48 +01:00
|
|
|
if(obj->environmentDeletes())
|
|
|
|
delete obj;
|
2015-02-17 14:30:32 +01:00
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
// Id to be removed from m_active_objects
|
|
|
|
objects_to_remove.push_back(id);
|
|
|
|
}
|
|
|
|
// Remove references from m_active_objects
|
2015-02-17 14:30:32 +01:00
|
|
|
for(std::vector<u16>::iterator i = objects_to_remove.begin();
|
|
|
|
i != objects_to_remove.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
m_active_objects.erase(*i);
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 10:52:38 +02:00
|
|
|
static void print_hexdump(std::ostream &o, const std::string &data)
|
|
|
|
{
|
|
|
|
const int linelength = 16;
|
|
|
|
for(int l=0; ; l++){
|
|
|
|
int i0 = linelength * l;
|
|
|
|
bool at_end = false;
|
|
|
|
int thislinelength = linelength;
|
|
|
|
if(i0 + thislinelength > (int)data.size()){
|
|
|
|
thislinelength = data.size() - i0;
|
|
|
|
at_end = true;
|
|
|
|
}
|
|
|
|
for(int di=0; di<linelength; di++){
|
|
|
|
int i = i0 + di;
|
|
|
|
char buf[4];
|
|
|
|
if(di<thislinelength)
|
|
|
|
snprintf(buf, 4, "%.2x ", data[i]);
|
|
|
|
else
|
|
|
|
snprintf(buf, 4, " ");
|
|
|
|
o<<buf;
|
|
|
|
}
|
|
|
|
o<<" ";
|
|
|
|
for(int di=0; di<thislinelength; di++){
|
|
|
|
int i = i0 + di;
|
|
|
|
if(data[i] >= 32)
|
|
|
|
o<<data[i];
|
|
|
|
else
|
|
|
|
o<<".";
|
|
|
|
}
|
|
|
|
o<<std::endl;
|
|
|
|
if(at_end)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
/*
|
|
|
|
Convert stored objects from blocks near the players to active.
|
|
|
|
*/
|
2012-09-09 16:12:29 +02:00
|
|
|
void ServerEnvironment::activateObjects(MapBlock *block, u32 dtime_s)
|
2011-05-21 13:28:58 +02:00
|
|
|
{
|
2015-02-17 14:30:32 +01:00
|
|
|
if(block == NULL)
|
2011-05-22 16:00:09 +02:00
|
|
|
return;
|
2015-02-17 14:30:32 +01:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
// Ignore if no stored objects (to not set changed flag)
|
2014-12-12 15:55:40 +01:00
|
|
|
if(block->m_static_objects.m_stored.empty())
|
2011-05-22 16:00:09 +02:00
|
|
|
return;
|
2015-03-04 17:18:57 +01:00
|
|
|
|
2011-10-17 09:47:06 +02:00
|
|
|
verbosestream<<"ServerEnvironment::activateObjects(): "
|
|
|
|
<<"activating objects of block "<<PP(block->getPos())
|
|
|
|
<<" ("<<block->m_static_objects.m_stored.size()
|
|
|
|
<<" objects)"<<std::endl;
|
2013-08-04 14:14:21 +02:00
|
|
|
bool large_amount = (block->m_static_objects.m_stored.size() > g_settings->getU16("max_objects_per_block"));
|
2015-03-04 17:18:57 +01:00
|
|
|
if (large_amount) {
|
2011-10-17 10:52:38 +02:00
|
|
|
errorstream<<"suspiciously large amount of objects detected: "
|
|
|
|
<<block->m_static_objects.m_stored.size()<<" in "
|
|
|
|
<<PP(block->getPos())
|
2011-10-17 19:57:58 +02:00
|
|
|
<<"; removing all of them."<<std::endl;
|
|
|
|
// Clear stored list
|
|
|
|
block->m_static_objects.m_stored.clear();
|
2011-11-21 12:29:16 +01:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_TOO_MANY_OBJECTS);
|
2011-10-17 10:52:38 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-11-12 18:54:32 +01:00
|
|
|
|
|
|
|
// Activate stored objects
|
2015-02-17 16:49:27 +01:00
|
|
|
std::vector<StaticObject> new_stored;
|
2015-03-04 17:18:57 +01:00
|
|
|
for (std::vector<StaticObject>::iterator
|
2011-05-22 16:00:09 +02:00
|
|
|
i = block->m_static_objects.m_stored.begin();
|
2015-02-17 14:30:32 +01:00
|
|
|
i != block->m_static_objects.m_stored.end(); ++i) {
|
2011-05-22 16:00:09 +02:00
|
|
|
StaticObject &s_obj = *i;
|
2015-02-17 14:30:32 +01:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
// Create an active object from the data
|
|
|
|
ServerActiveObject *obj = ServerActiveObject::create
|
2015-02-17 11:37:55 +01:00
|
|
|
((ActiveObjectType) s_obj.type, this, 0, s_obj.pos, s_obj.data);
|
2011-05-22 16:00:09 +02:00
|
|
|
// If couldn't create object, store static data back.
|
2015-02-17 14:30:32 +01:00
|
|
|
if(obj == NULL) {
|
2011-10-17 10:52:38 +02:00
|
|
|
errorstream<<"ServerEnvironment::activateObjects(): "
|
|
|
|
<<"failed to create active object from static object "
|
|
|
|
<<"in block "<<PP(s_obj.pos/BS)
|
|
|
|
<<" type="<<(int)s_obj.type<<" data:"<<std::endl;
|
|
|
|
print_hexdump(verbosestream, s_obj.data);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
new_stored.push_back(s_obj);
|
|
|
|
continue;
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
2011-10-17 10:52:38 +02:00
|
|
|
verbosestream<<"ServerEnvironment::activateObjects(): "
|
|
|
|
<<"activated static object pos="<<PP(s_obj.pos/BS)
|
|
|
|
<<" type="<<(int)s_obj.type<<std::endl;
|
2011-05-22 16:00:09 +02:00
|
|
|
// This will also add the object to the active static list
|
2012-09-09 16:12:29 +02:00
|
|
|
addActiveObjectRaw(obj, false, dtime_s);
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
2011-05-22 16:00:09 +02:00
|
|
|
// Clear stored list
|
|
|
|
block->m_static_objects.m_stored.clear();
|
|
|
|
// Add leftover failed stuff to stored list
|
2015-02-17 16:49:27 +01:00
|
|
|
for(std::vector<StaticObject>::iterator
|
2011-05-22 16:00:09 +02:00
|
|
|
i = new_stored.begin();
|
2015-02-17 16:49:27 +01:00
|
|
|
i != new_stored.end(); ++i) {
|
2011-05-22 16:00:09 +02:00
|
|
|
StaticObject &s_obj = *i;
|
|
|
|
block->m_static_objects.m_stored.push_back(s_obj);
|
|
|
|
}
|
2013-11-12 18:54:32 +01:00
|
|
|
|
|
|
|
// Turn the active counterparts of activated objects not pending for
|
|
|
|
// deactivation
|
|
|
|
for(std::map<u16, StaticObject>::iterator
|
|
|
|
i = block->m_static_objects.m_active.begin();
|
|
|
|
i != block->m_static_objects.m_active.end(); ++i)
|
|
|
|
{
|
|
|
|
u16 id = i->first;
|
|
|
|
ServerActiveObject *object = getActiveObject(id);
|
|
|
|
assert(object);
|
|
|
|
object->m_pending_deactivation = false;
|
|
|
|
}
|
|
|
|
|
2011-10-17 19:19:37 +02:00
|
|
|
/*
|
|
|
|
Note: Block hasn't really been modified here.
|
|
|
|
The objects have just been activated and moved from the stored
|
|
|
|
static list to the active static list.
|
|
|
|
As such, the block is essentially the same.
|
2011-11-21 12:29:16 +01:00
|
|
|
Thus, do not call block->raiseModified(MOD_STATE_WRITE_NEEDED).
|
2011-10-17 19:19:37 +02:00
|
|
|
Otherwise there would be a huge amount of unnecessary I/O.
|
|
|
|
*/
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-10-17 19:19:37 +02:00
|
|
|
Convert objects that are not standing inside active blocks to static.
|
2011-05-22 16:00:09 +02:00
|
|
|
|
|
|
|
If m_known_by_count != 0, active object is not deleted, but static
|
|
|
|
data is still updated.
|
2011-05-21 13:28:58 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
If force_delete is set, active object is deleted nevertheless. It
|
|
|
|
shall only be set so in the destructor of the environment.
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2014-06-08 12:49:06 +02:00
|
|
|
If block wasn't generated (not in memory or on disk),
|
2011-05-21 13:28:58 +02:00
|
|
|
*/
|
2011-05-22 16:00:09 +02:00
|
|
|
void ServerEnvironment::deactivateFarObjects(bool force_delete)
|
2011-05-21 13:28:58 +02:00
|
|
|
{
|
2015-02-17 16:49:27 +01:00
|
|
|
std::vector<u16> objects_to_remove;
|
2016-10-05 09:03:55 +02:00
|
|
|
for(ActiveObjectMap::iterator i = m_active_objects.begin();
|
2015-02-17 16:49:27 +01:00
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
ServerActiveObject* obj = i->second;
|
2011-12-01 17:23:58 +01:00
|
|
|
assert(obj);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
// Do not deactivate if static data creation not allowed
|
|
|
|
if(!force_delete && !obj->isStaticAllowed())
|
2011-05-21 13:28:58 +02:00
|
|
|
continue;
|
|
|
|
|
2011-10-18 01:58:15 +02:00
|
|
|
// If pending deactivation, let removeRemovedObjects() do it
|
2011-12-01 17:23:58 +01:00
|
|
|
if(!force_delete && obj->m_pending_deactivation)
|
2011-10-18 01:58:15 +02:00
|
|
|
continue;
|
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
u16 id = i->first;
|
2014-06-08 12:49:06 +02:00
|
|
|
v3f objectpos = obj->getBasePosition();
|
2011-09-24 09:11:43 +02:00
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
// The block in which the object resides in
|
|
|
|
v3s16 blockpos_o = getNodeBlockPos(floatToInt(objectpos, BS));
|
2011-09-24 09:11:43 +02:00
|
|
|
|
2013-10-16 23:10:16 +02:00
|
|
|
// If object's static data is stored in a deactivated block and object
|
|
|
|
// is actually located in an active block, re-save to the block in
|
|
|
|
// which the object is actually located in.
|
|
|
|
if(!force_delete &&
|
|
|
|
obj->m_static_exists &&
|
|
|
|
!m_active_blocks.contains(obj->m_static_block) &&
|
|
|
|
m_active_blocks.contains(blockpos_o))
|
|
|
|
{
|
|
|
|
v3s16 old_static_block = obj->m_static_block;
|
|
|
|
|
|
|
|
// Save to block where object is located
|
|
|
|
MapBlock *block = m_map->emergeBlock(blockpos_o, false);
|
|
|
|
if(!block){
|
|
|
|
errorstream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"Could not save object id="<<id
|
|
|
|
<<" to it's current block "<<PP(blockpos_o)
|
|
|
|
<<std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
std::string staticdata_new = obj->getStaticData();
|
|
|
|
StaticObject s_obj(obj->getType(), objectpos, staticdata_new);
|
|
|
|
block->m_static_objects.insert(id, s_obj);
|
|
|
|
obj->m_static_block = blockpos_o;
|
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_STATIC_DATA_ADDED);
|
2013-10-16 23:10:16 +02:00
|
|
|
|
|
|
|
// Delete from block where object was located
|
|
|
|
block = m_map->emergeBlock(old_static_block, false);
|
|
|
|
if(!block){
|
|
|
|
errorstream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"Could not delete object id="<<id
|
|
|
|
<<" from it's previous block "<<PP(old_static_block)
|
|
|
|
<<std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
block->m_static_objects.remove(id);
|
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_STATIC_DATA_REMOVED);
|
2013-10-16 23:10:16 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
// If block is active, don't remove
|
2011-12-01 17:23:58 +01:00
|
|
|
if(!force_delete && m_active_blocks.contains(blockpos_o))
|
2011-05-22 16:00:09 +02:00
|
|
|
continue;
|
2011-05-21 13:28:58 +02:00
|
|
|
|
2011-10-17 09:47:06 +02:00
|
|
|
verbosestream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"deactivating object id="<<id<<" on inactive block "
|
|
|
|
<<PP(blockpos_o)<<std::endl;
|
|
|
|
|
2011-10-18 01:58:15 +02:00
|
|
|
// If known by some client, don't immediately delete.
|
|
|
|
bool pending_delete = (obj->m_known_by_count > 0 && !force_delete);
|
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
/*
|
2011-05-22 16:00:09 +02:00
|
|
|
Update the static data
|
2011-05-21 13:28:58 +02:00
|
|
|
*/
|
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
if(obj->isStaticAllowed())
|
|
|
|
{
|
|
|
|
// Create new static object
|
|
|
|
std::string staticdata_new = obj->getStaticData();
|
|
|
|
StaticObject s_obj(obj->getType(), objectpos, staticdata_new);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
bool stays_in_same_block = false;
|
|
|
|
bool data_changed = true;
|
2011-10-18 01:58:15 +02:00
|
|
|
|
2015-08-01 14:07:12 +02:00
|
|
|
if (obj->m_static_exists) {
|
|
|
|
if (obj->m_static_block == blockpos_o)
|
2011-12-01 17:23:58 +01:00
|
|
|
stays_in_same_block = true;
|
2011-10-18 01:58:15 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
MapBlock *block = m_map->emergeBlock(obj->m_static_block, false);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2015-08-01 14:07:12 +02:00
|
|
|
if (block) {
|
|
|
|
std::map<u16, StaticObject>::iterator n =
|
2011-12-01 17:23:58 +01:00
|
|
|
block->m_static_objects.m_active.find(id);
|
2015-08-01 14:07:12 +02:00
|
|
|
if (n != block->m_static_objects.m_active.end()) {
|
|
|
|
StaticObject static_old = n->second;
|
2011-12-01 17:23:58 +01:00
|
|
|
|
2015-08-01 14:07:12 +02:00
|
|
|
float save_movem = obj->getMinimumSavedMovement();
|
2011-12-01 17:23:58 +01:00
|
|
|
|
2015-08-01 14:07:12 +02:00
|
|
|
if (static_old.data == staticdata_new &&
|
|
|
|
(static_old.pos - objectpos).getLength() < save_movem)
|
|
|
|
data_changed = false;
|
|
|
|
} else {
|
|
|
|
errorstream<<"ServerEnvironment::deactivateFarObjects(): "
|
2011-12-01 17:23:58 +01:00
|
|
|
<<"id="<<id<<" m_static_exists=true but "
|
|
|
|
<<"static data doesn't actually exist in "
|
|
|
|
<<PP(obj->m_static_block)<<std::endl;
|
2015-08-01 14:07:12 +02:00
|
|
|
}
|
2011-12-01 17:23:58 +01:00
|
|
|
}
|
2011-10-18 01:58:15 +02:00
|
|
|
}
|
2011-11-12 14:14:24 +01:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
bool shall_be_written = (!stays_in_same_block || data_changed);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
// Delete old static object
|
|
|
|
if(obj->m_static_exists)
|
2011-05-21 13:28:58 +02:00
|
|
|
{
|
2011-12-01 17:23:58 +01:00
|
|
|
MapBlock *block = m_map->emergeBlock(obj->m_static_block, false);
|
|
|
|
if(block)
|
|
|
|
{
|
|
|
|
block->m_static_objects.remove(id);
|
|
|
|
obj->m_static_exists = false;
|
|
|
|
// Only mark block as modified if data changed considerably
|
|
|
|
if(shall_be_written)
|
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_STATIC_DATA_CHANGED);
|
2011-12-01 17:23:58 +01:00
|
|
|
}
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
2011-10-17 10:52:38 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
// Add to the block where the object is located in
|
|
|
|
v3s16 blockpos = getNodeBlockPos(floatToInt(objectpos, BS));
|
|
|
|
// Get or generate the block
|
2012-09-09 13:18:14 +02:00
|
|
|
MapBlock *block = NULL;
|
|
|
|
try{
|
|
|
|
block = m_map->emergeBlock(blockpos);
|
|
|
|
} catch(InvalidPositionException &e){
|
|
|
|
// Handled via NULL pointer
|
2013-11-12 18:54:32 +01:00
|
|
|
// NOTE: emergeBlock's failure is usually determined by it
|
|
|
|
// actually returning NULL
|
2012-09-09 13:18:14 +02:00
|
|
|
}
|
2011-07-01 20:04:40 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
if(block)
|
|
|
|
{
|
2016-10-19 02:37:12 +02:00
|
|
|
if (block->m_static_objects.m_stored.size() >= g_settings->getU16("max_objects_per_block")) {
|
|
|
|
warningstream << "ServerEnv: Trying to store id = " << obj->getId()
|
|
|
|
<< " statically but block " << PP(blockpos)
|
|
|
|
<< " already contains "
|
|
|
|
<< block->m_static_objects.m_stored.size()
|
|
|
|
<< " objects."
|
|
|
|
<< " Forcing delete." << std::endl;
|
2011-12-01 17:23:58 +01:00
|
|
|
force_delete = true;
|
|
|
|
} else {
|
2013-11-12 18:54:32 +01:00
|
|
|
// If static counterpart already exists in target block,
|
|
|
|
// remove it first.
|
|
|
|
// This shouldn't happen because the object is removed from
|
|
|
|
// the previous block before this according to
|
|
|
|
// obj->m_static_block, but happens rarely for some unknown
|
|
|
|
// reason. Unsuccessful attempts have been made to find
|
|
|
|
// said reason.
|
2013-04-22 00:05:47 +02:00
|
|
|
if(id && block->m_static_objects.m_active.find(id) != block->m_static_objects.m_active.end()){
|
2015-10-14 07:26:03 +02:00
|
|
|
warningstream<<"ServerEnv: Performing hack #83274"
|
2012-04-15 13:37:35 +02:00
|
|
|
<<std::endl;
|
2013-04-22 00:05:47 +02:00
|
|
|
block->m_static_objects.remove(id);
|
2012-04-15 13:37:35 +02:00
|
|
|
}
|
2013-11-12 18:54:32 +01:00
|
|
|
// Store static data
|
|
|
|
u16 store_id = pending_delete ? id : 0;
|
|
|
|
block->m_static_objects.insert(store_id, s_obj);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
// Only mark block as modified if data changed considerably
|
|
|
|
if(shall_be_written)
|
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
2015-05-18 04:14:26 +02:00
|
|
|
MOD_REASON_STATIC_DATA_CHANGED);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
obj->m_static_exists = true;
|
|
|
|
obj->m_static_block = block->getPos();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(!force_delete){
|
2012-09-09 13:18:14 +02:00
|
|
|
v3s16 p = floatToInt(objectpos, BS);
|
2011-12-01 17:23:58 +01:00
|
|
|
errorstream<<"ServerEnv: Could not find or generate "
|
|
|
|
<<"a block for storing id="<<obj->getId()
|
2012-09-09 13:18:14 +02:00
|
|
|
<<" statically (pos="<<PP(p)<<")"<<std::endl;
|
2011-12-01 17:23:58 +01:00
|
|
|
continue;
|
|
|
|
}
|
2011-10-17 10:52:38 +02:00
|
|
|
}
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
2011-05-22 16:00:09 +02:00
|
|
|
|
|
|
|
/*
|
2011-10-18 01:58:15 +02:00
|
|
|
If known by some client, set pending deactivation.
|
|
|
|
Otherwise delete it immediately.
|
2011-05-22 16:00:09 +02:00
|
|
|
*/
|
|
|
|
|
2011-12-01 17:23:58 +01:00
|
|
|
if(pending_delete && !force_delete)
|
2011-05-22 16:00:09 +02:00
|
|
|
{
|
2011-10-17 09:47:06 +02:00
|
|
|
verbosestream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"object id="<<id<<" is known by clients"
|
|
|
|
<<"; not deleting yet"<<std::endl;
|
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
obj->m_pending_deactivation = true;
|
|
|
|
continue;
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-10-17 09:47:06 +02:00
|
|
|
verbosestream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"object id="<<id<<" is not known by clients"
|
|
|
|
<<"; deleting"<<std::endl;
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2011-12-01 12:22:33 +01:00
|
|
|
// Tell the object about removal
|
|
|
|
obj->removingFromEnvironment();
|
2011-11-11 18:33:17 +01:00
|
|
|
// Deregister in scripting api
|
2013-05-25 00:51:02 +02:00
|
|
|
m_script->removeObjectReference(obj);
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
// Delete active object
|
2011-12-01 22:33:48 +01:00
|
|
|
if(obj->environmentDeletes())
|
|
|
|
delete obj;
|
2011-05-21 13:28:58 +02:00
|
|
|
// Id to be removed from m_active_objects
|
|
|
|
objects_to_remove.push_back(id);
|
|
|
|
}
|
2011-05-22 16:00:09 +02:00
|
|
|
|
2011-05-21 13:28:58 +02:00
|
|
|
// Remove references from m_active_objects
|
2015-02-17 16:49:27 +01:00
|
|
|
for(std::vector<u16>::iterator i = objects_to_remove.begin();
|
|
|
|
i != objects_to_remove.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
m_active_objects.erase(*i);
|
2011-05-21 13:28:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-19 18:11:05 +01:00
|
|
|
#ifndef SERVER
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2012-03-10 00:38:48 +01:00
|
|
|
#include "clientsimpleobject.h"
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
ClientEnvironment
|
|
|
|
*/
|
|
|
|
|
2011-11-13 23:19:48 +01:00
|
|
|
ClientEnvironment::ClientEnvironment(ClientMap *map, scene::ISceneManager *smgr,
|
2011-12-01 17:23:58 +01:00
|
|
|
ITextureSource *texturesource, IGameDef *gamedef,
|
|
|
|
IrrlichtDevice *irr):
|
2011-02-20 23:45:14 +01:00
|
|
|
m_map(map),
|
2016-10-08 23:13:38 +02:00
|
|
|
m_local_player(NULL),
|
2011-11-13 23:19:48 +01:00
|
|
|
m_smgr(smgr),
|
|
|
|
m_texturesource(texturesource),
|
2011-12-01 17:23:58 +01:00
|
|
|
m_gamedef(gamedef),
|
|
|
|
m_irr(irr)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2014-06-08 12:49:06 +02:00
|
|
|
char zero = 0;
|
2015-06-20 03:20:06 +02:00
|
|
|
memset(attachement_parent_ids, zero, sizeof(attachement_parent_ids));
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ClientEnvironment::~ClientEnvironment()
|
|
|
|
{
|
|
|
|
// delete active objects
|
2016-10-08 16:31:22 +02:00
|
|
|
for (UNORDERED_MAP<u16, ClientActiveObject*>::iterator i = m_active_objects.begin();
|
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
delete i->second;
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2015-03-05 10:43:08 +01:00
|
|
|
for(std::vector<ClientSimpleObject*>::iterator
|
|
|
|
i = m_simple_objects.begin(); i != m_simple_objects.end(); ++i) {
|
2012-03-10 00:38:48 +01:00
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
// Drop/delete map
|
|
|
|
m_map->drop();
|
|
|
|
}
|
|
|
|
|
2012-03-15 23:25:18 +01:00
|
|
|
Map & ClientEnvironment::getMap()
|
|
|
|
{
|
|
|
|
return *m_map;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClientMap & ClientEnvironment::getClientMap()
|
|
|
|
{
|
|
|
|
return *m_map;
|
|
|
|
}
|
|
|
|
|
2016-10-08 23:13:38 +02:00
|
|
|
void ClientEnvironment::setLocalPlayer(LocalPlayer *player)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2015-10-14 08:39:30 +02:00
|
|
|
DSTACK(FUNCTION_NAME);
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
2016-10-08 17:56:38 +02:00
|
|
|
It is a failure if already is a local player
|
2011-02-20 23:45:14 +01:00
|
|
|
*/
|
2016-10-08 23:13:38 +02:00
|
|
|
FATAL_ERROR_IF(m_local_player != NULL,
|
|
|
|
"Local player already allocated");
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2016-10-08 23:13:38 +02:00
|
|
|
m_local_player = player;
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::step(float dtime)
|
|
|
|
{
|
2015-10-14 08:39:30 +02:00
|
|
|
DSTACK(FUNCTION_NAME);
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2012-03-16 15:34:30 +01:00
|
|
|
/* Step time of day */
|
|
|
|
stepTimeOfDay(dtime);
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
// Get some settings
|
2012-03-31 15:23:26 +02:00
|
|
|
bool fly_allowed = m_gamedef->checkLocalPrivilege("fly");
|
|
|
|
bool free_move = fly_allowed && g_settings->getBool("free_move");
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2011-04-21 18:35:17 +02:00
|
|
|
// Get local player
|
|
|
|
LocalPlayer *lplayer = getLocalPlayer();
|
|
|
|
assert(lplayer);
|
|
|
|
// collision info queue
|
2015-03-04 16:58:04 +01:00
|
|
|
std::vector<CollisionInfo> player_collisions;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
Get the speed the player is going
|
|
|
|
*/
|
2011-07-31 06:53:05 +02:00
|
|
|
bool is_climbing = lplayer->is_climbing;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-11-26 14:58:02 +01:00
|
|
|
f32 player_speed = lplayer->getSpeed().getLength();
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
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
|
2011-11-26 14:58:02 +01:00
|
|
|
f32 dtime_max_increment = 1;
|
|
|
|
if(player_speed > 0.001)
|
|
|
|
dtime_max_increment = position_max_increment / player_speed;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
// Maximum time increment is 10ms or lower
|
|
|
|
if(dtime_max_increment > 0.01)
|
|
|
|
dtime_max_increment = 0.01;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
// Don't allow overly huge dtime
|
|
|
|
if(dtime > 0.5)
|
|
|
|
dtime = 0.5;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
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)
|
2011-02-24 17:25:19 +01:00
|
|
|
{
|
2011-02-20 23:45:14 +01:00
|
|
|
dtime_part = dtime_max_increment;
|
2011-02-24 17:25:19 +01:00
|
|
|
dtime_downcount -= dtime_part;
|
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
else
|
2011-02-24 17:25:19 +01:00
|
|
|
{
|
2011-02-21 15:10:36 +01:00
|
|
|
dtime_part = dtime_downcount;
|
2011-02-24 17:25:19 +01:00
|
|
|
/*
|
|
|
|
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;
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
Handle local player
|
|
|
|
*/
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
|
|
|
// Apply physics
|
2016-10-08 16:31:22 +02:00
|
|
|
if(!free_move && !is_climbing)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
|
|
|
// Gravity
|
2011-04-21 18:35:17 +02:00
|
|
|
v3f speed = lplayer->getSpeed();
|
2016-10-08 16:31:22 +02:00
|
|
|
if(!lplayer->in_liquid)
|
2013-04-05 13:03:28 +02:00
|
|
|
speed.Y -= lplayer->movement_gravity * lplayer->physics_override_gravity * dtime_part * 2;
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2013-02-08 21:54:01 +01:00
|
|
|
// Liquid floating / sinking
|
|
|
|
if(lplayer->in_liquid && !lplayer->swimming_vertical)
|
|
|
|
speed.Y -= lplayer->movement_liquid_sink * dtime_part * 2;
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2013-02-08 21:54:01 +01:00
|
|
|
// 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);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2013-02-08 21:54:01 +01:00
|
|
|
v3f d = d_wanted.normalize() * dl;
|
|
|
|
speed += d;
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2011-04-21 18:35:17 +02:00
|
|
|
lplayer->setSpeed(speed);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-04-21 18:35:17 +02:00
|
|
|
Move the lplayer.
|
2011-02-20 23:45:14 +01:00
|
|
|
This also does collision detection.
|
|
|
|
*/
|
2013-01-12 18:59:19 +01:00
|
|
|
lplayer->move(dtime_part, this, position_max_increment,
|
2011-04-21 18:35:17 +02:00
|
|
|
&player_collisions);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while(dtime_downcount > 0.001);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
//std::cout<<"Looped "<<loopcount<<" times."<<std::endl;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2015-03-04 16:58:04 +01:00
|
|
|
for(std::vector<CollisionInfo>::iterator i = player_collisions.begin();
|
|
|
|
i != player_collisions.end(); ++i) {
|
2012-09-01 12:21:52 +02:00
|
|
|
CollisionInfo &info = *i;
|
|
|
|
v3f speed_diff = info.new_speed - info.old_speed;;
|
|
|
|
// Handle only fall damage
|
|
|
|
// (because otherwise walking against something in fast_move kills you)
|
|
|
|
if(speed_diff.Y < 0 || info.old_speed.Y >= 0)
|
|
|
|
continue;
|
|
|
|
// Get rid of other components
|
|
|
|
speed_diff.X = 0;
|
|
|
|
speed_diff.Z = 0;
|
2012-09-01 11:58:37 +02:00
|
|
|
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
|
|
|
|
if(info.type == COLLISION_NODE)
|
2011-04-21 18:35:17 +02:00
|
|
|
{
|
2012-09-01 11:07:27 +02:00
|
|
|
const ContentFeatures &f = m_gamedef->ndef()->
|
2012-09-01 11:58:37 +02:00
|
|
|
get(m_map->getNodeNoEx(info.node_p));
|
2012-09-01 11:07:27 +02:00
|
|
|
// Determine fall damage multiplier
|
|
|
|
int addp = itemgroup_get(f.groups, "fall_damage_add_percent");
|
2012-09-01 11:58:37 +02:00
|
|
|
pre_factor = 1.0 + (float)addp/100.0;
|
|
|
|
}
|
2012-09-01 12:21:52 +02:00
|
|
|
float speed = pre_factor * speed_diff.getLength();
|
2012-09-01 11:58:37 +02:00
|
|
|
if(speed > tolerance)
|
|
|
|
{
|
|
|
|
f32 damage_f = (speed - tolerance)/BS * post_factor;
|
|
|
|
u16 damage = (u16)(damage_f+0.5);
|
2013-04-17 20:13:47 +02:00
|
|
|
if(damage != 0){
|
2012-09-01 11:58:37 +02:00
|
|
|
damageLocalPlayer(damage, true);
|
2013-04-17 20:13:47 +02:00
|
|
|
MtEvent *e = new SimpleTriggerEvent("PlayerFallingDamage");
|
|
|
|
m_gamedef->event()->put(e);
|
|
|
|
}
|
2011-04-21 18:35:17 +02:00
|
|
|
}
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-08-15 01:04:56 +02:00
|
|
|
/*
|
|
|
|
A quick draft of lava damage
|
|
|
|
*/
|
|
|
|
if(m_lava_hurt_interval.step(dtime, 1.0))
|
|
|
|
{
|
|
|
|
v3f pf = lplayer->getPosition();
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-08-15 10:49:39 +02:00
|
|
|
// Feet, middle and head
|
|
|
|
v3s16 p1 = floatToInt(pf + v3f(0, BS*0.1, 0), BS);
|
2011-08-15 01:04:56 +02:00
|
|
|
MapNode n1 = m_map->getNodeNoEx(p1);
|
2011-08-15 10:49:39 +02:00
|
|
|
v3s16 p2 = floatToInt(pf + v3f(0, BS*0.8, 0), BS);
|
2011-08-15 01:04:56 +02:00
|
|
|
MapNode n2 = m_map->getNodeNoEx(p2);
|
2011-08-15 10:49:39 +02:00
|
|
|
v3s16 p3 = floatToInt(pf + v3f(0, BS*1.6, 0), BS);
|
2013-05-20 03:29:49 +02:00
|
|
|
MapNode n3 = m_map->getNodeNoEx(p3);
|
2011-08-15 10:49:39 +02:00
|
|
|
|
|
|
|
u32 damage_per_second = 0;
|
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
2011-11-14 20:41:30 +01:00
|
|
|
m_gamedef->ndef()->get(n1).damage_per_second);
|
2011-08-15 10:49:39 +02:00
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
2011-11-14 20:41:30 +01:00
|
|
|
m_gamedef->ndef()->get(n2).damage_per_second);
|
2011-08-15 10:49:39 +02:00
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
2011-11-14 20:41:30 +01:00
|
|
|
m_gamedef->ndef()->get(n3).damage_per_second);
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-08-15 10:49:39 +02:00
|
|
|
if(damage_per_second != 0)
|
2011-08-15 01:04:56 +02:00
|
|
|
{
|
2012-01-24 00:00:26 +01:00
|
|
|
damageLocalPlayer(damage_per_second, true);
|
2011-08-15 01:04:56 +02:00
|
|
|
}
|
|
|
|
}
|
2013-06-19 16:30:22 +02: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);
|
|
|
|
ContentFeatures c = m_gamedef->ndef()->get(n);
|
2013-08-01 18:36:11 +02:00
|
|
|
u8 drowning_damage = c.drowning;
|
|
|
|
if(drowning_damage > 0 && lplayer->hp > 0){
|
2013-07-19 19:50:33 +02:00
|
|
|
u16 breath = lplayer->getBreath();
|
|
|
|
if(breath > 10){
|
|
|
|
breath = 11;
|
|
|
|
}
|
|
|
|
if(breath > 0){
|
|
|
|
breath -= 1;
|
|
|
|
}
|
|
|
|
lplayer->setBreath(breath);
|
|
|
|
updateLocalPlayerBreath(breath);
|
2013-06-19 16:30:22 +02:00
|
|
|
}
|
|
|
|
|
2013-08-01 18:36:11 +02:00
|
|
|
if(lplayer->getBreath() == 0 && drowning_damage > 0){
|
|
|
|
damageLocalPlayer(drowning_damage, true);
|
2013-06-19 16:30:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
ContentFeatures c = m_gamedef->ndef()->get(n);
|
2013-07-19 19:50:33 +02:00
|
|
|
if (!lplayer->hp){
|
|
|
|
lplayer->setBreath(11);
|
|
|
|
}
|
2013-08-01 18:36:11 +02:00
|
|
|
else if(c.drowning == 0){
|
2013-07-19 19:50:33 +02:00
|
|
|
u16 breath = lplayer->getBreath();
|
|
|
|
if(breath <= 10){
|
|
|
|
breath += 1;
|
|
|
|
lplayer->setBreath(breath);
|
|
|
|
updateLocalPlayerBreath(breath);
|
|
|
|
}
|
2013-06-19 16:30:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-02 03:47:43 +01:00
|
|
|
// 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);
|
|
|
|
|
2014-11-14 09:05:34 +01:00
|
|
|
v3s16 p = lplayer->getLightPosition();
|
|
|
|
node_at_lplayer = m_map->getNodeNoEx(p);
|
2014-11-02 03:47:43 +01:00
|
|
|
|
|
|
|
u16 light = getInteriorLight(node_at_lplayer, 0, m_gamedef->ndef());
|
|
|
|
u8 day = light & 0xff;
|
|
|
|
u8 night = (light >> 8) & 0xff;
|
|
|
|
finalColorBlend(lplayer->light_color, day, night, day_night_ratio);
|
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
2011-04-10 15:20:31 +02:00
|
|
|
Step active objects and update lighting of them
|
2011-02-20 23:45:14 +01:00
|
|
|
*/
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2013-06-18 01:49:06 +02:00
|
|
|
g_profiler->avg("CEnv: num of objects", m_active_objects.size());
|
2012-09-09 12:26:52 +02:00
|
|
|
bool update_lighting = m_active_object_light_update_interval.step(dtime, 0.21);
|
2016-10-08 16:31:22 +02:00
|
|
|
for (UNORDERED_MAP<u16, ClientActiveObject*>::iterator i = m_active_objects.begin();
|
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
ClientActiveObject* obj = i->second;
|
2011-02-20 23:45:14 +01:00
|
|
|
// Step object
|
2011-04-10 03:15:10 +02:00
|
|
|
obj->step(dtime, this);
|
2011-06-26 14:48:56 +02:00
|
|
|
|
2012-09-09 12:26:52 +02:00
|
|
|
if(update_lighting)
|
2011-06-26 14:48:56 +02:00
|
|
|
{
|
|
|
|
// Update lighting
|
|
|
|
u8 light = 0;
|
2014-11-14 09:05:34 +01:00
|
|
|
bool pos_ok;
|
|
|
|
|
|
|
|
// Get node at head
|
|
|
|
v3s16 p = obj->getLightPosition();
|
|
|
|
MapNode n = m_map->getNodeNoEx(p, &pos_ok);
|
|
|
|
if (pos_ok)
|
2014-11-02 03:47:43 +01:00
|
|
|
light = n.getLightBlend(day_night_ratio, m_gamedef->ndef());
|
2014-11-14 09:05:34 +01:00
|
|
|
else
|
2014-11-02 03:47:43 +01:00
|
|
|
light = blend_light(day_night_ratio, LIGHT_SUN, 0);
|
2014-11-14 09:05:34 +01:00
|
|
|
|
2011-06-26 14:48:56 +02:00
|
|
|
obj->updateLight(light);
|
2011-04-10 15:20:31 +02:00
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
2012-03-10 00:38:48 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Step and handle simple objects
|
|
|
|
*/
|
2013-06-18 01:49:06 +02:00
|
|
|
g_profiler->avg("CEnv: num of simple objects", m_simple_objects.size());
|
2015-03-05 10:43:08 +01:00
|
|
|
for(std::vector<ClientSimpleObject*>::iterator
|
|
|
|
i = m_simple_objects.begin(); i != m_simple_objects.end();) {
|
|
|
|
std::vector<ClientSimpleObject*>::iterator cur = i;
|
2015-03-05 15:34:39 +01:00
|
|
|
ClientSimpleObject *simple = *cur;
|
|
|
|
|
2012-03-10 00:38:48 +01:00
|
|
|
simple->step(dtime);
|
2015-03-05 15:34:39 +01:00
|
|
|
if(simple->m_to_be_removed) {
|
2012-03-10 00:38:48 +01:00
|
|
|
delete simple;
|
2015-03-05 15:34:39 +01:00
|
|
|
i = m_simple_objects.erase(cur);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
++i;
|
2012-03-10 00:38:48 +01:00
|
|
|
}
|
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2012-03-10 00:38:48 +01:00
|
|
|
void ClientEnvironment::addSimpleObject(ClientSimpleObject *simple)
|
|
|
|
{
|
|
|
|
m_simple_objects.push_back(simple);
|
|
|
|
}
|
2010-12-18 16:46:00 +01:00
|
|
|
|
2015-06-20 00:30:38 +02:00
|
|
|
GenericCAO* ClientEnvironment::getGenericCAO(u16 id)
|
|
|
|
{
|
|
|
|
ClientActiveObject *obj = getActiveObject(id);
|
|
|
|
if (obj && obj->getType() == ACTIVEOBJECT_TYPE_GENERIC)
|
|
|
|
return (GenericCAO*) obj;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
ClientActiveObject* ClientEnvironment::getActiveObject(u16 id)
|
2010-12-18 16:46:00 +01:00
|
|
|
{
|
2016-10-08 16:31:22 +02:00
|
|
|
UNORDERED_MAP<u16, ClientActiveObject*>::iterator n = m_active_objects.find(id);
|
|
|
|
if (n == m_active_objects.end())
|
2011-02-20 23:45:14 +01:00
|
|
|
return NULL;
|
2012-12-20 18:19:49 +01:00
|
|
|
return n->second;
|
2010-12-18 16:46:00 +01:00
|
|
|
}
|
|
|
|
|
2016-10-08 16:31:22 +02:00
|
|
|
bool isFreeClientActiveObjectId(const u16 id,
|
|
|
|
UNORDERED_MAP<u16, ClientActiveObject*> &objects)
|
2010-12-18 16:46:00 +01:00
|
|
|
{
|
2011-02-20 23:45:14 +01:00
|
|
|
if(id == 0)
|
|
|
|
return false;
|
2012-12-20 18:19:49 +01:00
|
|
|
|
|
|
|
return objects.find(id) == objects.end();
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2016-10-08 16:31:22 +02:00
|
|
|
u16 getFreeClientActiveObjectId(UNORDERED_MAP<u16, ClientActiveObject*> &objects)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2013-04-21 15:54:29 +02:00
|
|
|
//try to reuse id's as late as possible
|
|
|
|
static u16 last_used_id = 0;
|
|
|
|
u16 startid = last_used_id;
|
2016-10-08 16:31:22 +02:00
|
|
|
for(;;) {
|
2013-04-21 15:54:29 +02:00
|
|
|
last_used_id ++;
|
2016-10-08 16:31:22 +02:00
|
|
|
if (isFreeClientActiveObjectId(last_used_id, objects))
|
2013-04-21 15:54:29 +02:00
|
|
|
return last_used_id;
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2016-10-08 16:31:22 +02:00
|
|
|
if (last_used_id == startid)
|
2011-02-20 23:45:14 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2010-12-18 16:46:00 +01:00
|
|
|
}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
u16 ClientEnvironment::addActiveObject(ClientActiveObject *object)
|
|
|
|
{
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(object); // Pre-condition
|
2011-02-20 23:45:14 +01:00
|
|
|
if(object->getId() == 0)
|
|
|
|
{
|
|
|
|
u16 new_id = getFreeClientActiveObjectId(m_active_objects);
|
|
|
|
if(new_id == 0)
|
|
|
|
{
|
2011-10-16 13:57:53 +02:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 23:45:14 +01:00
|
|
|
<<"no free ids available"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
object->setId(new_id);
|
|
|
|
}
|
2016-10-08 19:08:23 +02:00
|
|
|
if (!isFreeClientActiveObjectId(object->getId(), m_active_objects)) {
|
2011-10-16 13:57:53 +02:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 23:45:14 +01:00
|
|
|
<<"id is not free ("<<object->getId()<<")"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
2011-10-16 13:57:53 +02:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 23:45:14 +01:00
|
|
|
<<"added (id="<<object->getId()<<")"<<std::endl;
|
2012-12-20 18:19:49 +01:00
|
|
|
m_active_objects[object->getId()] = object;
|
2011-12-01 17:23:58 +01:00
|
|
|
object->addToScene(m_smgr, m_texturesource, m_irr);
|
2011-11-26 11:40:25 +01:00
|
|
|
{ // Update lighting immediately
|
|
|
|
u8 light = 0;
|
2014-11-14 09:05:34 +01:00
|
|
|
bool pos_ok;
|
|
|
|
|
|
|
|
// Get node at head
|
|
|
|
v3s16 p = object->getLightPosition();
|
|
|
|
MapNode n = m_map->getNodeNoEx(p, &pos_ok);
|
|
|
|
if (pos_ok)
|
2011-11-26 11:40:25 +01:00
|
|
|
light = n.getLightBlend(getDayNightRatio(), m_gamedef->ndef());
|
2014-11-14 09:05:34 +01:00
|
|
|
else
|
2012-01-21 00:11:44 +01:00
|
|
|
light = blend_light(getDayNightRatio(), LIGHT_SUN, 0);
|
2014-11-14 09:05:34 +01:00
|
|
|
|
2011-11-26 11:40:25 +01:00
|
|
|
object->updateLight(light);
|
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
return object->getId();
|
|
|
|
}
|
|
|
|
|
2011-02-21 15:10:36 +01:00
|
|
|
void ClientEnvironment::addActiveObject(u16 id, u8 type,
|
|
|
|
const std::string &init_data)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2011-12-01 17:23:58 +01:00
|
|
|
ClientActiveObject* obj =
|
2015-02-17 11:37:55 +01:00
|
|
|
ClientActiveObject::create((ActiveObjectType) type, m_gamedef, this);
|
2011-02-20 23:45:14 +01:00
|
|
|
if(obj == NULL)
|
|
|
|
{
|
2011-10-16 13:57:53 +02:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 23:45:14 +01:00
|
|
|
<<"id="<<id<<" type="<<type<<": Couldn't create object"
|
|
|
|
<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
obj->setId(id);
|
|
|
|
|
2012-03-19 03:04:16 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
obj->initialize(init_data);
|
|
|
|
}
|
|
|
|
catch(SerializationError &e)
|
|
|
|
{
|
|
|
|
errorstream<<"ClientEnvironment::addActiveObject():"
|
|
|
|
<<" id="<<id<<" type="<<type
|
2012-11-26 08:49:31 +01:00
|
|
|
<<": SerializationError in initialize(): "
|
|
|
|
<<e.what()
|
|
|
|
<<": init_data="<<serializeJsonString(init_data)
|
2012-03-19 03:04:16 +01:00
|
|
|
<<std::endl;
|
|
|
|
}
|
|
|
|
|
2011-10-15 01:28:57 +02:00
|
|
|
addActiveObject(obj);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::removeActiveObject(u16 id)
|
|
|
|
{
|
2012-03-11 03:15:45 +01:00
|
|
|
verbosestream<<"ClientEnvironment::removeActiveObject(): "
|
2011-02-20 23:45:14 +01:00
|
|
|
<<"id="<<id<<std::endl;
|
|
|
|
ClientActiveObject* obj = getActiveObject(id);
|
2016-10-08 16:31:22 +02:00
|
|
|
if (obj == NULL) {
|
2011-10-16 13:57:53 +02:00
|
|
|
infostream<<"ClientEnvironment::removeActiveObject(): "
|
2011-02-20 23:45:14 +01:00
|
|
|
<<"id="<<id<<" not found"<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2012-11-04 22:54:50 +01:00
|
|
|
obj->removeFromScene(true);
|
2011-02-20 23:45:14 +01:00
|
|
|
delete obj;
|
2012-12-20 18:19:49 +01:00
|
|
|
m_active_objects.erase(id);
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2015-07-14 05:29:29 +02:00
|
|
|
void ClientEnvironment::processActiveObjectMessage(u16 id, const std::string &data)
|
2011-02-20 23:45:14 +01:00
|
|
|
{
|
2015-07-14 05:29:29 +02:00
|
|
|
ClientActiveObject *obj = getActiveObject(id);
|
|
|
|
if (obj == NULL) {
|
|
|
|
infostream << "ClientEnvironment::processActiveObjectMessage():"
|
|
|
|
<< " got message for id=" << id << ", which doesn't exist."
|
|
|
|
<< std::endl;
|
2011-02-20 23:45:14 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-07-14 05:29:29 +02:00
|
|
|
|
|
|
|
try {
|
2012-03-19 03:04:16 +01:00
|
|
|
obj->processMessage(data);
|
2015-07-14 05:29:29 +02:00
|
|
|
} catch (SerializationError &e) {
|
2012-03-19 03:04:16 +01:00
|
|
|
errorstream<<"ClientEnvironment::processActiveObjectMessage():"
|
2015-07-14 05:29:29 +02:00
|
|
|
<< " id=" << id << " type=" << obj->getType()
|
|
|
|
<< " SerializationError in processMessage(): " << e.what()
|
|
|
|
<< std::endl;
|
2012-03-19 03:04:16 +01:00
|
|
|
}
|
2011-02-20 23:45:14 +01:00
|
|
|
}
|
|
|
|
|
2011-04-21 18:35:17 +02:00
|
|
|
/*
|
|
|
|
Callbacks for activeobjects
|
|
|
|
*/
|
|
|
|
|
2011-12-02 09:44:20 +01:00
|
|
|
void ClientEnvironment::damageLocalPlayer(u8 damage, bool handle_hp)
|
2011-04-21 18:35:17 +02:00
|
|
|
{
|
|
|
|
LocalPlayer *lplayer = getLocalPlayer();
|
|
|
|
assert(lplayer);
|
2015-03-17 08:39:59 +01:00
|
|
|
|
|
|
|
if (handle_hp) {
|
|
|
|
if (lplayer->hp > damage)
|
|
|
|
lplayer->hp -= damage;
|
|
|
|
else
|
|
|
|
lplayer->hp = 0;
|
|
|
|
}
|
2011-04-21 18:35:17 +02:00
|
|
|
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_PLAYER_DAMAGE;
|
|
|
|
event.player_damage.amount = damage;
|
2011-12-02 10:16:51 +01:00
|
|
|
event.player_damage.send_to_server = handle_hp;
|
2015-09-08 18:29:02 +02:00
|
|
|
m_client_event_queue.push(event);
|
2011-04-21 18:35:17 +02:00
|
|
|
}
|
|
|
|
|
2013-07-19 19:50:33 +02:00
|
|
|
void ClientEnvironment::updateLocalPlayerBreath(u16 breath)
|
|
|
|
{
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_PLAYER_BREATH;
|
|
|
|
event.player_breath.amount = breath;
|
2015-09-08 18:29:02 +02:00
|
|
|
m_client_event_queue.push(event);
|
2013-07-19 19:50:33 +02:00
|
|
|
}
|
|
|
|
|
2011-04-21 18:35:17 +02:00
|
|
|
/*
|
|
|
|
Client likes to call these
|
|
|
|
*/
|
2015-04-01 05:33:30 +02:00
|
|
|
|
2011-04-07 23:47:14 +02:00
|
|
|
void ClientEnvironment::getActiveObjects(v3f origin, f32 max_d,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::vector<DistanceSortedActiveObject> &dest)
|
2011-04-07 23:47:14 +02:00
|
|
|
{
|
2016-10-08 16:31:22 +02:00
|
|
|
for (UNORDERED_MAP<u16, ClientActiveObject*>::iterator i = m_active_objects.begin();
|
|
|
|
i != m_active_objects.end(); ++i) {
|
2012-12-20 18:19:49 +01:00
|
|
|
ClientActiveObject* obj = i->second;
|
2011-04-07 23:47:14 +02:00
|
|
|
|
|
|
|
f32 d = (obj->getPosition() - origin).getLength();
|
|
|
|
|
|
|
|
if(d > max_d)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
DistanceSortedActiveObject dso(obj, d);
|
|
|
|
|
|
|
|
dest.push_back(dso);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-21 18:35:17 +02:00
|
|
|
ClientEnvEvent ClientEnvironment::getClientEvent()
|
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
ClientEnvEvent event;
|
2012-12-20 18:19:49 +01:00
|
|
|
if(m_client_event_queue.empty())
|
2011-04-21 18:35:17 +02:00
|
|
|
event.type = CEE_NONE;
|
2013-08-11 04:09:45 +02:00
|
|
|
else {
|
|
|
|
event = m_client_event_queue.front();
|
2015-09-08 18:29:02 +02:00
|
|
|
m_client_event_queue.pop();
|
2011-04-21 18:35:17 +02:00
|
|
|
}
|
2013-08-11 04:09:45 +02:00
|
|
|
return event;
|
2011-04-21 18:35:17 +02:00
|
|
|
}
|
2011-04-07 23:47:14 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
#endif // #ifndef SERVER
|