2015-02-01 00:21:17 +01:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015, Matthias Schiffer <mschiffer@universe-factory.net>
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Tag.hpp"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
|
|
|
|
namespace MinedMap {
|
|
|
|
namespace NBT {
|
|
|
|
|
2015-02-01 03:21:57 +01:00
|
|
|
class CompoundTag : public Tag, public std::unordered_map<std::string, std::shared_ptr<const Tag>> {
|
2018-07-21 16:17:40 +02:00
|
|
|
public:
|
2015-02-01 00:21:17 +01:00
|
|
|
CompoundTag(Buffer *buffer) {
|
|
|
|
while (true) {
|
2015-02-01 01:38:20 +01:00
|
|
|
std::pair<std::string, std::shared_ptr<const Tag>> v = Tag::readNamedTag(buffer);
|
2015-02-01 00:21:17 +01:00
|
|
|
if (v.second->getType() == Type::End)
|
|
|
|
break;
|
|
|
|
|
2015-02-01 03:21:57 +01:00
|
|
|
insert(std::move(v));
|
2015-02-01 00:21:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Type getType() const {
|
|
|
|
return Type::Compound;
|
|
|
|
}
|
2015-02-01 01:38:20 +01:00
|
|
|
|
2018-07-20 23:09:33 +02:00
|
|
|
virtual void print(std::ostream& os, const std::string &indent) const {
|
|
|
|
os << "{" << std::endl;
|
|
|
|
|
|
|
|
std::string inner = indent + " ";
|
|
|
|
|
|
|
|
for (const auto &item : *this) {
|
|
|
|
os << inner << item.first << ": " << item.second->getType() << " ";
|
|
|
|
item.second->print(os, inner);
|
|
|
|
os << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
os << indent << "}";
|
|
|
|
}
|
|
|
|
|
2015-02-01 05:18:51 +01:00
|
|
|
template<typename T> std::shared_ptr<const T> get(const std::string &key) const {
|
|
|
|
auto it = find(key);
|
|
|
|
if (it == end())
|
|
|
|
return std::shared_ptr<const T>();
|
|
|
|
|
|
|
|
return std::dynamic_pointer_cast<const T>(it->second);
|
2015-02-01 01:38:20 +01:00
|
|
|
}
|
|
|
|
|
2015-02-01 05:18:51 +01:00
|
|
|
template<typename T, typename... Args> std::shared_ptr<const T> get(const std::string &key, const Args &...args) const {
|
2015-02-01 03:21:57 +01:00
|
|
|
std::shared_ptr<const CompoundTag> tag = get<CompoundTag>(key);
|
2015-02-01 01:38:20 +01:00
|
|
|
if (!tag)
|
2015-02-01 03:21:57 +01:00
|
|
|
return std::shared_ptr<const T>();
|
2015-02-01 01:38:20 +01:00
|
|
|
|
2015-02-01 03:21:57 +01:00
|
|
|
return tag->get<T>(args...);
|
2015-02-01 01:38:20 +01:00
|
|
|
}
|
2015-02-01 00:21:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|