Bugfix: change of level or level_subset is possible now.
[supertux.git] / src / camera.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_CAMERA_H
21 #define SUPERTUX_CAMERA_H
22
23 #include <vector>
24 #include <cassert>
25
26 #include "defines.h"
27 #include "math/vector.h"
28 #include "special/game_object.h"
29 #include "video/drawing_context.h"
30 #include "serializable.h"
31
32 using namespace SuperTux;
33
34 namespace SuperTux {
35 class LispReader;
36 }
37
38 class Sector;
39
40 class Camera : public GameObject, public Serializable
41 {
42 public:
43   Camera(Sector* sector);
44   virtual ~Camera();
45
46   /// parse camera mode from lisp file
47   void read(LispReader& reader);
48   /// write camera mode to a lisp file
49   virtual void write(LispWriter& writer);
50
51   /// reset camera postion
52   virtual void reset(const Vector& tuxpos);
53
54   /** @deprecated@ */
55   const Vector& get_translation() const;
56
57   virtual void action(float elapsed_time);
58
59   virtual void draw(DrawingContext& context)
60   {
61     UNUSED_ARG(context);
62   }
63
64   void set_scrolling(int scroll_x, int scroll_y)
65   {
66     translation.x = scroll_x;
67     translation.y = scroll_y;
68   }
69
70   enum CameraMode
71   {
72     NORMAL, AUTOSCROLL, MANUAL
73   };
74   CameraMode mode;
75
76 private:
77   void scroll_normal(float elapsed_time);
78   void scroll_autoscroll(float elapsed_time);
79   void keep_in_bounds();
80
81   enum LeftRightScrollChange
82   {
83     NONE, LEFT, RIGHT
84   };
85     
86   Vector translation;
87
88   Sector* sector;
89
90   // normal mode
91   bool do_backscrolling;
92   LeftRightScrollChange scrollchange;
93
94   // autoscroll mode
95   class ScrollPoint {
96   public:
97     Vector position;
98     float speed;
99   };
100   std::vector<ScrollPoint> scrollpoints;
101   size_t auto_idx;
102   float auto_t;
103   Vector current_dir;
104 };
105
106 #endif /*SUPERTUX_CAMERA_H*/
107