a891b80f7e117f82ae755f9be47c83540141f2ac
[supertux.git] / src / object / player.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU General Public License
6 //  as published by the Free Software Foundation; either version 2
7 //  of the License, or (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
18 #include "object/player.hpp"
19
20 #include "audio/sound_manager.hpp"
21 #include "badguy/badguy.hpp"
22 #include "control/input_manager.hpp"
23 #include "math/random_generator.hpp"
24 #include "object/bullet.hpp"
25 #include "object/camera.hpp"
26 #include "object/display_effect.hpp"
27 #include "object/falling_coin.hpp"
28 #include "object/particles.hpp"
29 #include "object/portable.hpp"
30 #include "object/sprite_particle.hpp"
31 #include "scripting/squirrel_util.hpp"
32 #include "supertux/game_session.hpp"
33 #include "supertux/globals.hpp"
34 #include "supertux/sector.hpp"
35 #include "supertux/tile.hpp"
36 #include "trigger/climbable.hpp"
37
38 #include <math.h>
39
40 //#define SWIMMING
41
42 namespace {
43 static const float BUTTJUMP_MIN_VELOCITY_Y = 400.0f;
44 static const float SHOOTING_TIME = .150f;
45 static const float GLIDE_TIME_PER_FLOWER = 0.5f;
46 static const float STONE_TIME_PER_FLOWER = 2.0f;
47
48 /** number of idle stages, including standing */
49 static const unsigned int IDLE_STAGE_COUNT = 5;
50 /**
51  * how long to play each idle animation in milliseconds
52  * '0' means the sprite action is played once before moving onto the next
53  * animation
54  */
55 static const int IDLE_TIME[] = { 5000, 0, 2500, 0, 2500 };
56 /** idle stages */
57 static const std::string IDLE_STAGES[] =
58 { "stand",
59   "idle",
60   "stand",
61   "idle",
62   "stand" };
63
64 /** acceleration in horizontal direction when walking
65  * (all accelerations are in  pixel/s^2) */
66 static const float WALK_ACCELERATION_X = 300;
67 /** acceleration in horizontal direction when running */
68 static const float RUN_ACCELERATION_X = 400;
69 /** acceleration when skidding */
70 static const float SKID_XM = 200;
71 /** time of skidding in seconds */
72 static const float SKID_TIME = .3f;
73 /** maximum walk velocity (pixel/s) */
74 static const float MAX_WALK_XM = 230;
75 /** maximum run velocity (pixel/s) */
76 static const float MAX_RUN_XM = 320;
77 /** bonus run velocity addition (pixel/s) */
78 static const float BONUS_RUN_XM = 80;
79 /** maximum horizontal climb velocity */
80 static const float MAX_CLIMB_XM = 96;
81 /** maximum vertical climb velocity */
82 static const float MAX_CLIMB_YM = 128;
83 /** maximum vertical glide velocity */
84 static const float MAX_GLIDE_YM = 128;
85 /** instant velocity when tux starts to walk */
86 static const float WALK_SPEED = 100;
87
88 /** multiplied by WALK_ACCELERATION to give friction */
89 static const float NORMAL_FRICTION_MULTIPLIER = 1.5f;
90 /** multiplied by WALK_ACCELERATION to give friction */
91 static const float ICE_FRICTION_MULTIPLIER = 0.1f;
92 static const float ICE_ACCELERATION_MULTIPLIER = 0.25f;
93
94 /** time of the kick (kicking mriceblock) animation */
95 static const float KICK_TIME = .3f;
96
97 /** if Tux cannot unduck for this long, he will get hurt */
98 static const float UNDUCK_HURT_TIME = 0.25f;
99 /** gravity is higher after the jump key is released before
100     the apex of the jump is reached */
101 static const float JUMP_EARLY_APEX_FACTOR = 3.0;
102
103 static const float JUMP_GRACE_TIME = 0.25f; /**< time before hitting the ground that the jump button may be pressed (and still trigger a jump) */
104
105 /* Tux's collision rectangle */
106 static const float TUX_WIDTH = 31.8f;
107 static const float RUNNING_TUX_WIDTH = 34;
108 static const float SMALL_TUX_HEIGHT = 30.8f;
109 static const float BIG_TUX_HEIGHT = 62.8f;
110 static const float DUCKED_TUX_HEIGHT = 31.8f;
111
112 bool no_water = true;
113 }
114
115 Player::Player(PlayerStatus* _player_status, const std::string& name_) :
116   deactivated(),
117   controller(),
118   scripting_controller(),
119   player_status(_player_status),
120   duck(),
121   dead(),
122   dying(),
123   winning(),
124   backflipping(),
125   backflip_direction(),
126   peekingX(),
127   peekingY(),
128   ability_time(),
129   stone(),
130   swimming(),
131   speedlimit(),
132   scripting_controller_old(0),
133   jump_early_apex(),
134   on_ice(),
135   ice_this_frame(),
136   lightsprite(SpriteManager::current()->create("images/creatures/tux/light.sprite")),
137   powersprite(SpriteManager::current()->create("images/creatures/tux/powerups.sprite")),
138   dir(),
139   old_dir(),
140   last_ground_y(),
141   fall_mode(),
142   on_ground_flag(),
143   jumping(),
144   can_jump(),
145   jump_button_timer(),
146   wants_buttjump(),
147   does_buttjump(),
148   invincible_timer(),
149   skidding_timer(),
150   safe_timer(),
151   kick_timer(),
152   shooting_timer(),
153   ability_timer(),
154   cooldown_timer(),
155   dying_timer(),
156   growing(),
157   backflip_timer(),
158   physic(),
159   visible(),
160   grabbed_object(NULL),
161   sprite(),
162   airarrow(),
163   floor_normal(),
164   ghost_mode(false),
165   edit_mode(false),
166   unduck_hurt_timer(),
167   idle_timer(),
168   idle_stage(0),
169   climbing(0)
170 {
171   this->name = name_;
172   controller = InputManager::current()->get_controller();
173   scripting_controller.reset(new CodeController());
174   // if/when we have complete penny gfx, we can
175   // load those instead of Tux's sprite in the
176   // constructor
177   sprite = SpriteManager::current()->create("images/creatures/tux/tux.sprite");
178   airarrow = Surface::create("images/engine/hud/airarrow.png");
179   idle_timer.start(IDLE_TIME[0]/1000.0f);
180
181   SoundManager::current()->preload("sounds/bigjump.wav");
182   SoundManager::current()->preload("sounds/jump.wav");
183   SoundManager::current()->preload("sounds/hurt.wav");
184   SoundManager::current()->preload("sounds/kill.wav");
185   SoundManager::current()->preload("sounds/skid.wav");
186   SoundManager::current()->preload("sounds/flip.wav");
187   SoundManager::current()->preload("sounds/invincible_start.ogg");
188   SoundManager::current()->preload("sounds/splash.ogg");
189
190   init();
191 }
192
193 Player::~Player()
194 {
195   if (climbing) stop_climbing(*climbing);
196 }
197
198 void
199 Player::init()
200 {
201   if(is_big())
202     set_size(TUX_WIDTH, BIG_TUX_HEIGHT);
203   else
204     set_size(TUX_WIDTH, SMALL_TUX_HEIGHT);
205
206   dir = RIGHT;
207   old_dir = dir;
208   duck = false;
209   dead = false;
210
211   dying = false;
212   winning = false;
213   peekingX = AUTO;
214   peekingY = AUTO;
215   last_ground_y = 0;
216   fall_mode = ON_GROUND;
217   jumping = false;
218   jump_early_apex = false;
219   can_jump = true;
220   wants_buttjump = false;
221   does_buttjump = false;
222   growing = false;
223   deactivated = false;
224   backflipping = false;
225   backflip_direction = 0;
226   sprite->set_angle(0.0f);
227   powersprite->set_angle(0.0f);
228   lightsprite->set_angle(0.0f);
229   visible = true;
230   ability_time = 0;
231   stone = false;
232   swimming = false;
233   on_ice = false;
234   ice_this_frame = false;
235   speedlimit = 0; //no special limit
236   lightsprite->set_blend(Blend(GL_SRC_ALPHA, GL_ONE));
237
238   on_ground_flag = false;
239   grabbed_object = NULL;
240
241   climbing = 0;
242
243   physic.reset();
244 }
245
246 void
247 Player::expose(HSQUIRRELVM vm, SQInteger table_idx)
248 {
249   if (name.empty())
250     return;
251
252   scripting::expose_object(vm, table_idx, dynamic_cast<scripting::Player *>(this), name, false);
253 }
254
255 void
256 Player::unexpose(HSQUIRRELVM vm, SQInteger table_idx)
257 {
258   if (name.empty())
259     return;
260
261   scripting::unexpose_object(vm, table_idx, name);
262 }
263
264 float
265 Player::get_speedlimit()
266 {
267   return speedlimit;
268 }
269
270 void
271 Player::set_speedlimit(float newlimit)
272 {
273   speedlimit=newlimit;
274 }
275
276 void
277 Player::set_controller(Controller* controller_)
278 {
279   this->controller = controller_;
280 }
281
282 void
283 Player::set_winning()
284 {
285   if( ! is_winning() ){
286     winning = true;
287     invincible_timer.start(10000.0f);
288   }
289 }
290
291 void
292 Player::use_scripting_controller(bool use_or_release)
293 {
294   if ((use_or_release == true) && (controller != scripting_controller.get())) {
295     scripting_controller_old = get_controller();
296     set_controller(scripting_controller.get());
297   }
298   if ((use_or_release == false) && (controller == scripting_controller.get())) {
299     set_controller(scripting_controller_old);
300     scripting_controller_old = 0;
301   }
302 }
303
304 void
305 Player::do_scripting_controller(std::string control, bool pressed)
306 {
307   for(int i = 0; Controller::controlNames[i] != 0; ++i) {
308     if(control == std::string(Controller::controlNames[i])) {
309       scripting_controller->press(Controller::Control(i), pressed);
310     }
311   }
312 }
313
314 bool
315 Player::adjust_height(float new_height)
316 {
317   Rectf bbox2 = bbox;
318   bbox2.move(Vector(0, bbox.get_height() - new_height));
319   bbox2.set_height(new_height);
320
321
322   if(new_height > bbox.get_height()) {
323     Rectf additional_space = bbox2;
324     additional_space.set_height(new_height - bbox.get_height());
325     if(!Sector::current()->is_free_of_statics(additional_space, this, true))
326       return false;
327   }
328
329   // adjust bbox accordingly
330   // note that we use members of moving_object for this, so we can run this during CD, too
331   set_pos(bbox2.p1);
332   set_size(bbox2.get_width(), bbox2.get_height());
333   return true;
334 }
335
336 void
337 Player::trigger_sequence(std::string sequence_name)
338 {
339   if (climbing) stop_climbing(*climbing);
340   backflipping = false;
341   backflip_direction = 0;
342   sprite->set_angle(0.0f);
343   powersprite->set_angle(0.0f);
344   lightsprite->set_angle(0.0f);
345   GameSession::current()->start_sequence(sequence_name);
346 }
347
348 void
349 Player::update(float elapsed_time)
350 {
351   if( no_water ){
352     swimming = false;
353   }
354   no_water = true;
355
356   if(dying && dying_timer.check()) {
357     set_bonus(NO_BONUS, true);
358     dead = true;
359     return;
360   }
361
362   if(!dying && !deactivated)
363     handle_input();
364
365   /*
366   // handle_input() calls apply_friction() when Tux is not walking, so we'll have to do this ourselves
367   if (deactivated)
368   apply_friction();
369   */
370
371   // extend/shrink tux collision rectangle so that we fall through/walk over 1
372   // tile holes
373   if(fabsf(physic.get_velocity_x()) > MAX_WALK_XM) {
374     set_width(RUNNING_TUX_WIDTH);
375   } else {
376     set_width(TUX_WIDTH);
377   }
378
379   // on downward slopes, adjust vertical velocity so tux walks smoothly down
380   if (on_ground() && !dying) {
381     if(floor_normal.y != 0) {
382       if ((floor_normal.x * physic.get_velocity_x()) >= 0) {
383         physic.set_velocity_y(250);
384       }
385     }
386   }
387
388   // handle backflipping
389   if (backflipping && !dying) {
390     //prevent player from changing direction when backflipping
391     dir = (backflip_direction == 1) ? LEFT : RIGHT;
392     if (backflip_timer.started()) physic.set_velocity_x(100 * backflip_direction);
393     //rotate sprite during flip
394     sprite->set_angle(sprite->get_angle() + (dir==LEFT?1:-1) * elapsed_time * (360.0f / 0.5f));
395     if (player_status->bonus == EARTH_BONUS || player_status->bonus == AIR_BONUS) {
396       powersprite->set_angle(sprite->get_angle());
397       if (player_status->bonus == EARTH_BONUS)
398         lightsprite->set_angle(sprite->get_angle());
399     }
400   }
401
402   // set fall mode...
403   if(on_ground()) {
404     fall_mode = ON_GROUND;
405     last_ground_y = get_pos().y;
406   } else {
407     if(get_pos().y > last_ground_y)
408       fall_mode = FALLING;
409     else if(fall_mode == ON_GROUND)
410       fall_mode = JUMPING;
411   }
412
413   // check if we landed
414   if(on_ground()) {
415     jumping = false;
416     if (backflipping && (backflip_timer.get_timegone() > 0.15f)) {
417       backflipping = false;
418       backflip_direction = 0;
419       if (!stone) {
420         sprite->set_angle(0.0f);
421         powersprite->set_angle(0.0f);
422         lightsprite->set_angle(0.0f);
423       }
424
425       // if controls are currently deactivated, we take care of standing up ourselves
426       if (deactivated)
427         do_standup();
428     }
429     if (player_status->bonus == AIR_BONUS)
430       ability_time = player_status->max_air_time * GLIDE_TIME_PER_FLOWER;
431   }
432
433   // calculate movement for this frame
434   movement = physic.get_movement(elapsed_time);
435
436   if(grabbed_object != NULL && !dying) {
437     position_grabbed_object();
438   }
439
440   if(grabbed_object != NULL && dying){
441     grabbed_object->ungrab(*this, dir);
442     grabbed_object = NULL;
443   }
444
445   if(!ice_this_frame && on_ground())
446     on_ice = false;
447
448   on_ground_flag = false;
449   ice_this_frame = false;
450
451   // when invincible, spawn particles
452   if (invincible_timer.started())
453   {
454     if (graphicsRandom.rand(0, 2) == 0) {
455       float px = graphicsRandom.randf(bbox.p1.x+0, bbox.p2.x-0);
456       float py = graphicsRandom.randf(bbox.p1.y+0, bbox.p2.y-0);
457       Vector ppos = Vector(px, py);
458       Vector pspeed = Vector(0, 0);
459       Vector paccel = Vector(0, 0);
460       Sector::current()->add_object(std::make_shared<SpriteParticle>(
461                                       "images/objects/particles/sparkle.sprite",
462                                       // draw bright sparkle when there is lots of time left,
463                                       // dark sparkle when invincibility is about to end
464                                       (invincible_timer.get_timeleft() > TUX_INVINCIBLE_TIME_WARNING) ?
465                                       // make every other a longer sparkle to make trail a bit fuzzy
466                                       (size_t(game_time*20)%2) ? "small" : "medium"
467                                       :
468                                       "dark", ppos, ANCHOR_MIDDLE, pspeed, paccel, LAYER_OBJECTS+1+5));
469     }
470   }
471
472   if (growing) {
473     if (sprite->animation_done()) growing = false;
474   }
475
476   // when climbing animate only while moving
477   if(climbing){
478     if((physic.get_velocity_x()==0)&&(physic.get_velocity_y()==0))
479       sprite->stop_animation();
480     else
481       sprite->set_animation_loops(-1);
482   }
483
484 }
485
486 bool
487 Player::on_ground()
488 {
489   return on_ground_flag;
490 }
491
492 bool
493 Player::is_big()
494 {
495   if(player_status->bonus == NO_BONUS)
496     return false;
497
498   return true;
499 }
500
501 void
502 Player::apply_friction()
503 {
504   if ((on_ground()) && (fabs(physic.get_velocity_x()) < WALK_SPEED)) {
505     physic.set_velocity_x(0);
506     physic.set_acceleration_x(0);
507   } else {
508     float friction = WALK_ACCELERATION_X * (on_ice ? ICE_FRICTION_MULTIPLIER : NORMAL_FRICTION_MULTIPLIER);
509     if(physic.get_velocity_x() < 0) {
510       physic.set_acceleration_x(friction);
511     } else if(physic.get_velocity_x() > 0) {
512       physic.set_acceleration_x(-friction);
513     } // no friction for physic.get_velocity_x() == 0
514   }
515 }
516
517 void
518 Player::handle_horizontal_input()
519 {
520   float vx = physic.get_velocity_x();
521   float vy = physic.get_velocity_y();
522   float ax = physic.get_acceleration_x();
523   float ay = physic.get_acceleration_y();
524
525   float dirsign = 0;
526   if(!duck || physic.get_velocity_y() != 0) {
527     if(controller->hold(Controller::LEFT) && !controller->hold(Controller::RIGHT)) {
528       old_dir = dir;
529       dir = LEFT;
530       dirsign = -1;
531     } else if(!controller->hold(Controller::LEFT)
532               && controller->hold(Controller::RIGHT)) {
533       old_dir = dir;
534       dir = RIGHT;
535       dirsign = 1;
536     }
537   }
538
539   // do not run if we're holding something which slows us down
540   if ( grabbed_object && grabbed_object->is_hampering() ) {
541     ax = dirsign * WALK_ACCELERATION_X;
542     // limit speed
543     if(vx >= MAX_WALK_XM && dirsign > 0) {
544       vx = MAX_WALK_XM;
545       ax = 0;
546     } else if(vx <= -MAX_WALK_XM && dirsign < 0) {
547       vx = -MAX_WALK_XM;
548       ax = 0;
549     }
550   } else {
551     if( vx * dirsign < MAX_WALK_XM ) {
552       ax = dirsign * WALK_ACCELERATION_X;
553     } else {
554       ax = dirsign * RUN_ACCELERATION_X;
555     }
556     // limit speed
557     if(vx >= MAX_RUN_XM + BONUS_RUN_XM *((player_status->bonus == AIR_BONUS) ? 1 : 0) && dirsign > 0) {
558       vx = MAX_RUN_XM + BONUS_RUN_XM *((player_status->bonus == AIR_BONUS) ? 1 : 0);
559       ax = 0;
560     } else if(vx <= -MAX_RUN_XM - BONUS_RUN_XM *((player_status->bonus == AIR_BONUS) ? 1 : 0) && dirsign < 0) {
561       vx = -MAX_RUN_XM - BONUS_RUN_XM *((player_status->bonus == AIR_BONUS) ? 1 : 0);
562       ax = 0;
563     }
564   }
565
566   // we can reach WALK_SPEED without any acceleration
567   if(dirsign != 0 && fabs(vx) < WALK_SPEED) {
568     vx = dirsign * WALK_SPEED;
569   }
570
571   //Check speedlimit.
572   if( speedlimit > 0 &&  vx * dirsign >= speedlimit ) {
573     vx = dirsign * speedlimit;
574     ax = 0;
575   }
576
577   // changing directions?
578   if(on_ground() && ((vx < 0 && dirsign >0) || (vx>0 && dirsign<0))) {
579     // let's skid!
580     if(fabs(vx)>SKID_XM && !skidding_timer.started()) {
581       skidding_timer.start(SKID_TIME);
582       SoundManager::current()->play("sounds/skid.wav");
583       // dust some particles
584       Sector::current()->add_object(
585         std::make_shared<Particles>(
586           Vector(dir == LEFT ? get_bbox().p2.x : get_bbox().p1.x, get_bbox().p2.y),
587           dir == LEFT ? 50 : -70, dir == LEFT ? 70 : -50, 260, 280,
588           Vector(0, 300), 3, Color(.4f, .4f, .4f), 3, .8f, LAYER_OBJECTS+1));
589
590       ax *= 2.5;
591     } else {
592       ax *= 2;
593     }
594   }
595
596   if(on_ice) {
597     ax *= ICE_ACCELERATION_MULTIPLIER;
598   }
599
600   physic.set_velocity(vx, vy);
601   physic.set_acceleration(ax, ay);
602
603   // we get slower when not pressing any keys
604   if(dirsign == 0) {
605     apply_friction();
606   }
607
608 }
609
610 void
611 Player::do_cheer()
612 {
613   do_duck();
614   do_backflip();
615   do_standup();
616 }
617
618 void
619 Player::do_duck() {
620   if (duck)
621     return;
622   if (!is_big())
623     return;
624
625   if (physic.get_velocity_y() != 0)
626     return;
627   if (!on_ground())
628     return;
629   if (does_buttjump)
630     return;
631
632   if (adjust_height(DUCKED_TUX_HEIGHT)) {
633     duck = true;
634     growing = false;
635     unduck_hurt_timer.stop();
636   } else {
637     // FIXME: what now?
638   }
639 }
640
641 void
642 Player::do_standup() {
643   if (!duck)
644     return;
645   if (!is_big())
646     return;
647   if (backflipping)
648     return;
649   if (stone)
650     return;
651
652   if (adjust_height(BIG_TUX_HEIGHT)) {
653     duck = false;
654     unduck_hurt_timer.stop();
655   } else {
656     // if timer is not already running, start it.
657     if (unduck_hurt_timer.get_period() == 0) {
658       unduck_hurt_timer.start(UNDUCK_HURT_TIME);
659     }
660     else if (unduck_hurt_timer.check()) {
661       kill(false);
662     }
663   }
664
665 }
666
667 void
668 Player::do_backflip() {
669   if (!duck)
670     return;
671   if (!on_ground())
672     return;
673
674   backflip_direction = (dir == LEFT)?(+1):(-1);
675   backflipping = true;
676   do_jump((player_status->bonus == AIR_BONUS) ? -720 : -580);
677   SoundManager::current()->play("sounds/flip.wav");
678   backflip_timer.start(TUX_BACKFLIP_TIME);
679 }
680
681 void
682 Player::do_jump(float yspeed) {
683   if (!on_ground())
684     return;
685
686   physic.set_velocity_y(yspeed);
687   //bbox.move(Vector(0, -1));
688   jumping = true;
689   on_ground_flag = false;
690   can_jump = false;
691
692   // play sound
693   if (is_big()) {
694     SoundManager::current()->play("sounds/bigjump.wav");
695   } else {
696     SoundManager::current()->play("sounds/jump.wav");
697   }
698 }
699
700 void
701 Player::early_jump_apex()
702 {
703   if (!jump_early_apex)
704   {
705     jump_early_apex = true;
706     physic.set_gravity_modifier(JUMP_EARLY_APEX_FACTOR);
707   }
708 }
709
710 void
711 Player::do_jump_apex()
712 {
713   if (jump_early_apex)
714   {
715     jump_early_apex = false;
716     physic.set_gravity_modifier(1.0f);
717   }
718 }
719
720 void
721 Player::handle_vertical_input()
722 {
723   // Press jump key
724   if(controller->pressed(Controller::JUMP)) jump_button_timer.start(JUMP_GRACE_TIME);
725   if(controller->hold(Controller::JUMP) && jump_button_timer.started() && can_jump) {
726     jump_button_timer.stop();
727     if (duck) {
728       // when running, only jump a little bit; else do a backflip
729       if ((physic.get_velocity_x() != 0) ||
730           (controller->hold(Controller::LEFT)) ||
731           (controller->hold(Controller::RIGHT)))
732       {
733         do_jump(-300);
734       }
735       else
736       {
737         do_backflip();
738       }
739     } else {
740       // airflower allows for higher jumps-
741       // jump a bit higher if we are running; else do a normal jump
742       if(player_status->bonus == AIR_BONUS)
743         do_jump((fabs(physic.get_velocity_x()) > MAX_WALK_XM) ? -620 : -580);
744       else
745         do_jump((fabs(physic.get_velocity_x()) > MAX_WALK_XM) ? -580 : -520);
746     }
747     // airflower glide only when holding jump key
748   } else  if (controller->hold(Controller::JUMP) && player_status->bonus == AIR_BONUS && physic.get_velocity_y() > MAX_GLIDE_YM) {
749       if (ability_time > 0 && !ability_timer.started())
750         ability_timer.start(ability_time);
751       else if (ability_timer.started()) {
752         // glide stops after some duration or if buttjump is initiated
753         if ((ability_timer.get_timeleft() <= 0.05f) || controller->hold(Controller::DOWN)) {
754           ability_time = 0;
755           ability_timer.stop();
756         } else {
757           physic.set_velocity_y(MAX_GLIDE_YM);
758           physic.set_acceleration_y(0);
759         }
760       }
761     }
762
763
764   // Let go of jump key
765   else if(!controller->hold(Controller::JUMP)) {
766     if (!backflipping && jumping && physic.get_velocity_y() < 0) {
767       jumping = false;
768       early_jump_apex();
769     }
770     if (player_status->bonus == AIR_BONUS && ability_timer.started()){
771       ability_time = ability_timer.get_timeleft();
772       ability_timer.stop();
773     }
774   }
775
776   if(jump_early_apex && physic.get_velocity_y() >= 0) {
777     do_jump_apex();
778   }
779
780   /* In case the player has pressed Down while in a certain range of air,
781      enable butt jump action */
782   if (controller->hold(Controller::DOWN) && !duck && is_big() && !on_ground()) {
783     wants_buttjump = true;
784     if (physic.get_velocity_y() >= BUTTJUMP_MIN_VELOCITY_Y) does_buttjump = true;
785   }
786
787   /* When Down is not held anymore, disable butt jump */
788   if(!controller->hold(Controller::DOWN)) {
789     wants_buttjump = false;
790     does_buttjump = false;
791   }
792
793   // swimming
794   physic.set_acceleration_y(0);
795 #ifdef SWIMMING
796   if (swimming) {
797     if (controller->hold(Controller::UP) || controller->hold(Controller::JUMP))
798       physic.set_acceleration_y(-2000);
799     physic.set_velocity_y(physic.get_velocity_y() * 0.94);
800   }
801 #endif
802 }
803
804 void
805 Player::handle_input()
806 {
807   if (ghost_mode) {
808     handle_input_ghost();
809     return;
810   }
811   if (climbing) {
812     handle_input_climbing();
813     return;
814   }
815
816   /* Peeking */
817   if( controller->released( Controller::PEEK_LEFT ) || controller->released( Controller::PEEK_RIGHT ) ) {
818     peekingX = AUTO;
819   }
820   if( controller->released( Controller::PEEK_UP ) || controller->released( Controller::PEEK_DOWN ) ) {
821     peekingY = AUTO;
822   }
823   if( controller->pressed( Controller::PEEK_LEFT ) ) {
824     peekingX = LEFT;
825   }
826   if( controller->pressed( Controller::PEEK_RIGHT ) ) {
827     peekingX = RIGHT;
828   }
829   if(!backflipping && !jumping && on_ground()) {
830     if( controller->pressed( Controller::PEEK_UP ) ) {
831       peekingY = UP;
832     } else if( controller->pressed( Controller::PEEK_DOWN ) ) {
833       peekingY = DOWN;
834     }
835   }
836
837   /* Handle horizontal movement: */
838   if (!backflipping && !stone) handle_horizontal_input();
839
840   /* Jump/jumping? */
841   if (on_ground())
842     can_jump = true;
843
844   /* Handle vertical movement: */
845   if (!stone) handle_vertical_input();
846
847   /* Shoot! */
848   if (controller->pressed(Controller::ACTION) && (player_status->bonus == FIRE_BONUS || player_status->bonus == ICE_BONUS)) {
849     if((player_status->bonus == FIRE_BONUS &&
850       Sector::current()->get_active_bullets() < player_status->max_fire_bullets) ||
851       (player_status->bonus == ICE_BONUS &&
852       Sector::current()->get_active_bullets() < player_status->max_ice_bullets))
853     {
854       Vector pos = get_pos() + ((dir == LEFT)? Vector(0, bbox.get_height()/2) : Vector(32, bbox.get_height()/2));
855       auto new_bullet = std::make_shared<Bullet>(pos, physic.get_velocity_x(), dir, player_status->bonus);
856       Sector::current()->add_object(new_bullet);
857
858       SoundManager::current()->play("sounds/shoot.wav");
859       shooting_timer.start(SHOOTING_TIME);
860     }
861   }
862
863   /* Turn to Stone */
864   if (controller->pressed(Controller::DOWN) && player_status->bonus == EARTH_BONUS && !cooldown_timer.started()) {
865     if (controller->hold(Controller::ACTION) && !ability_timer.started()) {
866       ability_timer.start(player_status->max_earth_time * STONE_TIME_PER_FLOWER);
867       powersprite->stop_animation();
868       stone = true;
869       physic.set_gravity_modifier(1.0f); // Undo jump_early_apex
870     }
871   }
872
873   if (stone)
874     apply_friction();
875
876   /* Revert from Stone */
877   if (stone && (!controller->hold(Controller::ACTION) || ability_timer.get_timeleft() <= 0.5f)) {
878     cooldown_timer.start(ability_timer.get_timegone()/2.0f); //The longer stone form is used, the longer until it can be used again
879     ability_timer.stop();
880     sprite->set_angle(0.0f);
881     powersprite->set_angle(0.0f);
882     lightsprite->set_angle(0.0f);
883     stone = false;
884     for (int i = 0; i < 8; i++)
885     {
886       Vector ppos = Vector(get_bbox().get_left() + 8 + 16*((int)i/4), get_bbox().get_top() + 16*(i%4));
887       float grey = graphicsRandom.randf(.4f, .8f);
888       Color pcolor = Color(grey, grey, grey);
889       Sector::current()->add_object(std::make_shared<Particles>(ppos, -60, 240, 42, 81, Vector(0, 500),
890                                                                 8, pcolor, 4 + graphicsRandom.randf(-0.4, 0.4),
891                                                                 0.8 + graphicsRandom.randf(0, 0.4), LAYER_OBJECTS+2));
892     }
893   }
894
895   /* Duck or Standup! */
896   if (controller->hold(Controller::DOWN) && !stone) {
897     do_duck();
898   } else {
899     do_standup();
900   }
901
902   /* grabbing */
903   try_grab();
904
905   if(!controller->hold(Controller::ACTION) && grabbed_object) {
906     MovingObject* moving_object = dynamic_cast<MovingObject*> (grabbed_object);
907     if(moving_object) {
908       // move the grabbed object a bit away from tux
909       Rectf grabbed_bbox = moving_object->get_bbox();
910       Rectf dest_;
911       dest_.p2.y = bbox.get_top() + bbox.get_height()*0.66666;
912       dest_.p1.y = dest_.p2.y - grabbed_bbox.get_height();
913       if(dir == LEFT) {
914         dest_.p2.x = bbox.get_left() - 1;
915         dest_.p1.x = dest_.p2.x - grabbed_bbox.get_width();
916       } else {
917         dest_.p1.x = bbox.get_right() + 1;
918         dest_.p2.x = dest_.p1.x + grabbed_bbox.get_width();
919       }
920       if(Sector::current()->is_free_of_tiles(dest_, true)) {
921         moving_object->set_pos(dest_.p1);
922         if(controller->hold(Controller::UP)) {
923           grabbed_object->ungrab(*this, UP);
924         } else {
925           grabbed_object->ungrab(*this, dir);
926         }
927         grabbed_object = NULL;
928       }
929     } else {
930       log_debug << "Non MovingObject grabbed?!?" << std::endl;
931     }
932   }
933
934   /* stop backflipping at will */
935   if( backflipping && ( !controller->hold(Controller::JUMP) && !backflip_timer.started()) ){
936     backflipping = false;
937     backflip_direction = 0;
938     sprite->set_angle(0.0f);
939     powersprite->set_angle(0.0f);
940     lightsprite->set_angle(0.0f);
941   }
942 }
943
944 void
945 Player::position_grabbed_object()
946 {
947   MovingObject* moving_object = dynamic_cast<MovingObject*>(grabbed_object);
948   assert(moving_object);
949
950   // Position where we will hold the lower-inner corner
951   Vector pos(get_bbox().get_left() + get_bbox().get_width()/2,
952       get_bbox().get_top() + get_bbox().get_height()*0.66666);
953
954   // Adjust to find the grabbed object's upper-left corner
955   if (dir == LEFT)
956     pos.x -= moving_object->get_bbox().get_width();
957   pos.y -= moving_object->get_bbox().get_height();
958
959   grabbed_object->grab(*this, pos, dir);
960 }
961
962 void
963 Player::try_grab()
964 {
965   if(controller->hold(Controller::ACTION) && !grabbed_object
966      && !duck) {
967     Sector* sector = Sector::current();
968     Vector pos;
969     if(dir == LEFT) {
970       pos = Vector(bbox.get_left() - 5, bbox.get_bottom() - 16);
971     } else {
972       pos = Vector(bbox.get_right() + 5, bbox.get_bottom() - 16);
973     }
974
975     for(Sector::Portables::iterator i = sector->portables.begin();
976         i != sector->portables.end(); ++i) {
977       Portable* portable = *i;
978       if(!portable->is_portable())
979         continue;
980
981       // make sure the Portable is a MovingObject
982       MovingObject* moving_object = dynamic_cast<MovingObject*> (portable);
983       assert(moving_object);
984       if(moving_object == NULL)
985         continue;
986
987       // make sure the Portable isn't currently non-solid
988       if(moving_object->get_group() == COLGROUP_DISABLED) continue;
989
990       // check if we are within reach
991       if(moving_object->get_bbox().contains(pos)) {
992         if (climbing) stop_climbing(*climbing);
993         grabbed_object = portable;
994         position_grabbed_object();
995         break;
996       }
997     }
998   }
999 }
1000
1001 void
1002 Player::handle_input_ghost()
1003 {
1004   float vx = 0;
1005   float vy = 0;
1006   if (controller->hold(Controller::LEFT)) {
1007     dir = LEFT;
1008     vx -= MAX_RUN_XM * 2;
1009   }
1010   if (controller->hold(Controller::RIGHT)) {
1011     dir = RIGHT;
1012     vx += MAX_RUN_XM * 2;
1013   }
1014   if ((controller->hold(Controller::UP)) || (controller->hold(Controller::JUMP))) {
1015     vy -= MAX_RUN_XM * 2;
1016   }
1017   if (controller->hold(Controller::DOWN)) {
1018     vy += MAX_RUN_XM * 2;
1019   }
1020   if (controller->hold(Controller::ACTION)) {
1021     set_ghost_mode(false);
1022   }
1023   physic.set_velocity(vx, vy);
1024   physic.set_acceleration(0, 0);
1025 }
1026
1027 void
1028 Player::add_coins(int count)
1029 {
1030   player_status->add_coins(count);
1031 }
1032
1033 int
1034 Player::get_coins()
1035 {
1036   return player_status->coins;
1037 }
1038
1039 bool
1040 Player::add_bonus(const std::string& bonustype)
1041 {
1042   BonusType type = NO_BONUS;
1043
1044   if(bonustype == "grow") {
1045     type = GROWUP_BONUS;
1046   } else if(bonustype == "fireflower") {
1047     type = FIRE_BONUS;
1048   } else if(bonustype == "iceflower") {
1049     type = ICE_BONUS;
1050   } else if(bonustype == "airflower") {
1051     type = AIR_BONUS;
1052   } else if(bonustype == "earthflower") {
1053     type = EARTH_BONUS;
1054   } else if(bonustype == "none") {
1055     type = NO_BONUS;
1056   } else {
1057     std::ostringstream msg;
1058     msg << "Unknown bonus type "  << bonustype;
1059     throw std::runtime_error(msg.str());
1060   }
1061
1062   return add_bonus(type);
1063 }
1064
1065 bool
1066 Player::add_bonus(BonusType type, bool animate)
1067 {
1068   // always ignore NO_BONUS
1069   if (type == NO_BONUS) {
1070     return true;
1071   }
1072
1073   // ignore GROWUP_BONUS if we're already big
1074   if (type == GROWUP_BONUS) {
1075     if (player_status->bonus != NO_BONUS)
1076       return true;
1077   }
1078
1079   return set_bonus(type, animate);
1080 }
1081
1082 bool
1083 Player::set_bonus(BonusType type, bool animate)
1084 {
1085   if((player_status->bonus == NO_BONUS) && (type != NO_BONUS)) {
1086     if (!adjust_height(BIG_TUX_HEIGHT)) {
1087       log_debug << "Can't adjust Tux height" << std::endl;
1088       return false;
1089     }
1090     if(animate) {
1091       growing = true;
1092       sprite->set_action((dir == LEFT)?"grow-left":"grow-right", 1);
1093     }
1094     if (climbing) stop_climbing(*climbing);
1095   }
1096
1097   if (type == NO_BONUS) {
1098     if (does_buttjump) does_buttjump = false;
1099   }
1100
1101   if ((type == NO_BONUS) || (type == GROWUP_BONUS)) {
1102     if ((player_status->bonus == FIRE_BONUS) && (animate)) {
1103       // visually lose helmet
1104       Vector ppos = Vector((bbox.p1.x + bbox.p2.x) / 2, bbox.p1.y);
1105       Vector pspeed = Vector(((dir==LEFT) ? +100 : -100), -300);
1106       Vector paccel = Vector(0, 1000);
1107       std::string action = (dir==LEFT)?"left":"right";
1108       Sector::current()->add_object(std::make_shared<SpriteParticle>("images/objects/particles/firetux-helmet.sprite", action, ppos, ANCHOR_TOP, pspeed, paccel, LAYER_OBJECTS-1));
1109       if (climbing) stop_climbing(*climbing);
1110     }
1111     if ((player_status->bonus == ICE_BONUS) && (animate)) {
1112       // visually lose cap
1113       Vector ppos = Vector((bbox.p1.x + bbox.p2.x) / 2, bbox.p1.y);
1114       Vector pspeed = Vector(((dir==LEFT) ? +100 : -100), -300);
1115       Vector paccel = Vector(0, 1000);
1116       std::string action = (dir==LEFT)?"left":"right";
1117       Sector::current()->add_object(std::make_shared<SpriteParticle>("images/objects/particles/icetux-cap.sprite", action, ppos, ANCHOR_TOP, pspeed, paccel, LAYER_OBJECTS-1));
1118       if (climbing) stop_climbing(*climbing);
1119     }
1120     if ((player_status->bonus == AIR_BONUS) && (animate)) {
1121       // visually lose hat
1122       Vector ppos = Vector((bbox.p1.x + bbox.p2.x) / 2, bbox.p1.y);
1123       Vector pspeed = Vector(((dir==LEFT) ? +100 : -100), -300);
1124       Vector paccel = Vector(0, 1000);
1125       std::string action = (dir==LEFT)?"left":"right";
1126       Sector::current()->add_object(std::make_shared<SpriteParticle>("images/objects/particles/airtux-hat.sprite", action, ppos, ANCHOR_TOP, pspeed, paccel, LAYER_OBJECTS-1));
1127       if (climbing) stop_climbing(*climbing);
1128     }
1129     if ((player_status->bonus == EARTH_BONUS) && (animate)) {
1130       // visually lose hard-hat
1131       Vector ppos = Vector((bbox.p1.x + bbox.p2.x) / 2, bbox.p1.y);
1132       Vector pspeed = Vector(((dir==LEFT) ? +100 : -100), -300);
1133       Vector paccel = Vector(0, 1000);
1134       std::string action = (dir==LEFT)?"left":"right";
1135       Sector::current()->add_object(std::make_shared<SpriteParticle>("images/objects/particles/earthtux-hardhat.sprite", action, ppos, ANCHOR_TOP, pspeed, paccel, LAYER_OBJECTS-1));
1136       if (climbing) stop_climbing(*climbing);
1137     }
1138     player_status->max_fire_bullets = 0;
1139     player_status->max_ice_bullets = 0;
1140     player_status->max_air_time = 0;
1141     player_status->max_earth_time = 0;
1142   }
1143   if (type == FIRE_BONUS) player_status->max_fire_bullets++;
1144   if (type == ICE_BONUS) player_status->max_ice_bullets++;
1145   if (type == AIR_BONUS) player_status->max_air_time++;
1146   if (type == EARTH_BONUS) player_status->max_earth_time++;
1147
1148   player_status->bonus = type;
1149   return true;
1150 }
1151
1152 void
1153 Player::set_visible(bool visible_)
1154 {
1155   this->visible = visible_;
1156   if( visible_ )
1157     set_group(COLGROUP_MOVING);
1158   else
1159     set_group(COLGROUP_DISABLED);
1160 }
1161
1162 bool
1163 Player::get_visible()
1164 {
1165   return visible;
1166 }
1167
1168 void
1169 Player::kick()
1170 {
1171   kick_timer.start(KICK_TIME);
1172 }
1173
1174 void
1175 Player::draw(DrawingContext& context)
1176 {
1177   if(!visible)
1178     return;
1179
1180   // if Tux is above camera, draw little "air arrow" to show where he is x-wise
1181   if (Sector::current() && Sector::current()->camera && (get_bbox().p2.y - 16 < Sector::current()->camera->get_translation().y)) {
1182     float px = get_pos().x + (get_bbox().p2.x - get_bbox().p1.x - airarrow.get()->get_width()) / 2;
1183     float py = Sector::current()->camera->get_translation().y;
1184     py += std::min(((py - (get_bbox().p2.y + 16)) / 4), 16.0f);
1185     context.draw_surface(airarrow, Vector(px, py), LAYER_HUD - 1);
1186   }
1187
1188   std::string sa_prefix = "";
1189   std::string sa_postfix = "";
1190
1191   if (player_status->bonus == GROWUP_BONUS)
1192     sa_prefix = "big";
1193   else if (player_status->bonus == FIRE_BONUS)
1194     sa_prefix = "fire";
1195   else if (player_status->bonus == ICE_BONUS)
1196     sa_prefix = "ice";
1197   else if (player_status->bonus == AIR_BONUS)
1198     sa_prefix = "air";
1199   else if (player_status->bonus == EARTH_BONUS)
1200     sa_prefix = "earth";
1201   else
1202     sa_prefix = "small";
1203
1204   if(dir == LEFT)
1205     sa_postfix = "-left";
1206   else
1207     sa_postfix = "-right";
1208
1209   /* Set Tux sprite action */
1210   if(dying) {
1211     sprite->set_action("gameover");
1212   }
1213   else if (growing) {
1214     sprite->set_action_continued("grow"+sa_postfix);
1215     // while growing, do not change action
1216     // do_duck() will take care of cancelling growing manually
1217     // update() will take care of cancelling when growing completed
1218   }
1219   else if (stone) {
1220     sprite->set_action(sprite->get_action()+"-stone");
1221   }
1222   else if (climbing) {
1223     sprite->set_action(sa_prefix+"-climbing"+sa_postfix);
1224   }
1225   else if (backflipping) {
1226     sprite->set_action(sa_prefix+"-backflip"+sa_postfix);
1227   }
1228   else if (duck && is_big()) {
1229     sprite->set_action(sa_prefix+"-duck"+sa_postfix);
1230   }
1231   else if (skidding_timer.started() && !skidding_timer.check()) {
1232     sprite->set_action(sa_prefix+"-skid"+sa_postfix);
1233   }
1234   else if (kick_timer.started() && !kick_timer.check()) {
1235     sprite->set_action(sa_prefix+"-kick"+sa_postfix);
1236   }
1237   else if ((wants_buttjump || does_buttjump) && is_big()) {
1238     sprite->set_action(sa_prefix+"-buttjump"+sa_postfix);
1239   }
1240   else if (!on_ground() || fall_mode != ON_GROUND) {
1241     if(physic.get_velocity_x() != 0 || fall_mode != ON_GROUND) {
1242         sprite->set_action(sa_prefix+"-jump"+sa_postfix);
1243     }
1244   }
1245   else {
1246     if (fabsf(physic.get_velocity_x()) < 1.0f) {
1247       // Determine which idle stage we're at
1248       if (sprite->get_action().find("-stand-") == std::string::npos && sprite->get_action().find("-idle-") == std::string::npos) {
1249         idle_stage = 0;
1250         idle_timer.start(IDLE_TIME[idle_stage]/1000.0f);
1251
1252         sprite->set_action_continued(sa_prefix+("-" + IDLE_STAGES[idle_stage])+sa_postfix);
1253       }
1254       else if (idle_timer.check() || (IDLE_TIME[idle_stage] == 0 && sprite->animation_done())) {
1255         idle_stage++;
1256         if (idle_stage >= IDLE_STAGE_COUNT)
1257           idle_stage = 1;
1258
1259         idle_timer.start(IDLE_TIME[idle_stage]/1000.0f);
1260
1261         if (IDLE_TIME[idle_stage] == 0)
1262           sprite->set_action(sa_prefix+("-" + IDLE_STAGES[idle_stage])+sa_postfix, 1);
1263         else
1264           sprite->set_action(sa_prefix+("-" + IDLE_STAGES[idle_stage])+sa_postfix);
1265       }
1266       else {
1267         sprite->set_action_continued(sa_prefix+("-" + IDLE_STAGES[idle_stage])+sa_postfix);
1268       }
1269     }
1270     else {
1271       sprite->set_action(sa_prefix+"-walk"+sa_postfix);
1272     }
1273   }
1274
1275   /* Set Tux powerup sprite action */
1276   if (player_status->bonus == EARTH_BONUS) {
1277     powersprite->set_action(sprite->get_action());
1278     lightsprite->set_action(sprite->get_action());
1279   } else if (player_status->bonus == AIR_BONUS)
1280     powersprite->set_action(sprite->get_action());
1281
1282   /*
1283   // Tux is holding something
1284   if ((grabbed_object != 0 && physic.get_velocity_y() == 0) ||
1285   (shooting_timer.get_timeleft() > 0 && !shooting_timer.check())) {
1286   if (duck) {
1287   } else {
1288   }
1289   }
1290   */
1291
1292   /* Draw Tux */
1293   if (safe_timer.started() && size_t(game_time*40)%2)
1294     ;  // don't draw Tux
1295   else if (player_status->bonus == EARTH_BONUS){ // draw special effects with earthflower bonus
1296     // shake at end of maximum stone duration
1297     Vector shake_delta = (stone && ability_timer.get_timeleft() < 1.0f) ? Vector(graphicsRandom.rand(-3,3), 0) : Vector(0,0);
1298     sprite->draw(context, get_pos() + shake_delta, LAYER_OBJECTS + 1);
1299     // draw hardhat
1300     powersprite->draw(context, get_pos() + shake_delta, LAYER_OBJECTS + 1);
1301     // light
1302     context.push_target();
1303     context.set_target(DrawingContext::LIGHTMAP);
1304     lightsprite->draw(context, get_pos(), 0);
1305     context.pop_target();
1306     // give an indicator that stone form cannot be used for a while
1307     if (cooldown_timer.started() && graphicsRandom.rand(0, 4) == 0) {
1308       float px = graphicsRandom.randf(bbox.p1.x, bbox.p2.x);
1309       float py = bbox.p2.y+8;
1310       Vector ppos = Vector(px, py);
1311       Sector::current()->add_object(std::make_shared<SpriteParticle>(
1312         "images/objects/particles/sparkle.sprite", "dark",
1313         ppos, ANCHOR_MIDDLE, Vector(0, 0), Vector(0, 0), LAYER_OBJECTS+1+5));
1314     }
1315   }
1316   else {
1317     sprite->draw(context, get_pos(), LAYER_OBJECTS + 1);
1318     if (player_status->bonus == AIR_BONUS)
1319       powersprite->draw(context, get_pos(), LAYER_OBJECTS + 1);
1320   }
1321
1322 }
1323
1324 void
1325 Player::collision_tile(uint32_t tile_attributes)
1326 {
1327   if(tile_attributes & Tile::HURTS)
1328     kill(false);
1329
1330 #ifdef SWIMMING
1331   if( swimming ){
1332     if( tile_attributes & Tile::WATER ){
1333       no_water = false;
1334     } else {
1335       swimming = false;
1336     }
1337   } else {
1338     if( tile_attributes & Tile::WATER ){
1339       swimming = true;
1340       no_water = false;
1341       SoundManager::current()->play( "sounds/splash.ogg" );
1342     }
1343   }
1344 #endif
1345
1346   if(tile_attributes & Tile::ICE) {
1347     ice_this_frame = true;
1348     on_ice = true;
1349   }
1350 }
1351
1352 void
1353 Player::collision_solid(const CollisionHit& hit)
1354 {
1355   if(hit.bottom) {
1356     if(physic.get_velocity_y() > 0)
1357       physic.set_velocity_y(0);
1358
1359     on_ground_flag = true;
1360     floor_normal = hit.slope_normal;
1361
1362     // Butt Jump landed
1363     if (does_buttjump) {
1364       does_buttjump = false;
1365       physic.set_velocity_y(-300);
1366       on_ground_flag = false;
1367       Sector::current()->add_object(std::make_shared<Particles>(
1368                                       Vector(get_bbox().p2.x, get_bbox().p2.y),
1369                                       50, 70, 260, 280, Vector(0, 300), 3,
1370                                       Color(.4f, .4f, .4f), 3, .8f, LAYER_OBJECTS+1));
1371       Sector::current()->add_object(std::make_shared<Particles>(
1372                                       Vector(get_bbox().p1.x, get_bbox().p2.y),
1373                                       -70, -50, 260, 280, Vector(0, 300), 3,
1374                                       Color(.4f, .4f, .4f), 3, .8f, LAYER_OBJECTS+1));
1375       Sector::current()->camera->shake(.1f, 0, 5);
1376     }
1377
1378   } else if(hit.top) {
1379     if(physic.get_velocity_y() < 0)
1380       physic.set_velocity_y(.2f);
1381   }
1382
1383   if(hit.left || hit.right) {
1384     physic.set_velocity_x(0);
1385   }
1386
1387   // crushed?
1388   if(hit.crush) {
1389     if(hit.left || hit.right) {
1390       kill(true);
1391     } else if(hit.top || hit.bottom) {
1392       kill(false);
1393     }
1394   }
1395 }
1396
1397 HitResponse
1398 Player::collision(GameObject& other, const CollisionHit& hit)
1399 {
1400   Bullet* bullet = dynamic_cast<Bullet*> (&other);
1401   if(bullet) {
1402     return FORCE_MOVE;
1403   }
1404
1405   Player* player = dynamic_cast<Player*> (&other);
1406   if(player) {
1407     return ABORT_MOVE;
1408   }
1409
1410   if(hit.left || hit.right) {
1411     try_grab(); //grab objects right now, in update it will be too late
1412   }
1413   assert(dynamic_cast<MovingObject*> (&other) != NULL);
1414   MovingObject* moving_object = static_cast<MovingObject*> (&other);
1415   if(moving_object->get_group() == COLGROUP_TOUCHABLE) {
1416     TriggerBase* trigger = dynamic_cast<TriggerBase*> (&other);
1417     if(trigger) {
1418       if(controller->pressed(Controller::UP))
1419         trigger->event(*this, TriggerBase::EVENT_ACTIVATE);
1420     }
1421
1422     return FORCE_MOVE;
1423   }
1424
1425   BadGuy* badguy = dynamic_cast<BadGuy*> (&other);
1426   if(badguy != NULL) {
1427     if(safe_timer.started() || invincible_timer.started())
1428       return FORCE_MOVE;
1429     if(stone)
1430       return ABORT_MOVE;
1431
1432     return CONTINUE;
1433   }
1434
1435   return CONTINUE;
1436 }
1437
1438 void
1439 Player::make_invincible()
1440 {
1441   SoundManager::current()->play("sounds/invincible_start.ogg");
1442   invincible_timer.start(TUX_INVINCIBLE_TIME);
1443   Sector::current()->play_music(HERRING_MUSIC);
1444 }
1445
1446 /* Kill Player! */
1447 void
1448 Player::kill(bool completely)
1449 {
1450   if(dying || deactivated || is_winning() )
1451     return;
1452
1453   if(!completely && (safe_timer.started() || invincible_timer.started() || stone))
1454     return;
1455
1456   growing = false;
1457
1458   if (climbing) stop_climbing(*climbing);
1459
1460   physic.set_velocity_x(0);
1461
1462   sprite->set_angle(0.0f);
1463   powersprite->set_angle(0.0f);
1464   lightsprite->set_angle(0.0f);
1465
1466   if(!completely && is_big()) {
1467     SoundManager::current()->play("sounds/hurt.wav");
1468
1469     if(player_status->bonus == FIRE_BONUS
1470       || player_status->bonus == ICE_BONUS
1471       || player_status->bonus == AIR_BONUS
1472       || player_status->bonus == EARTH_BONUS) {
1473       safe_timer.start(TUX_SAFE_TIME);
1474       set_bonus(GROWUP_BONUS, true);
1475     } else if(player_status->bonus == GROWUP_BONUS) {
1476       safe_timer.start(TUX_SAFE_TIME /* + GROWING_TIME */);
1477       adjust_height(SMALL_TUX_HEIGHT);
1478       duck = false;
1479       backflipping = false;
1480       sprite->set_angle(0.0f);
1481       powersprite->set_angle(0.0f);
1482       lightsprite->set_angle(0.0f);
1483       set_bonus(NO_BONUS, true);
1484     } else if(player_status->bonus == NO_BONUS) {
1485       safe_timer.start(TUX_SAFE_TIME);
1486       adjust_height(SMALL_TUX_HEIGHT);
1487       duck = false;
1488     }
1489   } else {
1490     SoundManager::current()->play("sounds/kill.wav");
1491
1492     // do not die when in edit mode
1493     if (edit_mode) {
1494       set_ghost_mode(true);
1495       return;
1496     }
1497
1498     if (player_status->coins >= 25 && !GameSession::current()->get_reset_point_sectorname().empty())
1499     {
1500       for (int i = 0; i < 5; i++)
1501       {
1502         // the numbers: starting x, starting y, velocity y
1503         Sector::current()->add_object(std::make_shared<FallingCoin>(get_pos() +
1504                                                       Vector(graphicsRandom.rand(5), graphicsRandom.rand(-32,18)),
1505                                                       graphicsRandom.rand(-100,100)));
1506       }
1507       player_status->coins -= std::max(player_status->coins/10, 25);
1508     }
1509     else
1510     {
1511       GameSession::current()->set_reset_point("", Vector());
1512     }
1513     physic.enable_gravity(true);
1514     physic.set_gravity_modifier(1.0f); // Undo jump_early_apex
1515     safe_timer.stop();
1516     invincible_timer.stop();
1517     physic.set_acceleration(0, 0);
1518     physic.set_velocity(0, -700);
1519     set_bonus(NO_BONUS, true);
1520     dying = true;
1521     dying_timer.start(3.0);
1522     set_group(COLGROUP_DISABLED);
1523
1524     // TODO: need nice way to handle players dying in co-op mode
1525     Sector::current()->effect->fade_out(3.0);
1526     SoundManager::current()->stop_music(3.0);
1527   }
1528 }
1529
1530 void
1531 Player::move(const Vector& vector)
1532 {
1533   set_pos(vector);
1534
1535   // Reset size to get correct hitbox if Tux was eg. ducked before moving
1536   if(is_big())
1537     set_size(TUX_WIDTH, BIG_TUX_HEIGHT);
1538   else
1539     set_size(TUX_WIDTH, SMALL_TUX_HEIGHT);
1540   duck = false;
1541   backflipping = false;
1542   sprite->set_angle(0.0f);
1543   powersprite->set_angle(0.0f);
1544   lightsprite->set_angle(0.0f);
1545   last_ground_y = vector.y;
1546   if (climbing) stop_climbing(*climbing);
1547
1548   physic.reset();
1549 }
1550
1551 void
1552 Player::check_bounds()
1553 {
1554   /* Keep tux in sector bounds: */
1555   if (get_pos().x < 0) {
1556     // Lock Tux to the size of the level, so that he doesn't fall off
1557     // the left side
1558     set_pos(Vector(0, get_pos().y));
1559   }
1560
1561   if (get_bbox().get_right() > Sector::current()->get_width()) {
1562     // Lock Tux to the size of the level, so that he doesn't fall off
1563     // the right side
1564     set_pos(Vector(Sector::current()->get_width() - get_bbox().get_width(), get_pos().y));
1565   }
1566
1567   /* fallen out of the level? */
1568   if ((get_pos().y > Sector::current()->get_height()) && (!ghost_mode)) {
1569     kill(true);
1570     return;
1571   }
1572 }
1573
1574 void
1575 Player::add_velocity(const Vector& velocity)
1576 {
1577   physic.set_velocity(physic.get_velocity() + velocity);
1578 }
1579
1580 void
1581 Player::add_velocity(const Vector& velocity, const Vector& end_speed)
1582 {
1583   if (end_speed.x > 0)
1584     physic.set_velocity_x(std::min(physic.get_velocity_x() + velocity.x, end_speed.x));
1585   if (end_speed.x < 0)
1586     physic.set_velocity_x(std::max(physic.get_velocity_x() + velocity.x, end_speed.x));
1587   if (end_speed.y > 0)
1588     physic.set_velocity_y(std::min(physic.get_velocity_y() + velocity.y, end_speed.y));
1589   if (end_speed.y < 0)
1590     physic.set_velocity_y(std::max(physic.get_velocity_y() + velocity.y, end_speed.y));
1591 }
1592
1593 Vector
1594 Player::get_velocity()
1595 {
1596   return physic.get_velocity();
1597 }
1598
1599 void
1600 Player::bounce(BadGuy& )
1601 {
1602   if(!(player_status->bonus == AIR_BONUS))
1603     physic.set_velocity_y(controller->hold(Controller::JUMP) ? -520 : -300);
1604   else {
1605     physic.set_velocity_y(controller->hold(Controller::JUMP) ? -580 : -340);
1606     ability_time = player_status->max_air_time * GLIDE_TIME_PER_FLOWER;
1607   }
1608 }
1609
1610 //scripting Functions Below
1611
1612 void
1613 Player::deactivate()
1614 {
1615   if (deactivated)
1616     return;
1617   deactivated = true;
1618   physic.set_velocity_x(0);
1619   physic.set_velocity_y(0);
1620   physic.set_acceleration_x(0);
1621   physic.set_acceleration_y(0);
1622   if (climbing) stop_climbing(*climbing);
1623 }
1624
1625 void
1626 Player::activate()
1627 {
1628   if (!deactivated)
1629     return;
1630   deactivated = false;
1631 }
1632
1633 void Player::walk(float speed)
1634 {
1635   physic.set_velocity_x(speed);
1636 }
1637
1638 void Player::set_dir(bool right)
1639 {
1640   dir = right ? RIGHT : LEFT;
1641 }
1642
1643 void
1644 Player::set_ghost_mode(bool enable)
1645 {
1646   if (ghost_mode == enable)
1647     return;
1648
1649   if (climbing) stop_climbing(*climbing);
1650
1651   if (enable) {
1652     ghost_mode = true;
1653     set_group(COLGROUP_DISABLED);
1654     physic.enable_gravity(false);
1655     log_debug << "You feel lightheaded. Use movement controls to float around, press ACTION to scare badguys." << std::endl;
1656   } else {
1657     ghost_mode = false;
1658     set_group(COLGROUP_MOVING);
1659     physic.enable_gravity(true);
1660     log_debug << "You feel solid again." << std::endl;
1661   }
1662 }
1663
1664 void
1665 Player::set_edit_mode(bool enable)
1666 {
1667   edit_mode = enable;
1668 }
1669
1670 void
1671 Player::start_climbing(Climbable& climbable)
1672 {
1673   if (climbing || !&climbable) return;
1674
1675   climbing = &climbable;
1676   physic.enable_gravity(false);
1677   physic.set_velocity(0, 0);
1678   physic.set_acceleration(0, 0);
1679   if (backflipping) {
1680     backflipping = false;
1681     backflip_direction = 0;
1682     sprite->set_angle(0.0f);
1683     powersprite->set_angle(0.0f);
1684     lightsprite->set_angle(0.0f);
1685   }
1686 }
1687
1688 void
1689 Player::stop_climbing(Climbable& /*climbable*/)
1690 {
1691   if (!climbing) return;
1692
1693   climbing = 0;
1694
1695   if (grabbed_object) {
1696     grabbed_object->ungrab(*this, dir);
1697     grabbed_object = NULL;
1698   }
1699
1700   physic.enable_gravity(true);
1701   physic.set_velocity(0, 0);
1702   physic.set_acceleration(0, 0);
1703
1704   if ((controller->hold(Controller::JUMP)) || (controller->hold(Controller::UP))) {
1705     on_ground_flag = true;
1706     // TODO: This won't help. Why?
1707     do_jump(-300);
1708   }
1709 }
1710
1711 void
1712 Player::handle_input_climbing()
1713 {
1714   if (!climbing) {
1715     log_warning << "handle_input_climbing called with climbing set to 0. Input handling skipped" << std::endl;
1716     return;
1717   }
1718
1719   float vx = 0;
1720   float vy = 0;
1721   if (controller->hold(Controller::LEFT)) {
1722     dir = LEFT;
1723     vx -= MAX_CLIMB_XM;
1724   }
1725   if (controller->hold(Controller::RIGHT)) {
1726     dir = RIGHT;
1727     vx += MAX_CLIMB_XM;
1728   }
1729   if (controller->hold(Controller::UP)) {
1730     vy -= MAX_CLIMB_YM;
1731   }
1732   if (controller->hold(Controller::DOWN)) {
1733     vy += MAX_CLIMB_YM;
1734   }
1735   if (controller->hold(Controller::JUMP)) {
1736     if (can_jump) {
1737       stop_climbing(*climbing);
1738       return;
1739     }
1740   } else {
1741     can_jump = true;
1742   }
1743   if (controller->hold(Controller::ACTION)) {
1744     stop_climbing(*climbing);
1745     return;
1746   }
1747   physic.set_velocity(vx, vy);
1748   physic.set_acceleration(0, 0);
1749 }
1750
1751 /* EOF */