Added an alpha parameter for transformation and got rid of ugly alpha draw_font(...
[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);
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       /// apply that alpha in the next draws */
97       void set_alpha(int alpha);
98
99     private:
100       class Transform
101         {
102         public:
103           Vector translation; // only translation for now...
104
105           Vector apply(const Vector& v) const
106             {
107               return v - translation;
108             }
109
110           Uint32 draw_effect;
111           float zoom;
112           int alpha;
113         };
114
115       /// the transform stack
116       std::vector<Transform> transformstack;
117       /// the currently active transform
118       Transform transform;
119
120       enum RequestType
121       {
122         SURFACE, SURFACE_PART, TEXT, GRADIENT, FILLRECT
123       };
124
125       struct SurfacePartRequest
126         {
127           const Surface* surface;
128           Vector source, size;
129         };
130
131       struct TextRequest
132         {
133           Font* font;
134           std::string text;
135           int allignment;
136         };
137
138       struct GradientRequest
139         {
140           Color top, bottom;
141           Vector size;
142         };
143
144       struct FillRectRequest
145         {
146           Color color;
147           Vector size;
148         };
149
150       struct DrawingRequest
151         {
152           int layer;
153           Uint32 drawing_effect;
154           float zoom;
155           int alpha;
156
157           RequestType type;
158           Vector pos;
159
160           void* request_data;
161
162           bool operator<(const DrawingRequest& other) const
163             {
164               return layer < other.layer;
165             }
166         };
167
168       void draw_surface_part(DrawingRequest& request);
169       void draw_text(DrawingRequest& request);
170       void draw_text_center(DrawingRequest& request);
171       void draw_gradient(DrawingRequest& request);
172       void draw_filled_rect(DrawingRequest& request);
173
174       typedef std::vector<DrawingRequest> DrawingRequests;
175       DrawingRequests drawingrequests;
176     };
177
178 } //namespace SuperTux
179
180 #endif /*SUPERTUX_DRAWINGCONTEXT_H*/
181