minetest/src/content_nodemeta.cpp

196 lines
5.3 KiB
C++
Raw Normal View History

/*
Minetest-c55
2012-03-19 01:08:04 +01:00
Copyright (C) 2010-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
This program is free software; you can redistribute it and/or modify
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
(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
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "content_nodemeta.h"
#include "inventory.h"
#include "log.h"
#include "utility.h"
2012-06-02 23:32:49 +02:00
#include <sstream>
#define NODEMETA_GENERIC 1
#define NODEMETA_SIGN 14
#define NODEMETA_CHEST 15
#define NODEMETA_FURNACE 16
#define NODEMETA_LOCKABLE_CHEST 17
2012-03-19 01:08:04 +01:00
// Returns true if node timer must be set
static bool content_nodemeta_deserialize_legacy_body(
std::istream &is, s16 id, NodeMetadata *meta)
{
2012-03-19 01:08:04 +01:00
meta->clear();
2012-03-19 01:08:04 +01:00
if(id == NODEMETA_GENERIC) // GenericNodeMetadata (0.4-dev)
{
meta->getInventory()->deSerialize(is);
deSerializeLongString(is); // m_text
deSerializeString(is); // m_owner
2011-09-22 11:11:48 +02:00
meta->setString("infotext",deSerializeString(is));
meta->setString("formspec",deSerializeString(is));
2012-03-19 01:08:04 +01:00
readU8(is); // m_allow_text_input
readU8(is); // m_allow_removal
2012-03-19 01:08:04 +01:00
readU8(is); // m_enforce_owner
2011-09-22 11:11:48 +02:00
2012-03-19 01:08:04 +01:00
int num_vars = readU32(is);
for(int i=0; i<num_vars; i++){
std::string name = deSerializeString(is);
std::string var = deSerializeLongString(is);
meta->setString(name, var);
}
2011-09-22 11:11:48 +02:00
return false;
2012-03-19 01:08:04 +01:00
}
else if(id == NODEMETA_SIGN) // SignNodeMetadata
{
2012-06-04 17:19:23 +02:00
meta->setString("text", deSerializeString(is));
//meta->setString("infotext","\"${text}\"");
meta->setString("infotext",
std::string("\"") + meta->getString("text") + "\"");
2012-06-04 17:19:23 +02:00
meta->setString("formspec","hack:sign_text_input");
2011-09-22 11:11:48 +02:00
return false;
2012-03-19 01:08:04 +01:00
}
else if(id == NODEMETA_CHEST) // ChestNodeMetadata
{
2012-03-19 01:08:04 +01:00
meta->getInventory()->deSerialize(is);
// Rename inventory list "0" to "main"
Inventory *inv = meta->getInventory();
if(!inv->getList("main") && inv->getList("0")){
2012-06-02 23:32:49 +02:00
inv->getList("0")->setName("main");
}
2012-06-02 23:32:49 +02:00
assert(inv->getList("main") && !inv->getList("0"));
meta->setString("formspec","invsize[8,9;]"
"list[current_name;main;0,0;8,4;]"
2012-03-19 01:08:04 +01:00
"list[current_player;main;0,5;8,4;]");
return false;
}
2012-03-19 01:08:04 +01:00
else if(id == NODEMETA_LOCKABLE_CHEST) // LockingChestNodeMetadata
{
2012-03-19 01:08:04 +01:00
meta->setString("owner", deSerializeString(is));
meta->getInventory()->deSerialize(is);
// Rename inventory list "0" to "main"
Inventory *inv = meta->getInventory();
if(!inv->getList("main") && inv->getList("0")){
2012-06-02 23:32:49 +02:00
inv->getList("0")->setName("main");
}
2012-06-02 23:32:49 +02:00
assert(inv->getList("main") && !inv->getList("0"));
meta->setString("formspec","invsize[8,9;]"
"list[current_name;main;0,0;8,4;]"
2012-03-19 01:08:04 +01:00
"list[current_player;main;0,5;8,4;]");
return false;
}
2012-03-19 01:08:04 +01:00
else if(id == NODEMETA_FURNACE) // FurnaceNodeMetadata
{
meta->getInventory()->deSerialize(is);
int temp = 0;
is>>temp;
meta->setString("fuel_totaltime", ftos((float)temp/10));
temp = 0;
is>>temp;
meta->setString("fuel_time", ftos((float)temp/10));
temp = 0;
is>>temp;
//meta->setString("src_totaltime", ftos((float)temp/10));
temp = 0;
is>>temp;
meta->setString("src_time", ftos((float)temp/10));
meta->setString("formspec","invsize[8,9;]"
2012-03-19 01:08:04 +01:00
"list[current_name;fuel;2,3;1,1;]"
"list[current_name;src;2,1;1,1;]"
"list[current_name;dst;5,1;2,2;]"
"list[current_player;main;0,5;8,4;]");
return true;
}
2012-03-19 01:08:04 +01:00
else
{
2012-03-19 01:08:04 +01:00
throw SerializationError("Unknown legacy node metadata");
}
}
2012-03-19 01:08:04 +01:00
static bool content_nodemeta_deserialize_legacy_meta(
std::istream &is, NodeMetadata *meta)
{
2012-03-19 01:08:04 +01:00
// Read id
s16 id = readS16(is);
2012-03-19 01:08:04 +01:00
// Read data
std::string data = deSerializeString(is);
std::istringstream tmp_is(data, std::ios::binary);
return content_nodemeta_deserialize_legacy_body(tmp_is, id, meta);
}
2012-03-19 01:08:04 +01:00
void content_nodemeta_deserialize_legacy(std::istream &is,
NodeMetadataList *meta, NodeTimerList *timers,
IGameDef *gamedef)
{
2012-03-19 01:08:04 +01:00
meta->clear();
timers->clear();
2012-03-19 01:08:04 +01:00
u16 version = readU16(is);
2012-03-19 01:08:04 +01:00
if(version > 1)
{
2012-03-19 01:08:04 +01:00
infostream<<__FUNCTION_NAME<<": version "<<version<<" not supported"
<<std::endl;
throw SerializationError(__FUNCTION_NAME);
}
2012-03-19 01:08:04 +01:00
u16 count = readU16(is);
2012-03-19 01:08:04 +01:00
for(u16 i=0; i<count; i++)
{
2012-03-19 01:08:04 +01:00
u16 p16 = readU16(is);
2012-03-19 01:08:04 +01:00
v3s16 p(0,0,0);
p.Z += p16 / MAP_BLOCKSIZE / MAP_BLOCKSIZE;
p16 -= p.Z * MAP_BLOCKSIZE * MAP_BLOCKSIZE;
p.Y += p16 / MAP_BLOCKSIZE;
p16 -= p.Y * MAP_BLOCKSIZE;
p.X += p16;
2012-03-19 01:08:04 +01:00
if(meta->get(p) != NULL)
{
infostream<<"WARNING: "<<__FUNCTION_NAME<<": "
<<"already set data at position"
<<"("<<p.X<<","<<p.Y<<","<<p.Z<<"): Ignoring."
<<std::endl;
continue;
}
2012-03-19 01:08:04 +01:00
NodeMetadata *data = new NodeMetadata(gamedef);
bool need_timer = content_nodemeta_deserialize_legacy_meta(is, data);
meta->set(p, data);
2012-03-19 01:08:04 +01:00
if(need_timer)
timers->set(p, NodeTimer(1., 0.));
}
2012-03-19 01:08:04 +01:00
}
2012-03-19 01:08:04 +01:00
void content_nodemeta_serialize_legacy(std::ostream &os, NodeMetadataList *meta)
{
// Sorry, I was too lazy to implement this. --kahrl
writeU16(os, 1); // version
writeU16(os, 0); // count
}
2012-03-19 01:08:04 +01:00
// END