X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fvideo%2Frenderer.hpp;h=5d4580798ebb99125b52057336192430941fc267;hb=c1277f5b7db9f55d1d28f658b4e804f32b76f0ce;hp=8e97e377fa1b967ba194f756aefd7930fb6767d1;hpb=d7f25606f0a2bb011c9fcf3eaf4498076f40f503;p=supertux.git diff --git a/src/video/renderer.hpp b/src/video/renderer.hpp index 8e97e377f..5d4580798 100644 --- a/src/video/renderer.hpp +++ b/src/video/renderer.hpp @@ -1,12 +1,10 @@ -// $Id: drawing_context.hpp 4986 2007-04-16 17:48:28Z matzeb $ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,26 +12,26 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -#ifndef SUPERTUX_RENDERER_H -#define SUPERTUX_RENDERER_H +// along with this program. If not, see . -#include -#include -#include +#ifndef HEADER_SUPERTUX_VIDEO_RENDERER_HPP +#define HEADER_SUPERTUX_VIDEO_RENDERER_HPP -#include +#include +#include +#include #include +#include +#include -#include "glutil.hpp" -#include "obstack/obstack.h" -#include "math/vector.hpp" #include "math/rect.hpp" -#include "surface.hpp" -#include "font.hpp" -#include "color.hpp" +#include "math/vector.hpp" +#include "obstack/obstack.h" +#include "video/color.hpp" +#include "video/font.hpp" +#include "video/glutil.hpp" +#include "video/surface.hpp" class Surface; class Texture; @@ -42,7 +40,8 @@ struct DrawingRequest; class Renderer { public: - virtual ~Renderer() {} + Renderer(); + virtual ~Renderer(); virtual void draw_surface(const DrawingRequest& request) = 0; virtual void draw_surface_part(const DrawingRequest& request) = 0; @@ -51,7 +50,15 @@ public: virtual void draw_inverse_ellipse(const DrawingRequest& request)= 0; virtual void do_take_screenshot() = 0; virtual void flip() = 0; + virtual void resize(int w, int h) = 0; + virtual void apply_config() = 0; + + static Renderer* instance() { assert(instance_); return instance_; } + +protected: + static Renderer* instance_; }; #endif +/* EOF */