X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fnodemetadata.cpp;h=708a0809919f5474a21b2c79f65435af8ec620c5;hb=a1c5a011421840f4b2f9d8b6cc9b9724cf333168;hp=2405e7601ea7d42c5b0c67840164323ec8ba5d40;hpb=389fe31ace38a8f53c210ff5ae823eae1780dfc8;p=oweals%2Fminetest.git diff --git a/src/nodemetadata.cpp b/src/nodemetadata.cpp index 2405e7601..708a08099 100644 --- a/src/nodemetadata.cpp +++ b/src/nodemetadata.cpp @@ -1,320 +1,244 @@ /* -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 "util/basic_macros.h" +#include "constants.h" // MAP_BLOCKSIZE #include /* NodeMetadata */ -core::map NodeMetadata::m_types; +NodeMetadata::NodeMetadata(IItemDefManager *item_def_mgr): + m_inventory(new Inventory(item_def_mgr)) +{} -NodeMetadata::NodeMetadata() +NodeMetadata::~NodeMetadata() { + delete m_inventory; } -NodeMetadata::~NodeMetadata() +void NodeMetadata::serialize(std::ostream &os, u8 version, bool disk) const { + int num_vars = disk ? m_stringvars.size() : countNonPrivate(); + writeU32(os, num_vars); + for (const auto &sv : m_stringvars) { + bool priv = isPrivate(sv.first); + if (!disk && priv) + continue; + + os << serializeString(sv.first); + os << serializeLongString(sv.second); + if (version >= 2) + writeU8(os, (priv) ? 1 : 0); + } + + m_inventory->serialize(os); } -NodeMetadata* NodeMetadata::deSerialize(std::istream &is) +void NodeMetadata::deSerialize(std::istream &is, u8 version) { - // 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; - } - catch(SerializationError &e) - { - dstream<<"WARNING: NodeMetadata: ignoring SerializationError"<= 2) { + if (readU8(is) == 1) + markPrivate(name, true); + } } + + m_inventory->deSerialize(is); } -void NodeMetadata::serialize(std::ostream &os) +void NodeMetadata::clear() { - u8 buf[2]; - writeU16(buf, typeId()); - os.write((char*)buf, 2); - - std::ostringstream oss(std::ios_base::binary); - serializeBody(oss); - os<clear(); } -void NodeMetadata::registerType(u16 id, Factory f) +bool NodeMetadata::empty() const { - core::map::Node *n; - n = m_types.find(id); - if(n) - return; - m_types.insert(id, f); + return Metadata::empty() && m_inventory->getLists().empty(); } -/* - SignNodeMetadata -*/ -SignNodeMetadata::SignNodeMetadata(std::string text): - m_text(text) -{ - NodeMetadata::registerType(typeId(), create); -} -u16 SignNodeMetadata::typeId() const -{ - return CONTENT_SIGN_WALL; -} -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) +void NodeMetadata::markPrivate(const std::string &name, bool set) { - os<addList("0", 8*4); -} -ChestNodeMetadata::~ChestNodeMetadata() -{ - delete m_inventory; -} -u16 ChestNodeMetadata::typeId() const -{ - return CONTENT_CHEST; -} -NodeMetadata* ChestNodeMetadata::create(std::istream &is) -{ - ChestNodeMetadata *d = new ChestNodeMetadata(); - d->m_inventory->deSerialize(is); - return d; -} -NodeMetadata* ChestNodeMetadata::clone() +void NodeMetadataList::serialize(std::ostream &os, u8 blockver, bool disk) const { - 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"; -} + /* + Version 0 is a placeholder for "nothing to see here; go away." + */ -/* - FurnaceNodeMetadata -*/ + u16 count = countNonEmpty(); + if (count == 0) { + writeU8(os, 0); // version + return; + } -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() -{ - return "Furnace"; -} -void FurnaceNodeMetadata::inventoryModified() -{ - dstream<<"Furnace inventory modification callback"< 27) ? 2 : 1; + writeU8(os, version); + writeU16(os, count); -/* - NodeMetadatalist -*/ + for (const auto &it : m_data) { + v3s16 p = it.first; + NodeMetadata *data = it.second; + if (data->empty()) + continue; -void NodeMetadataList::serialize(std::ostream &os) -{ - u8 buf[6]; - - u16 count = m_data.size(); - writeU16(buf, count); - os.write((char*)buf, 2); - - for(core::map::Iterator - i = m_data.getIterator(); - i.atEnd()==false; i++) - { - v3s16 p = i.getNode()->getKey(); - NodeMetadata *data = i.getNode()->getValue(); - - u16 p16 = p.Z*MAP_BLOCKSIZE*MAP_BLOCKSIZE + p.Y*MAP_BLOCKSIZE + p.X; - writeU16(buf, p16); - os.write((char*)buf, 2); - - data->serialize(os); + u16 p16 = p.Z * MAP_BLOCKSIZE * MAP_BLOCKSIZE + p.Y * MAP_BLOCKSIZE + p.X; + writeU16(os, p16); + + data->serialize(os, version, disk); } - } -void NodeMetadataList::deSerialize(std::istream &is) + +void NodeMetadataList::deSerialize(std::istream &is, IItemDefManager *item_def_mgr) { - m_data.clear(); + clear(); - u8 buf[6]; - - is.read((char*)buf, 2); - u16 count = readU16(buf); - - for(u16 i=0; i 2) { + std::string err_str = std::string(FUNCTION_NAME) + + ": version " + itos(version) + " not supported"; + infostream << err_str << std::endl; + throw SerializationError(err_str); + } + + u16 count = readU16(is); + + for (u16 i = 0; i < count; i++) { + u16 p16 = readU16(is); + + v3s16 p; + p.Z = p16 / MAP_BLOCKSIZE / MAP_BLOCKSIZE; + p16 &= MAP_BLOCKSIZE * MAP_BLOCKSIZE - 1; + p.Y = p16 / MAP_BLOCKSIZE; + p16 &= MAP_BLOCKSIZE - 1; + p.X = p16; + + if (m_data.find(p) != m_data.end()) { + warningstream << "NodeMetadataList::deSerialize(): " + << "already set data at position " << PP(p) + << ": Ignoring." << std::endl; continue; } - m_data.insert(p, data); + NodeMetadata *data = new NodeMetadata(item_def_mgr); + data->deSerialize(is, version); + m_data[p] = data; } } - + NodeMetadataList::~NodeMetadataList() { - for(core::map::Iterator - i = m_data.getIterator(); - i.atEnd()==false; i++) - { - delete i.getNode()->getValue(); - } + clear(); +} + +std::vector NodeMetadataList::getAllKeys() +{ + std::vector keys; + + std::map::const_iterator it; + for (it = m_data.begin(); it != m_data.end(); ++it) + keys.push_back(it->first); + + return keys; } -NodeMetadata* NodeMetadataList::get(v3s16 p) +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) { NodeMetadata *olddata = get(p); - if(olddata) - { + 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() +{ + std::map::iterator it; + for (it = m_data.begin(); it != m_data.end(); ++it) { + delete it->second; + } + m_data.clear(); } +int NodeMetadataList::countNonEmpty() const +{ + int n = 0; + std::map::const_iterator it; + for (it = m_data.begin(); it != m_data.end(); ++it) { + if (!it->second->empty()) + n++; + } + return n; +}