-Started to move stuff from library back to main game
[supertux.git] / src / object / background.h
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 Matthias Braun <matze@braunis.de
5 //
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.
10 //
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.
15 //
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
20 #ifndef SUPERTUX_BACKGROUND_H
21 #define SUPERTUX_BACKGROUND_H
22
23 #include "video/surface.h"
24 #include "video/drawing_context.h"
25 #include "game_object.h"
26 #include "serializable.h"
27
28 using namespace SuperTux;
29
30 class DisplayManager;
31
32 namespace lisp {
33 class Lisp;
34 }
35
36 class Background : public GameObject, public Serializable
37 {
38 public:
39   Background();
40   Background(const lisp::Lisp& reader);
41   virtual ~Background();
42
43   virtual void write(lisp::Writer& writer);
44
45   void set_image(const std::string& name, float bkgd_speed);
46
47   void set_gradient(Color top, Color bottom);
48
49   std::string get_image() const
50         { return imagefile; }
51   float get_speed() const
52         { return speed; }
53   Color get_gradient_top() const
54         { return gradient_top; }
55   Color get_gradient_bottom() const
56         { return gradient_bottom; }
57
58   virtual void action(float elapsed_time);
59
60   virtual void draw(DrawingContext& context);
61
62 private:
63   enum Type {
64     INVALID, GRADIENT, IMAGE      
65   };
66   
67   Type type;
68   int layer;
69   std::string imagefile;
70   float speed;
71   Surface* image;
72   Color gradient_top, gradient_bottom;
73 };
74
75 #endif /*SUPERTUX_BACKGROUND_H*/
76