2011-02-20 23:45:14 +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>
|
2011-02-20 23:45:14 +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
|
2011-02-20 23:45:14 +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.
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-02-20 23:45:14 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2020-04-10 21:25:42 +02:00
|
|
|
#include "serveractiveobject.h"
|
2011-02-21 15:10:36 +01:00
|
|
|
#include <fstream>
|
2011-04-10 03:15:10 +02:00
|
|
|
#include "inventory.h"
|
2012-06-17 01:40:36 +02:00
|
|
|
#include "constants.h" // BS
|
2017-08-18 19:25:07 +02:00
|
|
|
#include "log.h"
|
2011-04-10 03:15:10 +02:00
|
|
|
|
2011-11-11 18:33:17 +01:00
|
|
|
ServerActiveObject::ServerActiveObject(ServerEnvironment *env, v3f pos):
|
|
|
|
ActiveObject(0),
|
2011-02-21 15:10:36 +01:00
|
|
|
m_env(env),
|
2011-02-20 23:45:14 +01:00
|
|
|
m_base_position(pos)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-06-17 01:40:36 +02:00
|
|
|
float ServerActiveObject::getMinimumSavedMovement()
|
|
|
|
{
|
|
|
|
return 2.0*BS;
|
|
|
|
}
|
|
|
|
|
2019-09-21 11:44:24 +02:00
|
|
|
ItemStack ServerActiveObject::getWieldedItem(ItemStack *selected, ItemStack *hand) const
|
2011-12-01 22:33:48 +01:00
|
|
|
{
|
2019-09-21 11:44:24 +02:00
|
|
|
*selected = ItemStack();
|
|
|
|
if (hand)
|
|
|
|
*hand = ItemStack();
|
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
return ItemStack();
|
2011-12-01 22:33:48 +01:00
|
|
|
}
|
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
bool ServerActiveObject::setWieldedItem(const ItemStack &item)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2020-04-10 19:49:20 +02:00
|
|
|
|
|
|
|
std::string ServerActiveObject::generateUpdateInfantCommand(u16 infant_id, u16 protocol_version)
|
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
|
|
|
writeU8(os, AO_CMD_SPAWN_INFANT);
|
|
|
|
// parameters
|
|
|
|
writeU16(os, infant_id);
|
|
|
|
writeU8(os, getSendType());
|
2020-06-04 19:31:46 +02:00
|
|
|
if (protocol_version < 38) {
|
|
|
|
// Clients since 4aa9a66 so no longer need this data
|
|
|
|
// Version 38 is the first bump after that commit.
|
|
|
|
// See also: ClientEnvironment::addActiveObject
|
2020-09-20 13:12:55 +02:00
|
|
|
os << serializeString32(getClientInitializationData(protocol_version));
|
2020-06-04 19:31:46 +02:00
|
|
|
}
|
2020-04-10 19:49:20 +02:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerActiveObject::dumpAOMessagesToQueue(std::queue<ActiveObjectMessage> &queue)
|
|
|
|
{
|
|
|
|
while (!m_messages_out.empty()) {
|
2020-05-26 17:38:31 +02:00
|
|
|
queue.push(std::move(m_messages_out.front()));
|
2020-04-10 19:49:20 +02:00
|
|
|
m_messages_out.pop();
|
|
|
|
}
|
2020-05-26 16:05:06 +02:00
|
|
|
}
|