1 // $Id: drawing_context.h 2334 2005-04-04 16:26:14Z grumbel $
3 // SuperTux - A Jump'n Run
4 // Copyright (C) 2004 Matthias Braun <matze@braunis.de
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.
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.
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
29 #include "math/vector.h"
30 #include "video/screen.h"
31 #include "video/surface.h"
32 #include "video/font.h"
36 // some constants for predefined layer values
38 LAYER_BACKGROUND0 = -300,
39 LAYER_BACKGROUND1 = -200,
40 LAYER_BACKGROUNDTILES = -100,
43 LAYER_FOREGROUNDTILES = 200,
44 LAYER_FOREGROUND0 = 300,
45 LAYER_FOREGROUND1 = 400,
49 /// Handles drawing of things.
51 * This class provides functions for drawing things on screen. It also
52 * maintains a stack of transforms that are applied to graphics.
57 DrawingContext(SDL_Surface* targetsurface = 0);
60 /// Adds a drawing request for a surface into the request list.
61 void draw_surface(const Surface* surface, const Vector& position,
63 /// Adds a drawing request for part of a surface.
64 void draw_surface_part(const Surface* surface, const Vector& source,
65 const Vector& size, const Vector& dest, int layer);
67 void draw_text(const Font* font, const std::string& text,
68 const Vector& position, FontAlignment alignment, int layer);
70 /// Draws text on screen center (feed Vector.x with a 0).
71 /// This is the same as draw_text() with a SCREEN_WIDTH/2 position and
72 /// alignment set to LEFT_ALLIGN
73 void draw_center_text(const Font* font, const std::string& text,
74 const Vector& position, int layer);
75 /// Draws a color gradient onto the whole screen */
76 void draw_gradient(Color from, Color to, int layer);
77 /// Fills a rectangle.
78 void draw_filled_rect(const Vector& topleft, const Vector& size,
79 Color color, int layer);
81 /// Processes all pending drawing requests and flushes the list.
84 const Vector& get_translation() const
85 { return transform.translation; }
87 void set_translation(const Vector& newtranslation)
88 { transform.translation = newtranslation; }
90 void push_transform();
93 /// Apply that effect in the next draws (effects are listed on surface.h).
94 void set_drawing_effect(uint32_t effect);
95 /// return currently applied drawing effect
96 uint32_t get_drawing_effect() const;
97 /// apply that zoom in the next draws */
98 void set_zooming(float zoom);
99 /// apply that alpha in the next draws */
100 void set_alpha(uint8_t alpha);
101 /// return currently set alpha
102 uint8_t get_alpha() const;
109 uint32_t drawing_effect;
114 : drawing_effect(NONE_EFFECT), zoom(1), alpha(255)
117 Vector apply(const Vector& v) const
119 return v - translation;
123 /// the transform stack
124 std::vector<Transform> transformstack;
125 /// the currently active transform
130 SURFACE, SURFACE_PART, TEXT, GRADIENT, FILLRECT
133 struct SurfacePartRequest
135 const Surface* surface;
143 FontAlignment alignment;
146 struct GradientRequest
152 struct FillRectRequest
158 struct DrawingRequest
164 uint32_t drawing_effect;
170 bool operator<(const DrawingRequest& other) const
172 return layer < other.layer;
176 void draw_surface_part(DrawingRequest& request);
177 void draw_text(DrawingRequest& request);
178 void draw_text_center(DrawingRequest& request);
179 void draw_gradient(DrawingRequest& request);
180 void draw_filled_rect(DrawingRequest& request);
182 typedef std::vector<DrawingRequest> DrawingRequests;
183 DrawingRequests drawingrequests;