2010-11-29 13:13:04 -05:00
|
|
|
/*
|
|
|
|
Minetest-c55
|
2011-04-29 19:12:32 -04:00
|
|
|
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 13:13:04 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
#include <set>
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
2010-11-26 18:02:21 -05:00
|
|
|
#include "environment.h"
|
2011-01-27 18:38:16 -05:00
|
|
|
#include "filesys.h"
|
2011-02-21 09:10:36 -05:00
|
|
|
#include "porting.h"
|
2011-04-21 12:35:17 -04:00
|
|
|
#include "collision.h"
|
2011-06-17 15:20:15 -04:00
|
|
|
#include "content_mapnode.h"
|
2011-06-25 19:34:36 -04:00
|
|
|
#include "mapblock.h"
|
2011-06-26 08:48:56 -04:00
|
|
|
#include "serverobject.h"
|
|
|
|
#include "content_sao.h"
|
2011-08-16 05:14:49 -04:00
|
|
|
#include "mapgen.h"
|
2011-10-12 06:53:38 -04:00
|
|
|
#include "settings.h"
|
2011-10-16 07:57:53 -04:00
|
|
|
#include "log.h"
|
2011-10-16 14:16:44 -04:00
|
|
|
#include "profiler.h"
|
2011-11-11 12:33:17 -05:00
|
|
|
#include "scriptapi.h"
|
2011-11-14 14:41:30 -05:00
|
|
|
#include "nodedef.h"
|
2011-11-13 05:54:33 -05:00
|
|
|
#include "nodemetadata.h"
|
2011-11-13 17:19:48 -05:00
|
|
|
#include "main.h" // For g_settings, g_profiler
|
2011-11-14 14:41:30 -05:00
|
|
|
#include "gamedef.h"
|
2011-10-16 07:57:53 -04:00
|
|
|
|
|
|
|
#define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")"
|
2011-05-21 07:28:58 -04:00
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
Environment::Environment():
|
|
|
|
m_time_of_day(9000)
|
2010-11-26 18:02:21 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Environment::~Environment()
|
|
|
|
{
|
|
|
|
// Deallocate players
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
delete (*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::addPlayer(Player *player)
|
|
|
|
{
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
2011-01-23 10:29:15 -05:00
|
|
|
/*
|
2011-02-20 17:45:14 -05:00
|
|
|
Check that peer_ids are unique.
|
2011-01-27 18:38:16 -05:00
|
|
|
Also check that names are unique.
|
2011-01-23 10:29:15 -05:00
|
|
|
Exception: there can be multiple players with peer_id=0
|
|
|
|
*/
|
2011-01-27 18:38:16 -05:00
|
|
|
// If peer id is non-zero, it has to be unique.
|
2011-01-17 17:27:14 -05:00
|
|
|
if(player->peer_id != 0)
|
|
|
|
assert(getPlayer(player->peer_id) == NULL);
|
2011-01-27 18:38:16 -05:00
|
|
|
// Name has to be unique.
|
|
|
|
assert(getPlayer(player->getName()) == NULL);
|
|
|
|
// Add.
|
2010-11-26 18:02:21 -05:00
|
|
|
m_players.push_back(player);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Environment::removePlayer(u16 peer_id)
|
|
|
|
{
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
|
|
|
re_search:
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
if(player->peer_id != peer_id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
delete player;
|
|
|
|
m_players.erase(i);
|
|
|
|
// See if there is an another one
|
|
|
|
// (shouldn't be, but just to be sure)
|
|
|
|
goto re_search;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Player * Environment::getPlayer(u16 peer_id)
|
|
|
|
{
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
if(player->peer_id == peer_id)
|
|
|
|
return player;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-01-14 20:28:19 -05:00
|
|
|
Player * Environment::getPlayer(const char *name)
|
|
|
|
{
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
if(strcmp(player->getName(), name) == 0)
|
|
|
|
return player;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-22 19:49:57 -05:00
|
|
|
Player * Environment::getRandomConnectedPlayer()
|
|
|
|
{
|
|
|
|
core::list<Player*> connected_players = getPlayers(true);
|
|
|
|
u32 chosen_one = myrand() % connected_players.size();
|
|
|
|
u32 j = 0;
|
|
|
|
for(core::list<Player*>::Iterator
|
|
|
|
i = connected_players.begin();
|
|
|
|
i != connected_players.end(); i++)
|
|
|
|
{
|
|
|
|
if(j == chosen_one)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
return player;
|
|
|
|
}
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-23 04:10:09 -05:00
|
|
|
Player * Environment::getNearestConnectedPlayer(v3f pos)
|
|
|
|
{
|
|
|
|
core::list<Player*> connected_players = getPlayers(true);
|
|
|
|
f32 nearest_d = 0;
|
|
|
|
Player *nearest_player = NULL;
|
|
|
|
for(core::list<Player*>::Iterator
|
|
|
|
i = connected_players.begin();
|
|
|
|
i != connected_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
f32 d = player->getPosition().getDistanceFrom(pos);
|
|
|
|
if(d < nearest_d || nearest_player == NULL)
|
|
|
|
{
|
|
|
|
nearest_d = d;
|
|
|
|
nearest_player = player;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nearest_player;
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
core::list<Player*> Environment::getPlayers()
|
|
|
|
{
|
|
|
|
return m_players;
|
|
|
|
}
|
|
|
|
|
2011-01-14 20:28:19 -05:00
|
|
|
core::list<Player*> Environment::getPlayers(bool ignore_disconnected)
|
|
|
|
{
|
|
|
|
core::list<Player*> newlist;
|
|
|
|
for(core::list<Player*>::Iterator
|
|
|
|
i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
|
|
|
|
if(ignore_disconnected)
|
|
|
|
{
|
|
|
|
// Ignore disconnected players
|
|
|
|
if(player->peer_id == 0)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
newlist.push_back(player);
|
|
|
|
}
|
|
|
|
return newlist;
|
|
|
|
}
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
void Environment::printPlayers(std::ostream &o)
|
|
|
|
{
|
|
|
|
o<<"Players in environment:"<<std::endl;
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
o<<"Player peer_id="<<player->peer_id<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
/*void Environment::setDayNightRatio(u32 r)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
2011-05-22 10:00:09 -04:00
|
|
|
getDayNightRatio() = r;
|
|
|
|
}*/
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
u32 Environment::getDayNightRatio()
|
|
|
|
{
|
2011-05-22 10:00:09 -04:00
|
|
|
//return getDayNightRatio();
|
|
|
|
return time_to_daynight_ratio(m_time_of_day);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
ActiveBlockList
|
|
|
|
*/
|
|
|
|
|
|
|
|
void fillRadiusBlock(v3s16 p0, s16 r, core::map<v3s16, bool> &list)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
list[p] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ActiveBlockList::update(core::list<v3s16> &active_positions,
|
|
|
|
s16 radius,
|
|
|
|
core::map<v3s16, bool> &blocks_removed,
|
|
|
|
core::map<v3s16, bool> &blocks_added)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Create the new list
|
|
|
|
*/
|
|
|
|
core::map<v3s16, bool> newlist;
|
|
|
|
for(core::list<v3s16>::Iterator i = active_positions.begin();
|
|
|
|
i != active_positions.end(); i++)
|
|
|
|
{
|
|
|
|
fillRadiusBlock(*i, radius, newlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Find out which blocks on the old list are not on the new list
|
|
|
|
*/
|
|
|
|
// Go through old list
|
|
|
|
for(core::map<v3s16, bool>::Iterator i = m_list.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
v3s16 p = i.getNode()->getKey();
|
|
|
|
// If not on new list, it's been removed
|
|
|
|
if(newlist.find(p) == NULL)
|
|
|
|
blocks_removed.insert(p, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Find out which blocks on the new list are not on the old list
|
|
|
|
*/
|
|
|
|
// Go through new list
|
|
|
|
for(core::map<v3s16, bool>::Iterator i = newlist.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
v3s16 p = i.getNode()->getKey();
|
|
|
|
// If not on old list, it's been added
|
|
|
|
if(m_list.find(p) == NULL)
|
|
|
|
blocks_added.insert(p, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Update m_list
|
|
|
|
*/
|
|
|
|
m_list.clear();
|
|
|
|
for(core::map<v3s16, bool>::Iterator i = newlist.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
v3s16 p = i.getNode()->getKey();
|
|
|
|
m_list.insert(p, true);
|
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
ServerEnvironment
|
|
|
|
*/
|
|
|
|
|
2011-11-13 17:19:48 -05:00
|
|
|
ServerEnvironment::ServerEnvironment(ServerMap *map, lua_State *L,
|
2011-11-27 05:50:35 -05:00
|
|
|
IGameDef *gamedef, IBackgroundBlockEmerger *emerger):
|
2011-02-20 17:45:14 -05:00
|
|
|
m_map(map),
|
2011-11-11 12:33:17 -05:00
|
|
|
m_lua(L),
|
2011-11-13 17:19:48 -05:00
|
|
|
m_gamedef(gamedef),
|
2011-11-27 05:50:35 -05:00
|
|
|
m_emerger(emerger),
|
2011-04-10 08:16:27 -04:00
|
|
|
m_random_spawn_timer(3),
|
2011-05-22 10:00:09 -04:00
|
|
|
m_send_recommended_timer(0),
|
|
|
|
m_game_time(0),
|
|
|
|
m_game_time_fraction_counter(0)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ServerEnvironment::~ServerEnvironment()
|
|
|
|
{
|
2011-05-22 10:00:09 -04: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 07:28:58 -04:00
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
// Drop/delete map
|
|
|
|
m_map->drop();
|
2011-11-27 17:45:34 -05:00
|
|
|
|
|
|
|
// Delete ActiveBlockModifiers
|
2011-11-28 03:33:47 -05:00
|
|
|
for(core::list<ABMWithState>::Iterator
|
2011-11-27 17:45:34 -05:00
|
|
|
i = m_abms.begin(); i != m_abms.end(); i++){
|
2011-11-28 03:33:47 -05:00
|
|
|
delete i->abm;
|
2011-11-27 17:45:34 -05:00
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::serializePlayers(const std::string &savedir)
|
2011-01-27 18:38:16 -05:00
|
|
|
{
|
|
|
|
std::string players_path = savedir + "/players";
|
|
|
|
fs::CreateDir(players_path);
|
|
|
|
|
|
|
|
core::map<Player*, bool> saved_players;
|
|
|
|
|
|
|
|
std::vector<fs::DirListNode> player_files = fs::GetDirListing(players_path);
|
|
|
|
for(u32 i=0; i<player_files.size(); i++)
|
|
|
|
{
|
|
|
|
if(player_files[i].dir)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Full path to this file
|
|
|
|
std::string path = players_path + "/" + player_files[i].name;
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
//infostream<<"Checking player file "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
|
|
|
|
// Load player to see what is its name
|
2011-11-13 17:19:48 -05:00
|
|
|
ServerRemotePlayer testplayer(this);
|
2011-01-27 18:38:16 -05:00
|
|
|
{
|
|
|
|
// Open file and deserialize
|
|
|
|
std::ifstream is(path.c_str(), std::ios_base::binary);
|
|
|
|
if(is.good() == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Failed to read "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
2011-11-14 14:41:30 -05:00
|
|
|
testplayer.deSerialize(is);
|
2011-01-27 18:38:16 -05:00
|
|
|
}
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
//infostream<<"Loaded test player with name "<<testplayer.getName()<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
|
|
|
|
// Search for the player
|
|
|
|
std::string playername = testplayer.getName();
|
|
|
|
Player *player = getPlayer(playername.c_str());
|
|
|
|
if(player == NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Didn't find matching player, ignoring file "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
//infostream<<"Found matching player, overwriting."<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
|
|
|
|
// OK, found. Save player there.
|
|
|
|
{
|
|
|
|
// Open file and serialize
|
|
|
|
std::ofstream os(path.c_str(), std::ios_base::binary);
|
|
|
|
if(os.good() == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Failed to overwrite "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
player->serialize(os);
|
|
|
|
saved_players.insert(player, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
if(saved_players.find(player) != NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"Player "<<player->getName()
|
2011-01-28 17:48:54 -05:00
|
|
|
<<" was already saved."<<std::endl;*/
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
std::string playername = player->getName();
|
|
|
|
// Don't save unnamed player
|
|
|
|
if(playername == "")
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
//infostream<<"Not saving unnamed player."<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
Find a sane filename
|
|
|
|
*/
|
|
|
|
if(string_allowed(playername, PLAYERNAME_ALLOWED_CHARS) == false)
|
|
|
|
playername = "player";
|
|
|
|
std::string path = players_path + "/" + playername;
|
|
|
|
bool found = false;
|
|
|
|
for(u32 i=0; i<1000; i++)
|
|
|
|
{
|
|
|
|
if(fs::PathExists(path) == false)
|
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
path = players_path + "/" + playername + itos(i);
|
|
|
|
}
|
|
|
|
if(found == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Didn't find free file for player"<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"Saving player "<<player->getName()<<" to "
|
2011-01-28 17:48:54 -05:00
|
|
|
<<path<<std::endl;*/
|
2011-01-27 18:38:16 -05:00
|
|
|
// Open file and serialize
|
|
|
|
std::ofstream os(path.c_str(), std::ios_base::binary);
|
|
|
|
if(os.good() == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Failed to overwrite "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
player->serialize(os);
|
|
|
|
saved_players.insert(player, true);
|
|
|
|
}
|
|
|
|
}
|
2011-01-28 17:48:54 -05:00
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
//infostream<<"Saved "<<saved_players.size()<<" players."<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
void ServerEnvironment::deSerializePlayers(const std::string &savedir)
|
2011-01-27 18:38:16 -05:00
|
|
|
{
|
|
|
|
std::string players_path = savedir + "/players";
|
|
|
|
|
|
|
|
core::map<Player*, bool> saved_players;
|
|
|
|
|
|
|
|
std::vector<fs::DirListNode> player_files = fs::GetDirListing(players_path);
|
|
|
|
for(u32 i=0; i<player_files.size(); i++)
|
|
|
|
{
|
|
|
|
if(player_files[i].dir)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Full path to this file
|
|
|
|
std::string path = players_path + "/" + player_files[i].name;
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Checking player file "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
|
|
|
|
// Load player to see what is its name
|
2011-11-13 17:19:48 -05:00
|
|
|
ServerRemotePlayer testplayer(this);
|
2011-01-27 18:38:16 -05:00
|
|
|
{
|
|
|
|
// Open file and deserialize
|
|
|
|
std::ifstream is(path.c_str(), std::ios_base::binary);
|
|
|
|
if(is.good() == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Failed to read "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
2011-11-14 14:41:30 -05:00
|
|
|
testplayer.deSerialize(is);
|
2011-01-27 18:38:16 -05:00
|
|
|
}
|
|
|
|
|
2011-05-29 14:11:16 -04:00
|
|
|
if(!string_allowed(testplayer.getName(), PLAYERNAME_ALLOWED_CHARS))
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Not loading player with invalid name: "
|
2011-05-29 14:11:16 -04:00
|
|
|
<<testplayer.getName()<<std::endl;
|
|
|
|
}
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Loaded test player with name "<<testplayer.getName()
|
2011-05-29 14:11:16 -04:00
|
|
|
<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
|
|
|
|
// Search for the player
|
|
|
|
std::string playername = testplayer.getName();
|
|
|
|
Player *player = getPlayer(playername.c_str());
|
|
|
|
bool newplayer = false;
|
|
|
|
if(player == NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Is a new player"<<std::endl;
|
2011-11-13 17:19:48 -05:00
|
|
|
player = new ServerRemotePlayer(this);
|
2011-01-27 18:38:16 -05:00
|
|
|
newplayer = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load player
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Reading player "<<testplayer.getName()<<" from "
|
2011-01-27 18:38:16 -05:00
|
|
|
<<path<<std::endl;
|
|
|
|
// Open file and deserialize
|
|
|
|
std::ifstream is(path.c_str(), std::ios_base::binary);
|
|
|
|
if(is.good() == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"Failed to read "<<path<<std::endl;
|
2011-01-27 18:38:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
2011-11-14 14:41:30 -05:00
|
|
|
player->deSerialize(is);
|
2011-01-27 18:38:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if(newplayer)
|
|
|
|
addPlayer(player);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
void ServerEnvironment::saveMeta(const std::string &savedir)
|
|
|
|
{
|
|
|
|
std::string path = savedir + "/env_meta.txt";
|
|
|
|
|
|
|
|
// Open file and serialize
|
|
|
|
std::ofstream os(path.c_str(), std::ios_base::binary);
|
|
|
|
if(os.good() == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ServerEnvironment::saveMeta(): Failed to open "
|
2011-05-22 10:00:09 -04:00
|
|
|
<<path<<std::endl;
|
|
|
|
throw SerializationError("Couldn't save env meta");
|
|
|
|
}
|
|
|
|
|
|
|
|
Settings args;
|
|
|
|
args.setU64("game_time", m_game_time);
|
|
|
|
args.setU64("time_of_day", getTimeOfDay());
|
|
|
|
args.writeLines(os);
|
|
|
|
os<<"EnvArgsEnd\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::loadMeta(const std::string &savedir)
|
|
|
|
{
|
|
|
|
std::string path = savedir + "/env_meta.txt";
|
|
|
|
|
|
|
|
// Open file and deserialize
|
|
|
|
std::ifstream is(path.c_str(), std::ios_base::binary);
|
|
|
|
if(is.good() == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ServerEnvironment::loadMeta(): Failed to open "
|
2011-05-22 10:00:09 -04:00
|
|
|
<<path<<std::endl;
|
|
|
|
throw SerializationError("Couldn't load env meta");
|
|
|
|
}
|
|
|
|
|
|
|
|
Settings args;
|
|
|
|
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
if(is.eof())
|
|
|
|
throw SerializationError
|
|
|
|
("ServerEnvironment::loadMeta(): EnvArgsEnd not found");
|
|
|
|
std::string line;
|
|
|
|
std::getline(is, line);
|
|
|
|
std::string trimmedline = trim(line);
|
|
|
|
if(trimmedline == "EnvArgsEnd")
|
|
|
|
break;
|
|
|
|
args.parseConfigLine(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
try{
|
|
|
|
m_game_time = args.getU64("game_time");
|
|
|
|
}catch(SettingNotFoundException &e){
|
|
|
|
// Getting this is crucial, otherwise timestamps are useless
|
|
|
|
throw SerializationError("Couldn't load env meta game_time");
|
|
|
|
}
|
|
|
|
|
|
|
|
try{
|
|
|
|
m_time_of_day = args.getU64("time_of_day");
|
|
|
|
}catch(SettingNotFoundException &e){
|
|
|
|
// This is not as important
|
|
|
|
m_time_of_day = 9000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
struct ActiveABM
|
2011-04-21 12:35:17 -04:00
|
|
|
{
|
2011-11-27 17:45:34 -05:00
|
|
|
ActiveBlockModifier *abm;
|
|
|
|
int chance;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ABMHandler
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ServerEnvironment *m_env;
|
|
|
|
std::map<content_t, std::list<ActiveABM> > m_aabms;
|
|
|
|
public:
|
2011-11-28 03:33:47 -05:00
|
|
|
ABMHandler(core::list<ABMWithState> &abms,
|
|
|
|
float dtime_s, ServerEnvironment *env,
|
|
|
|
bool use_timers):
|
2011-11-27 17:45:34 -05:00
|
|
|
m_env(env)
|
|
|
|
{
|
|
|
|
if(dtime_s < 0.001)
|
|
|
|
return;
|
|
|
|
INodeDefManager *ndef = env->getGameDef()->ndef();
|
2011-11-28 03:33:47 -05:00
|
|
|
for(core::list<ABMWithState>::Iterator
|
2011-11-27 17:45:34 -05:00
|
|
|
i = abms.begin(); i != abms.end(); i++){
|
2011-11-28 03:33:47 -05:00
|
|
|
ActiveBlockModifier *abm = i->abm;
|
|
|
|
float trigger_interval = abm->getTriggerInterval();
|
|
|
|
if(trigger_interval < 0.001)
|
|
|
|
trigger_interval = 0.001;
|
|
|
|
if(use_timers){
|
|
|
|
i->timer += dtime_s;
|
|
|
|
if(i->timer < trigger_interval)
|
|
|
|
continue;
|
|
|
|
i->timer -= trigger_interval;
|
|
|
|
}
|
2011-11-27 17:45:34 -05:00
|
|
|
ActiveABM aabm;
|
|
|
|
aabm.abm = abm;
|
2011-11-28 03:33:47 -05:00
|
|
|
float intervals = dtime_s / trigger_interval;
|
2011-11-27 17:45:34 -05:00
|
|
|
float chance = abm->getTriggerChance();
|
|
|
|
if(chance == 0)
|
|
|
|
chance = 1;
|
2011-11-28 14:50:14 -05:00
|
|
|
aabm.chance = 1.0 / pow((float)1.0/chance, (float)intervals);
|
2011-11-27 17:45:34 -05:00
|
|
|
if(aabm.chance == 0)
|
|
|
|
aabm.chance = 1;
|
|
|
|
std::set<std::string> contents_s = abm->getTriggerContents();
|
|
|
|
for(std::set<std::string>::iterator
|
|
|
|
i = contents_s.begin(); i != contents_s.end(); i++){
|
|
|
|
content_t c = ndef->getId(*i);
|
|
|
|
if(c == CONTENT_IGNORE)
|
|
|
|
continue;
|
|
|
|
std::map<content_t, std::list<ActiveABM> >::iterator j;
|
|
|
|
j = m_aabms.find(c);
|
|
|
|
if(j == m_aabms.end()){
|
|
|
|
std::list<ActiveABM> aabmlist;
|
|
|
|
m_aabms[c] = aabmlist;
|
|
|
|
j = m_aabms.find(c);
|
|
|
|
}
|
|
|
|
j->second.push_back(aabm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void apply(MapBlock *block)
|
2011-04-21 12:35:17 -04:00
|
|
|
{
|
2011-11-28 03:33:47 -05:00
|
|
|
if(m_aabms.empty())
|
|
|
|
return;
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
ServerMap *map = &m_env->getServerMap();
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
std::map<content_t, std::list<ActiveABM> >::iterator j;
|
|
|
|
j = m_aabms.find(c);
|
|
|
|
if(j == m_aabms.end())
|
2011-04-21 12:35:17 -04:00
|
|
|
continue;
|
2011-11-27 17:45:34 -05:00
|
|
|
|
|
|
|
for(std::list<ActiveABM>::iterator
|
2011-11-29 10:09:29 -05:00
|
|
|
i = j->second.begin(); i != j->second.end(); i++)
|
|
|
|
{
|
2011-11-27 17:45:34 -05:00
|
|
|
if(myrand() % i->chance != 0)
|
|
|
|
continue;
|
2011-11-29 10:09:29 -05:00
|
|
|
|
|
|
|
// Find out how many objects the block contains
|
|
|
|
u32 active_object_count = block->m_static_objects.m_active.size();
|
|
|
|
// Find out how many objects this and all the neighbors contain
|
|
|
|
u32 active_object_count_wider = 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)
|
|
|
|
continue;
|
|
|
|
active_object_count_wider +=
|
|
|
|
block2->m_static_objects.m_active.size()
|
|
|
|
+ block2->m_static_objects.m_stored.size();
|
|
|
|
}
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
// Call all the trigger variations
|
|
|
|
i->abm->trigger(m_env, p, n);
|
|
|
|
i->abm->trigger(m_env, p, n,
|
|
|
|
active_object_count, active_object_count_wider);
|
2011-04-21 12:35:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-27 17:45:34 -05:00
|
|
|
};
|
2011-04-21 12:35:17 -04:00
|
|
|
|
2011-06-24 21:25:14 -04:00
|
|
|
void ServerEnvironment::activateBlock(MapBlock *block, u32 additional_dtime)
|
|
|
|
{
|
|
|
|
// Get time difference
|
|
|
|
u32 dtime_s = 0;
|
|
|
|
u32 stamp = block->getTimestamp();
|
|
|
|
if(m_game_time > stamp && stamp != BLOCK_TIMESTAMP_UNDEFINED)
|
|
|
|
dtime_s = m_game_time - block->getTimestamp();
|
|
|
|
dtime_s += additional_dtime;
|
|
|
|
|
2011-11-28 07:54:39 -05:00
|
|
|
/*infostream<<"ServerEnvironment::activateBlock(): block timestamp: "
|
|
|
|
<<stamp<<", game time: "<<m_game_time<<std::endl;*/
|
2011-11-27 17:45:34 -05:00
|
|
|
|
|
|
|
// Set current time as timestamp
|
|
|
|
block->setTimestampNoChangedFlag(m_game_time);
|
2011-06-24 21:25:14 -04:00
|
|
|
|
2011-11-28 07:54:39 -05:00
|
|
|
/*infostream<<"ServerEnvironment::activateBlock(): block is "
|
|
|
|
<<dtime_s<<" seconds old."<<std::endl;*/
|
2011-06-24 21:25:14 -04:00
|
|
|
|
|
|
|
// Activate stored objects
|
|
|
|
activateObjects(block);
|
|
|
|
|
|
|
|
// Run node metadata
|
2011-11-13 05:54:33 -05:00
|
|
|
bool changed = block->m_node_metadata->step((float)dtime_s);
|
2011-06-24 21:25:14 -04:00
|
|
|
if(changed)
|
|
|
|
{
|
|
|
|
MapEditEvent event;
|
|
|
|
event.type = MEET_BLOCK_NODE_METADATA_CHANGED;
|
|
|
|
event.p = block->getPos();
|
|
|
|
m_map->dispatchEvent(&event);
|
|
|
|
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"node metadata modified in activateBlock");
|
2011-06-24 21:25:14 -04:00
|
|
|
}
|
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
/* Handle ActiveBlockModifiers */
|
2011-11-28 03:33:47 -05:00
|
|
|
ABMHandler abmhandler(m_abms, dtime_s, this, false);
|
2011-11-27 17:45:34 -05:00
|
|
|
abmhandler.apply(block);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerEnvironment::addActiveBlockModifier(ActiveBlockModifier *abm)
|
|
|
|
{
|
2011-11-28 03:33:47 -05:00
|
|
|
m_abms.push_back(ABMWithState(abm));
|
2011-06-24 21:25:14 -04:00
|
|
|
}
|
|
|
|
|
2011-10-17 17:01:50 -04:00
|
|
|
void ServerEnvironment::clearAllObjects()
|
|
|
|
{
|
|
|
|
infostream<<"ServerEnvironment::clearAllObjects(): "
|
|
|
|
<<"Removing all active objects"<<std::endl;
|
|
|
|
core::list<u16> objects_to_remove;
|
|
|
|
for(core::map<u16, ServerActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
ServerActiveObject* obj = i.getNode()->getValue();
|
|
|
|
u16 id = i.getNode()->getKey();
|
|
|
|
v3f objectpos = obj->getBasePosition();
|
|
|
|
// Delete static object if block is loaded
|
|
|
|
if(obj->m_static_exists){
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(obj->m_static_block);
|
|
|
|
if(block){
|
|
|
|
block->m_static_objects.remove(id);
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"clearAllObjects");
|
2011-10-17 17:01:50 -04:00
|
|
|
obj->m_static_exists = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If known by some client, don't delete immediately
|
|
|
|
if(obj->m_known_by_count > 0){
|
|
|
|
obj->m_pending_deactivation = true;
|
|
|
|
obj->m_removed = true;
|
|
|
|
continue;
|
|
|
|
}
|
2011-11-11 12:33:17 -05:00
|
|
|
// Deregister in scripting api
|
|
|
|
scriptapi_rm_object_reference(m_lua, obj);
|
2011-10-17 17:01:50 -04:00
|
|
|
// Delete active object
|
|
|
|
delete obj;
|
|
|
|
// Id to be removed from m_active_objects
|
|
|
|
objects_to_remove.push_back(id);
|
|
|
|
}
|
|
|
|
// Remove references from m_active_objects
|
|
|
|
for(core::list<u16>::Iterator i = objects_to_remove.begin();
|
|
|
|
i != objects_to_remove.end(); i++)
|
|
|
|
{
|
|
|
|
m_active_objects.remove(*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
core::list<v3s16> loadable_blocks;
|
|
|
|
infostream<<"ServerEnvironment::clearAllObjects(): "
|
|
|
|
<<"Listing all loadable blocks"<<std::endl;
|
|
|
|
m_map->listAllLoadableBlocks(loadable_blocks);
|
|
|
|
infostream<<"ServerEnvironment::clearAllObjects(): "
|
|
|
|
<<"Done listing all loadable blocks: "
|
|
|
|
<<loadable_blocks.size()
|
|
|
|
<<", now clearing"<<std::endl;
|
|
|
|
u32 report_interval = loadable_blocks.size() / 10;
|
|
|
|
u32 num_blocks_checked = 0;
|
|
|
|
u32 num_blocks_cleared = 0;
|
|
|
|
u32 num_objs_cleared = 0;
|
|
|
|
for(core::list<v3s16>::Iterator i = loadable_blocks.begin();
|
|
|
|
i != loadable_blocks.end(); i++)
|
|
|
|
{
|
|
|
|
v3s16 p = *i;
|
|
|
|
MapBlock *block = m_map->emergeBlock(p, false);
|
|
|
|
if(!block){
|
|
|
|
errorstream<<"ServerEnvironment::clearAllObjects(): "
|
|
|
|
<<"Failed to emerge block "<<PP(p)<<std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
u32 num_stored = block->m_static_objects.m_stored.size();
|
|
|
|
u32 num_active = block->m_static_objects.m_active.size();
|
|
|
|
if(num_stored != 0 || num_active != 0){
|
|
|
|
block->m_static_objects.m_stored.clear();
|
|
|
|
block->m_static_objects.m_active.clear();
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"clearAllObjects");
|
2011-10-17 17:01:50 -04:00
|
|
|
num_objs_cleared += num_stored + num_active;
|
|
|
|
num_blocks_cleared++;
|
|
|
|
}
|
|
|
|
num_blocks_checked++;
|
|
|
|
|
|
|
|
if(num_blocks_checked % report_interval == 0){
|
|
|
|
float percent = 100.0 * (float)num_blocks_checked /
|
|
|
|
loadable_blocks.size();
|
|
|
|
infostream<<"ServerEnvironment::clearAllObjects(): "
|
|
|
|
<<"Cleared "<<num_objs_cleared<<" objects"
|
|
|
|
<<" in "<<num_blocks_cleared<<" blocks ("
|
|
|
|
<<percent<<"%)"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
infostream<<"ServerEnvironment::clearAllObjects(): "
|
|
|
|
<<"Finished: Cleared "<<num_objs_cleared<<" objects"
|
|
|
|
<<" in "<<num_blocks_cleared<<" blocks"<<std::endl;
|
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
void ServerEnvironment::step(float dtime)
|
|
|
|
{
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
2011-04-10 16:29:36 -04:00
|
|
|
|
|
|
|
//TimeTaker timer("ServerEnv step");
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
// Get some settings
|
2011-10-12 06:53:38 -04:00
|
|
|
bool footprints = g_settings->getBool("footprints");
|
2011-02-20 17:45:14 -05:00
|
|
|
|
2011-05-22 10:00:09 -04: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;
|
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
/*
|
|
|
|
Handle players
|
|
|
|
*/
|
|
|
|
{
|
2011-10-16 15:39:35 -04:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: handle players avg", SPT_AVG);
|
2011-10-16 14:16:44 -04:00
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
2011-10-16 14:16:44 -04:00
|
|
|
Player *player = *i;
|
|
|
|
|
|
|
|
// Ignore disconnected players
|
|
|
|
if(player->peer_id == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
v3f playerpos = player->getPosition();
|
|
|
|
|
|
|
|
// Move
|
|
|
|
player->move(dtime, *m_map, 100*BS);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Add footsteps to grass
|
|
|
|
*/
|
|
|
|
if(footprints)
|
|
|
|
{
|
|
|
|
// Get node that is at BS/4 under player
|
|
|
|
v3s16 bottompos = floatToInt(playerpos + v3f(0,-BS/4,0), BS);
|
|
|
|
try{
|
|
|
|
MapNode n = m_map->getNode(bottompos);
|
2011-11-16 07:08:31 -05:00
|
|
|
if(n.getContent() == LEGN(m_gamedef->ndef(), "CONTENT_GRASS"))
|
2011-10-16 14:16:44 -04:00
|
|
|
{
|
2011-11-16 07:08:31 -05:00
|
|
|
n.setContent(LEGN(m_gamedef->ndef(), "CONTENT_GRASS_FOOTSTEPS"));
|
2011-10-16 14:16:44 -04:00
|
|
|
m_map->setNode(bottompos, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(InvalidPositionException &e)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-21 12:35:17 -04:00
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
/*
|
|
|
|
Manage active block list
|
|
|
|
*/
|
|
|
|
if(m_active_blocks_management_interval.step(dtime, 2.0))
|
|
|
|
{
|
2011-10-16 15:39:35 -04:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: manage act. block list avg /2s", SPT_AVG);
|
2011-05-22 10:00:09 -04:00
|
|
|
/*
|
|
|
|
Get player block positions
|
|
|
|
*/
|
|
|
|
core::list<v3s16> players_blockpos;
|
|
|
|
for(core::list<Player*>::Iterator
|
|
|
|
i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
// Ignore disconnected players
|
|
|
|
if(player->peer_id == 0)
|
|
|
|
continue;
|
|
|
|
v3s16 blockpos = getNodeBlockPos(
|
|
|
|
floatToInt(player->getPosition(), BS));
|
|
|
|
players_blockpos.push_back(blockpos);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Update list of active blocks, collecting changes
|
|
|
|
*/
|
2011-10-14 19:28:57 -04:00
|
|
|
const s16 active_block_range = g_settings->getS16("active_block_range");
|
2011-05-22 10:00:09 -04:00
|
|
|
core::map<v3s16, bool> blocks_removed;
|
|
|
|
core::map<v3s16, bool> blocks_added;
|
|
|
|
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);
|
|
|
|
|
|
|
|
for(core::map<v3s16, bool>::Iterator
|
|
|
|
i = blocks_removed.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
v3s16 p = i.getNode()->getKey();
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"Server: Block ("<<p.X<<","<<p.Y<<","<<p.Z
|
2011-05-22 10:00:09 -04:00
|
|
|
<<") became inactive"<<std::endl;*/
|
|
|
|
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
|
|
|
if(block==NULL)
|
|
|
|
continue;
|
|
|
|
|
2011-06-05 11:57:36 -04:00
|
|
|
// Set current time as timestamp (and let it set ChangedFlag)
|
2011-05-22 10:00:09 -04:00
|
|
|
block->setTimestamp(m_game_time);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Handle added blocks
|
|
|
|
*/
|
|
|
|
|
|
|
|
for(core::map<v3s16, bool>::Iterator
|
|
|
|
i = blocks_added.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
v3s16 p = i.getNode()->getKey();
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"Server: Block ("<<p.X<<","<<p.Y<<","<<p.Z
|
2011-05-22 10:00:09 -04:00
|
|
|
<<") became active"<<std::endl;*/
|
|
|
|
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
2011-11-27 05:50:35 -05:00
|
|
|
if(block==NULL){
|
|
|
|
// Block needs to be fetched first
|
|
|
|
m_emerger->queueBlockEmerge(p, false);
|
|
|
|
m_active_blocks.m_list.remove(p);
|
2011-05-22 10:00:09 -04:00
|
|
|
continue;
|
2011-11-27 05:50:35 -05:00
|
|
|
}
|
2011-06-05 11:57:36 -04:00
|
|
|
|
2011-06-24 21:25:14 -04:00
|
|
|
activateBlock(block);
|
2011-05-22 10:00:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Mess around in active blocks
|
|
|
|
*/
|
2011-05-31 13:02:55 -04:00
|
|
|
if(m_active_blocks_nodemetadata_interval.step(dtime, 1.0))
|
2011-05-22 10:00:09 -04:00
|
|
|
{
|
2011-10-16 15:39:35 -04:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: mess in act. blocks avg /1s", SPT_AVG);
|
2011-10-16 14:16:44 -04:00
|
|
|
|
2011-05-31 13:02:55 -04:00
|
|
|
float dtime = 1.0;
|
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
for(core::map<v3s16, bool>::Iterator
|
|
|
|
i = m_active_blocks.m_list.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
v3s16 p = i.getNode()->getKey();
|
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"Server: Block ("<<p.X<<","<<p.Y<<","<<p.Z
|
2011-05-22 10:00:09 -04:00
|
|
|
<<") being handled"<<std::endl;*/
|
|
|
|
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
|
|
|
if(block==NULL)
|
|
|
|
continue;
|
2011-06-26 14:53:11 -04:00
|
|
|
|
|
|
|
// Reset block usage timer
|
|
|
|
block->resetUsageTimer();
|
2011-05-22 10:00:09 -04:00
|
|
|
|
|
|
|
// Set current time as timestamp
|
2011-06-05 11:57:36 -04:00
|
|
|
block->setTimestampNoChangedFlag(m_game_time);
|
2011-11-27 17:45:34 -05: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,
|
|
|
|
"Timestamp older than 60s (step)");
|
2011-05-31 13:02:55 -04:00
|
|
|
|
|
|
|
// Run node metadata
|
2011-11-13 05:54:33 -05:00
|
|
|
bool changed = block->m_node_metadata->step(dtime);
|
2011-05-31 13:02:55 -04:00
|
|
|
if(changed)
|
|
|
|
{
|
|
|
|
MapEditEvent event;
|
|
|
|
event.type = MEET_BLOCK_NODE_METADATA_CHANGED;
|
|
|
|
event.p = p;
|
|
|
|
m_map->dispatchEvent(&event);
|
2011-06-05 11:57:36 -04:00
|
|
|
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"node metadata modified in step");
|
2011-05-31 13:02:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-16 14:16:44 -04:00
|
|
|
|
2011-11-28 03:33:47 -05:00
|
|
|
const float abm_interval = 1.0;
|
2011-11-27 17:45:34 -05:00
|
|
|
if(m_active_block_modifier_interval.step(dtime, abm_interval))
|
2011-05-31 13:02:55 -04:00
|
|
|
{
|
2011-11-28 03:33:47 -05:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: modify in blocks avg /1s", SPT_AVG);
|
2011-11-26 05:34:52 -05:00
|
|
|
TimeTaker timer("modify in active blocks");
|
2011-07-30 10:51:21 -04:00
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
// Initialize handling of ActiveBlockModifiers
|
2011-11-28 03:33:47 -05:00
|
|
|
ABMHandler abmhandler(m_abms, abm_interval, this, true);
|
2011-11-27 17:45:34 -05:00
|
|
|
|
2011-05-31 13:02:55 -04:00
|
|
|
for(core::map<v3s16, bool>::Iterator
|
|
|
|
i = m_active_blocks.m_list.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
v3s16 p = i.getNode()->getKey();
|
2011-05-22 10:00:09 -04:00
|
|
|
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"Server: Block ("<<p.X<<","<<p.Y<<","<<p.Z
|
2011-05-31 13:02:55 -04:00
|
|
|
<<") being handled"<<std::endl;*/
|
|
|
|
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(p);
|
|
|
|
if(block==NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Set current time as timestamp
|
2011-06-05 11:57:36 -04:00
|
|
|
block->setTimestampNoChangedFlag(m_game_time);
|
2011-05-31 13:02:55 -04:00
|
|
|
|
2011-11-27 17:45:34 -05:00
|
|
|
/* Handle ActiveBlockModifiers */
|
|
|
|
abmhandler.apply(block);
|
2011-05-22 10:00:09 -04:00
|
|
|
}
|
2011-11-26 05:34:52 -05:00
|
|
|
|
|
|
|
u32 time_ms = timer.stop(true);
|
|
|
|
u32 max_time_ms = 200;
|
|
|
|
if(time_ms > max_time_ms){
|
|
|
|
infostream<<"WARNING: active block modifiers took "
|
|
|
|
<<time_ms<<"ms (longer than "
|
|
|
|
<<max_time_ms<<"ms)"<<std::endl;
|
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
}
|
|
|
|
|
2011-11-12 10:46:06 -05:00
|
|
|
/*
|
|
|
|
Step script environment (run global on_step())
|
|
|
|
*/
|
|
|
|
scriptapi_environment_step(m_lua, dtime);
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
/*
|
|
|
|
Step active objects
|
|
|
|
*/
|
2011-04-10 08:16:27 -04:00
|
|
|
{
|
2011-10-16 15:39:35 -04:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: step act. objs avg", SPT_AVG);
|
2011-04-21 12:35:17 -04:00
|
|
|
//TimeTaker timer("Step active objects");
|
2011-10-16 15:39:35 -04:00
|
|
|
|
|
|
|
g_profiler->avg("SEnv: num of objects", m_active_objects.size());
|
2011-05-22 10:00:09 -04:00
|
|
|
|
|
|
|
// This helps the objects to send data at the same time
|
2011-04-21 12:35:17 -04:00
|
|
|
bool send_recommended = false;
|
|
|
|
m_send_recommended_timer += dtime;
|
2011-11-12 06:59:56 -05:00
|
|
|
if(m_send_recommended_timer > getSendRecommendedInterval())
|
2011-04-21 12:35:17 -04:00
|
|
|
{
|
2011-11-12 06:59:56 -05:00
|
|
|
m_send_recommended_timer -= getSendRecommendedInterval();
|
2011-04-21 12:35:17 -04:00
|
|
|
send_recommended = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(core::map<u16, ServerActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
ServerActiveObject* obj = i.getNode()->getValue();
|
2011-10-16 04:52:33 -04:00
|
|
|
// Remove non-peaceful mobs on peaceful mode
|
|
|
|
if(g_settings->getBool("only_peaceful_mobs")){
|
|
|
|
if(!obj->isPeaceful())
|
|
|
|
obj->m_removed = true;
|
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
// Don't step if is to be removed or stored statically
|
|
|
|
if(obj->m_removed || obj->m_pending_deactivation)
|
|
|
|
continue;
|
2011-06-26 08:48:56 -04:00
|
|
|
// Step object
|
|
|
|
obj->step(dtime, send_recommended);
|
|
|
|
// Read messages from object
|
|
|
|
while(obj->m_messages_out.size() > 0)
|
|
|
|
{
|
|
|
|
m_active_object_messages.push_back(
|
|
|
|
obj->m_messages_out.pop_front());
|
|
|
|
}
|
2011-04-21 12:35:17 -04:00
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
Manage active objects
|
|
|
|
*/
|
2011-04-10 16:14:41 -04:00
|
|
|
if(m_object_management_interval.step(dtime, 0.5))
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
2011-10-16 15:39:35 -04:00
|
|
|
ScopeProfiler sp(g_profiler, "SEnv: remove removed objs avg /.5s", SPT_AVG);
|
2011-04-10 16:14:41 -04:00
|
|
|
/*
|
|
|
|
Remove objects that satisfy (m_removed && m_known_by_count==0)
|
|
|
|
*/
|
2011-05-21 07:28:58 -04:00
|
|
|
removeRemovedObjects();
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ServerActiveObject* ServerEnvironment::getActiveObject(u16 id)
|
|
|
|
{
|
|
|
|
core::map<u16, ServerActiveObject*>::Node *n;
|
|
|
|
n = m_active_objects.find(id);
|
|
|
|
if(n == NULL)
|
|
|
|
return NULL;
|
|
|
|
return n->getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isFreeServerActiveObjectId(u16 id,
|
|
|
|
core::map<u16, ServerActiveObject*> &objects)
|
|
|
|
{
|
|
|
|
if(id == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for(core::map<u16, ServerActiveObject*>::Iterator
|
|
|
|
i = objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
if(i.getNode()->getKey() == id)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 getFreeServerActiveObjectId(
|
|
|
|
core::map<u16, ServerActiveObject*> &objects)
|
|
|
|
{
|
|
|
|
u16 new_id = 1;
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
if(isFreeServerActiveObjectId(new_id, objects))
|
|
|
|
return new_id;
|
|
|
|
|
|
|
|
if(new_id == 65535)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
new_id++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 ServerEnvironment::addActiveObject(ServerActiveObject *object)
|
|
|
|
{
|
|
|
|
assert(object);
|
2011-06-05 11:57:36 -04:00
|
|
|
u16 id = addActiveObjectRaw(object, true);
|
|
|
|
return id;
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
|
2011-10-14 19:28:57 -04:00
|
|
|
bool ServerEnvironment::addActiveObjectAsStatic(ServerActiveObject *obj)
|
|
|
|
{
|
|
|
|
assert(obj);
|
|
|
|
|
|
|
|
v3f objectpos = obj->getBasePosition();
|
|
|
|
|
|
|
|
// The block in which the object resides in
|
|
|
|
v3s16 blockpos_o = getNodeBlockPos(floatToInt(objectpos, BS));
|
|
|
|
|
|
|
|
/*
|
|
|
|
Update the static data
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Create new static object
|
|
|
|
std::string staticdata = obj->getStaticData();
|
|
|
|
StaticObject s_obj(obj->getType(), objectpos, staticdata);
|
|
|
|
// Add to the block where the object is located in
|
|
|
|
v3s16 blockpos = getNodeBlockPos(floatToInt(objectpos, BS));
|
|
|
|
// Get or generate the block
|
|
|
|
MapBlock *block = m_map->emergeBlock(blockpos);
|
|
|
|
|
|
|
|
bool succeeded = false;
|
|
|
|
|
|
|
|
if(block)
|
|
|
|
{
|
|
|
|
block->m_static_objects.insert(0, s_obj);
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_AT_UNLOAD,
|
|
|
|
"addActiveObjectAsStatic");
|
2011-10-14 19:28:57 -04:00
|
|
|
succeeded = true;
|
|
|
|
}
|
|
|
|
else{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ServerEnvironment::addActiveObjectAsStatic: "
|
2011-10-14 19:28:57 -04:00
|
|
|
<<"Could not find or generate "
|
|
|
|
<<"a block for storing static object"<<std::endl;
|
|
|
|
succeeded = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete obj;
|
|
|
|
|
|
|
|
return succeeded;
|
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
/*
|
|
|
|
Finds out what new objects have been added to
|
|
|
|
inside a radius around a position
|
|
|
|
*/
|
|
|
|
void ServerEnvironment::getAddedActiveObjects(v3s16 pos, s16 radius,
|
|
|
|
core::map<u16, bool> ¤t_objects,
|
|
|
|
core::map<u16, bool> &added_objects)
|
|
|
|
{
|
|
|
|
v3f pos_f = intToFloat(pos, BS);
|
|
|
|
f32 radius_f = radius * BS;
|
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
for(core::map<u16, ServerActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
u16 id = i.getNode()->getKey();
|
|
|
|
// Get object
|
|
|
|
ServerActiveObject *object = i.getNode()->getValue();
|
|
|
|
if(object == NULL)
|
|
|
|
continue;
|
|
|
|
// Discard if removed
|
|
|
|
if(object->m_removed)
|
|
|
|
continue;
|
|
|
|
// Discard if too far
|
|
|
|
f32 distance_f = object->getBasePosition().getDistanceFrom(pos_f);
|
|
|
|
if(distance_f > radius_f)
|
|
|
|
continue;
|
|
|
|
// Discard if already on current_objects
|
|
|
|
core::map<u16, bool>::Node *n;
|
|
|
|
n = current_objects.find(id);
|
|
|
|
if(n != NULL)
|
|
|
|
continue;
|
|
|
|
// Add to added_objects
|
|
|
|
added_objects.insert(id, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Finds out what objects have been removed from
|
|
|
|
inside a radius around a position
|
|
|
|
*/
|
|
|
|
void ServerEnvironment::getRemovedActiveObjects(v3s16 pos, s16 radius,
|
|
|
|
core::map<u16, bool> ¤t_objects,
|
|
|
|
core::map<u16, bool> &removed_objects)
|
|
|
|
{
|
|
|
|
v3f pos_f = intToFloat(pos, BS);
|
|
|
|
f32 radius_f = radius * BS;
|
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
for(core::map<u16, bool>::Iterator
|
|
|
|
i = current_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
u16 id = i.getNode()->getKey();
|
|
|
|
ServerActiveObject *object = getActiveObject(id);
|
|
|
|
if(object == NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ServerEnvironment::getRemovedActiveObjects():"
|
2011-02-20 17:45:14 -05:00
|
|
|
<<" object in current_objects is NULL"<<std::endl;
|
|
|
|
}
|
|
|
|
else if(object->m_removed == false)
|
|
|
|
{
|
|
|
|
f32 distance_f = object->getBasePosition().getDistanceFrom(pos_f);
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"removed == false"
|
2011-02-20 17:45:14 -05:00
|
|
|
<<"distance_f = "<<distance_f
|
|
|
|
<<", radius_f = "<<radius_f<<std::endl;*/
|
|
|
|
if(distance_f < radius_f)
|
|
|
|
{
|
|
|
|
// Not removed
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
removed_objects.insert(id, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ActiveObjectMessage ServerEnvironment::getActiveObjectMessage()
|
|
|
|
{
|
|
|
|
if(m_active_object_messages.size() == 0)
|
|
|
|
return ActiveObjectMessage(0);
|
|
|
|
|
|
|
|
return m_active_object_messages.pop_front();
|
|
|
|
}
|
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
/*
|
|
|
|
************ Private methods *************
|
|
|
|
*/
|
|
|
|
|
2011-06-05 11:57:36 -04:00
|
|
|
u16 ServerEnvironment::addActiveObjectRaw(ServerActiveObject *object,
|
|
|
|
bool set_changed)
|
|
|
|
{
|
|
|
|
assert(object);
|
2011-10-17 03:47:06 -04:00
|
|
|
if(object->getId() == 0){
|
2011-06-05 11:57:36 -04:00
|
|
|
u16 new_id = getFreeServerActiveObjectId(m_active_objects);
|
|
|
|
if(new_id == 0)
|
|
|
|
{
|
2011-10-17 03:47:06 -04:00
|
|
|
errorstream<<"ServerEnvironment::addActiveObjectRaw(): "
|
2011-06-05 11:57:36 -04:00
|
|
|
<<"no free ids available"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
object->setId(new_id);
|
|
|
|
}
|
2011-10-17 03:47:06 -04:00
|
|
|
else{
|
|
|
|
verbosestream<<"ServerEnvironment::addActiveObjectRaw(): "
|
|
|
|
<<"supplied with id "<<object->getId()<<std::endl;
|
|
|
|
}
|
2011-06-05 11:57:36 -04:00
|
|
|
if(isFreeServerActiveObjectId(object->getId(), m_active_objects) == false)
|
|
|
|
{
|
2011-10-17 03:47:06 -04:00
|
|
|
errorstream<<"ServerEnvironment::addActiveObjectRaw(): "
|
2011-06-05 11:57:36 -04:00
|
|
|
<<"id is not free ("<<object->getId()<<")"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"ServerEnvironment::addActiveObjectRaw(): "
|
2011-06-05 11:57:36 -04:00
|
|
|
<<"added (id="<<object->getId()<<")"<<std::endl;*/
|
|
|
|
|
|
|
|
m_active_objects.insert(object->getId(), object);
|
2011-10-17 03:47:06 -04:00
|
|
|
|
|
|
|
verbosestream<<"ServerEnvironment::addActiveObjectRaw(): "
|
|
|
|
<<"Added id="<<object->getId()<<"; there are now "
|
2011-10-17 04:52:38 -04:00
|
|
|
<<m_active_objects.size()<<" active objects."
|
2011-10-17 03:47:06 -04:00
|
|
|
<<std::endl;
|
|
|
|
|
2011-06-05 11:57:36 -04:00
|
|
|
// 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));
|
|
|
|
MapBlock *block = m_map->getBlockNoCreateNoEx(blockpos);
|
|
|
|
if(block)
|
|
|
|
{
|
|
|
|
block->m_static_objects.m_active.insert(object->getId(), s_obj);
|
|
|
|
object->m_static_exists = true;
|
|
|
|
object->m_static_block = blockpos;
|
|
|
|
|
|
|
|
if(set_changed)
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"addActiveObjectRaw");
|
2011-06-05 11:57:36 -04:00
|
|
|
}
|
|
|
|
else{
|
2011-10-17 04:52:38 -04:00
|
|
|
errorstream<<"ServerEnvironment::addActiveObjectRaw(): "
|
|
|
|
<<"could not find block for storing id="<<object->getId()
|
|
|
|
<<" statically"<<std::endl;
|
2011-06-05 11:57:36 -04:00
|
|
|
}
|
2011-11-11 12:33:17 -05:00
|
|
|
|
2011-11-11 19:25:30 -05:00
|
|
|
// Register reference in scripting api (must be done before post-init)
|
|
|
|
scriptapi_add_object_reference(m_lua, object);
|
2011-11-11 12:33:17 -05:00
|
|
|
// Post-initialize object
|
2011-11-13 17:19:48 -05:00
|
|
|
object->addedToEnvironment();
|
2011-06-05 11:57:36 -04:00
|
|
|
|
|
|
|
return object->getId();
|
|
|
|
}
|
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
/*
|
|
|
|
Remove objects that satisfy (m_removed && m_known_by_count==0)
|
|
|
|
*/
|
|
|
|
void ServerEnvironment::removeRemovedObjects()
|
|
|
|
{
|
|
|
|
core::list<u16> objects_to_remove;
|
|
|
|
for(core::map<u16, ServerActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
u16 id = i.getNode()->getKey();
|
|
|
|
ServerActiveObject* obj = i.getNode()->getValue();
|
|
|
|
// This shouldn't happen but check it
|
|
|
|
if(obj == NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"NULL object found in ServerEnvironment"
|
2011-05-21 07:28:58 -04: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 10:00:09 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
We will delete objects that are marked as removed or thatare
|
|
|
|
waiting for deletion after deactivation
|
|
|
|
*/
|
|
|
|
if(obj->m_removed == false && obj->m_pending_deactivation == false)
|
2011-05-21 07:28:58 -04:00
|
|
|
continue;
|
2011-05-22 10:00:09 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
Delete static data from block if is marked as removed
|
|
|
|
*/
|
|
|
|
if(obj->m_static_exists && obj->m_removed)
|
2011-05-21 07:28:58 -04:00
|
|
|
{
|
2011-10-17 13:19:37 -04:00
|
|
|
MapBlock *block = m_map->emergeBlock(obj->m_static_block);
|
2011-05-21 07:28:58 -04:00
|
|
|
if(block)
|
|
|
|
{
|
|
|
|
block->m_static_objects.remove(id);
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"removeRemovedObjects");
|
2011-10-17 13:19:37 -04:00
|
|
|
obj->m_static_exists = false;
|
2011-05-21 07:28:58 -04:00
|
|
|
}
|
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
// If m_known_by_count > 0, don't actually remove.
|
|
|
|
if(obj->m_known_by_count > 0)
|
|
|
|
continue;
|
2011-05-22 10:00:09 -04:00
|
|
|
|
2011-11-11 12:33:17 -05:00
|
|
|
// Deregister in scripting api
|
|
|
|
scriptapi_rm_object_reference(m_lua, obj);
|
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
// Delete
|
|
|
|
delete obj;
|
|
|
|
// Id to be removed from m_active_objects
|
|
|
|
objects_to_remove.push_back(id);
|
|
|
|
}
|
|
|
|
// Remove references from m_active_objects
|
|
|
|
for(core::list<u16>::Iterator i = objects_to_remove.begin();
|
|
|
|
i != objects_to_remove.end(); i++)
|
|
|
|
{
|
|
|
|
m_active_objects.remove(*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 04:52:38 -04: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 07:28:58 -04:00
|
|
|
/*
|
|
|
|
Convert stored objects from blocks near the players to active.
|
|
|
|
*/
|
2011-05-22 10:00:09 -04:00
|
|
|
void ServerEnvironment::activateObjects(MapBlock *block)
|
2011-05-21 07:28:58 -04:00
|
|
|
{
|
2011-05-22 10:00:09 -04:00
|
|
|
if(block==NULL)
|
|
|
|
return;
|
|
|
|
// Ignore if no stored objects (to not set changed flag)
|
|
|
|
if(block->m_static_objects.m_stored.size() == 0)
|
|
|
|
return;
|
2011-10-17 03:47:06 -04:00
|
|
|
verbosestream<<"ServerEnvironment::activateObjects(): "
|
|
|
|
<<"activating objects of block "<<PP(block->getPos())
|
|
|
|
<<" ("<<block->m_static_objects.m_stored.size()
|
|
|
|
<<" objects)"<<std::endl;
|
2011-10-17 13:57:58 -04:00
|
|
|
bool large_amount = (block->m_static_objects.m_stored.size() > 49);
|
2011-10-17 04:52:38 -04:00
|
|
|
if(large_amount){
|
|
|
|
errorstream<<"suspiciously large amount of objects detected: "
|
|
|
|
<<block->m_static_objects.m_stored.size()<<" in "
|
|
|
|
<<PP(block->getPos())
|
2011-10-17 13:57:58 -04:00
|
|
|
<<"; removing all of them."<<std::endl;
|
|
|
|
// Clear stored list
|
|
|
|
block->m_static_objects.m_stored.clear();
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"stored list cleared in activateObjects due to "
|
|
|
|
"large amount of objects");
|
2011-10-17 04:52:38 -04:00
|
|
|
return;
|
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
// A list for objects that couldn't be converted to static for some
|
|
|
|
// reason. They will be stored back.
|
|
|
|
core::list<StaticObject> new_stored;
|
|
|
|
// Loop through stored static objects
|
|
|
|
for(core::list<StaticObject>::Iterator
|
|
|
|
i = block->m_static_objects.m_stored.begin();
|
|
|
|
i != block->m_static_objects.m_stored.end(); i++)
|
2011-05-21 07:28:58 -04:00
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
/*infostream<<"Server: Creating an active object from "
|
2011-05-22 10:00:09 -04:00
|
|
|
<<"static data"<<std::endl;*/
|
|
|
|
StaticObject &s_obj = *i;
|
|
|
|
// Create an active object from the data
|
|
|
|
ServerActiveObject *obj = ServerActiveObject::create
|
|
|
|
(s_obj.type, this, 0, s_obj.pos, s_obj.data);
|
|
|
|
// If couldn't create object, store static data back.
|
|
|
|
if(obj==NULL)
|
2011-05-21 07:28:58 -04:00
|
|
|
{
|
2011-10-17 04:52:38 -04: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);
|
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
new_stored.push_back(s_obj);
|
|
|
|
continue;
|
2011-05-21 07:28:58 -04:00
|
|
|
}
|
2011-10-17 04:52:38 -04:00
|
|
|
verbosestream<<"ServerEnvironment::activateObjects(): "
|
|
|
|
<<"activated static object pos="<<PP(s_obj.pos/BS)
|
|
|
|
<<" type="<<(int)s_obj.type<<std::endl;
|
2011-05-22 10:00:09 -04:00
|
|
|
// This will also add the object to the active static list
|
2011-06-05 11:57:36 -04:00
|
|
|
addActiveObjectRaw(obj, false);
|
2011-05-21 07:28:58 -04:00
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
// Clear stored list
|
|
|
|
block->m_static_objects.m_stored.clear();
|
|
|
|
// Add leftover failed stuff to stored list
|
|
|
|
for(core::list<StaticObject>::Iterator
|
|
|
|
i = new_stored.begin();
|
|
|
|
i != new_stored.end(); i++)
|
|
|
|
{
|
|
|
|
StaticObject &s_obj = *i;
|
|
|
|
block->m_static_objects.m_stored.push_back(s_obj);
|
|
|
|
}
|
2011-10-17 13:19:37 -04: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 06:29:16 -05:00
|
|
|
Thus, do not call block->raiseModified(MOD_STATE_WRITE_NEEDED).
|
2011-10-17 13:19:37 -04:00
|
|
|
Otherwise there would be a huge amount of unnecessary I/O.
|
|
|
|
*/
|
2011-05-21 07:28:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-10-17 13:19:37 -04:00
|
|
|
Convert objects that are not standing inside active blocks to static.
|
2011-05-22 10:00:09 -04:00
|
|
|
|
|
|
|
If m_known_by_count != 0, active object is not deleted, but static
|
|
|
|
data is still updated.
|
2011-05-21 07:28:58 -04:00
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
If force_delete is set, active object is deleted nevertheless. It
|
|
|
|
shall only be set so in the destructor of the environment.
|
2011-05-21 07:28:58 -04:00
|
|
|
*/
|
2011-05-22 10:00:09 -04:00
|
|
|
void ServerEnvironment::deactivateFarObjects(bool force_delete)
|
2011-05-21 07:28:58 -04:00
|
|
|
{
|
|
|
|
core::list<u16> objects_to_remove;
|
|
|
|
for(core::map<u16, ServerActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
ServerActiveObject* obj = i.getNode()->getValue();
|
|
|
|
|
|
|
|
// This shouldn't happen but check it
|
|
|
|
if(obj == NULL)
|
|
|
|
{
|
2011-10-17 13:19:37 -04:00
|
|
|
errorstream<<"NULL object found in ServerEnvironment"
|
2011-05-21 07:28:58 -04:00
|
|
|
<<std::endl;
|
|
|
|
assert(0);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-10-17 19:58:15 -04:00
|
|
|
// If pending deactivation, let removeRemovedObjects() do it
|
|
|
|
if(obj->m_pending_deactivation)
|
|
|
|
continue;
|
|
|
|
|
2011-09-24 03:11:43 -04:00
|
|
|
u16 id = i.getNode()->getKey();
|
|
|
|
v3f objectpos = obj->getBasePosition();
|
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
// The block in which the object resides in
|
|
|
|
v3s16 blockpos_o = getNodeBlockPos(floatToInt(objectpos, BS));
|
2011-09-24 03:11:43 -04:00
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
// If block is active, don't remove
|
|
|
|
if(m_active_blocks.contains(blockpos_o))
|
|
|
|
continue;
|
2011-05-21 07:28:58 -04:00
|
|
|
|
2011-10-17 03:47:06 -04:00
|
|
|
verbosestream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"deactivating object id="<<id<<" on inactive block "
|
|
|
|
<<PP(blockpos_o)<<std::endl;
|
|
|
|
|
2011-10-17 19:58:15 -04:00
|
|
|
// If known by some client, don't immediately delete.
|
|
|
|
bool pending_delete = (obj->m_known_by_count > 0 && !force_delete);
|
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
/*
|
2011-05-22 10:00:09 -04:00
|
|
|
Update the static data
|
2011-05-21 07:28:58 -04:00
|
|
|
*/
|
|
|
|
|
2011-10-17 19:58:15 -04:00
|
|
|
// Create new static object
|
|
|
|
std::string staticdata_new = obj->getStaticData();
|
|
|
|
StaticObject s_obj(obj->getType(), objectpos, staticdata_new);
|
|
|
|
|
|
|
|
bool stays_in_same_block = false;
|
|
|
|
bool data_changed = true;
|
|
|
|
|
|
|
|
if(obj->m_static_exists){
|
|
|
|
if(obj->m_static_block == blockpos_o)
|
|
|
|
stays_in_same_block = true;
|
|
|
|
|
|
|
|
MapBlock *block = m_map->emergeBlock(obj->m_static_block, false);
|
|
|
|
|
|
|
|
core::map<u16, StaticObject>::Node *n =
|
|
|
|
block->m_static_objects.m_active.find(id);
|
|
|
|
if(n){
|
|
|
|
StaticObject static_old = n->getValue();
|
|
|
|
|
2011-11-12 08:14:24 -05:00
|
|
|
float save_movem = obj->getMinimumSavedMovement();
|
|
|
|
|
2011-10-17 19:58:15 -04:00
|
|
|
if(static_old.data == staticdata_new &&
|
2011-11-12 08:14:24 -05:00
|
|
|
(static_old.pos - objectpos).getLength() < save_movem)
|
2011-10-17 19:58:15 -04:00
|
|
|
data_changed = false;
|
|
|
|
} else {
|
|
|
|
errorstream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"id="<<id<<" m_static_exists=true but "
|
|
|
|
<<"static data doesn't actually exist in "
|
|
|
|
<<PP(obj->m_static_block)<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
2011-11-12 08:14:24 -05:00
|
|
|
|
|
|
|
bool shall_be_written = (!stays_in_same_block || data_changed);
|
2011-10-17 19:58:15 -04:00
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
// Delete old static object
|
|
|
|
if(obj->m_static_exists)
|
|
|
|
{
|
2011-10-17 13:19:37 -04:00
|
|
|
MapBlock *block = m_map->emergeBlock(obj->m_static_block, false);
|
2011-05-21 07:28:58 -04:00
|
|
|
if(block)
|
|
|
|
{
|
|
|
|
block->m_static_objects.remove(id);
|
2011-10-17 13:19:37 -04:00
|
|
|
obj->m_static_exists = false;
|
2011-10-17 19:58:15 -04:00
|
|
|
// Only mark block as modified if data changed considerably
|
2011-11-12 08:14:24 -05:00
|
|
|
if(shall_be_written)
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"deactivateFarObjects: Static data "
|
|
|
|
"changed considerably");
|
2011-05-21 07:28:58 -04:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 04:52:38 -04:00
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
// Add to the block where the object is located in
|
|
|
|
v3s16 blockpos = getNodeBlockPos(floatToInt(objectpos, BS));
|
2011-07-01 14:04:40 -04:00
|
|
|
// Get or generate the block
|
|
|
|
MapBlock *block = m_map->emergeBlock(blockpos);
|
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
if(block)
|
|
|
|
{
|
2011-10-17 13:57:58 -04:00
|
|
|
if(block->m_static_objects.m_stored.size() >= 49){
|
2011-10-17 04:52:38 -04:00
|
|
|
errorstream<<"ServerEnv: Trying to store id="<<obj->getId()
|
|
|
|
<<" statically but block "<<PP(blockpos)
|
2011-10-17 13:57:58 -04:00
|
|
|
<<" already contains "
|
|
|
|
<<block->m_static_objects.m_stored.size()
|
|
|
|
<<" (over 49) objects."
|
2011-10-17 04:52:38 -04:00
|
|
|
<<" Forcing delete."<<std::endl;
|
|
|
|
force_delete = true;
|
|
|
|
} else {
|
2011-10-17 19:58:15 -04:00
|
|
|
u16 new_id = pending_delete ? id : 0;
|
|
|
|
block->m_static_objects.insert(new_id, s_obj);
|
|
|
|
|
|
|
|
// Only mark block as modified if data changed considerably
|
2011-11-12 08:14:24 -05:00
|
|
|
if(shall_be_written)
|
2011-11-21 06:29:16 -05:00
|
|
|
block->raiseModified(MOD_STATE_WRITE_NEEDED,
|
|
|
|
"deactivateFarObjects: Static data "
|
|
|
|
"changed considerably");
|
2011-10-17 19:58:15 -04:00
|
|
|
|
2011-10-17 04:52:38 -04:00
|
|
|
obj->m_static_exists = true;
|
|
|
|
obj->m_static_block = block->getPos();
|
|
|
|
}
|
2011-05-21 07:28:58 -04:00
|
|
|
}
|
|
|
|
else{
|
2011-10-17 03:47:06 -04:00
|
|
|
errorstream<<"ServerEnv: Could not find or generate "
|
2011-10-17 04:52:38 -04:00
|
|
|
<<"a block for storing id="<<obj->getId()
|
|
|
|
<<" statically"<<std::endl;
|
2011-05-21 07:28:58 -04:00
|
|
|
continue;
|
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
|
|
|
|
/*
|
2011-10-17 19:58:15 -04:00
|
|
|
If known by some client, set pending deactivation.
|
|
|
|
Otherwise delete it immediately.
|
2011-05-22 10:00:09 -04:00
|
|
|
*/
|
|
|
|
|
2011-10-17 19:58:15 -04:00
|
|
|
if(pending_delete)
|
2011-05-22 10:00:09 -04:00
|
|
|
{
|
2011-10-17 03:47:06 -04:00
|
|
|
verbosestream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"object id="<<id<<" is known by clients"
|
|
|
|
<<"; not deleting yet"<<std::endl;
|
|
|
|
|
2011-05-22 10:00:09 -04:00
|
|
|
obj->m_pending_deactivation = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-10-17 03:47:06 -04:00
|
|
|
verbosestream<<"ServerEnvironment::deactivateFarObjects(): "
|
|
|
|
<<"object id="<<id<<" is not known by clients"
|
|
|
|
<<"; deleting"<<std::endl;
|
2011-11-11 12:33:17 -05:00
|
|
|
|
|
|
|
// Deregister in scripting api
|
|
|
|
scriptapi_rm_object_reference(m_lua, obj);
|
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
// Delete active object
|
|
|
|
delete obj;
|
|
|
|
// Id to be removed from m_active_objects
|
|
|
|
objects_to_remove.push_back(id);
|
|
|
|
}
|
2011-05-22 10:00:09 -04:00
|
|
|
|
2011-05-21 07:28:58 -04:00
|
|
|
// Remove references from m_active_objects
|
|
|
|
for(core::list<u16>::Iterator i = objects_to_remove.begin();
|
|
|
|
i != objects_to_remove.end(); i++)
|
|
|
|
{
|
|
|
|
m_active_objects.remove(*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-19 12:11:05 -05:00
|
|
|
#ifndef SERVER
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
ClientEnvironment
|
|
|
|
*/
|
|
|
|
|
2011-11-13 17:19:48 -05:00
|
|
|
ClientEnvironment::ClientEnvironment(ClientMap *map, scene::ISceneManager *smgr,
|
|
|
|
ITextureSource *texturesource, IGameDef *gamedef):
|
2011-02-20 17:45:14 -05:00
|
|
|
m_map(map),
|
2011-11-13 17:19:48 -05:00
|
|
|
m_smgr(smgr),
|
|
|
|
m_texturesource(texturesource),
|
|
|
|
m_gamedef(gamedef)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
|
|
|
assert(m_map);
|
|
|
|
assert(m_smgr);
|
|
|
|
}
|
|
|
|
|
|
|
|
ClientEnvironment::~ClientEnvironment()
|
|
|
|
{
|
|
|
|
// delete active objects
|
|
|
|
for(core::map<u16, ClientActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
delete i.getNode()->getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Drop/delete map
|
|
|
|
m_map->drop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::addPlayer(Player *player)
|
|
|
|
{
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
|
|
|
/*
|
|
|
|
It is a failure if player is local and there already is a local
|
|
|
|
player
|
|
|
|
*/
|
|
|
|
assert(!(player->isLocal() == true && getLocalPlayer() != NULL));
|
|
|
|
|
|
|
|
Environment::addPlayer(player);
|
|
|
|
}
|
|
|
|
|
|
|
|
LocalPlayer * ClientEnvironment::getLocalPlayer()
|
|
|
|
{
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
if(player->isLocal())
|
|
|
|
return (LocalPlayer*)player;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::step(float dtime)
|
|
|
|
{
|
|
|
|
DSTACK(__FUNCTION_NAME);
|
|
|
|
|
|
|
|
// Get some settings
|
2011-10-12 06:53:38 -04:00
|
|
|
bool free_move = g_settings->getBool("free_move");
|
|
|
|
bool footprints = g_settings->getBool("footprints");
|
2011-02-20 17:45:14 -05:00
|
|
|
|
2011-04-21 12:35:17 -04:00
|
|
|
// Get local player
|
|
|
|
LocalPlayer *lplayer = getLocalPlayer();
|
|
|
|
assert(lplayer);
|
|
|
|
// collision info queue
|
|
|
|
core::list<CollisionInfo> player_collisions;
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
/*
|
|
|
|
Get the speed the player is going
|
|
|
|
*/
|
2011-07-31 00:53:05 -04:00
|
|
|
bool is_climbing = lplayer->is_climbing;
|
2011-08-23 22:10:19 -04:00
|
|
|
|
2011-11-26 08:58:02 -05:00
|
|
|
f32 player_speed = lplayer->getSpeed().getLength();
|
2011-02-20 17:45:14 -05: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 08:58:02 -05:00
|
|
|
f32 dtime_max_increment = 1;
|
|
|
|
if(player_speed > 0.001)
|
|
|
|
dtime_max_increment = position_max_increment / player_speed;
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
// Maximum time increment is 10ms or lower
|
|
|
|
if(dtime_max_increment > 0.01)
|
|
|
|
dtime_max_increment = 0.01;
|
|
|
|
|
|
|
|
// Don't allow overly huge dtime
|
|
|
|
if(dtime > 0.5)
|
|
|
|
dtime = 0.5;
|
|
|
|
|
|
|
|
f32 dtime_downcount = dtime;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Stuff that has a maximum time increment
|
|
|
|
*/
|
|
|
|
|
|
|
|
u32 loopcount = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
loopcount++;
|
|
|
|
|
|
|
|
f32 dtime_part;
|
|
|
|
if(dtime_downcount > dtime_max_increment)
|
2011-02-24 11:25:19 -05:00
|
|
|
{
|
2011-02-20 17:45:14 -05:00
|
|
|
dtime_part = dtime_max_increment;
|
2011-02-24 11:25:19 -05:00
|
|
|
dtime_downcount -= dtime_part;
|
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
else
|
2011-02-24 11:25:19 -05:00
|
|
|
{
|
2011-02-21 09:10:36 -05:00
|
|
|
dtime_part = dtime_downcount;
|
2011-02-24 11:25:19 -05: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;
|
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Handle local player
|
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
2011-04-21 12:35:17 -04:00
|
|
|
v3f lplayerpos = lplayer->getPosition();
|
2011-02-20 17:45:14 -05:00
|
|
|
|
|
|
|
// Apply physics
|
2011-10-16 11:45:17 -04:00
|
|
|
if(free_move == false && is_climbing == false)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
|
|
|
// Gravity
|
2011-04-21 12:35:17 -04:00
|
|
|
v3f speed = lplayer->getSpeed();
|
|
|
|
if(lplayer->swimming_up == false)
|
2011-02-20 17:45:14 -05:00
|
|
|
speed.Y -= 9.81 * BS * dtime_part * 2;
|
|
|
|
|
|
|
|
// Water resistance
|
2011-04-21 12:35:17 -04:00
|
|
|
if(lplayer->in_water_stable || lplayer->in_water)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
|
|
|
f32 max_down = 2.0*BS;
|
|
|
|
if(speed.Y < -max_down) speed.Y = -max_down;
|
|
|
|
|
|
|
|
f32 max = 2.5*BS;
|
|
|
|
if(speed.getLength() > max)
|
|
|
|
{
|
|
|
|
speed = speed / speed.getLength() * max;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-21 12:35:17 -04:00
|
|
|
lplayer->setSpeed(speed);
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-04-21 12:35:17 -04:00
|
|
|
Move the lplayer.
|
2011-02-20 17:45:14 -05:00
|
|
|
This also does collision detection.
|
|
|
|
*/
|
2011-04-21 12:35:17 -04:00
|
|
|
lplayer->move(dtime_part, *m_map, position_max_increment,
|
|
|
|
&player_collisions);
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while(dtime_downcount > 0.001);
|
|
|
|
|
|
|
|
//std::cout<<"Looped "<<loopcount<<" times."<<std::endl;
|
2011-10-16 11:45:17 -04:00
|
|
|
|
2011-04-21 12:35:17 -04:00
|
|
|
for(core::list<CollisionInfo>::Iterator
|
|
|
|
i = player_collisions.begin();
|
|
|
|
i != player_collisions.end(); i++)
|
|
|
|
{
|
|
|
|
CollisionInfo &info = *i;
|
|
|
|
if(info.t == COLLISION_FALL)
|
|
|
|
{
|
|
|
|
//f32 tolerance = BS*10; // 2 without damage
|
|
|
|
f32 tolerance = BS*12; // 3 without damage
|
|
|
|
f32 factor = 1;
|
|
|
|
if(info.speed > tolerance)
|
|
|
|
{
|
|
|
|
f32 damage_f = (info.speed - tolerance)/BS*factor;
|
|
|
|
u16 damage = (u16)(damage_f+0.5);
|
|
|
|
if(lplayer->hp > damage)
|
|
|
|
lplayer->hp -= damage;
|
|
|
|
else
|
|
|
|
lplayer->hp = 0;
|
|
|
|
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_PLAYER_DAMAGE;
|
|
|
|
event.player_damage.amount = damage;
|
|
|
|
m_client_event_queue.push_back(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
|
2011-08-14 19:04:56 -04:00
|
|
|
/*
|
|
|
|
A quick draft of lava damage
|
|
|
|
*/
|
|
|
|
if(m_lava_hurt_interval.step(dtime, 1.0))
|
|
|
|
{
|
|
|
|
v3f pf = lplayer->getPosition();
|
2011-08-15 04:49:39 -04:00
|
|
|
|
|
|
|
// Feet, middle and head
|
|
|
|
v3s16 p1 = floatToInt(pf + v3f(0, BS*0.1, 0), BS);
|
2011-08-14 19:04:56 -04:00
|
|
|
MapNode n1 = m_map->getNodeNoEx(p1);
|
2011-08-15 04:49:39 -04:00
|
|
|
v3s16 p2 = floatToInt(pf + v3f(0, BS*0.8, 0), BS);
|
2011-08-14 19:04:56 -04:00
|
|
|
MapNode n2 = m_map->getNodeNoEx(p2);
|
2011-08-15 04:49:39 -04:00
|
|
|
v3s16 p3 = floatToInt(pf + v3f(0, BS*1.6, 0), BS);
|
|
|
|
MapNode n3 = m_map->getNodeNoEx(p2);
|
|
|
|
|
|
|
|
u32 damage_per_second = 0;
|
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
2011-11-14 14:41:30 -05:00
|
|
|
m_gamedef->ndef()->get(n1).damage_per_second);
|
2011-08-15 04:49:39 -04:00
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
2011-11-14 14:41:30 -05:00
|
|
|
m_gamedef->ndef()->get(n2).damage_per_second);
|
2011-08-15 04:49:39 -04:00
|
|
|
damage_per_second = MYMAX(damage_per_second,
|
2011-11-14 14:41:30 -05:00
|
|
|
m_gamedef->ndef()->get(n3).damage_per_second);
|
2011-08-15 04:49:39 -04:00
|
|
|
|
|
|
|
if(damage_per_second != 0)
|
2011-08-14 19:04:56 -04:00
|
|
|
{
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_PLAYER_DAMAGE;
|
2011-08-15 04:49:39 -04:00
|
|
|
event.player_damage.amount = damage_per_second;
|
2011-08-14 19:04:56 -04:00
|
|
|
m_client_event_queue.push_back(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
/*
|
|
|
|
Stuff that can be done in an arbitarily large dtime
|
|
|
|
*/
|
|
|
|
for(core::list<Player*>::Iterator i = m_players.begin();
|
|
|
|
i != m_players.end(); i++)
|
|
|
|
{
|
|
|
|
Player *player = *i;
|
|
|
|
v3f playerpos = player->getPosition();
|
|
|
|
|
|
|
|
/*
|
|
|
|
Handle non-local players
|
|
|
|
*/
|
|
|
|
if(player->isLocal() == false)
|
|
|
|
{
|
|
|
|
// Move
|
|
|
|
player->move(dtime, *m_map, 100*BS);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-09-21 12:37:29 -04:00
|
|
|
// Update lighting on all players on client
|
|
|
|
u8 light = LIGHT_MAX;
|
|
|
|
try{
|
|
|
|
// Get node at head
|
|
|
|
v3s16 p = player->getLightPosition();
|
|
|
|
MapNode n = m_map->getNode(p);
|
2011-11-14 14:41:30 -05:00
|
|
|
light = n.getLightBlend(getDayNightRatio(), m_gamedef->ndef());
|
2011-09-21 12:37:29 -04:00
|
|
|
}
|
|
|
|
catch(InvalidPositionException &e) {}
|
|
|
|
player->updateLight(light);
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
/*
|
|
|
|
Add footsteps to grass
|
|
|
|
*/
|
|
|
|
if(footprints)
|
|
|
|
{
|
|
|
|
// Get node that is at BS/4 under player
|
|
|
|
v3s16 bottompos = floatToInt(playerpos + v3f(0,-BS/4,0), BS);
|
|
|
|
try{
|
|
|
|
MapNode n = m_map->getNode(bottompos);
|
2011-11-16 07:08:31 -05:00
|
|
|
if(n.getContent() == LEGN(m_gamedef->ndef(), "CONTENT_GRASS"))
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
2011-11-16 07:08:31 -05:00
|
|
|
n.setContent(LEGN(m_gamedef->ndef(), "CONTENT_GRASS_FOOTSTEPS"));
|
2011-02-20 17:45:14 -05:00
|
|
|
m_map->setNode(bottompos, n);
|
|
|
|
// Update mesh on client
|
|
|
|
if(m_map->mapType() == MAPTYPE_CLIENT)
|
|
|
|
{
|
|
|
|
v3s16 p_blocks = getNodeBlockPos(bottompos);
|
|
|
|
MapBlock *b = m_map->getBlockNoCreate(p_blocks);
|
2011-05-22 10:00:09 -04:00
|
|
|
//b->updateMesh(getDayNightRatio());
|
2011-04-03 12:50:54 -04:00
|
|
|
b->setMeshExpired(true);
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(InvalidPositionException &e)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-04-10 09:20:31 -04:00
|
|
|
Step active objects and update lighting of them
|
2011-02-20 17:45:14 -05:00
|
|
|
*/
|
2011-04-10 08:16:27 -04:00
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
for(core::map<u16, ClientActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
ClientActiveObject* obj = i.getNode()->getValue();
|
|
|
|
// Step object
|
2011-04-09 21:15:10 -04:00
|
|
|
obj->step(dtime, this);
|
2011-06-26 08:48:56 -04:00
|
|
|
|
2011-06-26 17:27:17 -04:00
|
|
|
if(m_active_object_light_update_interval.step(dtime, 0.21))
|
2011-06-26 08:48:56 -04:00
|
|
|
{
|
|
|
|
// Update lighting
|
|
|
|
//u8 light = LIGHT_MAX;
|
|
|
|
u8 light = 0;
|
|
|
|
try{
|
|
|
|
// Get node at head
|
|
|
|
v3s16 p = obj->getLightPosition();
|
|
|
|
MapNode n = m_map->getNode(p);
|
2011-11-14 14:41:30 -05:00
|
|
|
light = n.getLightBlend(getDayNightRatio(), m_gamedef->ndef());
|
2011-06-26 08:48:56 -04:00
|
|
|
}
|
|
|
|
catch(InvalidPositionException &e) {}
|
|
|
|
obj->updateLight(light);
|
2011-04-10 09:20:31 -04:00
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-14 14:41:30 -05:00
|
|
|
void ClientEnvironment::updateMeshes(v3s16 blockpos)
|
2010-12-18 10:46:00 -05:00
|
|
|
{
|
2011-11-14 14:41:30 -05:00
|
|
|
m_map->updateMeshes(blockpos, getDayNightRatio());
|
2010-12-18 10:46:00 -05:00
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
void ClientEnvironment::expireMeshes(bool only_daynight_diffed)
|
2010-12-18 10:46:00 -05:00
|
|
|
{
|
2010-12-19 09:51:45 -05:00
|
|
|
m_map->expireMeshes(only_daynight_diffed);
|
2010-12-18 10:46:00 -05:00
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
ClientActiveObject* ClientEnvironment::getActiveObject(u16 id)
|
2010-12-18 10:46:00 -05:00
|
|
|
{
|
2011-02-20 17:45:14 -05:00
|
|
|
core::map<u16, ClientActiveObject*>::Node *n;
|
|
|
|
n = m_active_objects.find(id);
|
|
|
|
if(n == NULL)
|
|
|
|
return NULL;
|
|
|
|
return n->getValue();
|
2010-12-18 10:46:00 -05:00
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
bool isFreeClientActiveObjectId(u16 id,
|
|
|
|
core::map<u16, ClientActiveObject*> &objects)
|
2010-12-18 10:46:00 -05:00
|
|
|
{
|
2011-02-20 17:45:14 -05:00
|
|
|
if(id == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for(core::map<u16, ClientActiveObject*>::Iterator
|
|
|
|
i = objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
if(i.getNode()->getKey() == id)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 getFreeClientActiveObjectId(
|
|
|
|
core::map<u16, ClientActiveObject*> &objects)
|
|
|
|
{
|
|
|
|
u16 new_id = 1;
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
if(isFreeClientActiveObjectId(new_id, objects))
|
|
|
|
return new_id;
|
|
|
|
|
|
|
|
if(new_id == 65535)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
new_id++;
|
|
|
|
}
|
2010-12-18 10:46:00 -05:00
|
|
|
}
|
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
u16 ClientEnvironment::addActiveObject(ClientActiveObject *object)
|
|
|
|
{
|
|
|
|
assert(object);
|
|
|
|
if(object->getId() == 0)
|
|
|
|
{
|
|
|
|
u16 new_id = getFreeClientActiveObjectId(m_active_objects);
|
|
|
|
if(new_id == 0)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 17:45:14 -05:00
|
|
|
<<"no free ids available"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
object->setId(new_id);
|
|
|
|
}
|
|
|
|
if(isFreeClientActiveObjectId(object->getId(), m_active_objects) == false)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 17:45:14 -05:00
|
|
|
<<"id is not free ("<<object->getId()<<")"<<std::endl;
|
|
|
|
delete object;
|
|
|
|
return 0;
|
|
|
|
}
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 17:45:14 -05:00
|
|
|
<<"added (id="<<object->getId()<<")"<<std::endl;
|
|
|
|
m_active_objects.insert(object->getId(), object);
|
2011-11-13 17:19:48 -05:00
|
|
|
object->addToScene(m_smgr, m_texturesource);
|
2011-11-26 05:40:25 -05:00
|
|
|
{ // Update lighting immediately
|
|
|
|
u8 light = 0;
|
|
|
|
try{
|
|
|
|
// Get node at head
|
|
|
|
v3s16 p = object->getLightPosition();
|
|
|
|
MapNode n = m_map->getNode(p);
|
|
|
|
light = n.getLightBlend(getDayNightRatio(), m_gamedef->ndef());
|
|
|
|
}
|
|
|
|
catch(InvalidPositionException &e) {}
|
|
|
|
object->updateLight(light);
|
|
|
|
}
|
2011-02-20 17:45:14 -05:00
|
|
|
return object->getId();
|
|
|
|
}
|
|
|
|
|
2011-02-21 09:10:36 -05:00
|
|
|
void ClientEnvironment::addActiveObject(u16 id, u8 type,
|
|
|
|
const std::string &init_data)
|
2011-02-20 17:45:14 -05:00
|
|
|
{
|
2011-11-13 17:19:48 -05:00
|
|
|
ClientActiveObject* obj = ClientActiveObject::create(type, m_gamedef);
|
2011-02-20 17:45:14 -05:00
|
|
|
if(obj == NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ClientEnvironment::addActiveObject(): "
|
2011-02-20 17:45:14 -05:00
|
|
|
<<"id="<<id<<" type="<<type<<": Couldn't create object"
|
|
|
|
<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
obj->setId(id);
|
|
|
|
|
2011-02-21 09:10:36 -05:00
|
|
|
obj->initialize(init_data);
|
2011-10-14 19:28:57 -04:00
|
|
|
|
|
|
|
addActiveObject(obj);
|
2011-02-20 17:45:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::removeActiveObject(u16 id)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ClientEnvironment::removeActiveObject(): "
|
2011-02-20 17:45:14 -05:00
|
|
|
<<"id="<<id<<std::endl;
|
|
|
|
ClientActiveObject* obj = getActiveObject(id);
|
|
|
|
if(obj == NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ClientEnvironment::removeActiveObject(): "
|
2011-02-20 17:45:14 -05:00
|
|
|
<<"id="<<id<<" not found"<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
obj->removeFromScene();
|
|
|
|
delete obj;
|
|
|
|
m_active_objects.remove(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientEnvironment::processActiveObjectMessage(u16 id,
|
|
|
|
const std::string &data)
|
|
|
|
{
|
|
|
|
ClientActiveObject* obj = getActiveObject(id);
|
|
|
|
if(obj == NULL)
|
|
|
|
{
|
2011-10-16 07:57:53 -04:00
|
|
|
infostream<<"ClientEnvironment::processActiveObjectMessage():"
|
2011-02-20 17:45:14 -05:00
|
|
|
<<" got message for id="<<id<<", which doesn't exist."
|
|
|
|
<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
obj->processMessage(data);
|
|
|
|
}
|
|
|
|
|
2011-04-21 12:35:17 -04:00
|
|
|
/*
|
|
|
|
Callbacks for activeobjects
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ClientEnvironment::damageLocalPlayer(u8 damage)
|
|
|
|
{
|
|
|
|
LocalPlayer *lplayer = getLocalPlayer();
|
|
|
|
assert(lplayer);
|
|
|
|
|
|
|
|
if(lplayer->hp > damage)
|
|
|
|
lplayer->hp -= damage;
|
|
|
|
else
|
|
|
|
lplayer->hp = 0;
|
|
|
|
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_PLAYER_DAMAGE;
|
|
|
|
event.player_damage.amount = damage;
|
|
|
|
m_client_event_queue.push_back(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Client likes to call these
|
|
|
|
*/
|
|
|
|
|
2011-04-07 17:47:14 -04:00
|
|
|
void ClientEnvironment::getActiveObjects(v3f origin, f32 max_d,
|
|
|
|
core::array<DistanceSortedActiveObject> &dest)
|
|
|
|
{
|
|
|
|
for(core::map<u16, ClientActiveObject*>::Iterator
|
|
|
|
i = m_active_objects.getIterator();
|
|
|
|
i.atEnd()==false; i++)
|
|
|
|
{
|
|
|
|
ClientActiveObject* obj = i.getNode()->getValue();
|
|
|
|
|
|
|
|
f32 d = (obj->getPosition() - origin).getLength();
|
|
|
|
|
|
|
|
if(d > max_d)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
DistanceSortedActiveObject dso(obj, d);
|
|
|
|
|
|
|
|
dest.push_back(dso);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-21 12:35:17 -04:00
|
|
|
ClientEnvEvent ClientEnvironment::getClientEvent()
|
|
|
|
{
|
|
|
|
if(m_client_event_queue.size() == 0)
|
|
|
|
{
|
|
|
|
ClientEnvEvent event;
|
|
|
|
event.type = CEE_NONE;
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
return m_client_event_queue.pop_front();
|
|
|
|
}
|
2011-04-07 17:47:14 -04:00
|
|
|
|
2011-02-20 17:45:14 -05:00
|
|
|
#endif // #ifndef SERVER
|
|
|
|
|
|
|
|
|