set new camera defaults, make it work without camera.cfg
[supertux.git] / src / object / camera.cpp
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 #include <config.h>
20
21 #include <stdexcept>
22 #include <sstream>
23 #include <cmath>
24
25 #include "lisp/lisp.hpp"
26 #include "lisp/writer.hpp"
27 #include "lisp/list_iterator.hpp"
28 #include "lisp/parser.hpp"
29 #include "scripting/camera.hpp"
30 #include "scripting/squirrel_util.hpp"
31 #include "camera.hpp"
32 #include "player.hpp"
33 #include "tilemap.hpp"
34 #include "game_session.hpp"
35 #include "sector.hpp"
36 #include "main.hpp"
37 #include "object_factory.hpp"
38 #include "log.hpp"
39 #include "path.hpp"
40 #include "path_walker.hpp"
41
42 /* this is the fractional distance toward the peek
43    position to move each frame; lower is slower,
44    0 is never get there, 1 is instant */
45 static const float PEEK_ARRIVE_RATIO = 0.1;
46
47 class CameraConfig
48 {
49 public:
50   // 0 = No, 1 = Fix, 2 = Mario/Yoshi, 3 = Kirby
51   int ymode;
52   // as above, 4 = super metroid like
53   int xmode;
54   float kirby_rectsize_x;
55   float kirby_rectsize_y;
56   // where to fix the player (used for Yoshi and Fix camera)
57   float target_y;
58   float target_x;
59   // maximum scrolling speed in Y direction
60   float max_speed_y;
61   float max_speed_x;
62   // factor to dynamically increase max_speed_x based on player speed
63   float dynamic_max_speed_x;
64
65   // time the player has to face into the other direction before we assume a
66   // changed direction
67   float dirchange_time;
68   // edge_x
69   float edge_x;
70   // when too change from noscroll mode back to lookahead left/right mode
71   // set to <= 0 to disable noscroll mode
72   float sensitive_x;
73
74   float clamp_y;
75   float clamp_x;
76
77   float dynamic_speed_sm;
78
79   CameraConfig() {
80     xmode = 4;
81     ymode = 3;
82     target_x = .5f;
83     target_y = .5f;
84     max_speed_y = 100;
85     max_speed_x = 100;
86     clamp_x = 0.1666f;
87     clamp_y = 0.3f;
88     kirby_rectsize_x = 0.2f;
89     kirby_rectsize_y = 0.34f;
90     edge_x = 0.4f;
91     sensitive_x = -1;
92     dynamic_max_speed_x = 1.0;
93     dirchange_time = 0.2f;
94     dynamic_speed_sm = 0.8f;
95   }
96
97   void load(const std::string& filename)
98   {
99     lisp::Parser parser;
100     const lisp::Lisp* root = parser.parse(filename);
101     const lisp::Lisp* camconfig = root->get_lisp("camera-config");
102     if(camconfig == NULL)
103       throw std::runtime_error("file is not a camera config file.");
104
105     camconfig->get("xmode", xmode);
106     camconfig->get("ymode", ymode);
107     camconfig->get("target-x", target_x);
108     camconfig->get("target-y", target_y);
109     camconfig->get("max-speed-x", max_speed_x);
110     camconfig->get("max-speed-y", max_speed_y);
111     camconfig->get("dynamic-max-speed-x", dynamic_max_speed_x);
112     camconfig->get("dirchange-time", dirchange_time);
113     camconfig->get("clamp-x", clamp_x);
114     camconfig->get("clamp-y", clamp_y);
115     camconfig->get("kirby-rectsize-x", kirby_rectsize_x);
116     camconfig->get("kirby-rectsize-y", kirby_rectsize_y);
117     camconfig->get("edge-x", edge_x);
118     camconfig->get("sensitive-x", sensitive_x);
119     camconfig->get("dynamic-speed-sm", dynamic_speed_sm);
120   }
121 };
122
123 Camera::Camera(Sector* newsector, std::string name)
124   : mode(NORMAL), sector(newsector), lookahead_mode(LOOKAHEAD_NONE)
125 {
126   this->name = name;
127   config = new CameraConfig();
128   reload_config();
129 }
130
131 Camera::~Camera()
132 {
133   delete config;
134 }
135
136 void
137 Camera::expose(HSQUIRRELVM vm, SQInteger table_idx)
138 {
139   if(name.empty()) return;
140   Scripting::Camera* interface = new Scripting::Camera(this);
141   expose_object(vm, table_idx, interface, name, true);
142 }
143
144 void
145 Camera::unexpose(HSQUIRRELVM vm, SQInteger table_idx)
146 {
147   if(name.empty()) return;
148   Scripting::unexpose_object(vm, table_idx, name);
149 }
150
151 void
152 Camera::draw(DrawingContext& )
153 {
154 }
155
156 const Vector&
157 Camera::get_translation() const
158 {
159   return translation;
160 }
161
162 void
163 Camera::parse(const lisp::Lisp& reader)
164 {
165   std::string modename;
166
167   reader.get("mode", modename);
168   if(modename == "normal") {
169     mode = NORMAL;
170   } else if(modename == "autoscroll") {
171     mode = AUTOSCROLL;
172
173     const lisp::Lisp* pathLisp = reader.get_lisp("path");
174     if(pathLisp == NULL)
175       throw std::runtime_error("No path specified in autoscroll camera.");
176
177     autoscroll_path.reset(new Path());
178     autoscroll_path->read(*pathLisp);
179     autoscroll_walker.reset(new PathWalker(autoscroll_path.get()));
180   } else if(modename == "manual") {
181     mode = MANUAL;
182   } else {
183     std::stringstream str;
184     str << "invalid camera mode '" << modename << "'found in worldfile.";
185     throw std::runtime_error(str.str());
186   }
187 }
188
189 void
190 Camera::write(lisp::Writer& writer)
191 {
192   writer.start_list("camera");
193
194   if(mode == NORMAL) {
195     writer.write_string("mode", "normal");
196   } else if(mode == AUTOSCROLL) {
197     writer.write_string("mode", "autoscroll");
198     autoscroll_path->write(writer);
199   } else if(mode == MANUAL) {
200     writer.write_string("mode", "manual");
201   }
202
203   writer.end_list("camera");
204 }
205
206 void
207 Camera::reset(const Vector& tuxpos)
208 {
209   translation.x = tuxpos.x - SCREEN_WIDTH/2;
210   translation.y = tuxpos.y - SCREEN_HEIGHT/2;
211
212   shakespeed = 0;
213   shaketimer.stop();
214   keep_in_bounds(translation);
215
216   cached_translation = translation;
217 }
218
219 void
220 Camera::shake(float time, float x, float y)
221 {
222   shaketimer.start(time);
223   shakedepth_x = x;
224   shakedepth_y = y;
225   shakespeed = M_PI/2 / time;
226 }
227
228 void
229 Camera::scroll_to(const Vector& goal, float scrolltime)
230 {
231   scroll_from = translation;
232   scroll_goal = goal;
233   keep_in_bounds(scroll_goal);
234
235   scroll_to_pos = 0;
236   scrollspeed = 1.0 / scrolltime;
237   mode = SCROLLTO;
238 }
239
240 static const float EPSILON = .00001f;
241 static const float MAX_SPEED_Y = 140;
242
243 void
244 Camera::update(float elapsed_time)
245 {
246   switch(mode) {
247     case NORMAL:
248       update_scroll_normal(elapsed_time);
249       break;
250     case AUTOSCROLL:
251       update_scroll_autoscroll(elapsed_time);
252       break;
253     case SCROLLTO:
254       update_scroll_to(elapsed_time);
255       break;
256     default:
257       break;
258   }
259   shake();
260 }
261
262 void
263 Camera::reload_config()
264 {
265   try {
266     config->load("camera.cfg");
267   } catch(std::exception &e) {
268     log_debug << "Couldn't load camera.cfg, using defaults ("
269       << e.what() << ")";
270   }
271 }
272
273 float clamp(float val, float min, float max)
274 {
275   if(val < min)
276     return min;
277   if(val > max)
278     return max;
279
280   return val;
281 }
282
283 void
284 Camera::keep_in_bounds(Vector& translation)
285 {
286   float width = sector->get_width();
287   float height = sector->get_height();
288
289   // don't scroll before the start or after the level's end
290   translation.x = clamp(translation.x, 0, width - SCREEN_WIDTH);
291   translation.y = clamp(translation.y, 0, height - SCREEN_HEIGHT);
292
293   if (height < SCREEN_HEIGHT)
294     translation.y = height/2.0 - SCREEN_HEIGHT/2.0;
295   if (width < SCREEN_WIDTH)
296     translation.x = width/2.0 - SCREEN_WIDTH/2.0;
297 }
298
299 void
300 Camera::shake()
301 {
302   if(shaketimer.started()) {
303     translation.x -= sin(shaketimer.get_timegone() * shakespeed) * shakedepth_x;
304     translation.y -= sin(shaketimer.get_timegone() * shakespeed) * shakedepth_y;
305   }
306 }
307
308 void
309 Camera::update_scroll_normal(float elapsed_time)
310 {
311   const CameraConfig& config = *(this->config);
312   Player* player = sector->player;
313   const Vector& player_pos = player->get_bbox().get_middle();
314   static Vector last_player_pos = player_pos;
315   Vector player_delta = player_pos - last_player_pos;
316   last_player_pos = player_pos;
317
318   // check that we don't have division by zero later
319   if(elapsed_time < EPSILON)
320     return;
321
322   /****** Vertical Scrolling part ******/
323   int xmode = config.xmode;
324   int ymode = config.ymode;
325
326   if(player->is_dying() || sector->get_height() == 19*32) {
327     ymode = 0;
328   }
329   if(player->is_dying())
330     xmode = 0;
331
332   if(ymode == 1) {
333     cached_translation.y = player_pos.y - SCREEN_HEIGHT * config.target_y;
334   }
335   if(ymode == 2) {
336     // target_y is the high we target our scrolling at. This is not always the
337     // high of the player, but if he is jumping upwards we should use the
338     // position where he last touched the ground. (this probably needs
339     // exceptions for trampolines and similar things in the future)
340     float target_y;
341     if(player->fall_mode == Player::JUMPING)
342       target_y = player->last_ground_y + player->get_bbox().get_height();
343     else
344       target_y = player->get_bbox().p2.y;
345     target_y -= SCREEN_HEIGHT * config.target_y;
346
347     // delta_y is the distance we'd have to travel to directly reach target_y
348     float delta_y = cached_translation.y - target_y;
349     // speed is the speed the camera would need to reach target_y in this frame
350     float speed_y = delta_y / elapsed_time;
351
352     // limit the camera speed when jumping upwards
353     if(player->fall_mode != Player::FALLING
354         && player->fall_mode != Player::TRAMPOLINE_JUMP) {
355       speed_y = clamp(speed_y, -config.max_speed_y, config.max_speed_y);
356     }
357
358     // scroll with calculated speed
359     cached_translation.y -= speed_y * elapsed_time;
360   }
361   if(ymode == 3) {
362     float halfsize = config.kirby_rectsize_y * 0.5f;
363     cached_translation.y = clamp(cached_translation.y,
364         player_pos.y - SCREEN_HEIGHT * (0.5f + halfsize),
365         player_pos.y - SCREEN_HEIGHT * (0.5f - halfsize));
366   }
367   if(ymode == 4) {
368     float upperend = SCREEN_HEIGHT * config.edge_x;
369     float lowerend = SCREEN_HEIGHT * (1 - config.edge_x);
370
371     if (player_delta.y < -EPSILON) {
372       // walking left
373       lookahead_pos.y -= player_delta.y * config.dynamic_speed_sm;
374
375       if(lookahead_pos.y > lowerend) {
376         lookahead_pos.y = lowerend;
377       }
378     } else if (player_delta.y > EPSILON) {
379       // walking right
380       lookahead_pos.y -= player_delta.y * config.dynamic_speed_sm;
381       if(lookahead_pos.y < upperend) {
382         lookahead_pos.y = upperend;
383       }
384     }
385
386     // adjust for level ends
387     if (player_pos.y < upperend) {
388       lookahead_pos.y = upperend;
389     }
390     if (player_pos.y > sector->get_width() - upperend) {
391       lookahead_pos.y = lowerend;
392     }
393
394     cached_translation.y = player_pos.y - lookahead_pos.y;
395   }
396
397   translation.y = cached_translation.y;
398
399   if(ymode != 0) {
400     float top_edge, bottom_edge;
401     if(config.clamp_y <= 0) {
402       top_edge = 0;
403       bottom_edge = SCREEN_HEIGHT;
404     } else {
405       top_edge = SCREEN_HEIGHT*config.clamp_y;
406       bottom_edge = SCREEN_HEIGHT*(1-config.clamp_y);
407     }
408
409     float peek_to = 0;
410     float translation_compensation = player_pos.y - translation.y;
411
412     if(player->peeking_direction_y() == ::UP) {
413       peek_to = bottom_edge - translation_compensation;
414     } else if(player->peeking_direction_y() == ::DOWN) {
415       peek_to = top_edge - translation_compensation;
416     }
417
418     float peek_move = (peek_to - peek_pos.y) * PEEK_ARRIVE_RATIO;
419     if(fabs(peek_move) < 1.0) {
420       peek_move = 0.0;
421     }
422
423     peek_pos.y += peek_move;
424
425     translation.y -= peek_pos.y;
426
427     if(config.clamp_y > 0) {
428       translation.y = clamp(translation.y,
429                             player_pos.y - SCREEN_HEIGHT * (1-config.clamp_y),
430                             player_pos.y - SCREEN_HEIGHT * config.clamp_y);
431       cached_translation.y = clamp(cached_translation.y,
432                                    player_pos.y - SCREEN_HEIGHT * (1-config.clamp_y),
433                                    player_pos.y - SCREEN_HEIGHT * config.clamp_y);
434     }
435   }
436
437   /****** Horizontal scrolling part *******/
438
439   if(xmode == 1) {
440     cached_translation.x = player_pos.x - SCREEN_WIDTH * config.target_x;
441   }
442   if(xmode == 2) {
443     // our camera is either in leftscrolling, rightscrolling or
444     // nonscrollingmode.
445     //
446     // when suddenly changing directions while scrolling into the other
447     // direction abort scrolling, since tux might be going left/right at a
448     // relatively small part of the map (like when jumping upwards)
449
450     // Find out direction in which the player moves
451     LookaheadMode walkDirection;
452     if (player_delta.x < -EPSILON) walkDirection = LOOKAHEAD_LEFT;
453     else if (player_delta.x > EPSILON) walkDirection = LOOKAHEAD_RIGHT;
454     else if (player->dir == ::LEFT) walkDirection = LOOKAHEAD_LEFT;
455     else walkDirection = LOOKAHEAD_RIGHT;
456
457     float LEFTEND, RIGHTEND;
458     if(config.sensitive_x > 0) {
459       LEFTEND = SCREEN_WIDTH * config.sensitive_x;
460       RIGHTEND = SCREEN_WIDTH * (1-config.sensitive_x);
461     } else {
462       LEFTEND = SCREEN_WIDTH;
463       RIGHTEND = 0;
464     }
465
466     if(lookahead_mode == LOOKAHEAD_NONE) {
467       /* if we're undecided then look if we crossed the left or right
468        * "sensitive" area */
469       if(player_pos.x < cached_translation.x + LEFTEND) {
470         lookahead_mode = LOOKAHEAD_LEFT;
471       } else if(player_pos.x > cached_translation.x + RIGHTEND) {
472         lookahead_mode = LOOKAHEAD_RIGHT;
473       }
474       /* at the ends of a level it's obvious which way we will go */
475       if(player_pos.x < SCREEN_WIDTH*0.5) {
476         lookahead_mode = LOOKAHEAD_RIGHT;
477       } else if(player_pos.x >= sector->get_width() - SCREEN_WIDTH*0.5) {
478         lookahead_mode = LOOKAHEAD_LEFT;
479       }
480
481       changetime = -1;
482     } else if(lookahead_mode != walkDirection) {
483       /* player changed direction while camera was scrolling...
484        * he has to do this for a certain time to add robustness against
485        * sudden changes */
486       if(changetime < 0) {
487         changetime = game_time;
488       } else if(game_time - changetime > config.dirchange_time) {
489         if(lookahead_mode == LOOKAHEAD_LEFT &&
490            player_pos.x > cached_translation.x + RIGHTEND) {
491           lookahead_mode = LOOKAHEAD_RIGHT;
492         } else if(lookahead_mode == LOOKAHEAD_RIGHT &&
493                   player_pos.x < cached_translation.x + LEFTEND) {
494           lookahead_mode = LOOKAHEAD_LEFT;
495         } else {
496           lookahead_mode = LOOKAHEAD_NONE;
497         }
498       }
499     } else {
500       changetime = -1;
501     }
502
503     LEFTEND = SCREEN_WIDTH * config.edge_x;
504     RIGHTEND = SCREEN_WIDTH * (1-config.edge_x);
505
506     // calculate our scroll target depending on scroll mode
507     float target_x;
508     if(lookahead_mode == LOOKAHEAD_LEFT)
509       target_x = player_pos.x - RIGHTEND;
510     else if(lookahead_mode == LOOKAHEAD_RIGHT)
511       target_x = player_pos.x - LEFTEND;
512     else
513       target_x = cached_translation.x;
514
515     // that's the distance we would have to travel to reach target_x
516     float delta_x = cached_translation.x - target_x;
517     // the speed we'd need to travel to reach target_x in this frame
518     float speed_x = delta_x / elapsed_time;
519
520     // limit our speed
521     float player_speed_x = player_delta.x / elapsed_time;
522     float maxv = config.max_speed_x + (fabsf(player_speed_x * config.dynamic_max_speed_x));
523     speed_x = clamp(speed_x, -maxv, maxv);
524
525     // apply scrolling
526     cached_translation.x -= speed_x * elapsed_time;
527   }
528   if(xmode == 3) {
529     float halfsize = config.kirby_rectsize_x * 0.5f;
530     cached_translation.x = clamp(cached_translation.x,
531         player_pos.x - SCREEN_WIDTH * (0.5f + halfsize),
532         player_pos.x - SCREEN_WIDTH * (0.5f - halfsize));
533   }
534   if(xmode == 4) {
535     float LEFTEND = SCREEN_WIDTH * config.edge_x;
536     float RIGHTEND = SCREEN_WIDTH * (1 - config.edge_x);
537
538     if (player_delta.x < -EPSILON) {
539       // walking left
540       lookahead_pos.x -= player_delta.x * config.dynamic_speed_sm;
541       if(lookahead_pos.x > RIGHTEND) {
542         lookahead_pos.x = RIGHTEND;
543       }
544
545     } else if (player_delta.x > EPSILON) {
546       // walking right
547       lookahead_pos.x -= player_delta.x * config.dynamic_speed_sm;
548       if(lookahead_pos.x < LEFTEND) {
549           lookahead_pos.x = LEFTEND;
550       }
551     }
552
553     // adjust for level ends
554     if (player_pos.x < LEFTEND) {
555       lookahead_pos.x = LEFTEND;
556     }
557     if (player_pos.x > sector->get_width() - LEFTEND) {
558       lookahead_pos.x = RIGHTEND;
559     }
560
561     cached_translation.x = player_pos.x - lookahead_pos.x;
562   }
563
564   translation.x = cached_translation.x;
565
566   if(xmode != 0) {
567     float left_edge, right_edge;
568     if(config.clamp_x <= 0) {
569       left_edge = 0;
570       right_edge = SCREEN_WIDTH;
571     } else {
572       left_edge = SCREEN_WIDTH*config.clamp_x;
573       right_edge = SCREEN_WIDTH*(1-config.clamp_x);
574     }
575
576     float peek_to = 0;
577     float translation_compensation = player_pos.x - translation.x;
578
579     if(player->peeking_direction_x() == ::LEFT) {
580       peek_to = right_edge - translation_compensation;
581     } else if(player->peeking_direction_x() == ::RIGHT) {
582       peek_to = left_edge - translation_compensation;
583     }
584
585     float peek_move = (peek_to - peek_pos.x) * PEEK_ARRIVE_RATIO;
586     if(fabs(peek_move) < 1.0) {
587       peek_move = 0.0;
588     }
589
590     peek_pos.x += peek_move;
591
592     translation.x -= peek_pos.x;
593
594     if(config.clamp_x > 0) {
595       translation.x = clamp(translation.x,
596                             player_pos.x - SCREEN_WIDTH * (1-config.clamp_x),
597                             player_pos.x - SCREEN_WIDTH * config.clamp_x);
598
599       cached_translation.x = clamp(cached_translation.x,
600                                    player_pos.x - SCREEN_WIDTH * (1-config.clamp_x),
601                                    player_pos.x - SCREEN_WIDTH * config.clamp_x);
602     }
603   }
604
605   keep_in_bounds(translation);
606   keep_in_bounds(cached_translation);
607 }
608
609 void
610 Camera::update_scroll_autoscroll(float elapsed_time)
611 {
612   Player* player = sector->player;
613   if(player->is_dying())
614     return;
615
616   translation = autoscroll_walker->advance(elapsed_time);
617
618   keep_in_bounds(translation);
619 }
620
621 void
622 Camera::update_scroll_to(float elapsed_time)
623 {
624   scroll_to_pos += elapsed_time * scrollspeed;
625   if(scroll_to_pos >= 1.0) {
626     mode = MANUAL;
627     translation = scroll_goal;
628     return;
629   }
630
631   translation = scroll_from + (scroll_goal - scroll_from) * scroll_to_pos;
632 }
633
634 Vector
635 Camera::get_center() const {
636   return translation + Vector(SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2);
637 }
638