260a612caba009f29c0aea87125cd5e08b36c7b3
[supertux.git] / src / object / camera.hpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 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 #include <memory>
26
27 #include "math/vector.hpp"
28 #include "game_object.hpp"
29 #include "video/drawing_context.hpp"
30 #include "serializable.hpp"
31 #include "timer.hpp"
32 #include "script_interface.hpp"
33
34 namespace lisp {
35 class Lisp;
36 }
37
38 class Sector;
39 class Path;
40 class PathWalker;
41
42 class Camera : public GameObject, public Serializable, public ScriptInterface
43 {
44 public:
45   Camera(Sector* sector, std::string name = "");
46   virtual ~Camera();
47
48   /// parse camera mode from lisp file
49   void parse(const lisp::Lisp& reader);
50   /// write camera mode to a lisp file
51   virtual void write(lisp::Writer& writer);
52
53   /// reset camera postion
54   virtual void reset(const Vector& tuxpos);
55   virtual void reset_kd(const Vector& tuxpos);
56
57   /** return camera position */
58   const Vector& get_translation() const;
59
60   virtual void update(float elapsed_time);
61
62   virtual void draw(DrawingContext& )
63   {
64   }
65
66   virtual void expose(HSQUIRRELVM vm, SQInteger table_idx);
67   virtual void unexpose(HSQUIRRELVM vm, SQInteger table_idx);
68
69   // shake camera in a direction 1 time
70   void shake(float speed, float x, float y);
71
72   void set_scrolling(int scroll_x, int scroll_y)
73   {
74     translation.x = scroll_x;
75     translation.y = scroll_y;
76   }
77
78   /**
79    * scroll the upper left edge of the camera in scrolltime seconds
80    * to the position goal
81    */
82   void scroll_to(const Vector& goal, float scrolltime);
83
84   enum CameraMode
85   {
86     NORMAL, AUTOSCROLL, SCROLLTO, MANUAL
87   };
88   CameraMode mode;
89
90 private:
91   void update_scroll_normal(float elapsed_time);
92   void update_scroll_normal_kd(float elapsed_time);
93   void update_scroll_normal_exp(float elapsed_time);
94   void update_scroll_autoscroll(float elapsed_time);
95   void update_scroll_to(float elapsed_time);
96   void keep_in_bounds(Vector& vector);
97   void shake();
98
99   enum LeftRightScrollChange
100   {
101     NONE, LEFT, RIGHT
102   };
103
104   Vector translation;
105
106   Sector* sector;
107
108   // normal mode
109   bool do_backscrolling;
110   LeftRightScrollChange scrollchange;
111
112   // autoscroll mode
113   std::auto_ptr<Path> autoscroll_path;
114   std::auto_ptr<PathWalker> autoscroll_walker;
115
116   // shaking
117   Timer shaketimer;
118   float shakespeed;
119   float shakedepth_x;
120   float shakedepth_y;
121
122   // scrollto mode
123   Vector scroll_from;
124   Vector scroll_goal;
125   float scroll_to_pos;
126   float scrollspeed;
127 };
128
129 #endif /*SUPERTUX_CAMERA_H*/