X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fnodemetadata.cpp;h=4cdd61767df889cc39b6f82ca7291fb49226285d;hb=58e6d25e033c76dc91aaac18fdeda92ac23fe0e1;hp=2405e7601ea7d42c5b0c67840164323ec8ba5d40;hpb=389fe31ace38a8f53c210ff5ae823eae1780dfc8;p=oweals%2Fminetest.git diff --git a/src/nodemetadata.cpp b/src/nodemetadata.cpp index 2405e7601..4cdd61767 100644 --- a/src/nodemetadata.cpp +++ b/src/nodemetadata.cpp @@ -1,261 +1,134 @@ /* -Minetest-c55 -Copyright (C) 2010-2011 celeron55, Perttu Ahola +Minetest +Copyright (C) 2010-2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or +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 General Public License for more details. +GNU Lesser General Public License for more details. -You should have received a copy of the GNU General Public License along +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 "nodemetadata.h" -#include "utility.h" -#include "mapnode.h" #include "exceptions.h" +#include "gamedef.h" #include "inventory.h" +#include "log.h" +#include "util/serialize.h" +#include "constants.h" // MAP_BLOCKSIZE #include /* NodeMetadata */ -core::map NodeMetadata::m_types; - -NodeMetadata::NodeMetadata() +NodeMetadata::NodeMetadata(IGameDef *gamedef): + m_stringvars(), + m_inventory(new Inventory(gamedef->idef())) { } NodeMetadata::~NodeMetadata() { + delete m_inventory; } -NodeMetadata* NodeMetadata::deSerialize(std::istream &is) +void NodeMetadata::serialize(std::ostream &os) const { - // Read id - u8 buf[2]; - is.read((char*)buf, 2); - s16 id = readS16(buf); - - // Read data - std::string data = deSerializeString(is); - - // Find factory function - core::map::Node *n; - n = m_types.find(id); - if(n == NULL) - { - // If factory is not found, just return. - dstream<<"WARNING: NodeMetadata: No factory for typeId=" - <getValue(); - NodeMetadata *meta = (*f)(iss); - return meta; + int num_vars = m_stringvars.size(); + writeU32(os, num_vars); + for(std::map::const_iterator + i = m_stringvars.begin(); i != m_stringvars.end(); i++){ + os<first); + os<second); } - catch(SerializationError &e) - { - dstream<<"WARNING: NodeMetadata: ignoring SerializationError"<serialize(os); } -void NodeMetadata::registerType(u16 id, Factory f) +void NodeMetadata::deSerialize(std::istream &is) { - core::map::Node *n; - n = m_types.find(id); - if(n) - return; - m_types.insert(id, f); -} - -/* - SignNodeMetadata -*/ + m_stringvars.clear(); + int num_vars = readU32(is); + for(int i=0; ideSerialize(is); } -NodeMetadata* SignNodeMetadata::create(std::istream &is) -{ - std::string text = deSerializeString(is); - return new SignNodeMetadata(text); -} -NodeMetadata* SignNodeMetadata::clone() -{ - return new SignNodeMetadata(m_text); -} -void SignNodeMetadata::serializeBody(std::ostream &os) -{ - os<addList("0", 8*4); -} -ChestNodeMetadata::~ChestNodeMetadata() -{ - delete m_inventory; -} -u16 ChestNodeMetadata::typeId() const +void NodeMetadata::clear() { - return CONTENT_CHEST; -} -NodeMetadata* ChestNodeMetadata::create(std::istream &is) -{ - ChestNodeMetadata *d = new ChestNodeMetadata(); - d->m_inventory->deSerialize(is); - return d; -} -NodeMetadata* ChestNodeMetadata::clone() -{ - ChestNodeMetadata *d = new ChestNodeMetadata(); - *d->m_inventory = *m_inventory; - return d; -} -void ChestNodeMetadata::serializeBody(std::ostream &os) -{ - m_inventory->serialize(os); -} -std::string ChestNodeMetadata::infoText() -{ - return "Chest"; + m_stringvars.clear(); + m_inventory->clear(); } /* - FurnaceNodeMetadata + NodeMetadataList */ -FurnaceNodeMetadata::FurnaceNodeMetadata() -{ - NodeMetadata::registerType(typeId(), create); - - m_inventory = new Inventory(); - m_inventory->addList("fuel", 1); - m_inventory->addList("src", 1); - m_inventory->addList("dst", 1); -} -FurnaceNodeMetadata::~FurnaceNodeMetadata() -{ - delete m_inventory; -} -u16 FurnaceNodeMetadata::typeId() const -{ - return CONTENT_FURNACE; -} -NodeMetadata* FurnaceNodeMetadata::clone() -{ - FurnaceNodeMetadata *d = new FurnaceNodeMetadata(); - *d->m_inventory = *m_inventory; - return d; -} -NodeMetadata* FurnaceNodeMetadata::create(std::istream &is) -{ - FurnaceNodeMetadata *d = new FurnaceNodeMetadata(); - d->m_inventory->deSerialize(is); - /*std::string params; - std::getline(is, params, '\n');*/ - return d; -} -void FurnaceNodeMetadata::serializeBody(std::ostream &os) -{ - m_inventory->serialize(os); - // This line will contain the other parameters - //os<<"\n"; -} -std::string FurnaceNodeMetadata::infoText() +void NodeMetadataList::serialize(std::ostream &os) const { - return "Furnace"; -} -void FurnaceNodeMetadata::inventoryModified() -{ - dstream<<"Furnace inventory modification callback"<::Iterator - i = m_data.getIterator(); - i.atEnd()==false; i++) + for(std::map::const_iterator + i = m_data.begin(); + i != m_data.end(); i++) { - v3s16 p = i.getNode()->getKey(); - NodeMetadata *data = i.getNode()->getValue(); - + v3s16 p = i->first; + NodeMetadata *data = i->second; + u16 p16 = p.Z*MAP_BLOCKSIZE*MAP_BLOCKSIZE + p.Y*MAP_BLOCKSIZE + p.X; - writeU16(buf, p16); - os.write((char*)buf, 2); + writeU16(os, p16); data->serialize(os); } - } -void NodeMetadataList::deSerialize(std::istream &is) + +void NodeMetadataList::deSerialize(std::istream &is, IGameDef *gamedef) { m_data.clear(); - u8 buf[6]; - - is.read((char*)buf, 2); - u16 count = readU16(buf); + u8 version = readU8(is); + if(version == 0){ + // Nothing + return; + } + + if(version != 1){ + infostream<<__FUNCTION_NAME<<": version "<deSerialize(is); + m_data[p] = data; } } - + NodeMetadataList::~NodeMetadataList() { - for(core::map::Iterator - i = m_data.getIterator(); - i.atEnd()==false; i++) - { - delete i.getNode()->getValue(); - } + clear(); } NodeMetadata* NodeMetadataList::get(v3s16 p) { - core::map::Node *n; - n = m_data.find(p); - if(n == NULL) + std::map::const_iterator n = m_data.find(p); + if(n == m_data.end()) return NULL; - return n->getValue(); + return n->second; } void NodeMetadataList::remove(v3s16 p) @@ -308,13 +171,54 @@ void NodeMetadataList::remove(v3s16 p) if(olddata) { delete olddata; - m_data.remove(p); + m_data.erase(p); } } void NodeMetadataList::set(v3s16 p, NodeMetadata *d) { remove(p); - m_data.insert(p, d); + m_data.insert(std::make_pair(p, d)); +} + +void NodeMetadataList::clear() +{ + for(std::map::iterator + i = m_data.begin(); + i != m_data.end(); i++) + { + delete i->second; + } + m_data.clear(); +} + +std::string NodeMetadata::getString(const std::string &name, unsigned short recursion) const +{ + std::map::const_iterator it; + it = m_stringvars.find(name); + if (it == m_stringvars.end()) { + return ""; + } + return resolveString(it->second, recursion); +} + +void NodeMetadata::setString(const std::string &name, const std::string &var) +{ + if (var.empty()) { + m_stringvars.erase(name); + } else { + m_stringvars[name] = var; + } +} + +std::string NodeMetadata::resolveString(const std::string &str, unsigned short recursion) const +{ + if (recursion > 1) { + return str; + } + if (str.substr(0, 2) == "${" && str[str.length() - 1] == '}') { + return getString(str.substr(2, str.length() - 3), recursion + 1); + } + return str; }