0d5a87fa8974edbafb98a2349c22bc0ca3ea9606
[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 #ifndef SUPERTUX_CAMERA_H
20 #define SUPERTUX_CAMERA_H
21
22 #include <vector>
23 #include <cassert>
24 #include <memory>
25
26 #include "math/vector.hpp"
27 #include "game_object.hpp"
28 #include "video/drawing_context.hpp"
29 #include "serializable.hpp"
30 #include "timer.hpp"
31 #include "script_interface.hpp"
32
33 namespace lisp {
34 class Lisp;
35 }
36
37 class Sector;
38 class Path;
39 class PathWalker;
40 class CameraConfig;
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   void reset(const Vector& tuxpos);
55
56   /** return camera position */
57   const Vector& get_translation() const;
58
59   virtual void update(float elapsed_time);
60
61   virtual void draw(DrawingContext& );
62
63   virtual void expose(HSQUIRRELVM vm, SQInteger table_idx);
64   virtual void unexpose(HSQUIRRELVM vm, SQInteger table_idx);
65
66   // shake camera in a direction 1 time
67   void shake(float speed, float x, float y);
68
69   void set_scrolling(int scroll_x, int scroll_y)
70   {
71     translation.x = scroll_x;
72     translation.y = scroll_y;
73   }
74
75   /**
76    * scroll the upper left edge of the camera in scrolltime seconds
77    * to the position goal
78    */
79   void scroll_to(const Vector& goal, float scrolltime);
80
81   void reload_config();
82
83   enum CameraMode
84   {
85     NORMAL, AUTOSCROLL, SCROLLTO, MANUAL
86   };
87   CameraMode mode;
88
89   /**
90    * get the coordinates of the point directly in the center of this camera
91    */
92   Vector get_center() const;
93
94 private:
95   void update_scroll_normal(float elapsed_time);
96   void update_scroll_autoscroll(float elapsed_time);
97   void update_scroll_to(float elapsed_time);
98   void keep_in_bounds(Vector& vector);
99   void shake();
100
101   /**
102    * The camera basically provides lookeahead on the left or right side
103    * or is undecided.
104    */
105   enum LookaheadMode {
106     LOOKAHEAD_NONE, LOOKAHEAD_LEFT, LOOKAHEAD_RIGHT
107   };
108
109   Vector translation;
110
111   Sector* sector;
112
113   // normal mode
114   LookaheadMode lookahead_mode;
115   float changetime;
116   Vector lookahead_pos;
117   Vector peek_pos;
118   Vector cached_translation;
119
120   // autoscroll mode
121   std::auto_ptr<Path> autoscroll_path;
122   std::auto_ptr<PathWalker> autoscroll_walker;
123
124   // shaking
125   Timer shaketimer;
126   float shakespeed;
127   float shakedepth_x;
128   float shakedepth_y;
129
130   // scrollto mode
131   Vector scroll_from;
132   Vector scroll_goal;
133   float scroll_to_pos;
134   float scrollspeed;
135
136   CameraConfig *config;
137 };
138
139 #endif /*SUPERTUX_CAMERA_H*/