- added spikes
[supertux.git] / src / player.cpp
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2003 Tobias Glaesser <tobi.web@gmx.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #include <math.h>
21 #include <iostream>
22 #include <cassert>
23 #include "gameloop.h"
24 #include "globals.h"
25 #include "player.h"
26 #include "defines.h"
27 #include "scene.h"
28 #include "tile.h"
29 #include "sprite.h"
30 #include "screen.h"
31
32 #define AUTOSCROLL_DEAD_INTERVAL 300
33
34 Surface* tux_life;
35
36 Sprite* smalltux_gameover;
37 Sprite* smalltux_star;
38 Sprite* largetux_star;
39
40 PlayerSprite smalltux;
41 PlayerSprite largetux;
42 PlayerSprite icetux;
43 PlayerSprite firetux;
44
45 PlayerKeymap keymap;
46
47 PlayerKeymap::PlayerKeymap()
48 {
49   keymap.jump  = SDLK_UP;
50   keymap.duck  = SDLK_DOWN;
51   keymap.left  = SDLK_LEFT;
52   keymap.right = SDLK_RIGHT;
53   keymap.fire  = SDLK_LCTRL;
54 }
55
56 void player_input_init(player_input_type* pplayer_input)
57 {
58   pplayer_input->down = UP;
59   pplayer_input->fire = UP;
60   pplayer_input->left = UP;
61   pplayer_input->old_fire = UP;
62   pplayer_input->right = UP;
63   pplayer_input->up = UP;
64   pplayer_input->old_up = UP;
65 }
66
67 void
68 Player::init()
69 {
70   Level* plevel = World::current()->get_level();
71
72   holding_something = false;
73
74   base.width = 32;
75   base.height = 32;
76
77   size = SMALL;
78   got_power = NONE_POWER;
79
80   base.x = plevel->start_pos_x;
81   base.y = plevel->start_pos_y;
82   base.xm = 0;
83   base.ym = 0;
84   previous_base = old_base = base;
85   dir = RIGHT;
86   old_dir = dir;
87   duck = false;
88
89   dying   = DYING_NOT;
90   jumping = false;
91   can_jump = true;
92   butt_jump = false;
93
94   frame_main = 0;
95   frame_ = 0;
96   
97   player_input_init(&input);
98
99   invincible_timer.init(true);
100   skidding_timer.init(true);
101   safe_timer.init(true);
102   frame_timer.init(true);
103   kick_timer.init(true);
104
105   physic.reset();
106 }
107
108 int
109 Player::key_event(SDLKey key, int state)
110 {
111   if(key == keymap.right)
112     {
113       input.right = state;
114       return true;
115     }
116   else if(key == keymap.left)
117     {
118       input.left = state;
119       return true;
120     }
121   else if(key == keymap.jump)
122     {
123       input.up = state;
124       return true;
125     }
126   else if(key == keymap.duck)
127     {
128       input.down = state;
129       return true;
130     }
131   else if(key == keymap.fire)
132     {
133       if (state == UP)
134         input.old_fire = UP;
135       input.fire = state;
136       return true;
137     }
138   else
139     return false;
140 }
141
142 void
143 Player::level_begin()
144 {
145   base.x  = 100;
146   base.y  = 170;
147   base.xm = 0;
148   base.ym = 0;
149   previous_base = old_base = base;
150   duck = false;
151
152   dying = DYING_NOT;
153
154   player_input_init(&input);
155
156   invincible_timer.init(true);
157   skidding_timer.init(true);
158   safe_timer.init(true);
159   frame_timer.init(true);
160
161   physic.reset();
162 }
163
164 void
165 Player::action(double frame_ratio)
166 {
167   bool jumped_in_solid = false;
168
169   if (input.fire == UP)
170     holding_something = false;
171
172   /* Move tux: */
173   previous_base = base;
174
175   /* --- HANDLE TUX! --- */
176   if(dying == DYING_NOT)
177     handle_input();
178
179   physic.apply(frame_ratio, base.x, base.y);
180
181   if(dying == DYING_NOT) 
182     {
183       base_type target = base;
184
185       collision_swept_object_map(&old_base, &base);
186
187       if (!invincible_timer.started()
188           && (isspike(base.x, base.y) || isspike(base.x + base.width, base.y)
189           ||  isspike(base.x, base.y + base.height)
190           ||  isspike(base.x + base.width, base.y + base.height)))
191       {
192          kill(SHRINK);
193       }
194
195       // Don't accelerate Tux if he is running against a wall
196       if (target.x != base.x)
197         {
198           physic.set_velocity_x(0);
199         }
200
201       // special exception for cases where we're stuck under tiles after
202       // being ducked. In this case we drift out
203       if(!duck && on_ground() && old_base.x == base.x && old_base.y == base.y
204          && collision_object_map(base))
205         {
206           base.x += frame_ratio * WALK_SPEED * (dir ? 1 : -1);
207           previous_base = old_base = base;
208         }
209
210       // Land:
211       if (!on_ground())
212         {
213           physic.enable_gravity(true);
214           if(under_solid())
215             {
216               // fall down
217               physic.set_velocity_y(0);
218               jumped_in_solid = true;
219             }
220         }
221       else
222         {
223           /* Land: */
224           if (physic.get_velocity_y() < 0)
225             {
226               base.y = (int)(((int)base.y / 32) * 32);
227               physic.set_velocity_y(0);
228             }
229
230           physic.enable_gravity(false);
231           /* Reset score multiplier (for multi-hits): */
232           if (!invincible_timer.started())
233             player_status.score_multiplier = 1;
234         }
235
236       if(jumped_in_solid)
237         {
238           if (isbrick(base.x, base.y) ||
239               isfullbox(base.x, base.y))
240             {
241               World::current()->trygrabdistro(base.x, base.y - 32,BOUNCE);
242               World::current()->trybumpbadguy(base.x, base.y - 64);
243
244               World::current()->trybreakbrick(base.x, base.y, size == SMALL);
245
246               bumpbrick(base.x, base.y);
247               World::current()->tryemptybox(base.x, base.y, RIGHT);
248             }
249
250           if (isbrick(base.x+ 31, base.y) ||
251               isfullbox(base.x+ 31, base.y))
252             {
253               World::current()->trygrabdistro(base.x+ 31, base.y - 32,BOUNCE);
254               World::current()->trybumpbadguy(base.x+ 31, base.y - 64);
255
256               if(size == BIG)
257                 World::current()->trybreakbrick(base.x+ 31, base.y, size == SMALL);
258
259               bumpbrick(base.x+ 31, base.y);
260               World::current()->tryemptybox(base.x+ 31, base.y, LEFT);
261             }
262         }
263
264       grabdistros();
265
266       if (jumped_in_solid)
267         {
268           ++base.y;
269           ++old_base.y;
270           if(on_ground())
271             {
272               /* Make sure jumping is off. */
273               jumping = false;
274             }
275         }
276     }
277
278   /* ---- DONE HANDLING TUX! --- */
279
280   // check some timers
281   skidding_timer.check();
282   invincible_timer.check();
283   safe_timer.check();
284   kick_timer.check();
285 }
286
287 bool
288 Player::on_ground()
289 {
290   return ( issolid(base.x + base.width / 2, base.y + base.height) ||
291            issolid(base.x + 1, base.y + base.height) ||
292            issolid(base.x + base.width - 1, base.y + base.height)  );
293 }
294
295 bool
296 Player::under_solid()
297 {
298   return ( issolid(base.x + base.width / 2, base.y) ||
299            issolid(base.x + 1, base.y) ||
300            issolid(base.x + base.width - 1, base.y)  );
301 }
302
303 void
304 Player::handle_horizontal_input()
305 {
306   float vx = physic.get_velocity_x();
307   float vy = physic.get_velocity_y();
308   float ax = physic.get_acceleration_x();
309   float ay = physic.get_acceleration_y();
310
311   float dirsign = 0;
312   if(input.left == DOWN && input.right == UP && (!duck || physic.get_velocity_y() != 0)) {
313       old_dir = dir;
314       dir = LEFT;
315       dirsign = -1;
316   } else if(input.left == UP && input.right == DOWN && (!duck || physic.get_velocity_y() != 0)) {
317       old_dir = dir;
318       dir = RIGHT;
319       dirsign = 1;
320   }
321
322   if (input.fire == UP) {
323       ax = dirsign * WALK_ACCELERATION_X;
324       // limit speed
325       if(vx >= MAX_WALK_XM && dirsign > 0) {
326         vx = MAX_WALK_XM;
327         ax = 0;
328       } else if(vx <= -MAX_WALK_XM && dirsign < 0) {
329         vx = -MAX_WALK_XM;
330         ax = 0;
331       }
332   } else {
333       ax = dirsign * RUN_ACCELERATION_X;
334       // limit speed
335       if(vx >= MAX_RUN_XM && dirsign > 0) {
336         vx = MAX_RUN_XM;
337         ax = 0;
338       } else if(vx <= -MAX_RUN_XM && dirsign < 0) {
339         vx = -MAX_RUN_XM;
340         ax = 0;
341       }
342   }
343
344   // we can reach WALK_SPEED without any acceleration
345   if(dirsign != 0 && fabs(vx) < WALK_SPEED) {
346     vx = dirsign * WALK_SPEED;
347   }
348
349   // changing directions?
350   if(on_ground() && ((vx < 0 && dirsign >0) || (vx>0 && dirsign<0))) {
351       if(fabs(vx)>SKID_XM && !skidding_timer.check()) {
352           skidding_timer.start(SKID_TIME);
353           play_sound(sounds[SND_SKID], SOUND_CENTER_SPEAKER);
354           ax *= 2.5;
355       } else {
356           ax *= 2;
357       }
358   }
359
360   // we get slower when not pressing any keys
361   if(dirsign == 0) {
362       if(fabs(vx) < WALK_SPEED) {
363           vx = 0;
364           ax = 0;
365       } else if(vx < 0) {
366           ax = WALK_ACCELERATION_X * 1.5;
367       } else {
368           ax = WALK_ACCELERATION_X * -1.5;
369       }
370   }
371
372   // if we're on ice slow down acceleration or deceleration
373   if (isice(base.x, base.y + base.height))
374   {
375     /* the acceleration/deceleration rate on ice is inversely proportional to
376      * the current velocity.
377      */
378
379     // increasing 1 will increase acceleration/deceleration rate
380     // decreasing 1 will decrease acceleration/deceleration rate
381     //  must stay above zero, though
382     if (ax != 0) ax *= 1 / fabs(vx);
383   }
384
385   physic.set_velocity(vx, vy);
386   physic.set_acceleration(ax, ay);
387 }
388
389 void
390 Player::handle_vertical_input()
391 {
392   // Press jump key
393   if(input.up == DOWN && can_jump)
394     {
395       if (on_ground())
396         {
397           // jump higher if we are running
398           if (fabs(physic.get_velocity_x()) > MAX_WALK_XM)
399             physic.set_velocity_y(5.8);
400           else
401             physic.set_velocity_y(5.2);
402
403           --base.y;
404           jumping = true;
405           can_jump = false;
406           if (size == SMALL)
407             play_sound(sounds[SND_JUMP], SOUND_CENTER_SPEAKER);
408           else
409             play_sound(sounds[SND_BIGJUMP], SOUND_CENTER_SPEAKER);
410         }
411     }
412   // Let go of jump key
413   else if(input.up == UP && jumping)
414     {
415       jumping = false;
416       if(physic.get_velocity_y() > 0) {
417         physic.set_velocity_y(0);
418       }
419     }
420
421   if (input.down == DOWN && !on_ground() && !duck)
422     butt_jump = true;
423   else if (input.down == UP)
424     butt_jump = false;
425   if (input.down == DOWN && butt_jump && on_ground())
426   {
427     if (isbrick(base.x, base.y + base.height))
428       World::current()->trybreakbrick(base.x, base.y + base.height, false);
429     if (isbrick(base.x + base.width, base.y + base.height))
430       World::current()->trybreakbrick(base.x + base.width, base.y + base.height, false);
431
432     butt_jump = false;
433   }
434
435
436   if ( (issolid(base.x + base.width / 2, base.y + base.height + 64) ||
437         issolid(base.x + 1, base.y + base.height + 64) ||
438         issolid(base.x + base.width - 1, base.y + base.height + 64))
439        && jumping  == false
440        && can_jump == false
441        && input.up == DOWN
442        && input.old_up == UP)
443     {
444       can_jump = true;
445     }
446
447   input.old_up = input.up;
448 }
449
450 void
451 Player::handle_input()
452 {
453   /* Handle horizontal movement: */
454     handle_horizontal_input();
455
456   /* Jump/jumping? */
457
458   if (on_ground() && input.up == UP)
459     can_jump = true;
460   if (input.up == DOWN || (input.up == UP && jumping))
461     {
462       handle_vertical_input();
463     }
464
465   /* Shoot! */
466
467   if (input.fire == DOWN && input.old_fire == UP && got_power != NONE_POWER)
468     {
469       World::current()->add_bullet(base.x, base.y, physic.get_velocity_x(), dir);
470       input.old_fire = DOWN;
471     }
472
473   /* tux animations: */
474   if(!frame_timer.check())
475     {
476       frame_timer.start(25);
477       if (input.right == UP && input.left == UP)
478         {
479           frame_main = 1;
480           frame_ = 1;
481         }
482       else
483         {
484           if ((input.fire == DOWN && (global_frame_counter % 2) == 0) ||
485               (global_frame_counter % 4) == 0)
486             frame_main = (frame_main + 1) % 4;
487
488           frame_ = frame_main;
489
490           if (frame_ == 3)
491             frame_ = 1;
492         }
493     }
494
495   /* Duck! */
496   if (input.down == DOWN && size == BIG && !duck && physic.get_velocity_y() == 0 && on_ground())
497     {
498       duck = true;
499       base.height = 32;                             
500       base.y += 32;
501       // changing base size confuses collision otherwise
502       old_base = previous_base = base;
503     }
504   else if(input.down == UP && size == BIG && duck && physic.get_velocity_y() == 0 && on_ground())
505     {
506       duck = false;
507       base.y -= 32;
508       base.height = 64;
509       // changing base size confuses collision otherwise
510       old_base = previous_base = base;                        
511     }
512 }
513
514 void
515 Player::grow()
516 {
517   if(size == BIG)
518     return;
519   
520   size = BIG;
521   base.height = 64;
522   base.y -= 32;
523
524   old_base = previous_base = base;
525 }
526
527 void
528 Player::grabdistros()
529 {
530   /* Grab distros: */
531   if (!dying)
532     {
533       World::current()->trygrabdistro(base.x, base.y, NO_BOUNCE);
534       World::current()->trygrabdistro(base.x+ 31, base.y, NO_BOUNCE);
535
536       World::current()->trygrabdistro(base.x, base.y + base.height, NO_BOUNCE);
537       World::current()->trygrabdistro(base.x+ 31, base.y + base.height, NO_BOUNCE);
538
539       if(size == BIG)
540         {
541           World::current()->trygrabdistro(base.x, base.y + base.height / 2, NO_BOUNCE);
542           World::current()->trygrabdistro(base.x+ 31, base.y + base.height / 2, NO_BOUNCE);
543         }
544
545     }
546
547   /* Enough distros for a One-up? */
548   if (player_status.distros >= DISTROS_LIFEUP)
549     {
550       player_status.distros = player_status.distros - DISTROS_LIFEUP;
551       if(player_status.lives < MAX_LIVES)
552         ++player_status.lives;
553       /*We want to hear the sound even, if MAX_LIVES is reached*/
554       play_sound(sounds[SND_LIFEUP], SOUND_CENTER_SPEAKER);
555     }
556 }
557
558 void
559 Player::draw()
560 {
561   if (!safe_timer.started() || (global_frame_counter % 2) == 0)
562     {
563       if (dying == DYING_SQUISHED)
564         {
565           smalltux_gameover->draw(base.x, base.y);
566         }
567       else
568         {
569           PlayerSprite* sprite;
570           
571           if (size == SMALL)
572             sprite = &smalltux;
573           else if (got_power == FIRE_POWER)
574             sprite = &firetux;
575           else if (got_power == ICE_POWER)
576             sprite = &icetux;
577           else
578             sprite = &largetux;
579           
580           if (duck && size != SMALL)
581             {
582               if (dir == RIGHT)
583                 sprite->duck_right->draw(base.x, base.y);
584               else 
585                 sprite->duck_left->draw(base.x, base.y);
586             }
587           else if (skidding_timer.started())
588             {
589               if (dir == RIGHT)
590                 sprite->skid_right->draw(base.x, base.y);
591               else
592                 sprite->skid_left->draw(base.x, base.y); 
593             }
594           else if (kick_timer.started())
595             {
596               if (dir == RIGHT)
597                 sprite->kick_right->draw(base.x, base.y);
598               else
599                 sprite->kick_left->draw(base.x, base.y); 
600             }
601           else if (physic.get_velocity_y() != 0)
602             {
603               if (dir == RIGHT)
604                 sprite->jump_right->draw(base.x, base.y);
605               else
606                 sprite->jump_left->draw(base.x, base.y);                   
607             }
608           else
609             {
610               if (fabsf(physic.get_velocity_x()) < 1.0f) // standing
611                 {
612                   if (dir == RIGHT)
613                     sprite->stand_right->draw( base.x, base.y);
614                   else
615                     sprite->stand_left->draw( base.x, base.y);
616                 }
617               else // moving
618                 {
619                   if (dir == RIGHT)
620                     sprite->walk_right->draw(base.x, base.y);
621                   else
622                     sprite->walk_left->draw(base.x, base.y);
623                 }
624             }
625                       
626           // Draw arm overlay graphics when Tux is holding something
627           if (holding_something && physic.get_velocity_y() == 0)
628             {
629               if (dir == RIGHT)
630                 sprite->grab_right->draw(base.x, base.y);
631               else
632                 sprite->grab_left->draw(base.x, base.y);
633             }
634
635           // Draw blinking star overlay
636           if (invincible_timer.started() &&
637              (invincible_timer.get_left() > TUX_INVINCIBLE_TIME_WARNING || global_frame_counter % 3))
638             {
639               if (size == SMALL || duck)
640                 smalltux_star->draw(base.x, base.y);
641               else
642                 largetux_star->draw(base.x, base.y);
643             }
644         }
645     }     
646   
647   if (debug_mode)
648     fillrect(base.x - scroll_x, base.y - scroll_y, 
649              base.width, base.height, 75,75,75, 150);
650 }
651
652 void
653 Player::collision(void* p_c_object, int c_object)
654 {
655   BadGuy* pbad_c = NULL;
656   Trampoline* ptramp_c = NULL;
657
658   switch (c_object)
659     {
660     case CO_BADGUY:
661       pbad_c = (BadGuy*) p_c_object;
662
663      /* Hurt player if he touches a badguy */
664       if (!pbad_c->dying && !dying &&
665           !safe_timer.started() &&
666           pbad_c->mode != BadGuy::HELD)
667         {
668           if (pbad_c->mode == BadGuy::FLAT && input.fire == DOWN
669                && !holding_something)
670             {
671               holding_something = true;
672               pbad_c->mode = BadGuy::HELD;
673               pbad_c->base.y-=8;
674             }
675           else if (pbad_c->mode == BadGuy::FLAT)
676             {
677               // Don't get hurt if we're kicking a flat badguy!
678             }
679           else if (pbad_c->mode == BadGuy::KICK)
680             {
681               /* Hurt if you get hit by kicked laptop: */
682               if (!invincible_timer.started())
683                 {
684                   kill(SHRINK);
685                 }
686               else
687                 pbad_c->kill_me(20);
688             }
689           else if (pbad_c->frozen_timer.check() && (pbad_c->kind == BAD_MRBOMB
690               || pbad_c->kind == BAD_JUMPY || pbad_c->kind == BAD_FISH
691               || pbad_c->kind == BAD_SPIKY))
692                 pbad_c->kill_me(20);
693           else
694             {
695               if (!invincible_timer.started())
696                 {
697                   kill(SHRINK);
698                 }
699               else
700                 {
701                   pbad_c->kill_me(25);
702                 }
703             }
704           player_status.score_multiplier++;
705         }
706       break;
707
708     case CO_TRAMPOLINE:
709       ptramp_c = (Trampoline*) p_c_object;
710       
711       // Pick up trampoline
712       if (ptramp_c->mode != Trampoline::M_HELD && input.fire == DOWN && !holding_something)
713       {
714         holding_something = true;
715         ptramp_c->mode = Trampoline::M_HELD;
716         ptramp_c->base.y -= 8;
717       }
718       // Set down trampoline
719       else if (ptramp_c->mode == Trampoline::M_HELD && input.fire != DOWN)
720       {
721         holding_something = false;
722         ptramp_c->mode = Trampoline::M_NORMAL;
723         ptramp_c->base.y += 8;
724         ptramp_c->physic.set_velocity(physic.get_velocity_x(), physic.get_velocity_y());
725
726         //if (dir == RIGHT)
727         //  ptramp_c->base.x = base.x + base.width+1;
728         //else /* LEFT */
729         //  ptramp_c->base.x = base.x - base.width-1;
730       }
731 /*
732       // Don't let tux walk through trampoline
733       else if (ptramp_c->mode != Trampoline::M_HELD && on_ground())
734       {
735         if (physic.get_velocity_x() > 0) // RIGHT
736         {
737           physic.set_velocity_x(0);
738           base.x = ptramp_c->base.x - base.width;
739         }
740         else if (physic.get_velocity_x() < 0) // LEFT
741         {
742           physic.set_velocity_x(0);
743           base.x = ptramp_c->base.x + ptramp_c->base.width;
744         }
745       }
746 */
747
748       break;
749
750     default:
751       break;
752     }
753
754 }
755
756 /* Kill Player! */
757
758 void
759 Player::kill(HurtMode mode)
760 {
761   play_sound(sounds[SND_HURT], SOUND_CENTER_SPEAKER);
762
763   physic.set_velocity_x(0);
764
765   if (mode == SHRINK && size == BIG)
766     {
767       if (got_power != NONE_POWER)
768         {
769           got_power = NONE_POWER;
770         }
771       else
772         {
773           size = SMALL;
774           base.height = 32;
775           duck = false;
776         }
777       safe_timer.start(TUX_SAFE_TIME);
778     }
779   else
780     {
781       physic.enable_gravity(true);
782       physic.set_acceleration(0, 0);
783       physic.set_velocity(0, 7);
784       if(dying != DYING_SQUISHED)
785       --player_status.lives;
786       dying = DYING_SQUISHED;
787     }
788 }
789
790 void
791 Player::is_dying()
792 {
793   remove_powerups();
794   dying = DYING_NOT;
795 }
796
797 bool Player::is_dead()
798 {
799   if(base.y > screen->h || base.x < scroll_x - AUTOSCROLL_DEAD_INTERVAL)  // last condition can happen in auto-scrolling
800     return true;
801   else
802     return false;
803 }
804
805 /* Remove Tux's power ups */
806 void
807 Player::remove_powerups()
808 {
809   got_power = NONE_POWER;
810   size = SMALL;
811   base.height = 32;
812 }
813
814 void
815 Player::check_bounds(bool back_scrolling, bool hor_autoscroll)
816 {
817   /* Keep tux in bounds: */
818   if (base.x < 0)
819     { // Lock Tux to the size of the level, so that he doesn't fall of
820       // on the left side
821       base.x = 0;
822     }
823
824   /* Keep in-bounds, vertically: */
825   if (base.y > screen->h)
826     {
827       kill(KILL);
828     }
829
830   if(base.x < scroll_x && (!back_scrolling || hor_autoscroll))  // can happen if back scrolling is disabled
831     base.x = scroll_x;
832
833   if(hor_autoscroll)
834     {
835     if(base.x == scroll_x)
836       if(issolid(base.x+32, base.y) || (size != SMALL && issolid(base.x+32, base.y+32)))
837         kill(KILL);
838
839     if(base.x + base.width > scroll_x + screen->w)
840       base.x = scroll_x + screen->w - base.width;
841     }
842     
843 }
844
845 // EOF //
846