2012-03-29 10:46:21 -04:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-03-29 10:46:21 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04: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 10:46:21 -04: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 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2012-03-29 10:46:21 -04:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-03-29 10:46:21 -04: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-16 19:40:36 -04:00
|
|
|
#include "util/serialize.h"
|
2012-03-29 10:46:21 -04:00
|
|
|
|
2012-03-30 05:51:51 -04:00
|
|
|
std::string gob_cmd_set_properties(const ObjectProperties &prop)
|
|
|
|
{
|
2012-03-29 10:46:21 -04:00
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
writeU8(os, GENERIC_CMD_SET_PROPERTIES);
|
2012-04-04 06:16:09 -04:00
|
|
|
prop.serialize(os);
|
2012-03-29 10:46:21 -04:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-03-30 05:51:51 -04:00
|
|
|
ObjectProperties gob_read_set_properties(std::istream &is)
|
|
|
|
{
|
|
|
|
ObjectProperties prop;
|
2012-04-04 06:16:09 -04:00
|
|
|
prop.deSerialize(is);
|
2012-03-30 05:51:51 -04:00
|
|
|
return prop;
|
|
|
|
}
|
|
|
|
|
2012-03-29 10:46:21 -04: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 12:22:07 -05: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();
|
|
|
|
i != armor_groups.end(); i++){
|
|
|
|
os<<serializeString(i->first);
|
|
|
|
writeS16(os, i->second);
|
|
|
|
}
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2013-12-03 12:51:15 -05: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 07:03:28 -04: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 12:51:15 -05:00
|
|
|
// these are sent inverted so we get true when the server sends nothing
|
|
|
|
writeU8(os, !sneak);
|
|
|
|
writeU8(os, !sneak_glitch);
|
2013-04-05 07:03:28 -04:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-11-12 09:35:10 -05:00
|
|
|
std::string gob_cmd_update_animation(v2f frames, float frame_speed, float frame_blend)
|
2012-10-26 04:46:46 -04:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
2012-11-12 09:35:10 -05:00
|
|
|
writeU8(os, GENERIC_CMD_SET_ANIMATION);
|
2012-10-26 04:46:46 -04:00
|
|
|
// parameters
|
2012-10-26 11:03:24 -04:00
|
|
|
writeV2F1000(os, frames);
|
2012-10-26 04:46:46 -04:00
|
|
|
writeF1000(os, frame_speed);
|
|
|
|
writeF1000(os, frame_blend);
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-11-12 09:35:10 -05:00
|
|
|
std::string gob_cmd_update_bone_position(std::string bone, v3f position, v3f rotation)
|
2012-10-26 18:49:01 -04:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
2012-11-12 09:35:10 -05:00
|
|
|
writeU8(os, GENERIC_CMD_SET_BONE_POSITION);
|
2012-10-26 18:49:01 -04:00
|
|
|
// parameters
|
2012-10-27 08:14:24 -04:00
|
|
|
os<<serializeString(bone);
|
|
|
|
writeV3F1000(os, position);
|
|
|
|
writeV3F1000(os, rotation);
|
2012-10-26 18:49:01 -04:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-11-04 16:54:50 -05:00
|
|
|
std::string gob_cmd_update_attachment(int parent_id, std::string bone, v3f position, v3f rotation)
|
2012-10-26 11:03:24 -04:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
|
|
|
// command
|
2012-10-27 08:14:24 -04:00
|
|
|
writeU8(os, GENERIC_CMD_SET_ATTACHMENT);
|
2012-10-26 11:03:24 -04:00
|
|
|
// parameters
|
2012-10-27 08:14:24 -04:00
|
|
|
writeS16(os, parent_id);
|
2012-10-26 11:03:24 -04:00
|
|
|
os<<serializeString(bone);
|
|
|
|
writeV3F1000(os, position);
|
|
|
|
writeV3F1000(os, rotation);
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|