2015-08-19 19:06:58 +00:00
|
|
|
/* Copyright 2015, Michele Santullo
|
|
|
|
* This file is part of DoorKeeper.
|
|
|
|
*
|
|
|
|
* DoorKeeper 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* DoorKeeper 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with DoorKeeper. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-12-09 21:30:06 +00:00
|
|
|
namespace dk {
|
2014-12-09 22:53:09 +00:00
|
|
|
///--------------------------------------------------------------------------
|
|
|
|
///--------------------------------------------------------------------------
|
2015-01-08 11:20:17 +00:00
|
|
|
template <uint32_t D>
|
2015-05-24 23:37:20 +00:00
|
|
|
Tyler<D>::Tyler (const coords& parTileSize) :
|
|
|
|
m_size(0),
|
2014-12-11 22:58:52 +00:00
|
|
|
m_tilesize(parTileSize)
|
2014-12-09 21:30:06 +00:00
|
|
|
{
|
|
|
|
}
|
2014-12-09 22:53:09 +00:00
|
|
|
|
|
|
|
///--------------------------------------------------------------------------
|
|
|
|
///--------------------------------------------------------------------------
|
2015-01-08 11:20:17 +00:00
|
|
|
template <uint32_t D>
|
2015-08-16 20:29:34 +00:00
|
|
|
typename Tyler<D>::coords::scalar_type Tyler<D>::tiles_count() const {
|
2015-08-17 11:37:17 +00:00
|
|
|
typename coords::scalar_type retval = 1;
|
|
|
|
for (uint32_t d = 0; d < D; ++d) {
|
2014-12-09 22:53:09 +00:00
|
|
|
retval *= m_size[d];
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
///--------------------------------------------------------------------------
|
|
|
|
///--------------------------------------------------------------------------
|
2015-01-08 11:20:17 +00:00
|
|
|
template <uint32_t D>
|
2014-12-09 22:53:09 +00:00
|
|
|
template <typename T>
|
2015-06-07 01:57:18 +00:00
|
|
|
Layer<T, D>& Tyler<D>::push_layer (BaseMapSource<D>* parTilemap, int parIndex) {
|
|
|
|
return push_layer<T>(parTilemap, coords(static_cast<CoordinateScalarType>(1)), parIndex);
|
2014-12-11 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///--------------------------------------------------------------------------
|
|
|
|
///--------------------------------------------------------------------------
|
2015-01-08 11:20:17 +00:00
|
|
|
template <uint32_t D>
|
2014-12-11 22:58:52 +00:00
|
|
|
template <typename T>
|
2015-06-07 01:57:18 +00:00
|
|
|
Layer<T, D>& Tyler<D>::push_layer (BaseMapSource<D>* parTilemap, const coords& parSubdiv, int parIndex) {
|
|
|
|
//TODO: store the index
|
|
|
|
(void)parIndex;
|
|
|
|
|
2014-12-29 15:17:59 +00:00
|
|
|
auto newLayer = new Layer<T, D>(m_tilesize / parSubdiv, m_tilesize, parTilemap);
|
2015-05-24 23:37:20 +00:00
|
|
|
if (m_size == coords(0)) {
|
|
|
|
m_size = newLayer->mapSize();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DK_ASSERT(newLayer->mapSize() == m_size);
|
|
|
|
if (newLayer->mapSize() != m_size) {
|
|
|
|
throw SizeMismatchException();
|
|
|
|
}
|
|
|
|
}
|
2014-12-29 15:17:59 +00:00
|
|
|
DK_ASSERT(newLayer->count() == m_size * parSubdiv);
|
2014-12-12 19:04:48 +00:00
|
|
|
m_layers.push_back(LayerPtr(newLayer));
|
|
|
|
return *newLayer;
|
2014-12-09 22:53:09 +00:00
|
|
|
}
|
2014-12-14 12:13:10 +00:00
|
|
|
|
2015-06-07 01:57:18 +00:00
|
|
|
///--------------------------------------------------------------------------
|
|
|
|
///--------------------------------------------------------------------------
|
|
|
|
template <uint32_t D>
|
|
|
|
template <typename T>
|
|
|
|
void Tyler<D>::push_layer_void (BaseMapSource<D>* parTilemap, int parIndex) {
|
|
|
|
push_layer<T>(parTilemap, parIndex);
|
|
|
|
}
|
|
|
|
|
2014-12-14 12:13:10 +00:00
|
|
|
///--------------------------------------------------------------------------
|
|
|
|
///--------------------------------------------------------------------------
|
2015-01-08 11:20:17 +00:00
|
|
|
template <uint32_t D>
|
2014-12-14 12:13:10 +00:00
|
|
|
void Tyler<D>::preload (const coords& parFrom, const coords& parTo) {
|
|
|
|
for (auto& layer : m_layers) {
|
|
|
|
layer->preload(parFrom, parTo);
|
|
|
|
}
|
|
|
|
}
|
2014-12-09 21:30:06 +00:00
|
|
|
} //namespace dk
|