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);
|
2017-09-02 08:12:15 +02:00
|
|
|
os << "hp_max=" << hp_max;
|
2017-09-15 12:18:47 +02:00
|
|
|
os << ", breath_max=" << breath_max;
|
2017-09-02 08:12:15 +02:00
|
|
|
os << ", physical=" << physical;
|
|
|
|
os << ", collideWithObjects=" << collideWithObjects;
|
|
|
|
os << ", weight=" << weight;
|
|
|
|
os << ", collisionbox=" << PP(collisionbox.MinEdge) << "," << PP(collisionbox.MaxEdge);
|
|
|
|
os << ", visual=" << visual;
|
|
|
|
os << ", mesh=" << mesh;
|
2019-01-03 17:04:26 +01:00
|
|
|
os << ", visual_size=" << PP(visual_size);
|
2017-09-02 08:12:15 +02:00
|
|
|
os << ", textures=[";
|
2017-08-19 11:30:46 +02:00
|
|
|
for (const std::string &texture : textures) {
|
2017-09-02 08:12:15 +02:00
|
|
|
os << "\"" << texture << "\" ";
|
2011-11-12 09:39:44 +01:00
|
|
|
}
|
2017-09-02 08:12:15 +02:00
|
|
|
os << "]";
|
|
|
|
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
|
|
|
}
|
2017-09-02 08:12:15 +02:00
|
|
|
os << "]";
|
|
|
|
os << ", spritediv=" << PP2(spritediv);
|
|
|
|
os << ", initial_sprite_basepos=" << PP2(initial_sprite_basepos);
|
|
|
|
os << ", is_visible=" << is_visible;
|
|
|
|
os << ", makes_footstep_sound=" << makes_footstep_sound;
|
|
|
|
os << ", automatic_rotate="<< automatic_rotate;
|
|
|
|
os << ", backface_culling="<< backface_culling;
|
|
|
|
os << ", glow=" << glow;
|
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-09-28 17:11:51 +02:00
|
|
|
os << ", static_save=" << static_save;
|
2017-11-03 20:10:53 +01:00
|
|
|
os << ", eye_height=" << eye_height;
|
2017-11-20 02:45:57 +01:00
|
|
|
os << ", zoom_fov=" << zoom_fov;
|
2018-03-18 18:25:05 +01:00
|
|
|
os << ", use_texture_alpha=" << use_texture_alpha;
|
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
|
|
|
{
|
2019-01-03 17:04:26 +01:00
|
|
|
writeU8(os, 4); // PROTOCOL_VERSION >= 37
|
2019-02-11 00:03:26 +01:00
|
|
|
writeU16(os, hp_max);
|
2011-11-12 09:39:44 +01:00
|
|
|
writeU8(os, physical);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeF32(os, weight);
|
|
|
|
writeV3F32(os, collisionbox.MinEdge);
|
|
|
|
writeV3F32(os, collisionbox.MaxEdge);
|
|
|
|
writeV3F32(os, selectionbox.MinEdge);
|
|
|
|
writeV3F32(os, selectionbox.MaxEdge);
|
2017-08-29 19:26:55 +02:00
|
|
|
writeU8(os, pointable);
|
|
|
|
os << serializeString(visual);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeV3F32(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);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeF32(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);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeF32(os, stepheight);
|
2013-07-31 17:29:25 +02:00
|
|
|
writeU8(os, automatic_face_movement_dir);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeF32(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);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeF32(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-09-02 08:12:15 +02:00
|
|
|
writeS8(os, glow);
|
2017-09-15 12:18:47 +02:00
|
|
|
writeU16(os, breath_max);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeF32(os, eye_height);
|
|
|
|
writeF32(os, zoom_fov);
|
2018-03-18 18:25:05 +01:00
|
|
|
writeU8(os, use_texture_alpha);
|
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);
|
2019-01-03 17:04:26 +01:00
|
|
|
if (version != 4)
|
2012-11-26 08:49:31 +01:00
|
|
|
throw SerializationError("unsupported ObjectProperties version");
|
2017-08-29 19:26:55 +02:00
|
|
|
|
2019-02-11 00:03:26 +01:00
|
|
|
hp_max = readU16(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
physical = readU8(is);
|
2019-01-03 17:04:26 +01:00
|
|
|
weight = readF32(is);
|
|
|
|
collisionbox.MinEdge = readV3F32(is);
|
|
|
|
collisionbox.MaxEdge = readV3F32(is);
|
|
|
|
selectionbox.MinEdge = readV3F32(is);
|
|
|
|
selectionbox.MaxEdge = readV3F32(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
pointable = readU8(is);
|
|
|
|
visual = deSerializeString(is);
|
2019-01-03 17:04:26 +01:00
|
|
|
visual_size = readV3F32(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
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);
|
2019-01-03 17:04:26 +01:00
|
|
|
automatic_rotate = readF32(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
mesh = deSerializeString(is);
|
2017-10-22 20:41:57 +02:00
|
|
|
colors.clear();
|
2017-08-29 19:26:55 +02:00
|
|
|
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);
|
2019-01-03 17:04:26 +01:00
|
|
|
stepheight = readF32(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
automatic_face_movement_dir = readU8(is);
|
2019-01-03 17:04:26 +01:00
|
|
|
automatic_face_movement_dir_offset = readF32(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
backface_culling = readU8(is);
|
|
|
|
nametag = deSerializeString(is);
|
|
|
|
nametag_color = readARGB8(is);
|
2019-01-03 17:04:26 +01:00
|
|
|
automatic_face_movement_max_rotation_per_sec = readF32(is);
|
2017-08-29 19:26:55 +02:00
|
|
|
infotext = deSerializeString(is);
|
|
|
|
wield_item = deSerializeString(is);
|
2017-11-20 02:45:57 +01:00
|
|
|
glow = readS8(is);
|
|
|
|
breath_max = readU16(is);
|
2019-01-03 17:04:26 +01:00
|
|
|
eye_height = readF32(is);
|
|
|
|
zoom_fov = readF32(is);
|
2018-03-18 18:25:05 +01:00
|
|
|
use_texture_alpha = readU8(is);
|
2011-11-12 09:39:44 +01:00
|
|
|
}
|