2012-10-14 16:14:06 +00:00
|
|
|
/*
|
|
|
|
* TileManager.cpp
|
|
|
|
*
|
|
|
|
* Created on: 08.08.2012
|
|
|
|
* Author: Felix
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "TileManager.h"
|
|
|
|
|
|
|
|
#include <Thor/Resources.hpp>
|
|
|
|
|
|
|
|
#include "../abstract/Sprite.h"
|
|
|
|
#include "../types/String.h"
|
|
|
|
#include "../util/Loader.h"
|
|
|
|
#include "../util/ResourceManager.h"
|
|
|
|
|
|
|
|
const Vector2i TileManager::TILE_SIZE = Vector2i(100, 100);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads tile resources.
|
|
|
|
*
|
|
|
|
* @param world Box2D world to create (physical) tiles in.
|
|
|
|
*/
|
2012-09-09 20:50:15 +00:00
|
|
|
TileManager::TileManager(b2World& world) :
|
|
|
|
mWorld(world) {
|
2012-10-14 16:14:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a tile.
|
|
|
|
*
|
|
|
|
* @param pType Type of the tile to create.
|
|
|
|
* @param pPosition Position of the tile in tile coordinates.
|
|
|
|
* @param world Box2D world object.
|
|
|
|
*/
|
|
|
|
TileManager::Tile::Tile(Type type, const TilePosition& position, b2World& world) :
|
|
|
|
Sprite(Yaml(getConfig(type)), PhysicalData(Vector2f(position.x * TILE_SIZE.x, position.y * TILE_SIZE.y),
|
|
|
|
world, CATEGORY_WORLD, (type == Type::FLOOR) ? MASK_NONE : MASK_ALL, false)),
|
|
|
|
mType(type) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a texture key for a certain tile type.
|
|
|
|
*
|
|
|
|
* @param type The type of tile to load a resource key for.
|
|
|
|
* @return Resource key to the correct texture.
|
|
|
|
*/
|
|
|
|
String
|
|
|
|
TileManager::Tile::getConfig(Type type) {
|
|
|
|
String filename;
|
|
|
|
switch (type) {
|
|
|
|
case Type::FLOOR:
|
|
|
|
filename = "tile_floor.yaml";
|
|
|
|
break;
|
|
|
|
case Type::WALL:
|
|
|
|
filename = "tile_wall.yaml";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new aurora::Exception("Invalid tile type.");
|
|
|
|
}
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the Type of this tile.
|
2012-09-09 20:50:15 +00:00
|
|
|
*/
|
2012-10-14 16:14:06 +00:00
|
|
|
TileManager::Type
|
|
|
|
TileManager::Tile::getType() const {
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the position of the tile with tile width/height as a unit.
|
|
|
|
*/
|
|
|
|
TileManager::TilePosition
|
|
|
|
TileManager::Tile::getTilePosition() const {
|
2012-09-09 20:50:15 +00:00
|
|
|
return TilePosition(getPosition().x / TILE_SIZE.x, getPosition().y / TILE_SIZE.y);
|
2012-10-14 16:14:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert a tile at the position. Deletes an existing tile first if one is at the position.
|
|
|
|
*
|
|
|
|
* @param position Grid coordinate of the tile (not pixel coordinate).
|
|
|
|
* @param type Type of tile to be inserted.
|
|
|
|
*/
|
2012-09-09 20:50:15 +00:00
|
|
|
void
|
2012-10-14 16:14:06 +00:00
|
|
|
TileManager::setTile(const TilePosition& position, Type type) {
|
|
|
|
for (auto it = mTiles.begin(); it != mTiles.end(); it++) {
|
|
|
|
if ((*it)->getTilePosition() == position) {
|
|
|
|
mTiles.erase(it);
|
|
|
|
}
|
|
|
|
}
|
2012-09-09 20:50:15 +00:00
|
|
|
mTiles.push_back(std::unique_ptr<Tile>(new Tile(type, position, mWorld)));
|
2012-10-14 16:14:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \copydoc sf::Drawable::draw
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
TileManager::draw(sf::RenderTarget& target, sf::RenderStates states) const {
|
|
|
|
for (auto it = mTiles.begin(); it != mTiles.end(); it++) {
|
|
|
|
target.draw((**it), states);
|
|
|
|
}
|
|
|
|
}
|