a927b67276a8b9e44599445c1356ee2e327807ca
[supertux.git] / lib / video / drawing_context.h
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 Matthias Braun <matze@braunis.de
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 #ifndef SUPERTUX_DRAWINGCONTEXT_H
20 #define SUPERTUX_DRAWINGCONTEXT_H
21
22 #include <vector>
23 #include <string>
24
25 #include "SDL.h"
26
27 #include "../math/vector.h"
28 #include "../video/screen.h"
29 #include "../video/surface.h"
30
31 namespace SuperTux
32   {
33
34   class Surface;
35   class Font;
36
37   // some constants for predefined layer values
38   enum {
39     LAYER_BACKGROUND0 = -300,
40     LAYER_BACKGROUND1 = -200,
41     LAYER_BACKGROUNDTILES = -100,
42     LAYER_TILES = 0,
43     LAYER_OBJECTS = 100,
44     LAYER_FOREGROUNDTILES = 200,
45     LAYER_FOREGROUND0 = 300,
46     LAYER_FOREGROUND1 = 400,
47     LAYER_GUI         = 500
48   };
49
50   /// Handles drawing of things.
51   /**
52    * This class provides functions for drawing things on screen. It also
53    * maintains a stack of transforms that are applied to graphics.
54    */
55   class DrawingContext
56     {
57     public:
58       DrawingContext();
59       ~DrawingContext();
60
61       /// Adds a drawing request for a surface into the request list.
62       void draw_surface(const Surface* surface, const Vector& position, int layer,
63                         Uint32 drawing_effect = NONE_EFFECT);
64       /// Adds a drawing request for part of a surface.
65       void draw_surface_part(const Surface* surface, const Vector& source,
66                              const Vector& size, const Vector& dest, int layer,
67                              Uint32 drawing_effect = NONE_EFFECT);
68       /// Draws a text.
69       void draw_text(Font* font, const std::string& text, const Vector& position,
70                      int allignment, int layer,
71                      Uint32 drawing_effect = NONE_EFFECT, int alpha = 255);
72       /// Draws a color gradient onto the whole screen */
73       void draw_gradient(Color from, Color to, int layer);
74       /// Fills a rectangle.
75       void draw_filled_rect(const Vector& topleft, const Vector& size,
76                             Color color, int layer);
77
78       /// Processes all pending drawing requests and flushes the list.
79       void do_drawing();
80
81       const Vector& get_translation() const
82         {  return transform.translation;  }
83       Uint32 get_drawing_effect() const
84         {  return transform.draw_effect;  }
85
86       void set_translation(const Vector& newtranslation)
87         {  transform.translation = newtranslation;  }
88
89       void push_transform();
90       void pop_transform();
91
92       /// Apply that effect in the next draws (effects are listed on surface.h).
93       void set_drawing_effect(int effect);
94       /// apply that zoom in the next draws */
95       void set_zooming(float zoom);
96
97     private:
98       class Transform
99         {
100         public:
101           Vector translation; // only translation for now...
102
103           Vector apply(const Vector& v) const
104             {
105               return v - translation;
106             }
107
108           Uint32 draw_effect;
109           float zoom;
110         };
111
112       /// the transform stack
113       std::vector<Transform> transformstack;
114       /// the currently active transform
115       Transform transform;
116
117       enum RequestType
118       {
119         SURFACE, SURFACE_PART, TEXT, GRADIENT, FILLRECT
120       };
121
122       struct SurfacePartRequest
123         {
124           const Surface* surface;
125           Vector source, size;
126         };
127
128       struct TextRequest
129         {
130           Font* font;
131           std::string text;
132           int allignment;
133           int alpha;
134         };
135
136       struct GradientRequest
137         {
138           Color top, bottom;
139           Vector size;
140         };
141
142       struct FillRectRequest
143         {
144           Color color;
145           Vector size;
146         };
147
148       struct DrawingRequest
149         {
150           int layer;
151           Uint32 drawing_effect;
152           float zoom;
153
154           RequestType type;
155           Vector pos;
156
157           void* request_data;
158
159           bool operator<(const DrawingRequest& other) const
160             {
161               return layer < other.layer;
162             }
163         };
164
165       void draw_surface_part(DrawingRequest& request);
166       void draw_text(DrawingRequest& request);
167       void draw_text_center(DrawingRequest& request);
168       void draw_gradient(DrawingRequest& request);
169       void draw_filled_rect(DrawingRequest& request);
170
171       typedef std::vector<DrawingRequest> DrawingRequests;
172       DrawingRequests drawingrequests;
173     };
174
175 } //namespace SuperTux
176
177 #endif /*SUPERTUX_DRAWINGCONTEXT_H*/
178