|
- //
- // Lol Engine
- //
- // Copyright: (c) 2010-2013 Sam Hocevar <sam@hocevar.net>
- // This program is free software; you can redistribute it and/or
- // modify it under the terms of the Do What The Fuck You Want To
- // Public License, Version 2, as published by Sam Hocevar. See
- // http://www.wtfpl.net/ for more details.
- //
-
- //
- // The TileSet class
- // -----------------
- // A TileSet is a collection of tiles stored in a texture. Texture uploading
- // and freeing is done in the render tick method. When the refcount drops to
- // zero, the texture is freed.
- //
-
- #if !defined __LOL_TILESET_H__
- #define __LOL_TILESET_H__
-
- #include <stdint.h>
-
- #include "entity.h"
-
- namespace lol
- {
-
- class TileSetData;
-
- class TileSet : public Entity
- {
- public:
- TileSet(char const *path);
- virtual ~TileSet();
-
- /* Old style: path to PNG file */
- TileSet(char const *path, ivec2 size, ivec2 count);
-
- protected:
- /* Inherited from Entity */
- virtual char const *GetName();
- virtual void TickDraw(float seconds);
-
- public:
- /* New methods */
- int AddTile(ibox2 rect);
- int GetTileCount() const;
- ivec2 GetTileSize(int tileid) const;
-
- ivec2 GetTextureSize() const;
- ShaderTexture GetTexture() const;
- void Bind();
- void Unbind();
- void BlitTile(uint32_t id, vec3 pos, int o, vec2 scale,
- float *vertex, float *texture);
-
- private:
- void Init(char const *path);
-
- TileSetData *m_data;
- };
-
- } /* namespace lol */
-
- #endif // __LOL_TILESET_H__
|