b2d2ae238509ad82f18f75e7ea4f50ece8dada8e
[supertux.git] / src / supertux / tile.hpp
1 //  SuperTux
2 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
3 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #ifndef HEADER_SUPERTUX_SUPERTUX_TILE_HPP
19 #define HEADER_SUPERTUX_SUPERTUX_TILE_HPP
20
21 #include <vector>
22 #include <stdint.h>
23
24 #include "math/rectf.hpp"
25 #include "video/surface.hpp"
26 #include "util/reader_fwd.hpp"
27
28 class TileSet;
29 class DrawingContext;
30
31 class Tile
32 {
33 public:
34   /// bitset for tile attributes
35   enum {
36     /** solid tile that is indestructible by Tux */
37     SOLID     = 0x0001,
38     /** uni-directional solid tile */
39     UNISOLID  = 0x0002,
40     /** a brick that can be destroyed by jumping under it */
41     BRICK     = 0x0004,
42     /** the level should be finished when touching a goaltile.
43      * if data is 0 then the endsequence should be triggered, if data is 1
44      * then we can finish the level instantly.
45      */
46     GOAL      = 0x0008,
47     /** slope tile */
48     SLOPE     = 0x0010,
49     /** Bonusbox, content is stored in \a data */
50     FULLBOX   = 0x0020,
51     /** Tile is a coin */
52     COIN      = 0x0040,
53
54     /* interesting flags (the following are passed to gameobjects) */
55     FIRST_INTERESTING_FLAG = 0x0100,
56
57     /** an ice brick that makes tux sliding more than usual */
58     ICE       = 0x0100,
59     /** a water tile in which tux starts to swim */
60     WATER     = 0x0200,
61     /** a tile that hurts the player if he touches it */
62     HURTS     = 0x0400,
63     /** for lava: WATER, HURTS, FIRE */
64     FIRE      = 0x0800
65   };
66
67   /// worldmap flags
68   enum {
69     WORLDMAP_NORTH = 0x0001,
70     WORLDMAP_SOUTH = 0x0002,
71     WORLDMAP_EAST  = 0x0004,
72     WORLDMAP_WEST  = 0x0008,
73     WORLDMAP_DIR_MASK = 0x000f,
74
75     WORLDMAP_STOP  = 0x0010,
76
77     // convenience values ("C" stands for crossroads)
78     WORLDMAP_CNSE  = WORLDMAP_NORTH | WORLDMAP_SOUTH | WORLDMAP_EAST,
79     WORLDMAP_CNSW  = WORLDMAP_NORTH | WORLDMAP_SOUTH | WORLDMAP_WEST,
80     WORLDMAP_CNEW  = WORLDMAP_NORTH | WORLDMAP_EAST  | WORLDMAP_WEST,
81     WORLDMAP_CSEW  = WORLDMAP_SOUTH | WORLDMAP_EAST  | WORLDMAP_WEST,
82     WORLDMAP_CNSEW = WORLDMAP_NORTH | WORLDMAP_SOUTH | WORLDMAP_EAST | WORLDMAP_WEST
83   };
84
85   struct ImageSpec {
86     ImageSpec(const std::string& newfile, const Rectf& newrect)
87       : file(newfile), rect(newrect)
88     { }
89
90     std::string file;
91     Rectf rect;
92   };
93
94 private:
95   const TileSet&         tileset;
96   std::vector<ImageSpec> imagespecs;
97   std::vector<SurfacePtr>  images;
98
99   /// tile attributes
100   uint32_t attributes;
101
102   /** General purpose data attached to a tile (content of a box, type of coin)*/
103   int data;
104
105   float fps;
106
107 public:
108   Tile(const TileSet& tileset);
109   Tile(const TileSet& tileset, const std::vector<ImageSpec>& images,
110        uint32_t attributes, uint32_t data, float fps);
111   ~Tile();
112
113   /** load Surfaces, if not already loaded */
114   void load_images();
115
116   /** Draw a tile on the screen */
117   void draw(DrawingContext& context, const Vector& pos, int z_pos) const;
118
119   uint32_t getAttributes() const
120   { return attributes; }
121
122   int getData() const
123   { return data; }
124
125   void print_debug(int id) const;
126
127 private:
128   //Correct small oddities in attributes that naive people
129   //might miss (and rebuke them for it)
130   void correct_attributes();
131
132 private:
133   Tile(const Tile&);
134   Tile& operator=(const Tile&);
135 };
136
137 #endif
138
139 /* EOF */