Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / video / lightmap.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_VIDEO_LIGHTMAP_HPP
18 #define HEADER_SUPERTUX_VIDEO_LIGHTMAP_HPP
19
20 #include <memory>
21 #include <string>
22 #include <vector>
23
24 #include <stdint.h>
25
26 #include <SDL_video.h>
27
28 #include "math/rect.hpp"
29 #include "math/vector.hpp"
30 #include "obstack/obstack.h"
31 #include "video/color.hpp"
32 #include "video/drawing_request.hpp"
33 #include "video/font.hpp"
34 #include "video/glutil.hpp"
35 #include "video/surface.hpp"
36
37 class Texture;
38 struct DrawingRequest;
39
40 class Lightmap
41 {
42 public:
43   virtual ~Lightmap() {}
44
45   virtual void start_draw(const Color &ambient_color) = 0;
46   virtual void end_draw() = 0;
47   virtual void do_draw() = 0;
48   virtual void draw_surface(const DrawingRequest& request) = 0;
49   virtual void draw_surface_part(const DrawingRequest& request) = 0;
50   virtual void draw_gradient(const DrawingRequest& request) = 0;
51   virtual void draw_filled_rect(const DrawingRequest& request) = 0;
52   virtual void get_light(const DrawingRequest& request) const = 0;
53 };
54
55 #endif
56
57 /* EOF */