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.
20 #ifndef SUPERTUX_BACKGROUND_H
21 #define SUPERTUX_BACKGROUND_H
23 #include "video/surface.h"
24 #include "video/drawing_context.h"
25 #include "game_object.h"
26 #include "serializable.h"
28 using namespace SuperTux;
36 class Background : public GameObject, public Serializable
40 Background(const lisp::Lisp& reader);
41 virtual ~Background();
43 virtual void write(lisp::Writer& writer);
45 void set_image(const std::string& name, float bkgd_speed);
47 void set_gradient(Color top, Color bottom);
49 std::string get_image() const
51 float get_speed() const
53 Color get_gradient_top() const
54 { return gradient_top; }
55 Color get_gradient_bottom() const
56 { return gradient_bottom; }
58 virtual void action(float elapsed_time);
60 virtual void draw(DrawingContext& context);
64 INVALID, GRADIENT, IMAGE
69 std::string imagefile;
72 Color gradient_top, gradient_bottom;
75 #endif /*SUPERTUX_BACKGROUND_H*/