2012-03-29 16:46:21 +02:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-03-29 16:46:21 +02: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
|
2012-03-29 16:46:21 +02: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.
|
2012-03-29 16:46:21 +02:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-03-29 16:46:21 +02:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "genericobject.h"
|
|
|
|
#include <sstream>
|
2012-06-17 01:40:36 +02:00
|
|
|
#include "util/serialize.h"
|
2012-03-29 16:46:21 +02:00
|
|
|
|
2012-03-30 11:51:51 +02:00
|
|
|
std::string gob_cmd_set_properties(const ObjectProperties &prop)
|
|
|
|
{
|
2012-03-29 16:46:21 +02:00
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
writeU8(os, GENERIC_CMD_SET_PROPERTIES);
|
2012-04-04 12:16:09 +02:00
|
|
|
prop.serialize(os);
|
2012-03-29 16:46:21 +02:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-03-30 11:51:51 +02:00
|
|
|
ObjectProperties gob_read_set_properties(std::istream &is)
|
|
|
|
{
|
|
|
|
ObjectProperties prop;
|
2012-04-04 12:16:09 +02:00
|
|
|
prop.deSerialize(is);
|
2012-03-30 11:51:51 +02:00
|
|
|
return prop;
|
|
|
|
}
|
|
|
|
|
2012-03-29 16:46:21 +02:00
|
|
|
std::string gob_cmd_update_position(
|
|
|
|
v3f position,
|
|
|
|
v3f velocity,
|
|
|
|
v3f acceleration,
|
|
|
|
f32 yaw,
|
|
|
|
bool do_interpolate,
|
|
|
|
bool is_movement_end,
|
|
|
|
f32 update_interval
|
|
|
|
){
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
|
|
|
writeU8(os, GENERIC_CMD_UPDATE_POSITION);
|
|
|
|
// pos
|
|
|
|
writeV3F1000(os, position);
|
|
|
|
// velocity
|
|
|
|
writeV3F1000(os, velocity);
|
|
|
|
// acceleration
|
|
|
|
writeV3F1000(os, acceleration);
|
|
|
|
// yaw
|
|
|
|
writeF1000(os, yaw);
|
|
|
|
// do_interpolate
|
|
|
|
writeU8(os, do_interpolate);
|
|
|
|
// is_end_position (for interpolation)
|
|
|
|
writeU8(os, is_movement_end);
|
|
|
|
// update_interval (for interpolation)
|
|
|
|
writeF1000(os, update_interval);
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string gob_cmd_set_texture_mod(const std::string &mod)
|
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
|
|
|
writeU8(os, GENERIC_CMD_SET_TEXTURE_MOD);
|
|
|
|
// parameters
|
|
|
|
os<<serializeString(mod);
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string gob_cmd_set_sprite(
|
|
|
|
v2s16 p,
|
|
|
|
u16 num_frames,
|
|
|
|
f32 framelength,
|
|
|
|
bool select_horiz_by_yawpitch
|
|
|
|
){
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
|
|
|
writeU8(os, GENERIC_CMD_SET_SPRITE);
|
|
|
|
// parameters
|
|
|
|
writeV2S16(os, p);
|
|
|
|
writeU16(os, num_frames);
|
|
|
|
writeF1000(os, framelength);
|
|
|
|
writeU8(os, select_horiz_by_yawpitch);
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-11-29 18:22:07 +01:00
|
|
|
std::string gob_cmd_punched(s16 damage, s16 result_hp)
|
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
|
|
|
writeU8(os, GENERIC_CMD_PUNCHED);
|
|
|
|
// damage
|
|
|
|
writeS16(os, damage);
|
|
|
|
// result_hp
|
|
|
|
writeS16(os, result_hp);
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string gob_cmd_update_armor_groups(const ItemGroupList &armor_groups)
|
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
writeU8(os, GENERIC_CMD_UPDATE_ARMOR_GROUPS);
|
|
|
|
writeU16(os, armor_groups.size());
|
|
|
|
for(ItemGroupList::const_iterator i = armor_groups.begin();
|
2015-08-25 22:23:05 +02:00
|
|
|
i != armor_groups.end(); ++i){
|
2012-11-29 18:22:07 +01:00
|
|
|
os<<serializeString(i->first);
|
|
|
|
writeS16(os, i->second);
|
|
|
|
}
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:51:15 +01:00
|
|
|
std::string gob_cmd_update_physics_override(float physics_override_speed, float physics_override_jump,
|
|
|
|
float physics_override_gravity, bool sneak, bool sneak_glitch)
|
2013-04-05 13:03:28 +02:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
|
|
|
writeU8(os, GENERIC_CMD_SET_PHYSICS_OVERRIDE);
|
|
|
|
// parameters
|
|
|
|
writeF1000(os, physics_override_speed);
|
|
|
|
writeF1000(os, physics_override_jump);
|
|
|
|
writeF1000(os, physics_override_gravity);
|
2013-12-03 18:51:15 +01:00
|
|
|
// these are sent inverted so we get true when the server sends nothing
|
|
|
|
writeU8(os, !sneak);
|
|
|
|
writeU8(os, !sneak_glitch);
|
2013-04-05 13:03:28 +02:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2015-02-21 22:38:53 +01:00
|
|
|
std::string gob_cmd_update_animation(v2f frames, float frame_speed, float frame_blend, bool frame_loop)
|
2012-10-26 10:46:46 +02:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
2012-11-12 15:35:10 +01:00
|
|
|
writeU8(os, GENERIC_CMD_SET_ANIMATION);
|
2012-10-26 10:46:46 +02:00
|
|
|
// parameters
|
2012-10-26 17:03:24 +02:00
|
|
|
writeV2F1000(os, frames);
|
2012-10-26 10:46:46 +02:00
|
|
|
writeF1000(os, frame_speed);
|
|
|
|
writeF1000(os, frame_blend);
|
2015-02-21 22:38:53 +01:00
|
|
|
// these are sent inverted so we get true when the server sends nothing
|
|
|
|
writeU8(os, !frame_loop);
|
2012-10-26 10:46:46 +02:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-11-12 15:35:10 +01:00
|
|
|
std::string gob_cmd_update_bone_position(std::string bone, v3f position, v3f rotation)
|
2012-10-27 00:49:01 +02:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
2012-11-12 15:35:10 +01:00
|
|
|
writeU8(os, GENERIC_CMD_SET_BONE_POSITION);
|
2012-10-27 00:49:01 +02:00
|
|
|
// parameters
|
2012-10-27 14:14:24 +02:00
|
|
|
os<<serializeString(bone);
|
|
|
|
writeV3F1000(os, position);
|
|
|
|
writeV3F1000(os, rotation);
|
2012-10-27 00:49:01 +02:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-11-04 22:54:50 +01:00
|
|
|
std::string gob_cmd_update_attachment(int parent_id, std::string bone, v3f position, v3f rotation)
|
2012-10-26 17:03:24 +02:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
2015-06-20 03:20:06 +02:00
|
|
|
writeU8(os, GENERIC_CMD_ATTACH_TO);
|
2012-10-26 17:03:24 +02:00
|
|
|
// parameters
|
2012-10-27 14:14:24 +02:00
|
|
|
writeS16(os, parent_id);
|
2012-10-26 17:03:24 +02:00
|
|
|
os<<serializeString(bone);
|
|
|
|
writeV3F1000(os, position);
|
|
|
|
writeV3F1000(os, rotation);
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2015-05-15 21:46:56 +02:00
|
|
|
std::string gob_cmd_update_nametag_attributes(video::SColor color)
|
2015-05-14 15:54:54 +02:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
2015-05-15 21:46:56 +02:00
|
|
|
writeU8(os, GENERIC_CMD_UPDATE_NAMETAG_ATTRIBUTES);
|
2015-05-14 15:54:54 +02:00
|
|
|
// parameters
|
2015-05-15 21:46:56 +02:00
|
|
|
writeU8(os, 1); // version for forward compatibility
|
2015-05-14 15:54:54 +02:00
|
|
|
writeARGB8(os, color);
|
|
|
|
return os.str();
|
|
|
|
}
|
2016-10-08 14:51:25 +02:00
|
|
|
|
|
|
|
std::string gob_cmd_update_infant(u16 id, u8 type, std::string client_initialization_data)
|
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
|
|
|
writeU8(os, GENERIC_CMD_SPAWN_INFANT);
|
|
|
|
// parameters
|
|
|
|
writeU16(os, id);
|
|
|
|
writeU8(os, type);
|
|
|
|
os<<serializeLongString(client_initialization_data);
|
|
|
|
return os.str();
|
|
|
|
}
|