DoorKeeper/include/doorkeeper/components/tyler.hpp
King_DuckZ a82e8c16f6 Helper recursive map loader.
Recursion not tested since the file format is not ready yet, sorry.
2015-05-28 00:20:40 +02:00

47 lines
1.2 KiB
C++

#ifndef id6FB3FC97331449038D42AAAB4C01ABA1
#define id6FB3FC97331449038D42AAAB4C01ABA1
#include "doorkeeper/components/layer.hpp"
#include "doorkeeper/components/exception.hpp"
#include <vector>
#include <cassert>
#include <ciso646>
#include <memory>
#include <cstdint>
namespace dk {
template <typename T, uint32_t D>
class BaseMapSource;
template <uint32_t D>
class Tyler {
typedef std::unique_ptr<LayerBase<D>> LayerPtr;
typedef std::vector<LayerPtr> LayerList;
public:
typedef typename LayerBase<D>::coords coords;
Tyler ( void ) = delete;
Tyler ( Tyler&& ) = default;
explicit Tyler ( const coords& parTileSize );
~Tyler ( void ) noexcept = default;
typename coords::value_type tiles_count ( void ) const;
const coords& map_size ( void ) const { return m_size; }
template <typename T>
Layer<T, D>& push_layer ( BaseMapSource<T, D>* parTilemap );
template <typename T>
Layer<T, D>& push_layer ( BaseMapSource<T, D>* parTilemap, const coords& parSubdiv );
void preload ( const coords& parFrom, const coords& parTo );
private:
coords m_size;
const coords m_tilesize;
LayerList m_layers;
};
} //namespace dk
#include "doorkeeper/implem/tyler.inl"
#endif