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