X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fvideo%2Fdrawing_context.hpp;h=302b90e232e77a30a753e07b30236b29438eb3d6;hb=3aa6936791cf24344e27d452ab2fd8c33fb5a2e8;hp=c8f90127e596342665034b2c0e4dc38893bab941;hpb=20efd7620620892d92b1c7df124c3a0c8df22a82;p=supertux.git diff --git a/src/video/drawing_context.hpp b/src/video/drawing_context.hpp index c8f90127e..302b90e23 100644 --- a/src/video/drawing_context.hpp +++ b/src/video/drawing_context.hpp @@ -1,12 +1,10 @@ -// $Id$ -// // 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,30 +12,27 @@ // 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_DRAWINGCONTEXT_H -#define SUPERTUX_DRAWINGCONTEXT_H +// along with this program. If not, see . + +#ifndef HEADER_SUPERTUX_VIDEO_DRAWING_CONTEXT_HPP +#define HEADER_SUPERTUX_VIDEO_DRAWING_CONTEXT_HPP -#include -#include #include +#include +#include #include -#include - -#include "glutil.hpp" -#include "obstack/obstack.h" -#include "math/vector.hpp" #include "math/rect.hpp" -#include "drawing_request.hpp" -#include "font.hpp" -#include "color.hpp" +#include "math/vector.hpp" +#include "obstack/obstack.h" +#include "video/color.hpp" +#include "video/drawing_request.hpp" +#include "video/font.hpp" +#include "video/texture.hpp" class Surface; class Texture; -struct DrawingRequest; class Renderer; class Lightmap; @@ -65,19 +60,22 @@ public: const Vector& size, const Vector& dest, int layer); /// Draws a text. void draw_text(const Font* font, const std::string& text, - const Vector& position, FontAlignment alignment, int layer); + const Vector& position, FontAlignment alignment, int layer, Color color = Color(1.0,1.0,1.0)); /// Draws text on screen center (feed Vector.x with a 0). /// This is the same as draw_text() with a SCREEN_WIDTH/2 position and - /// alignment set to LEFT_ALLIGN + /// alignment set to LEFT_ALIGN void draw_center_text(const Font* font, const std::string& text, - const Vector& position, int layer); + const Vector& position, int layer, Color color = Color(1.0,1.0,1.0)); /// Draws a color gradient onto the whole screen */ void draw_gradient(const Color& from, const Color& to, int layer); /// Fills a rectangle. void draw_filled_rect(const Vector& topleft, const Vector& size, const Color& color, int layer); void draw_filled_rect(const Rect& rect, const Color& color, int layer); + void draw_filled_rect(const Rect& rect, const Color& color, float radius, int layer); + + void draw_inverse_ellipse(const Vector& pos, const Vector& size, const Color& color, int layer); /// Processes all pending drawing requests and flushes the list. void do_drawing(); @@ -118,6 +116,12 @@ public: void take_screenshot(); private: + typedef std::vector DrawingRequests; + +private: + void handle_drawing_requests(DrawingRequests& requests); + +private: class Transform { public: @@ -125,8 +129,10 @@ private: DrawingEffect drawing_effect; float alpha; - Transform() - : drawing_effect(NO_EFFECT), alpha(1.0f) + Transform() : + translation(), + drawing_effect(NO_EFFECT), + alpha(1.0f) { } Vector apply(const Vector& v) const @@ -135,6 +141,7 @@ private: } }; +private: Renderer *renderer; Lightmap *lightmap; @@ -146,10 +153,6 @@ private: std::vector blend_stack; Blend blend_mode; - typedef std::vector DrawingRequests; - - void handle_drawing_requests(DrawingRequests& requests); - DrawingRequests drawing_requests; DrawingRequests lightmap_requests; @@ -163,7 +166,12 @@ private: struct obstack obst; bool screenshot_requested; /**< true if a screenshot should be taken after the next frame has been rendered */ + +private: + DrawingContext(const DrawingContext&); + DrawingContext& operator=(const DrawingContext&); }; #endif +/* EOF */