tibia-client/src/otclient/core/tile.h

61 lines
2.0 KiB
C
Raw Normal View History

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 TILE_H
#define TILE_H
2011-08-15 23:02:52 +02:00
#include "declarations.h"
#include <framework/luascript/luaobject.h>
2011-08-15 16:11:24 +02:00
2011-08-15 23:02:52 +02:00
class Tile : public LuaObject
2011-08-15 16:11:24 +02:00
{
enum {
MAX_DRAW_ELEVATION = 24
};
2011-08-15 16:11:24 +02:00
public:
2011-08-31 01:39:14 +02:00
Tile(const Position& position);
2011-08-15 16:11:24 +02:00
void draw(int x, int y);
void clean();
2011-08-15 21:15:49 +02:00
2011-08-31 22:22:57 +02:00
void addEffect(const EffectPtr& effect);
void removeEffect(const EffectPtr& effect);
ThingPtr addThing(const ThingPtr& thing, int stackPos = -1);
ThingPtr getThing(int stackPos);
ThingPtr removeThing(int stackPos);
ThingPtr removeThing(const ThingPtr& thing);
2011-08-31 01:39:14 +02:00
const Position& getPosition() { return m_position; }
2011-08-31 22:22:57 +02:00
int getDrawElevation() { return m_drawElevation; }
std::vector<CreaturePtr> getCreatures();
ItemPtr getGround();
bool isFullyOpaque();
2011-08-31 01:39:14 +02:00
2011-08-15 16:11:24 +02:00
private:
2011-08-31 22:22:57 +02:00
std::vector<EffectPtr> m_effects;
std::vector<ThingPtr> m_things;
2011-08-31 01:39:14 +02:00
Position m_position;
2011-08-31 22:22:57 +02:00
int m_drawElevation;
2011-08-15 16:11:24 +02:00
};
#endif