rnd-19981220-1
[rocksndiamonds.git] / src / events.c
1 /***********************************************************
2 *  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
3 *----------------------------------------------------------*
4 *  (c) 1995-98 Artsoft Entertainment                       *
5 *              Holger Schemel                              *
6 *              Oststrasse 11a                              *
7 *              33604 Bielefeld                             *
8 *              phone: ++49 +521 290471                     *
9 *              email: aeglos@valinor.owl.de                *
10 *----------------------------------------------------------*
11 *  events.c                                                *
12 ***********************************************************/
13
14 #include "events.h"
15 #include "init.h"
16 #include "screens.h"
17 #include "tools.h"
18 #include "game.h"
19 #include "editor.h"
20 #include "misc.h"
21 #include "tape.h"
22 #include "joystick.h"
23 #include "buttons.h"
24 #include "network.h"
25
26 /* values for key_status */
27 #define KEY_NOT_PRESSED         FALSE
28 #define KEY_RELEASED            FALSE
29 #define KEY_PRESSED             TRUE
30
31 void EventLoop(void)
32 {
33   while(1)
34   {
35     if (XPending(display))      /* got event from X server */
36     {
37       XEvent event;
38
39       XNextEvent(display, &event);
40
41       switch(event.type)
42       {
43         case ButtonPress:
44         case ButtonRelease:
45           HandleButtonEvent((XButtonEvent *) &event);
46           break;
47
48         case MotionNotify:
49           HandleMotionEvent((XMotionEvent *) &event);
50           break;
51
52         case KeyPress:
53         case KeyRelease:
54           HandleKeyEvent((XKeyEvent *) &event);
55           break;
56
57         default:
58           HandleOtherEvents(&event);
59           break;
60       }
61     }
62
63     HandleNoXEvent();
64
65     /* don't use all CPU time when idle; the main loop while playing
66        has its own synchronization and is CPU friendly, too */
67
68     if (game_status != PLAYING)
69     {
70       XSync(display, FALSE);
71       Delay(10);
72     }
73
74     /* refresh window contents from drawing buffer, if needed */
75     BackToFront();
76
77     if (game_status == EXITGAME)
78       return;
79   }
80 }
81
82 void HandleOtherEvents(XEvent *event)
83 {
84   switch(event->type)
85   {
86     case Expose:
87       HandleExposeEvent((XExposeEvent *) event);
88       break;
89
90     case UnmapNotify:
91       SleepWhileUnmapped();
92       break;
93
94     case FocusIn:
95     case FocusOut:
96       HandleFocusEvent((XFocusChangeEvent *) event);
97       break;
98
99     case ClientMessage:
100       HandleClientMessageEvent((XClientMessageEvent *) event);
101       break;
102
103     default:
104       break;
105   }
106 }
107
108 void ClearEventQueue()
109 {
110   while(XPending(display))
111   {
112     XEvent event;
113
114     XNextEvent(display, &event);
115
116     switch(event.type)
117     {
118       case ButtonRelease:
119         button_status = MB_RELEASED;
120         break;
121
122       case KeyRelease:
123         key_joystick_mapping = 0;
124         break;
125
126       default:
127         HandleOtherEvents(&event);
128         break;
129     }
130   }
131 }
132
133 void SleepWhileUnmapped()
134 {
135   boolean window_unmapped = TRUE;
136
137   XAutoRepeatOn(display);
138
139   while(window_unmapped)
140   {
141     XEvent event;
142
143     XNextEvent(display, &event);
144
145     switch(event.type)
146     {
147       case ButtonRelease:
148         button_status = MB_RELEASED;
149         break;
150
151       case KeyRelease:
152         key_joystick_mapping = 0;
153         break;
154
155       case MapNotify:
156         window_unmapped = FALSE;
157         break;
158
159       case UnmapNotify:
160         /* this is only to surely prevent the 'should not happen' case
161          * of recursively looping between 'SleepWhileUnmapped()' and
162          * 'HandleOtherEvents()' which usually calls this funtion.
163          */
164         break;
165
166       default:
167         HandleOtherEvents(&event);
168         break;
169     }
170   }
171
172   if (game_status==PLAYING)
173     XAutoRepeatOff(display);
174 }
175
176 void HandleExposeEvent(XExposeEvent *event)
177 {
178   int x = event->x, y = event->y;
179   int width = event->width, height = event->height;
180
181   if (setup.direct_draw && game_status==PLAYING)
182   {
183     int xx,yy;
184     int x1 = (x-SX)/TILEX, y1 = (y-SY)/TILEY;
185     int x2 = (x-SX+width)/TILEX, y2 = (y-SY+height)/TILEY;
186
187     SetDrawtoField(DRAW_BACKBUFFER);
188
189     for(xx=0; xx<SCR_FIELDX; xx++)
190       for(yy=0; yy<SCR_FIELDY; yy++)
191         if (xx>=x1 && xx<=x2 && yy>=y1 && yy<=y2)
192           DrawScreenField(xx,yy);
193     DrawAllPlayers();
194
195     SetDrawtoField(DRAW_DIRECT);
196   }
197
198   if (setup.soft_scrolling && game_status == PLAYING)
199   {
200     int fx = FX, fy = FY;
201
202     fx += (ScreenMovDir & (MV_LEFT|MV_RIGHT) ? ScreenGfxPos : 0);
203     fy += (ScreenMovDir & (MV_UP|MV_DOWN)    ? ScreenGfxPos : 0);
204
205     XCopyArea(display,fieldbuffer,backbuffer,gc,
206               fx,fy, SXSIZE,SYSIZE,
207               SX,SY);
208   }
209
210   XCopyArea(display,drawto,window,gc, x,y, width,height, x,y);
211
212   XFlush(display);
213 }
214
215 void HandleButtonEvent(XButtonEvent *event)
216 {
217   motion_status = FALSE;
218
219   if (event->type==ButtonPress)
220     button_status = event->button;
221   else
222     button_status = MB_RELEASED;
223
224   HandleButton(event->x, event->y, button_status);
225 }
226
227 void HandleMotionEvent(XMotionEvent *event)
228 {
229   motion_status = TRUE;
230
231   HandleButton(event->x, event->y, button_status);
232 }
233
234 void HandleKeyEvent(XKeyEvent *event)
235 {
236   int key_status = (event->type == KeyPress ? KEY_PRESSED : KEY_RELEASED);
237   unsigned int event_state = (game_status != PLAYING ? event->state : 0);
238   KeySym key = XLookupKeysym(event, event_state);
239
240   HandleKey(key, key_status);
241 }
242
243 void HandleFocusEvent(XFocusChangeEvent *event)
244 {
245   static int old_joystick_status = -1;
246
247   if (event->type == FocusOut)
248   {
249     XAutoRepeatOn(display);
250     old_joystick_status = joystick_status;
251     joystick_status = JOYSTICK_OFF;
252     key_joystick_mapping = 0;
253   }
254   else if (event->type == FocusIn)
255   {
256     if (game_status == PLAYING)
257       XAutoRepeatOff(display);
258     if (old_joystick_status != -1)
259       joystick_status = old_joystick_status;
260   }
261 }
262
263 void HandleClientMessageEvent(XClientMessageEvent *event)
264 {
265 #ifndef MSDOS
266   if ((event->window == window) &&
267       (event->data.l[0] == XInternAtom(display, "WM_DELETE_WINDOW", FALSE)))
268     CloseAllAndExit(0);
269 #endif
270 }
271
272 void HandleButton(int mx, int my, int button)
273 {
274   static int old_mx = 0, old_my = 0;
275
276   if (button < 0)
277   {
278     mx = old_mx;
279     my = old_my;
280     button = -button;
281   }
282   else
283   {
284     old_mx = mx;
285     old_my = my;
286
287     HandleVideoButtons(mx,my, button);
288     HandleSoundButtons(mx,my, button);
289     HandleGameButtons(mx,my, button);
290   }
291
292   HandleGadgets(mx, my, button);
293
294   switch(game_status)
295   {
296     case MAINMENU:
297       HandleMainMenu(mx,my, 0,0, button);
298       break;
299
300     case TYPENAME:
301       HandleTypeName(0, XK_Return);
302       break;
303
304     case CHOOSELEVEL:
305       HandleChooseLevel(mx,my, 0,0, button);
306       break;
307
308     case HALLOFFAME:
309       HandleHallOfFame(button);
310       break;
311
312     case LEVELED:
313       LevelEd(mx,my, button);
314       break;
315
316     case HELPSCREEN:
317       HandleHelpScreen(button);
318       break;
319
320     case SETUP:
321       HandleSetupScreen(mx,my, 0,0, button);
322       break;
323
324     case SETUPINPUT:
325       HandleSetupInputScreen(mx,my, 0,0, button);
326       break;
327
328     case PLAYING:
329 #ifdef DEBUG
330       if (button == MB_RELEASED)
331       {
332         int sx = (mx - SX) / TILEX;
333         int sy = (my - SY) / TILEY;
334
335         if (IN_VIS_FIELD(sx,sy))
336         {
337           int x = LEVELX(sx);
338           int y = LEVELY(sy);
339
340           printf("INFO: Feld[%d][%d] == %d\n", x,y, Feld[x][y]);
341           printf("      Store[%d][%d] == %d\n", x,y, Store[x][y]);
342           printf("      Store2[%d][%d] == %d\n", x,y, Store2[x][y]);
343           printf("      StorePlayer[%d][%d] == %d\n", x,y, StorePlayer[x][y]);
344           printf("      MovPos[%d][%d] == %d\n", x,y, MovPos[x][y]);
345           printf("      MovDir[%d][%d] == %d\n", x,y, MovDir[x][y]);
346           printf("      MovDelay[%d][%d] == %d\n", x,y, MovDelay[x][y]);
347           printf("\n");
348         }
349       }
350 #endif
351       break;
352
353     default:
354       break;
355   }
356 }
357
358 void HandleKey(KeySym key, int key_status)
359 {
360   int joy = 0;
361   static struct SetupKeyboardInfo custom_key;
362   static struct
363   {
364     KeySym *keysym_custom;
365     KeySym keysym_default;
366     byte action;
367   } key_info[] =
368   {
369     { &custom_key.left,  DEFAULT_KEY_LEFT,  JOY_LEFT     },
370     { &custom_key.right, DEFAULT_KEY_RIGHT, JOY_RIGHT    },
371     { &custom_key.up,    DEFAULT_KEY_UP,    JOY_UP       },
372     { &custom_key.down,  DEFAULT_KEY_DOWN,  JOY_DOWN     },
373     { &custom_key.snap,  DEFAULT_KEY_SNAP,  JOY_BUTTON_1 },
374     { &custom_key.bomb,  DEFAULT_KEY_BOMB,  JOY_BUTTON_2 }
375   };
376
377   if (game_status == PLAYING)
378   {
379     int pnr;
380
381     for (pnr=0; pnr<MAX_PLAYERS; pnr++)
382     {
383       int i;
384       byte key_action = 0;
385
386       if (setup.input[pnr].use_joystick)
387         continue;
388
389       custom_key = setup.input[pnr].key;
390
391       for (i=0; i<6; i++)
392         if (key == *key_info[i].keysym_custom)
393           key_action |= key_info[i].action;
394
395       if (key_status == KEY_PRESSED)
396         stored_player[pnr].action |= key_action;
397       else
398         stored_player[pnr].action &= ~key_action;
399     }
400   }
401   else
402   {
403     int i;
404
405     for (i=0; i<6; i++)
406       if (key == key_info[i].keysym_default)
407         joy |= key_info[i].action;
408   }
409
410   if (joy)
411   {
412     if (key_status == KEY_PRESSED)
413       key_joystick_mapping |= joy;
414     else
415       key_joystick_mapping &= ~joy;
416
417     HandleJoystick();
418   }
419
420   if (game_status != PLAYING)
421     key_joystick_mapping = 0;
422
423   if (key_status == KEY_RELEASED)
424     return;
425
426   if (key == XK_Return && game_status == PLAYING && AllPlayersGone)
427   {
428     CloseDoor(DOOR_CLOSE_1);
429     game_status = MAINMENU;
430     DrawMainMenu();
431     return;
432   }
433
434   /* allow quick escape to the main menu with the Escape key */
435   if (key == XK_Escape && game_status != MAINMENU)
436   {
437     if (game_status == LEVELED)
438     {
439       /* draw smaller door */
440       XCopyArea(display, pix[PIX_DOOR], drawto, gc,
441                 DOOR_GFX_PAGEX7, 64,
442                 108, 64,
443                 EX - 4, EY - 12);
444       redraw_mask |= REDRAW_ALL;
445     }
446
447     CloseDoor(DOOR_CLOSE_1 | DOOR_OPEN_2 | DOOR_NO_DELAY);
448     game_status = MAINMENU;
449     DrawMainMenu();
450     return;
451   }
452
453
454
455 #ifndef DEBUG
456
457   if (game_status == PLAYING && (tape.playing || tape.pausing))
458     return;
459
460 #endif
461
462
463
464   switch(game_status)
465   {
466     case TYPENAME:
467       HandleTypeName(0, key);
468       break;
469
470     case MAINMENU:
471     case CHOOSELEVEL:
472     case SETUP:
473     case SETUPINPUT:
474       switch(key)
475       {
476         case XK_Return:
477           if (game_status == MAINMENU)
478             HandleMainMenu(0,0, 0,0, MB_MENU_CHOICE);
479           else if (game_status == CHOOSELEVEL)
480             HandleChooseLevel(0,0, 0,0, MB_MENU_CHOICE);
481           else if (game_status == SETUP)
482             HandleSetupScreen(0,0, 0,0, MB_MENU_CHOICE);
483           else if (game_status == SETUPINPUT)
484             HandleSetupInputScreen(0,0, 0,0, MB_MENU_CHOICE);
485           break;
486
487         default:
488           break;
489       }
490       break;
491
492     case HELPSCREEN:
493       HandleHelpScreen(MB_RELEASED);
494       break;
495
496     case HALLOFFAME:
497       switch(key)
498       {
499         case XK_Return:
500           game_status = MAINMENU;
501           DrawMainMenu();
502           BackToFront();
503           break;
504
505         default:
506           break;
507       }
508       break;
509
510     case LEVELED:
511       HandleLevelEditorKeyInput(key);
512       LevelNameTyping(key);
513       break;
514
515     case PLAYING:
516     {
517       switch(key)
518       {
519
520 #ifdef DEBUG
521         case XK_0:
522         case XK_1:
523         case XK_2:
524         case XK_3:
525         case XK_4:
526         case XK_5:
527         case XK_6:
528         case XK_7:
529         case XK_8:
530         case XK_9:
531           if (key == XK_0)
532           {
533             if (GameFrameDelay == 500)
534               GameFrameDelay = GAME_FRAME_DELAY;
535             else
536               GameFrameDelay = 500;
537           }
538           else
539             GameFrameDelay = (key - XK_0) * 10;
540           printf("Game speed == %d%% (%d ms delay between two frames)\n",
541                  GAME_FRAME_DELAY * 100 / GameFrameDelay, GameFrameDelay);
542           break;
543
544
545 #if 0
546         case XK_a:
547           if (ScrollStepSize == TILEX/8)
548             ScrollStepSize = TILEX/4;
549           else
550             ScrollStepSize = TILEX/8;
551           printf("ScrollStepSize == %d\n", ScrollStepSize);
552           break;
553 #endif
554
555         case XK_f:
556           ScrollStepSize = TILEX/8;
557           printf("ScrollStepSize == %d (1/8)\n", ScrollStepSize);
558           break;
559
560         case XK_g:
561           ScrollStepSize = TILEX/4;
562           printf("ScrollStepSize == %d (1/4)\n", ScrollStepSize);
563           break;
564
565         case XK_h:
566           ScrollStepSize = TILEX/2;
567           printf("ScrollStepSize == %d (1/2)\n", ScrollStepSize);
568           break;
569
570         case XK_l:
571           ScrollStepSize = TILEX;
572           printf("ScrollStepSize == %d (1/1)\n", ScrollStepSize);
573           break;
574
575 #ifndef MSDOS
576         case XK_Q:
577 #endif
578         case XK_q:
579           local_player->dynamite = 1000;
580           break;
581
582
583
584 #if 0
585
586         case XK_z:
587           {
588             int i;
589
590             for(i=0; i<MAX_PLAYERS; i++)
591             {
592               printf("Player %d:\n", i);
593               printf("  jx == %d, jy == %d\n",
594                      stored_player[i].jx, stored_player[i].jy);
595               printf("  last_jx == %d, last_jy == %d\n",
596                      stored_player[i].last_jx, stored_player[i].last_jy);
597             }
598             printf("\n");
599           }
600
601           break;
602 #endif
603 #endif
604
605         default:
606           break;
607       }
608       break;
609     }
610     default:
611       break;
612   }
613 }
614
615 void HandleNoXEvent()
616 {
617   if (button_status && game_status != PLAYING)
618   {
619     HandleButton(0, 0, -button_status);
620     return;
621   }
622
623 #ifndef MSDOS
624   if (options.network)
625     HandleNetworking();
626 #endif
627
628   HandleJoystick();
629
630   if (game_status == PLAYING)
631     HandleGameActions();
632 }
633
634 static int HandleJoystickForAllPlayers()
635 {
636   int i;
637   int result = 0;
638
639   for (i=0; i<MAX_PLAYERS; i++)
640   {
641     byte joy_action = 0;
642
643     /*
644     if (!setup.input[i].use_joystick)
645       continue;
646       */
647
648     joy_action = Joystick(i);
649     result |= joy_action;
650
651
652     if (!setup.input[i].use_joystick)
653       continue;
654
655
656     stored_player[i].action = joy_action;
657   }
658
659   return result;
660 }
661
662 void HandleJoystick()
663 {
664   int joystick  = HandleJoystickForAllPlayers();
665   int keyboard  = key_joystick_mapping;
666   int joy       = (joystick | keyboard);
667   int left      = joy & JOY_LEFT;
668   int right     = joy & JOY_RIGHT;
669   int up        = joy & JOY_UP;
670   int down      = joy & JOY_DOWN;
671   int button    = joy & JOY_BUTTON;
672   int newbutton = (AnyJoystickButton() == JOY_BUTTON_NEW_PRESSED);
673   int dx        = (left ? -1    : right ? 1     : 0);
674   int dy        = (up   ? -1    : down  ? 1     : 0);
675
676   switch(game_status)
677   {
678     case MAINMENU:
679     case CHOOSELEVEL:
680     case SETUP:
681     case SETUPINPUT:
682     {
683       static unsigned long joystickmove_delay = 0;
684
685       if (joystick && !button &&
686           !DelayReached(&joystickmove_delay, GADGET_FRAME_DELAY))
687         newbutton = dx = dy = 0;
688
689       if (game_status==MAINMENU)
690         HandleMainMenu(0,0,dx,dy,newbutton ? MB_MENU_CHOICE : MB_MENU_MARK);
691       else if (game_status==CHOOSELEVEL)
692         HandleChooseLevel(0,0,dx,dy,newbutton ? MB_MENU_CHOICE : MB_MENU_MARK);
693       else if (game_status==SETUP)
694         HandleSetupScreen(0,0,dx,dy,newbutton ? MB_MENU_CHOICE : MB_MENU_MARK);
695       else if (game_status==SETUPINPUT)
696         HandleSetupInputScreen(0,0,dx,dy,
697                                newbutton ? MB_MENU_CHOICE : MB_MENU_MARK);
698       break;
699     }
700
701     case HALLOFFAME:
702       HandleHallOfFame(!newbutton);
703       break;
704
705     case HELPSCREEN:
706       HandleHelpScreen(!newbutton);
707       break;
708
709     case PLAYING:
710       if (tape.playing || keyboard)
711         newbutton = ((joy & JOY_BUTTON) != 0);
712
713       if (AllPlayersGone && newbutton)
714       {
715         CloseDoor(DOOR_CLOSE_1);
716         game_status = MAINMENU;
717         DrawMainMenu();
718         return;
719       }
720
721       break;
722
723     default:
724       break;
725   }
726 }