2011-11-12 09:39:44 +01: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>
|
2011-11-12 09:39:44 +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-11-12 09:39:44 +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-11-12 09:39:44 +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-11-12 09:39:44 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2012-03-30 11:51:51 +02:00
|
|
|
#include "object_properties.h"
|
2012-10-27 00:49:01 +02:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "exceptions.h"
|
2012-06-17 01:40:36 +02:00
|
|
|
#include "util/serialize.h"
|
2016-12-13 23:16:26 +01:00
|
|
|
#include "util/basic_macros.h"
|
2012-06-17 01:40:36 +02:00
|
|
|
#include <sstream>
|
2011-11-12 09:39:44 +01:00
|
|
|
|
2017-06-18 19:55:15 +02:00
|
|
|
ObjectProperties::ObjectProperties()
|
2011-11-12 09:39:44 +01:00
|
|
|
{
|
2017-08-19 11:30:46 +02:00
|
|
|
textures.emplace_back("unknown_object.png");
|
|
|
|
colors.emplace_back(255,255,255,255);
|
2011-11-12 09:39:44 +01:00
|
|
|
}
|
|
|
|
|
2012-03-30 11:51:51 +02:00
|
|
|
std::string ObjectProperties::dump()
|
2011-11-12 09:39:44 +01:00
|
|
|
{
|
|
|
|
std::ostringstream os(std::ios::binary);
|
2012-03-04 20:08:03 +01:00
|
|
|
os<<"hp_max="<<hp_max;
|
|
|
|
os<<", physical="<<physical;
|
2013-06-14 14:04:46 +02:00
|
|
|
os<<", collideWithObjects="<<collideWithObjects;
|
2011-11-12 09:39:44 +01:00
|
|
|
os<<", weight="<<weight;
|
|
|
|
os<<", collisionbox="<<PP(collisionbox.MinEdge)<<","<<PP(collisionbox.MaxEdge);
|
|
|
|
os<<", visual="<<visual;
|
2012-10-23 19:03:06 +02:00
|
|
|
os<<", mesh="<<mesh;
|
2011-11-27 03:31:05 +01:00
|
|
|
os<<", visual_size="<<PP2(visual_size);
|
2011-11-12 09:39:44 +01:00
|
|
|
os<<", textures=[";
|
2017-08-19 11:30:46 +02:00
|
|
|
for (const std::string &texture : textures) {
|
|
|
|
os<<"\""<< texture <<"\" ";
|
2011-11-12 09:39:44 +01:00
|
|
|
}
|
|
|
|
os<<"]";
|
2012-10-27 00:49:01 +02:00
|
|
|
os<<", colors=[";
|
2017-08-19 11:30:46 +02:00
|
|
|
for (const video::SColor &color : colors) {
|
|
|
|
os << "\"" << color.getAlpha() << "," << color.getRed() << ","
|
|
|
|
<< color.getGreen() << "," << color.getBlue() << "\" ";
|
2012-10-27 00:49:01 +02:00
|
|
|
}
|
|
|
|
os<<"]";
|
2011-11-27 03:31:05 +01:00
|
|
|
os<<", spritediv="<<PP2(spritediv);
|
|
|
|
os<<", initial_sprite_basepos="<<PP2(initial_sprite_basepos);
|
2012-04-04 12:16:09 +02:00
|
|
|
os<<", is_visible="<<is_visible;
|
2012-03-30 11:51:51 +02:00
|
|
|
os<<", makes_footstep_sound="<<makes_footstep_sound;
|
2012-04-04 12:16:09 +02:00
|
|
|
os<<", automatic_rotate="<<automatic_rotate;
|
2015-09-28 20:49:38 +02:00
|
|
|
os<<", backface_culling="<<backface_culling;
|
2015-11-20 23:46:33 +01:00
|
|
|
os << ", nametag=" << nametag;
|
|
|
|
os << ", nametag_color=" << "\"" << nametag_color.getAlpha() << "," << nametag_color.getRed()
|
|
|
|
<< "," << nametag_color.getGreen() << "," << nametag_color.getBlue() << "\" ";
|
2017-08-24 10:01:16 +02:00
|
|
|
os << ", selectionbox=" << PP(selectionbox.MinEdge) << "," << PP(selectionbox.MaxEdge);
|
|
|
|
os << ", pointable=" << pointable;
|
2017-08-28 23:46:12 +02:00
|
|
|
os << ", can_zoom=" << can_zoom;
|
2011-11-12 09:39:44 +01:00
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
2012-04-04 12:16:09 +02:00
|
|
|
void ObjectProperties::serialize(std::ostream &os) const
|
2011-11-12 09:39:44 +01:00
|
|
|
{
|
2017-08-29 19:26:55 +02:00
|
|
|
writeU8(os, 2); // version, protocol_version >= 36
|
2012-03-04 20:08:03 +01:00
|
|
|
writeS16(os, hp_max);
|
2011-11-12 09:39:44 +01:00
|
|
|
writeU8(os, physical);
|
|
|
|
writeF1000(os, weight);
|
|
|
|
writeV3F1000(os, collisionbox.MinEdge);
|
|
|
|
writeV3F1000(os, collisionbox.MaxEdge);
|
2017-08-29 19:26:55 +02:00
|
|
|
writeV3F1000(os, selectionbox.MinEdge);
|
|
|
|
writeV3F1000(os, selectionbox.MaxEdge);
|
|
|
|
writeU8(os, pointable);
|
|
|
|
os << serializeString(visual);
|
2011-11-27 03:31:05 +01:00
|
|
|
writeV2F1000(os, visual_size);
|
2011-11-12 09:39:44 +01:00
|
|
|
writeU16(os, textures.size());
|
2017-08-19 11:30:46 +02:00
|
|
|
for (const std::string &texture : textures) {
|
|
|
|
os << serializeString(texture);
|
2011-11-12 09:39:44 +01:00
|
|
|
}
|
2011-11-27 03:31:05 +01:00
|
|
|
writeV2S16(os, spritediv);
|
|
|
|
writeV2S16(os, initial_sprite_basepos);
|
2012-03-30 11:51:51 +02:00
|
|
|
writeU8(os, is_visible);
|
|
|
|
writeU8(os, makes_footstep_sound);
|
2012-04-04 12:16:09 +02:00
|
|
|
writeF1000(os, automatic_rotate);
|
2012-11-29 18:44:58 +01:00
|
|
|
// Added in protocol version 14
|
2017-08-29 19:26:55 +02:00
|
|
|
os << serializeString(mesh);
|
2012-11-29 18:44:58 +01:00
|
|
|
writeU16(os, colors.size());
|
2017-08-19 11:30:46 +02:00
|
|
|
for (video::SColor color : colors) {
|
|
|
|
writeARGB8(os, color);
|
2012-11-29 18:44:58 +01:00
|
|
|
}
|
2013-06-14 14:04:46 +02:00
|
|
|
writeU8(os, collideWithObjects);
|
2013-07-22 18:54:30 +02:00
|
|
|
writeF1000(os,stepheight);
|
2013-07-31 17:29:25 +02:00
|
|
|
writeU8(os, automatic_face_movement_dir);
|
2013-08-18 15:49:09 +02:00
|
|
|
writeF1000(os, automatic_face_movement_dir_offset);
|
2015-09-28 20:49:38 +02:00
|
|
|
writeU8(os, backface_culling);
|
2015-11-20 23:46:33 +01:00
|
|
|
os << serializeString(nametag);
|
|
|
|
writeARGB8(os, nametag_color);
|
2015-12-15 00:03:18 +01:00
|
|
|
writeF1000(os, automatic_face_movement_max_rotation_per_sec);
|
2016-01-08 15:59:36 +01:00
|
|
|
os << serializeString(infotext);
|
2017-03-10 18:25:58 +01:00
|
|
|
os << serializeString(wield_item);
|
2017-08-28 23:46:12 +02:00
|
|
|
writeU8(os, can_zoom);
|
2015-12-15 00:03:18 +01:00
|
|
|
|
2012-11-29 18:44:58 +01:00
|
|
|
// Add stuff only at the bottom.
|
|
|
|
// Never remove anything, because we don't want new versions of this
|
2011-11-12 09:39:44 +01:00
|
|
|
}
|
|
|
|
|
2012-03-30 11:51:51 +02:00
|
|
|
void ObjectProperties::deSerialize(std::istream &is)
|
2011-11-12 09:39:44 +01:00
|
|
|
{
|
|
|
|
int version = readU8(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
if (version != 2)
|
2012-11-26 08:49:31 +01:00
|
|
|
throw SerializationError("unsupported ObjectProperties version");
|
2017-08-29 19:26:55 +02:00
|
|
|
|
|
|
|
hp_max = readS16(is);
|
|
|
|
physical = readU8(is);
|
|
|
|
weight = readF1000(is);
|
|
|
|
collisionbox.MinEdge = readV3F1000(is);
|
|
|
|
collisionbox.MaxEdge = readV3F1000(is);
|
|
|
|
selectionbox.MinEdge = readV3F1000(is);
|
|
|
|
selectionbox.MaxEdge = readV3F1000(is);
|
|
|
|
pointable = readU8(is);
|
|
|
|
visual = deSerializeString(is);
|
|
|
|
visual_size = readV2F1000(is);
|
|
|
|
textures.clear();
|
|
|
|
u32 texture_count = readU16(is);
|
|
|
|
for (u32 i = 0; i < texture_count; i++){
|
|
|
|
textures.push_back(deSerializeString(is));
|
|
|
|
}
|
|
|
|
spritediv = readV2S16(is);
|
|
|
|
initial_sprite_basepos = readV2S16(is);
|
|
|
|
is_visible = readU8(is);
|
|
|
|
makes_footstep_sound = readU8(is);
|
|
|
|
automatic_rotate = readF1000(is);
|
|
|
|
mesh = deSerializeString(is);
|
|
|
|
u32 color_count = readU16(is);
|
|
|
|
for (u32 i = 0; i < color_count; i++){
|
|
|
|
colors.push_back(readARGB8(is));
|
2012-10-27 00:49:01 +02:00
|
|
|
}
|
2017-08-29 19:26:55 +02:00
|
|
|
collideWithObjects = readU8(is);
|
|
|
|
stepheight = readF1000(is);
|
|
|
|
automatic_face_movement_dir = readU8(is);
|
|
|
|
automatic_face_movement_dir_offset = readF1000(is);
|
|
|
|
backface_culling = readU8(is);
|
|
|
|
nametag = deSerializeString(is);
|
|
|
|
nametag_color = readARGB8(is);
|
|
|
|
automatic_face_movement_max_rotation_per_sec = readF1000(is);
|
|
|
|
infotext = deSerializeString(is);
|
|
|
|
wield_item = deSerializeString(is);
|
2017-08-28 23:46:12 +02:00
|
|
|
can_zoom = readU8(is);
|
2011-11-12 09:39:44 +01:00
|
|
|
}
|