817c5ea4b54be5ebb69a120e9074966d601ea43c
[supertux.git] / src / player.cpp
1 //
2 // C Implementation: player/tux
3 //
4 // Description:
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de> & Bill Kendrick, (C) 2004
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 #include <math.h>
13
14 #include "gameloop.h"
15 #include "globals.h"
16 #include "player.h"
17 #include "defines.h"
18 #include "scene.h"
19 #include "tile.h"
20 #include "screen.h"
21
22 Surface* tux_life;
23 std::vector<Surface*> tux_right;
24 std::vector<Surface*> tux_left;
25 Surface* smalltux_jump_left;
26 Surface* smalltux_jump_right;
27 Surface* smalltux_stand_left;
28 Surface* smalltux_stand_right;
29
30 Surface* bigtux_right[3];
31 Surface* bigtux_left[3];
32 Surface* bigtux_right_jump;
33 Surface* bigtux_left_jump;
34 Surface* ducktux_right;
35 Surface* ducktux_left;
36 Surface* skidtux_right;
37 Surface* skidtux_left;
38 Surface* firetux_right[3];
39 Surface* firetux_left[3];
40 Surface* bigfiretux_right[3];
41 Surface* bigfiretux_left[3];
42 Surface* bigfiretux_right_jump;
43 Surface* bigfiretux_left_jump;
44 Surface* duckfiretux_right;
45 Surface* duckfiretux_left;
46 Surface* skidfiretux_right;
47 Surface* skidfiretux_left;
48 Surface* cape_right[2];
49 Surface* cape_left[2];
50 Surface* bigcape_right[2];
51 Surface* bigcape_left[2];
52
53 void player_input_init(player_input_type* pplayer_input)
54 {
55   pplayer_input->down = UP;
56   pplayer_input->fire = UP;
57   pplayer_input->left = UP;
58   pplayer_input->old_fire = UP;
59   pplayer_input->right = UP;
60   pplayer_input->up = UP;
61 }
62
63 void
64 Player::init()
65 {
66   base.width = 32;
67   base.height = 32;
68
69   size = SMALL;
70   got_coffee = false;
71
72   // FIXME: Make the start position configurable via the levelfile
73   base.x = 100;
74   base.y = 240;
75   base.xm = 0;
76   base.ym = 0;
77   previous_base = old_base = base;
78   dir = RIGHT;
79   duck = false;
80
81   dying   = DYING_NOT;
82   jumping = false;
83
84   frame_main = 0;
85   frame_ = 0;
86   lives = 3;
87   score = 0;
88   distros = 0;
89
90   player_input_init(&input);
91
92   keymap.jump  = SDLK_UP;
93   keymap.duck  = SDLK_DOWN;
94   keymap.left  = SDLK_LEFT;
95   keymap.right = SDLK_RIGHT;
96   keymap.fire  = SDLK_LCTRL;
97
98   invincible_timer.init(true);
99   skidding_timer.init(true);
100   safe_timer.init(true);
101   frame_timer.init(true);
102
103   physic.reset();
104 }
105
106 int
107 Player::key_event(SDLKey key, int state)
108 {
109   if(key == keymap.right)
110     {
111       input.right = state;
112       return true;
113     }
114   else if(key == keymap.left)
115     {
116       input.left = state;
117       return true;
118     }
119   else if(key == keymap.jump)
120     {
121       input.up = state;
122       return true;
123     }
124   else if(key == keymap.duck)
125     {
126       input.down = state;
127       return true;
128     }
129   else if(key == keymap.fire)
130     {
131       input.fire = state;
132       return true;
133     }
134   else
135     return false;
136 }
137
138 void
139 Player::level_begin()
140 {
141   base.x  = 100;
142   base.y  = 240;
143   base.xm = 0;
144   base.ym = 0;
145   previous_base = old_base = base;
146   duck = false;
147
148   dying = DYING_NOT;
149
150   player_input_init(&input);
151
152   invincible_timer.init(true);
153   skidding_timer.init(true);
154   safe_timer.init(true);
155   frame_timer.init(true);
156
157   physic.reset();
158 }
159
160 void
161 Player::action(double frame_ratio)
162 {
163   bool jumped_in_solid = false;
164
165   /* --- HANDLE TUX! --- */
166
167   if(dying == DYING_NOT)
168     handle_input();
169
170   /* Move tux: */
171   previous_base = base;
172   duck = false;
173
174   physic.apply(frame_ratio, base.x, base.y);
175   if(dying == DYING_NOT) {
176       collision_swept_object_map(&old_base, &base);
177       // special exception for cases where we're stuck under tiles after
178       // being ducked. In this case we drift out
179       if(!duck && on_ground() && old_base.x == base.x && old_base.y == base.y
180               && collision_object_map(&base)) {
181           base.x += frame_ratio * WALK_SPEED * (dir ? 1 : -1);
182           previous_base = old_base = base;
183       }
184       keep_in_bounds();
185   }
186
187   if (dying == DYING_NOT)
188     {
189       /* Land: */
190
191
192       if( !on_ground())
193         {
194           physic.enable_gravity(true);
195           if(under_solid())
196             {
197               // fall down
198               physic.set_velocity(physic.get_velocity_x(), 0);
199               jumped_in_solid = true;
200             }
201         }
202       else
203         {
204           /* Land: */
205           if (physic.get_velocity_y() < 0)
206             {
207               base.y = (int)(((int)base.y / 32) * 32);
208               physic.set_velocity(physic.get_velocity_x(), 0);
209             }
210
211           physic.enable_gravity(false);
212           /* Reset score multiplier (for multi-hits): */
213           player_status.score_multiplier = 1;
214         }
215
216       if(jumped_in_solid)
217         {
218           if (isbrick(base.x, base.y) ||
219               isfullbox(base.x, base.y))
220             {
221               World::current()->trygrabdistro(base.x, base.y - 32,BOUNCE);
222               World::current()->trybumpbadguy(base.x, base.y - 64);
223
224               World::current()->trybreakbrick(base.x, base.y, size == SMALL);
225
226               bumpbrick(base.x, base.y);
227               World::current()->tryemptybox(base.x, base.y, RIGHT);
228             }
229
230           if (isbrick(base.x+ 31, base.y) ||
231               isfullbox(base.x+ 31, base.y))
232             {
233               World::current()->trygrabdistro(base.x+ 31, base.y - 32,BOUNCE);
234               World::current()->trybumpbadguy(base.x+ 31, base.y - 64);
235
236               if(size == BIG)
237                 World::current()->trybreakbrick(base.x+ 31, base.y, size == SMALL);
238
239               bumpbrick(base.x+ 31, base.y);
240               World::current()->tryemptybox(base.x+ 31, base.y, LEFT);
241             }
242         }
243
244       grabdistros();
245
246       if (jumped_in_solid)
247         {
248           ++base.y;
249           ++old_base.y;
250           if(on_ground())
251             {
252               /* Make sure jumping is off. */
253               jumping = false;
254             }
255         }
256     }
257
258
259   /* ---- DONE HANDLING TUX! --- */
260
261   /* Handle invincibility timer: */
262   if (get_current_music() == HERRING_MUSIC && !invincible_timer.check())
263     {
264       /*
265          no, we are no more invincible
266          or we were not in invincible mode
267          but are we in hurry ?
268        */
269
270       // FIXME: Move this to gamesession
271       if (GameSession::current()->time_left.get_left() < TIME_WARNING)
272         {
273           /* yes, we are in hurry
274              stop the herring_song, prepare to play the correct
275              fast level_song !
276            */
277           set_current_music(HURRYUP_MUSIC);
278         }
279       else
280         {
281           set_current_music(LEVEL_MUSIC);
282         }
283
284       /* start playing it */
285       play_current_music();
286     }
287
288   /* End of level? */
289   if (base.x >= World::current()->get_level()->endpos
290       && World::current()->get_level()->endpos != 0)
291     {
292       player_status.next_level = 1;
293     }
294
295   /* Duck! */
296   if (input.down == DOWN && size == BIG && !duck)
297     {
298       duck = true;
299       base.height = 32;                             
300       base.y += 32;
301       // changing base size confuses collision otherwise
302       old_base = previous_base = base;
303     }
304   else if(input.down == UP && size == BIG && duck)
305     {
306       duck = false;
307       base.y -= 32;
308       base.height = 64;
309       old_base = previous_base = base;
310     }
311
312   // check some timers
313   skidding_timer.check();
314   invincible_timer.check();
315   safe_timer.check();
316 }
317
318 bool
319 Player::on_ground()
320 {
321   return ( issolid(base.x + base.width / 2, base.y + base.height) ||
322            issolid(base.x + 1, base.y + base.height) ||
323            issolid(base.x + base.width - 1, base.y + base.height)  );
324 }
325
326 bool
327 Player::under_solid()
328 {
329   return ( issolid(base.x + base.width / 2, base.y) ||
330            issolid(base.x + 1, base.y) ||
331            issolid(base.x + base.width - 1, base.y)  );
332 }
333
334 void
335 Player::handle_horizontal_input()
336 {
337   float vx = physic.get_velocity_x();
338   float vy = physic.get_velocity_y();
339   float ax = physic.get_acceleration_x();
340   float ay = physic.get_acceleration_y();
341
342   float dirsign = 0;
343   if(!duck && input.left == DOWN && input.right == UP) {
344       dir = LEFT;
345       dirsign = -1;
346   } else if(!duck && input.left == UP && input.right == DOWN) {
347       dir = RIGHT;
348       dirsign = 1;
349   }
350
351   if (input.fire == UP) {
352       ax = dirsign * WALK_ACCELERATION_X;
353       // limit speed
354       if(vx >= MAX_WALK_XM && dirsign > 0) {
355         vx = MAX_WALK_XM;
356         ax = 0;
357       } else if(vx <= -MAX_WALK_XM && dirsign < 0) {
358         vx = -MAX_WALK_XM;
359         ax = 0;
360       }
361   } else {
362       ax = dirsign * RUN_ACCELERATION_X;
363       // limit speed
364       if(vx >= MAX_RUN_XM && dirsign > 0) {
365         vx = MAX_RUN_XM;
366         ax = 0;
367       } else if(vx <= -MAX_RUN_XM && dirsign < 0) {
368         vx = -MAX_RUN_XM;
369         ax = 0;
370       }
371   }
372
373   // we can reach WALK_SPEED without any acceleration
374   if(dirsign != 0 && fabs(vx) < WALK_SPEED) {
375     vx = dirsign * WALK_SPEED;
376   }
377
378   // changing directions?
379   if(on_ground() && ((vx < 0 && dirsign >0) || (vx>0 && dirsign<0))) {
380       if(fabs(vx)>SKID_XM && !skidding_timer.check()) {
381           skidding_timer.start(SKID_TIME);
382           play_sound(sounds[SND_SKID], SOUND_CENTER_SPEAKER);
383           ax *= 2.5;
384       } else {
385           ax *= 2;
386       }
387   }
388
389   // we get slower when not pressing any keys
390   if(dirsign == 0) {
391       if(fabs(vx) < WALK_SPEED) {
392           vx = 0;
393           ax = 0;
394       } else if(vx < 0) {
395           ax = WALK_ACCELERATION_X * 1.5;
396       } else {
397           ax = WALK_ACCELERATION_X * -1.5;
398       }
399   }
400  
401   physic.set_velocity(vx, vy);
402   physic.set_acceleration(ax, ay);
403 }
404
405 void
406 Player::handle_vertical_input()
407 {
408   if(input.up == DOWN)
409     {
410       if (on_ground() && !duck)
411         {
412           // jump
413           physic.set_velocity(physic.get_velocity_x(), 5.5);
414           --base.y;
415           jumping = true;
416           if (size == SMALL)
417             play_sound(sounds[SND_JUMP], SOUND_CENTER_SPEAKER);
418           else
419             play_sound(sounds[SND_BIGJUMP], SOUND_CENTER_SPEAKER);
420         }
421     }
422   else if(input.up == UP && jumping)
423     {
424       jumping = false;
425       if(physic.get_velocity_y() > 0) {
426         physic.set_velocity(physic.get_velocity_x(), 0);
427       }
428     }
429 }
430
431 void
432 Player::handle_input()
433 {
434   /* Handle horizontal movement: */
435     handle_horizontal_input();
436
437   /* Jump/jumping? */
438
439   if ( input.up == DOWN || (input.up == UP && jumping))
440     {
441       handle_vertical_input();
442     }
443
444   /* Shoot! */
445
446   if (input.fire == DOWN && input.old_fire == UP && got_coffee)
447     {
448       World::current()->add_bullet(base.x, base.y, physic.get_velocity_x(), dir);
449     }
450
451   /* tux animations: */
452   if(!frame_timer.check())
453     {
454       frame_timer.start(25);
455       if (input.right == UP && input.left == UP)
456         {
457           frame_main = 1;
458           frame_ = 1;
459         }
460       else
461         {
462           if ((input.fire == DOWN && (global_frame_counter % 2) == 0) ||
463               (global_frame_counter % 4) == 0)
464             frame_main = (frame_main + 1) % 4;
465
466           frame_ = frame_main;
467
468           if (frame_ == 3)
469             frame_ = 1;
470         }
471     }
472
473   /* Duck! */
474   if (input.down == DOWN && size == BIG && !duck)
475     {
476       duck = true;
477       base.height = 32;                             
478       base.y += 32;
479       // changing base size confuses collision otherwise
480       old_base = previous_base = base;
481     }
482   else if(input.down == UP && size == BIG && duck)
483     {
484       duck = false;
485       base.y -= 32;
486       base.height = 64;
487       old_base = previous_base = base;
488     }
489 }
490
491 void
492 Player::grabdistros()
493 {
494   /* Grab distros: */
495   if (!dying)
496     {
497       World::current()->trygrabdistro(base.x, base.y, NO_BOUNCE);
498       World::current()->trygrabdistro(base.x+ 31, base.y, NO_BOUNCE);
499
500       World::current()->trygrabdistro(base.x, base.y + base.height, NO_BOUNCE);
501       World::current()->trygrabdistro(base.x+ 31, base.y + base.height, NO_BOUNCE);
502
503       if(size == BIG)
504         {
505           World::current()->trygrabdistro(base.x, base.y + base.height / 2, NO_BOUNCE);
506           World::current()->trygrabdistro(base.x+ 31, base.y + base.height / 2, NO_BOUNCE);
507         }
508
509     }
510
511   /* Enough distros for a One-up? */
512   if (distros >= DISTROS_LIFEUP)
513     {
514       distros = distros - DISTROS_LIFEUP;
515       if(lives < MAX_LIVES)
516         lives++;
517       /*We want to hear the sound even, if MAX_LIVES is reached*/
518       play_sound(sounds[SND_LIFEUP], SOUND_CENTER_SPEAKER);
519     }
520 }
521
522 void
523 Player::draw()
524 {
525   if (!safe_timer.started() || (global_frame_counter % 2) == 0)
526     {
527       if (size == SMALL)
528         {
529           if (invincible_timer.started())
530             {
531               /* Draw cape: */
532
533               if (dir == RIGHT)
534                 {
535                  cape_right[global_frame_counter % 2]->draw(base.x- scroll_x, base.y);
536                 }
537               else
538                 {
539                   cape_left[global_frame_counter % 2]->draw(
540                                base.x- scroll_x, base.y);
541                 }
542             }
543
544
545           if (!got_coffee)
546             {
547               if (physic.get_velocity_y() != 0)
548                 {
549                   if (dir == RIGHT)
550                     smalltux_jump_right->draw( base.x - scroll_x, base.y - 10);
551                   else
552                     smalltux_jump_left->draw( base.x - scroll_x, base.y - 10);                   
553                 }
554               else
555                 {
556                   if (fabsf(physic.get_velocity_x()) < 1.0f) // standing
557                     {
558                       if (dir == RIGHT)
559                         smalltux_stand_right->draw( base.x - scroll_x, base.y - 9);
560                       else
561                         smalltux_stand_left->draw( base.x - scroll_x, base.y - 9);
562                     }
563                   else // moving
564                     {
565                       if (dir == RIGHT)
566                         tux_right[(global_frame_counter/2) % tux_right.size()]->draw( 
567                                      base.x - scroll_x, base.y - 9);
568                       else
569                         tux_left[(global_frame_counter/2) % tux_left.size()]->draw( 
570                                      base.x - scroll_x, base.y - 9);
571                     }
572                 }
573             }
574           else
575             {
576               /* Tux got coffee! */
577
578               if (dir == RIGHT)
579                 {
580                   firetux_right[frame_]->draw( base.x- scroll_x, base.y);
581                 }
582               else
583                 {
584                   firetux_left[frame_]->draw( base.x- scroll_x, base.y);
585                 }
586             }
587         }
588       else
589         {
590           if (invincible_timer.started())
591             {
592               float capex = base.x + (base.width - bigcape_right[0]->w) / 2;
593               capex -= scroll_x;
594               float capey = base.y + (base.height - bigcape_right[0]->h) / 2;
595                 
596               /* Draw cape (just not in ducked mode since that looks silly): */
597               if (dir == RIGHT)
598                 {
599                   bigcape_right[global_frame_counter % 2]->draw(
600                           capex, capey);
601                 }
602               else
603                 {
604                   bigcape_left[global_frame_counter % 2]->draw(
605                           capex, capey);
606                 }
607             }
608
609           if (!got_coffee)
610             {
611               if (!duck)
612                 {
613                   if (!skidding_timer.started())
614                     {
615                       if (!jumping || physic.get_velocity_y() > 0)
616                         {
617                           if (dir == RIGHT)
618                             {
619                               bigtux_right[frame_]->draw(
620                                            base.x- scroll_x - 8, base.y);
621                             }
622                           else
623                             {
624                               bigtux_left[frame_]->draw(
625                                            base.x- scroll_x - 8, base.y);
626                             }
627                         }
628                       else
629                         {
630                           if (dir == RIGHT)
631                             {
632                               bigtux_right_jump->draw(
633                                            base.x- scroll_x - 8, base.y);
634                             }
635                           else
636                             {
637                               bigtux_left_jump->draw(
638                                            base.x- scroll_x - 8, base.y);
639                             }
640                         }
641                     }
642                   else
643                     {
644                       if (dir == RIGHT)
645                         {
646                           skidtux_right->draw(
647                                        base.x- scroll_x - 8, base.y);
648                         }
649                       else
650                         {
651                           skidtux_left->draw(
652                                        base.x- scroll_x - 8, base.y);
653                         }
654                     }
655                 }
656               else
657                 {
658                   if (dir == RIGHT)
659                     {
660                       ducktux_right->draw( base.x- scroll_x - 8, base.y - 16);
661                     }
662                   else
663                     {
664                       ducktux_left->draw( base.x- scroll_x - 8, base.y - 16);
665                     }
666                 }
667             }
668           else
669             {
670               /* Tux has coffee! */
671               if (!duck)
672                 {
673                   if (!skidding_timer.started())
674                     {
675                       if (!jumping || physic.get_velocity_y() > 0)
676                         {
677                           if (dir == RIGHT)
678                             {
679                               bigfiretux_right[frame_]->draw(
680                                            base.x- scroll_x - 8, base.y);
681                             }
682                           else
683                             {
684                               bigfiretux_left[frame_]->draw(
685                                            base.x- scroll_x - 8, base.y);
686                             }
687                         }
688                       else
689                         {
690                           if (dir == RIGHT)
691                             {
692                               bigfiretux_right_jump->draw(
693                                            base.x- scroll_x - 8, base.y);
694                             }
695                           else
696                             {
697                               bigfiretux_left_jump->draw(
698                                            base.x- scroll_x - 8, base.y);
699                             }
700                         }
701                     }
702                   else
703                     {
704                       if (dir == RIGHT)
705                         {
706                           skidfiretux_right->draw(
707                                        base.x- scroll_x - 8, base.y);
708                         }
709                       else
710                         {
711                           skidfiretux_left->draw(
712                                        base.x- scroll_x - 8, base.y);
713                         }
714                     }
715                 }
716               else
717                 {
718                   if (dir == RIGHT)
719                     {
720                       duckfiretux_right->draw( base.x- scroll_x - 8, base.y - 16);
721                     }
722                   else
723                     {
724                       duckfiretux_left->draw( base.x- scroll_x - 8, base.y - 16);
725                     }
726                 }
727             }
728         }
729     }
730
731   if(dying)
732     text_drawf(&gold_text,"Penguins can fly !:",0,0,A_HMIDDLE,A_VMIDDLE,1);
733
734   if (debug_mode)
735     fillrect(base.x - scroll_x, base.y, 32, 32, 75,75,75, 150);
736 }
737
738 void
739 Player::collision(void* p_c_object, int c_object)
740 {
741   BadGuy* pbad_c = NULL;
742
743   switch (c_object)
744     {
745     case CO_BADGUY:
746       pbad_c = (BadGuy*) p_c_object;
747       /* Hurt the player if he just touched it: */
748
749       if (!pbad_c->dying && !dying &&
750           !safe_timer.started() &&
751           pbad_c->mode != HELD)
752         {
753           if (pbad_c->mode == FLAT && input.fire == DOWN)
754             {
755               pbad_c->mode = HELD;
756               pbad_c->base.y-=8;
757             }
758           else if (pbad_c->mode == KICK)
759             {
760               if (base.y < pbad_c->base.y - 16)
761                 {
762                   /* Step on (stop being kicked) */
763
764                   pbad_c->mode = FLAT;
765                   play_sound(sounds[SND_STOMP], SOUND_CENTER_SPEAKER);
766                 }
767               else
768                 {
769                   /* Hurt if you get hit by kicked laptop: */
770                   if (!invincible_timer.started())
771                     {
772                       kill(SHRINK);
773                     }
774                   else
775                     {
776                       pbad_c->dying = DYING_FALLING;
777                       play_sound(sounds[SND_FALL], SOUND_CENTER_SPEAKER);
778                       World::current()->add_score(pbad_c->base.x - scroll_x,
779                                                   pbad_c->base.y,
780                                                   25 * player_status.score_multiplier);
781                     }
782                 }
783             }
784           else
785             {
786               if (!invincible_timer.started())
787                 {
788                   kill(SHRINK);
789                 }
790               else
791                 {
792                   pbad_c->kill_me();
793                 }
794             }
795           player_status.score_multiplier++;
796         }
797       break;
798     default:
799       break;
800     }
801
802 }
803
804 /* Kill Player! */
805
806 void
807 Player::kill(int mode)
808 {
809   play_sound(sounds[SND_HURT], SOUND_CENTER_SPEAKER);
810
811   physic.set_velocity(0, physic.get_velocity_y());
812
813   if (mode == SHRINK && size == BIG)
814     {
815       if (got_coffee)
816         got_coffee = false;
817
818       size = SMALL;
819       base.height = 32;
820       duck = false;
821
822       safe_timer.start(TUX_SAFE_TIME);
823     }
824   else
825     {
826       physic.enable_gravity(true);
827       physic.set_acceleration(0, 0);
828       physic.set_velocity(0, 7);
829       dying = DYING_SQUISHED;
830     }
831 }
832
833 void
834 Player::is_dying()
835 {
836   /* He died :^( */
837
838   --lives;
839   remove_powerups();
840   dying = DYING_NOT;
841 }
842
843 bool Player::is_dead()
844 {
845   if(base.y > screen->h)
846     return true;
847   else
848     return false;
849 }
850
851 /* Remove Tux's power ups */
852 void
853 Player::remove_powerups()
854 {
855   got_coffee = false;
856   size = SMALL;
857   base.height = 32;
858 }
859
860 void
861 Player::keep_in_bounds()
862 {
863   Level* plevel = World::current()->get_level();
864
865   /* Keep tux in bounds: */
866   if (base.x < 0)
867     { // Lock Tux to the size of the level, so that he doesn't fall of
868       // on the left side
869       base.x = 0;
870     }
871   else if (base.x < scroll_x)
872     { 
873       base.x = scroll_x;
874     }
875
876   /* Keep in-bounds, vertically: */
877   if (base.y > screen->h)
878     {
879       kill(KILL);
880     }
881
882   int scroll_threshold = screen->w/2 - 80;
883   if (debug_mode)
884     {
885       scroll_x += screen->w/2;
886       // Backscrolling for debug mode
887       if (scroll_x < base.x - 80)
888         scroll_x = base.x - 80;
889       else if (scroll_x > base.x + 80)
890         scroll_x = base.x + 80;
891       scroll_x -= screen->w/2;
892
893       if(scroll_x < 0)
894         scroll_x = 0;
895     }
896   else
897     {
898       if (base.x > scroll_threshold + scroll_x
899           && scroll_x < ((World::current()->get_level()->width * 32) - screen->w))
900         {
901           // FIXME: Scrolling needs to be handled by a seperate View
902           // class, doing it as a player huck is ugly
903           
904           // Scroll the screen in past center:
905           scroll_x = base.x - scroll_threshold;
906           
907           // Lock the scrolling to the levelsize, so that we don't
908           // scroll over the right border
909           if (scroll_x > 32 * plevel->width - screen->w)
910             scroll_x = 32 * plevel->width - screen->w;
911         }
912     }
913 }
914
915 // EOF //
916