2011-08-28 15:17:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2011 OTClient <https://github.com/edubart/otclient>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-08-15 16:11:24 +02:00
|
|
|
#ifndef MAP_H
|
|
|
|
#define MAP_H
|
|
|
|
|
2011-08-17 06:45:55 +02:00
|
|
|
#include "creature.h"
|
2011-08-15 16:11:24 +02:00
|
|
|
#include <framework/graphics/declarations.h>
|
|
|
|
|
|
|
|
class Map
|
|
|
|
{
|
|
|
|
public:
|
2011-08-21 05:21:35 +02:00
|
|
|
void draw(const Rect& rect);
|
2011-08-16 07:47:35 +02:00
|
|
|
|
2011-08-24 05:58:23 +02:00
|
|
|
void addThing(ThingPtr thing, int stackpos = -1);
|
|
|
|
ThingPtr getThing(const Position& pos, int stackpos);
|
|
|
|
void removeThing(const Position& pos, int stackpos);
|
2011-08-17 07:04:45 +02:00
|
|
|
void removeThingByPtr(ThingPtr thing);
|
2011-08-17 06:45:55 +02:00
|
|
|
|
|
|
|
void clean();
|
|
|
|
void cleanTile(const Position& pos);
|
|
|
|
|
|
|
|
void setLight(const Light& light) { m_light = light; }
|
|
|
|
Light getLight() { return m_light; }
|
|
|
|
|
|
|
|
CreaturePtr getCreatureById(uint32 id);
|
|
|
|
void removeCreatureById(uint32 id);
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
private:
|
2011-08-16 02:30:31 +02:00
|
|
|
std::unordered_map<Position, TilePtr, PositionHasher> m_tiles;
|
2011-08-17 06:45:55 +02:00
|
|
|
std::map<uint32, CreaturePtr> m_creatures;
|
|
|
|
|
|
|
|
Light m_light;
|
|
|
|
|
2011-08-15 16:11:24 +02:00
|
|
|
|
|
|
|
FrameBufferPtr m_framebuffer;
|
|
|
|
};
|
|
|
|
|
2011-08-15 23:02:52 +02:00
|
|
|
extern Map g_map;
|
|
|
|
|
2011-08-15 16:11:24 +02:00
|
|
|
#endif
|