1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back! *
3 *----------------------------------------------------------*
4 * (c) 1995-2002 Artsoft Entertainment *
6 * Detmolder Strasse 189 *
9 * e-mail: info@artsoft.org *
10 *----------------------------------------------------------*
12 ***********************************************************/
14 #include "libgame/libgame.h"
23 /* tape button identifiers */
24 #define TAPE_CTRL_ID_EJECT 0
25 #define TAPE_CTRL_ID_INDEX 1
26 #define TAPE_CTRL_ID_STOP 2
27 #define TAPE_CTRL_ID_PAUSE 3
28 #define TAPE_CTRL_ID_RECORD 4
29 #define TAPE_CTRL_ID_PLAY 5
31 #define NUM_TAPE_BUTTONS 6
33 /* values for tape handling */
34 #define TAPE_PAUSE_SECONDS_BEFORE_DEATH 5
36 /* forward declaration for internal use */
37 static void HandleTapeButtons(struct GadgetInfo *);
38 static void TapeStopIndexSearch();
40 static struct GadgetInfo *tape_gadget[NUM_TAPE_BUTTONS];
43 /* ========================================================================= */
44 /* video tape definitions */
45 /* ========================================================================= */
47 /* some positions in the video tape control window */
48 #define VIDEO_DATE_LABEL_XPOS (VIDEO_DISPLAY1_XPOS)
49 #define VIDEO_DATE_LABEL_YPOS (VIDEO_DISPLAY1_YPOS)
50 #define VIDEO_DATE_LABEL_XSIZE (VIDEO_DISPLAY_XSIZE)
51 #define VIDEO_DATE_LABEL_YSIZE (VIDEO_DISPLAY_YSIZE)
52 #define VIDEO_DATE_XPOS (VIDEO_DISPLAY1_XPOS + 1)
53 #define VIDEO_DATE_YPOS (VIDEO_DISPLAY1_YPOS + 14)
54 #define VIDEO_DATE_XSIZE (VIDEO_DISPLAY_XSIZE)
55 #define VIDEO_DATE_YSIZE 16
56 #define VIDEO_REC_LABEL_XPOS (VIDEO_DISPLAY2_XPOS)
57 #define VIDEO_REC_LABEL_YPOS (VIDEO_DISPLAY2_YPOS)
58 #define VIDEO_REC_LABEL_XSIZE 20
59 #define VIDEO_REC_LABEL_YSIZE 12
60 #define VIDEO_REC_SYMBOL_XPOS (VIDEO_DISPLAY2_XPOS + 20)
61 #define VIDEO_REC_SYMBOL_YPOS (VIDEO_DISPLAY2_YPOS)
62 #define VIDEO_REC_SYMBOL_XSIZE 16
63 #define VIDEO_REC_SYMBOL_YSIZE 16
64 #define VIDEO_PLAY_LABEL_XPOS (VIDEO_DISPLAY2_XPOS + 65)
65 #define VIDEO_PLAY_LABEL_YPOS (VIDEO_DISPLAY2_YPOS)
66 #define VIDEO_PLAY_LABEL_XSIZE 22
67 #define VIDEO_PLAY_LABEL_YSIZE 12
68 #define VIDEO_PLAY_SYMBOL_XPOS (VIDEO_DISPLAY2_XPOS + 52)
69 #define VIDEO_PLAY_SYMBOL_YPOS (VIDEO_DISPLAY2_YPOS)
70 #define VIDEO_PLAY_SYMBOL_XSIZE 11
71 #define VIDEO_PLAY_SYMBOL_YSIZE 13
72 #define VIDEO_PAUSE_LABEL_XPOS (VIDEO_DISPLAY2_XPOS)
73 #define VIDEO_PAUSE_LABEL_YPOS (VIDEO_DISPLAY2_YPOS + 20)
74 #define VIDEO_PAUSE_LABEL_XSIZE 35
75 #define VIDEO_PAUSE_LABEL_YSIZE 8
76 #define VIDEO_PAUSE_SYMBOL_XPOS (VIDEO_DISPLAY2_XPOS + 35)
77 #define VIDEO_PAUSE_SYMBOL_YPOS (VIDEO_DISPLAY2_YPOS)
78 #define VIDEO_PAUSE_SYMBOL_XSIZE 17
79 #define VIDEO_PAUSE_SYMBOL_YSIZE 13
80 #define VIDEO_TIME_XPOS (VIDEO_DISPLAY2_XPOS + 38)
81 #define VIDEO_TIME_YPOS (VIDEO_DISPLAY2_YPOS + 14)
82 #define VIDEO_TIME_XSIZE 50
83 #define VIDEO_TIME_YSIZE 16
86 #define VIDEO_PBEND_LABEL_XPOS 5
87 #define VIDEO_PBEND_LABEL_YPOS 220
88 #define VIDEO_PBEND_LABEL_XSIZE 35
89 #define VIDEO_PBEND_LABEL_YSIZE 30
91 #define VIDEO_STATE_OFF (VIDEO_STATE_PLAY_OFF | \
92 VIDEO_STATE_REC_OFF | \
93 VIDEO_STATE_PAUSE_OFF | \
94 VIDEO_STATE_FFWD_OFF | \
95 VIDEO_STATE_PBEND_OFF | \
96 VIDEO_STATE_DATE_OFF | \
98 #define VIDEO_PRESS_OFF (VIDEO_PRESS_PLAY_OFF | \
99 VIDEO_PRESS_REC_OFF | \
100 VIDEO_PRESS_PAUSE_OFF | \
101 VIDEO_PRESS_STOP_OFF | \
102 VIDEO_PRESS_EJECT_OFF)
103 #define VIDEO_ALL_OFF (VIDEO_STATE_OFF | VIDEO_PRESS_OFF)
105 #define VIDEO_STATE_ON (VIDEO_STATE_PLAY_ON | \
106 VIDEO_STATE_REC_ON | \
107 VIDEO_STATE_PAUSE_ON | \
108 VIDEO_STATE_FFWD_ON | \
109 VIDEO_STATE_PBEND_ON | \
110 VIDEO_STATE_DATE_ON | \
112 #define VIDEO_PRESS_ON (VIDEO_PRESS_PLAY_ON | \
113 VIDEO_PRESS_REC_ON | \
114 VIDEO_PRESS_PAUSE_ON | \
115 VIDEO_PRESS_STOP_ON | \
116 VIDEO_PRESS_EJECT_ON)
117 #define VIDEO_ALL_ON (VIDEO_STATE_ON | VIDEO_PRESS_ON)
119 #define VIDEO_STATE (VIDEO_STATE_ON | VIDEO_STATE_OFF)
120 #define VIDEO_PRESS (VIDEO_PRESS_ON | VIDEO_PRESS_OFF)
121 #define VIDEO_ALL (VIDEO_ALL_ON | VIDEO_ALL_OFF)
124 /* ========================================================================= */
125 /* video display functions */
126 /* ========================================================================= */
128 void DrawVideoDisplay(unsigned long state, unsigned long value)
131 int part_label = 0, part_symbol = 1;
132 int xpos = 0, ypos = 1, xsize = 2, ysize = 3;
133 static char *monatsname[12] =
135 "JAN", "FEB", "MAR", "APR", "MAY", "JUN",
136 "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"
138 static int video_pos[5][2][4] =
140 {{ VIDEO_PLAY_LABEL_XPOS, VIDEO_PLAY_LABEL_YPOS,
141 VIDEO_PLAY_LABEL_XSIZE,VIDEO_PLAY_LABEL_YSIZE },
142 { VIDEO_PLAY_SYMBOL_XPOS, VIDEO_PLAY_SYMBOL_YPOS,
143 VIDEO_PLAY_SYMBOL_XSIZE,VIDEO_PLAY_SYMBOL_YSIZE }},
145 {{ VIDEO_REC_LABEL_XPOS, VIDEO_REC_LABEL_YPOS,
146 VIDEO_REC_LABEL_XSIZE,VIDEO_REC_LABEL_YSIZE },
147 { VIDEO_REC_SYMBOL_XPOS, VIDEO_REC_SYMBOL_YPOS,
148 VIDEO_REC_SYMBOL_XSIZE,VIDEO_REC_SYMBOL_YSIZE }},
150 {{ VIDEO_PAUSE_LABEL_XPOS, VIDEO_PAUSE_LABEL_YPOS,
151 VIDEO_PAUSE_LABEL_XSIZE,VIDEO_PAUSE_LABEL_YSIZE },
152 { VIDEO_PAUSE_SYMBOL_XPOS, VIDEO_PAUSE_SYMBOL_YPOS,
153 VIDEO_PAUSE_SYMBOL_XSIZE,VIDEO_PAUSE_SYMBOL_YSIZE }},
155 {{ VIDEO_DATE_LABEL_XPOS, VIDEO_DATE_LABEL_YPOS,
156 VIDEO_DATE_LABEL_XSIZE,VIDEO_DATE_LABEL_YSIZE },
157 { VIDEO_DATE_XPOS, VIDEO_DATE_YPOS,
158 VIDEO_DATE_XSIZE,VIDEO_DATE_YSIZE }},
162 { VIDEO_TIME_XPOS, VIDEO_TIME_YPOS,
163 VIDEO_TIME_XSIZE,VIDEO_TIME_YSIZE }}
166 if (state & VIDEO_STATE_PBEND_OFF)
168 int cx = DOOR_GFX_PAGEX3, cy = DOOR_GFX_PAGEY2;
170 BlitBitmap(new_graphic_info[IMG_MENU_DOOR].bitmap, drawto,
171 cx + VIDEO_REC_LABEL_XPOS,
172 cy + VIDEO_REC_LABEL_YPOS,
173 VIDEO_PBEND_LABEL_XSIZE,
174 VIDEO_PBEND_LABEL_YSIZE,
175 VX + VIDEO_REC_LABEL_XPOS,
176 VY + VIDEO_REC_LABEL_YPOS);
183 int pos = i/2, cx, cy = DOOR_GFX_PAGEY2;
185 if (i%2) /* i ungerade => STATE_ON / PRESS_OFF */
186 cx = DOOR_GFX_PAGEX4;
188 cx = DOOR_GFX_PAGEX3; /* i gerade => STATE_OFF / PRESS_ON */
190 if (video_pos[pos][part_label][0] && value != VIDEO_DISPLAY_SYMBOL_ONLY)
191 BlitBitmap(new_graphic_info[IMG_MENU_DOOR].bitmap, drawto,
192 cx + video_pos[pos][part_label][xpos],
193 cy + video_pos[pos][part_label][ypos],
194 video_pos[pos][part_label][xsize],
195 video_pos[pos][part_label][ysize],
196 VX + video_pos[pos][part_label][xpos],
197 VY + video_pos[pos][part_label][ypos]);
198 if (video_pos[pos][part_symbol][0] && value != VIDEO_DISPLAY_LABEL_ONLY)
199 BlitBitmap(new_graphic_info[IMG_MENU_DOOR].bitmap, drawto,
200 cx + video_pos[pos][part_symbol][xpos],
201 cy + video_pos[pos][part_symbol][ypos],
202 video_pos[pos][part_symbol][xsize],
203 video_pos[pos][part_symbol][ysize],
204 VX + video_pos[pos][part_symbol][xpos],
205 VY + video_pos[pos][part_symbol][ypos]);
209 if (state & VIDEO_STATE_FFWD_ON)
211 int cx = DOOR_GFX_PAGEX4, cy = DOOR_GFX_PAGEY2;
213 BlitBitmap(new_graphic_info[IMG_MENU_DOOR].bitmap, drawto,
214 cx + VIDEO_PLAY_SYMBOL_XPOS,
215 cy + VIDEO_PLAY_SYMBOL_YPOS,
216 VIDEO_PLAY_SYMBOL_XSIZE - 2,
217 VIDEO_PLAY_SYMBOL_YSIZE,
218 VX + VIDEO_PLAY_SYMBOL_XPOS - 9,
219 VY + VIDEO_PLAY_SYMBOL_YPOS);
222 if (state & VIDEO_STATE_PBEND_ON)
224 int cx = DOOR_GFX_PAGEX6, cy = DOOR_GFX_PAGEY1;
226 BlitBitmap(new_graphic_info[IMG_MENU_DOOR].bitmap, drawto,
227 cx + VIDEO_PBEND_LABEL_XPOS,
228 cy + VIDEO_PBEND_LABEL_YPOS,
229 VIDEO_PBEND_LABEL_XSIZE,
230 VIDEO_PBEND_LABEL_YSIZE,
231 VX + VIDEO_REC_LABEL_XPOS,
232 VY + VIDEO_REC_LABEL_YPOS);
235 if (state & VIDEO_STATE_DATE_ON)
237 int tag = value % 100;
238 int monat = (value/100) % 100;
239 int jahr = (value/10000);
241 DrawText(VX+VIDEO_DATE_XPOS,VY+VIDEO_DATE_YPOS,
242 int2str(tag,2),FS_SMALL,FC_SPECIAL1);
243 DrawText(VX+VIDEO_DATE_XPOS+27,VY+VIDEO_DATE_YPOS,
244 monatsname[monat],FS_SMALL,FC_SPECIAL1);
245 DrawText(VX+VIDEO_DATE_XPOS+64,VY+VIDEO_DATE_YPOS,
246 int2str(jahr,2),FS_SMALL,FC_SPECIAL1);
249 if (state & VIDEO_STATE_TIME_ON)
251 int min = value / 60;
252 int sec = value % 60;
254 DrawText(VX+VIDEO_TIME_XPOS,VY+VIDEO_TIME_YPOS,
255 int2str(min,2),FS_SMALL,FC_SPECIAL1);
256 DrawText(VX+VIDEO_TIME_XPOS+27,VY+VIDEO_TIME_YPOS,
257 int2str(sec,2),FS_SMALL,FC_SPECIAL1);
260 if (state & VIDEO_STATE_DATE)
261 redraw_mask |= REDRAW_VIDEO_1;
262 if ((state & ~VIDEO_STATE_DATE) & VIDEO_STATE)
263 redraw_mask |= REDRAW_VIDEO_2;
264 if (state & VIDEO_PRESS)
265 redraw_mask |= REDRAW_VIDEO_3;
268 void DrawCompleteVideoDisplay()
270 BlitBitmap(new_graphic_info[IMG_MENU_DOOR].bitmap, drawto,
271 DOOR_GFX_PAGEX3, DOOR_GFX_PAGEY2,
272 gfx.vxsize, gfx.vysize, gfx.vx, gfx.vy);
273 BlitBitmap(new_graphic_info[IMG_MENU_DOOR].bitmap, drawto,
274 DOOR_GFX_PAGEX4 + VIDEO_CONTROL_XPOS,
275 DOOR_GFX_PAGEY2 + VIDEO_CONTROL_YPOS,
276 VIDEO_CONTROL_XSIZE, VIDEO_CONTROL_YSIZE,
277 gfx.vx + VIDEO_CONTROL_XPOS, gfx.vy + VIDEO_CONTROL_YPOS);
279 DrawVideoDisplay(VIDEO_ALL_OFF, 0);
280 if (tape.date && tape.length)
282 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
283 DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
286 BlitBitmap(drawto, bitmap_db_door, gfx.vx, gfx.vy, gfx.vxsize, gfx.vysize,
287 DOOR_GFX_PAGEX1, DOOR_GFX_PAGEY2);
291 /* ========================================================================= */
292 /* tape control functions */
293 /* ========================================================================= */
297 time_t epoch_seconds = time(NULL);
298 struct tm *time = localtime(&epoch_seconds);
304 tape.level_nr = level_nr;
305 tape.pos[tape.counter].delay = 0;
308 tape.date = 10000*(time->tm_year % 100) + 100*time->tm_mon + time->tm_mday;
309 tape.random_seed = InitRND(NEW_RANDOMIZE);
311 tape.file_version = FILE_VERSION_ACTUAL;
312 tape.game_version = GAME_VERSION_ACTUAL;
313 tape.engine_version = level.game_version;
315 for(i=0; i<MAX_PLAYERS; i++)
316 tape.player_participates[i] = FALSE;
319 static void TapeRewind()
322 tape.delay_played = 0;
323 tape.pause_before_death = FALSE;
324 tape.recording = FALSE;
325 tape.playing = FALSE;
326 tape.fast_forward = FALSE;
327 tape.index_search = FALSE;
328 tape.quick_resume = FALSE;
329 tape.single_step = FALSE;
331 InitRND(tape.random_seed);
334 void TapeStartRecording()
336 if (!TAPE_IS_STOPPED(tape))
342 tape.recording = TRUE;
344 DrawVideoDisplay(VIDEO_STATE_REC_ON, 0);
345 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
346 DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
347 MapTapeIndexButton();
349 SetDrawDeactivationMask(REDRAW_NONE);
350 audio.sound_deactivated = FALSE;
353 static void TapeStartGameRecording()
355 TapeStartRecording();
357 #if defined(PLATFORM_UNIX)
359 SendToServer_StartPlaying();
363 game_status = PLAYING;
369 static void TapeAppendRecording()
371 if (!tape.playing || !tape.pausing)
374 tape.pos[tape.counter].delay = tape.delay_played;
375 tape.playing = FALSE;
376 tape.recording = TRUE;
379 DrawVideoDisplay(VIDEO_STATE_PLAY_OFF | VIDEO_STATE_REC_ON,0);
382 void TapeHaltRecording()
388 tape.pos[tape.counter].delay = 0;
390 tape.length = tape.counter;
391 tape.length_seconds = GetTapeLength();
394 void TapeStopRecording()
401 tape.recording = FALSE;
402 tape.pausing = FALSE;
404 DrawVideoDisplay(VIDEO_STATE_REC_OFF, 0);
405 MapTapeEjectButton();
408 void TapeRecordAction(byte action[MAX_PLAYERS])
412 if (!tape.recording || tape.pausing)
415 if (tape.counter >= MAX_TAPELEN - 1)
421 if (tape.pos[tape.counter].delay > 0) /* already stored action */
423 boolean changed_events = FALSE;
425 for(i=0; i<MAX_PLAYERS; i++)
426 if (tape.pos[tape.counter].action[i] != action[i])
427 changed_events = TRUE;
429 if (changed_events || tape.pos[tape.counter].delay >= 255)
432 tape.pos[tape.counter].delay = 0;
435 tape.pos[tape.counter].delay++;
438 if (tape.pos[tape.counter].delay == 0) /* store new action */
440 for(i=0; i<MAX_PLAYERS; i++)
441 tape.pos[tape.counter].action[i] = action[i];
443 tape.pos[tape.counter].delay++;
447 void TapeTogglePause(boolean toggle_manual)
452 if (!tape.recording && !tape.playing)
456 tape.pausing = !tape.pausing;
457 tape.fast_forward = FALSE;
458 tape.pause_before_death = FALSE;
460 if (tape.single_step && toggle_manual)
461 tape.single_step = FALSE;
463 state = (tape.pausing ? VIDEO_STATE_PAUSE_ON : VIDEO_STATE_PAUSE_OFF);
465 state |= VIDEO_STATE_PBEND_OFF;
467 DrawVideoDisplay(state, 0);
469 if (tape.index_search)
471 TapeStopIndexSearch();
473 if (tape.quick_resume)
475 tape.quick_resume = FALSE;
477 TapeAppendRecording();
478 TapeTogglePause(toggle_manual);
483 void TapeStartPlaying()
485 if (TAPE_IS_EMPTY(tape))
488 if (!TAPE_IS_STOPPED(tape))
495 DrawVideoDisplay(VIDEO_STATE_PLAY_ON, 0);
496 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
497 DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
498 MapTapeIndexButton();
500 SetDrawDeactivationMask(REDRAW_NONE);
501 audio.sound_deactivated = FALSE;
504 static void TapeStartGamePlaying()
508 game_status = PLAYING;
513 void TapeStopPlaying()
518 tape.playing = FALSE;
519 tape.pausing = FALSE;
521 if (tape.index_search)
522 TapeStopIndexSearch();
524 DrawVideoDisplay(VIDEO_STATE_PLAY_OFF, 0);
525 MapTapeEjectButton();
528 byte *TapePlayAction()
530 static byte action[MAX_PLAYERS];
533 if (!tape.playing || tape.pausing)
536 if (tape.pause_before_death) /* STOP 10s BEFORE PLAYER GETS KILLED... */
538 if (!(FrameCounter % 20))
540 if ((FrameCounter / 20) % 2)
541 DrawVideoDisplay(VIDEO_STATE_PBEND_ON, VIDEO_DISPLAY_LABEL_ONLY);
543 DrawVideoDisplay(VIDEO_STATE_PBEND_OFF, VIDEO_DISPLAY_LABEL_ONLY);
546 if (TimePlayed > tape.length_seconds - TAPE_PAUSE_SECONDS_BEFORE_DEATH)
548 TapeTogglePause(TAPE_TOGGLE_MANUAL);
553 if (tape.counter >= tape.length) /* end of tape reached */
555 if (tape.index_search)
556 TapeTogglePause(TAPE_TOGGLE_MANUAL);
563 for(i=0; i<MAX_PLAYERS; i++)
564 action[i] = tape.pos[tape.counter].action[i];
567 if (tape.delay_played >= tape.pos[tape.counter].delay)
570 tape.delay_played = 0;
581 DrawVideoDisplay(VIDEO_STATE_PAUSE_OFF,0);
582 if (tape.date && tape.length)
584 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
585 DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
589 unsigned int GetTapeLength()
591 unsigned int tape_length = 0;
594 if (TAPE_IS_EMPTY(tape))
597 for(i=0;i<tape.length;i++)
598 tape_length += tape.pos[i].delay;
600 return(tape_length * GAME_FRAME_DELAY / 1000);
603 static void TapeStartIndexSearch()
605 tape.index_search = TRUE;
607 if (!tape.fast_forward || tape.pause_before_death)
609 tape.pausing = FALSE;
611 SetDrawDeactivationMask(REDRAW_FIELD | REDRAW_DOOR_1);
612 audio.sound_deactivated = TRUE;
616 static void TapeStopIndexSearch()
618 tape.index_search = FALSE;
620 SetDrawDeactivationMask(REDRAW_NONE);
621 audio.sound_deactivated = FALSE;
623 RedrawPlayfield(TRUE, 0,0,0,0);
624 DrawGameDoorValues();
627 static void TapeSingleStep()
633 TapeTogglePause(TAPE_TOGGLE_MANUAL);
635 tape.single_step = !tape.single_step;
640 if (game_status == PLAYING)
643 TapeHaltRecording(); /* prepare tape for saving on-the-fly */
645 if (TAPE_IS_EMPTY(tape))
646 Request("No tape that can be saved !", REQ_CONFIRM);
648 SaveTape(tape.level_nr);
650 else if (game_status == MAINMENU)
651 Request("No game that can be saved !", REQ_CONFIRM);
656 if (game_status == PLAYING || game_status == MAINMENU)
662 if (!TAPE_IS_EMPTY(tape))
664 TapeStartGamePlaying();
665 TapeStartIndexSearch();
667 tape.quick_resume = TRUE;
670 Request("No tape for this level !", REQ_CONFIRM);
675 /* ---------- new tape button stuff ---------------------------------------- */
677 /* graphic position values for tape buttons */
678 #define TAPE_BUTTON_XSIZE 18
679 #define TAPE_BUTTON_YSIZE 18
680 #define TAPE_BUTTON_XPOS 5
681 #define TAPE_BUTTON_YPOS 77
683 #define TAPE_BUTTON_EJECT_XPOS (TAPE_BUTTON_XPOS + 0 * TAPE_BUTTON_XSIZE)
684 #define TAPE_BUTTON_INDEX_XPOS (TAPE_BUTTON_XPOS + 0 * TAPE_BUTTON_XSIZE)
685 #define TAPE_BUTTON_STOP_XPOS (TAPE_BUTTON_XPOS + 1 * TAPE_BUTTON_XSIZE)
686 #define TAPE_BUTTON_PAUSE_XPOS (TAPE_BUTTON_XPOS + 2 * TAPE_BUTTON_XSIZE)
687 #define TAPE_BUTTON_RECORD_XPOS (TAPE_BUTTON_XPOS + 3 * TAPE_BUTTON_XSIZE)
688 #define TAPE_BUTTON_PLAY_XPOS (TAPE_BUTTON_XPOS + 4 * TAPE_BUTTON_XSIZE)
695 } tapebutton_info[NUM_TAPE_BUTTONS] =
698 TAPE_BUTTON_EJECT_XPOS, TAPE_BUTTON_YPOS,
703 TAPE_BUTTON_INDEX_XPOS, TAPE_BUTTON_YPOS,
708 TAPE_BUTTON_STOP_XPOS, TAPE_BUTTON_YPOS,
713 TAPE_BUTTON_PAUSE_XPOS, TAPE_BUTTON_YPOS,
718 TAPE_BUTTON_RECORD_XPOS, TAPE_BUTTON_YPOS,
723 TAPE_BUTTON_PLAY_XPOS, TAPE_BUTTON_YPOS,
729 void CreateTapeButtons()
733 for (i=0; i<NUM_TAPE_BUTTONS; i++)
735 Bitmap *gd_bitmap = new_graphic_info[IMG_MENU_DOOR].bitmap;
736 struct GadgetInfo *gi;
737 int gd_xoffset, gd_yoffset;
738 int gd_x1, gd_x2, gd_y;
741 gd_xoffset = tapebutton_info[i].x;
742 gd_yoffset = tapebutton_info[i].y;
743 gd_x1 = DOOR_GFX_PAGEX4 + gd_xoffset;
744 gd_x2 = DOOR_GFX_PAGEX3 + gd_xoffset;
745 gd_y = DOOR_GFX_PAGEY2 + gd_yoffset;
747 if (i == TAPE_CTRL_ID_INDEX)
749 gd_x1 = DOOR_GFX_PAGEX6 + gd_xoffset;
750 gd_x2 = DOOR_GFX_PAGEX5 + gd_xoffset;
753 gi = CreateGadget(GDI_CUSTOM_ID, id,
754 GDI_INFO_TEXT, tapebutton_info[i].infotext,
755 GDI_X, VX + gd_xoffset,
756 GDI_Y, VY + gd_yoffset,
757 GDI_WIDTH, TAPE_BUTTON_XSIZE,
758 GDI_HEIGHT, TAPE_BUTTON_YSIZE,
759 GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
760 GDI_STATE, GD_BUTTON_UNPRESSED,
761 GDI_DESIGN_UNPRESSED, gd_bitmap, gd_x1, gd_y,
762 GDI_DESIGN_PRESSED, gd_bitmap, gd_x2, gd_y,
763 GDI_EVENT_MASK, GD_EVENT_RELEASED,
764 GDI_CALLBACK_ACTION, HandleTapeButtons,
768 Error(ERR_EXIT, "cannot create gadget");
770 tape_gadget[id] = gi;
774 void MapTapeEjectButton()
776 UnmapGadget(tape_gadget[TAPE_CTRL_ID_INDEX]);
777 MapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
780 void MapTapeIndexButton()
782 UnmapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
783 MapGadget(tape_gadget[TAPE_CTRL_ID_INDEX]);
786 void MapTapeButtons()
790 for (i=0; i<NUM_TAPE_BUTTONS; i++)
791 if (i != TAPE_CTRL_ID_INDEX)
792 MapGadget(tape_gadget[i]);
794 if (tape.recording || tape.playing)
795 MapTapeIndexButton();
798 void UnmapTapeButtons()
802 for (i=0; i<NUM_TAPE_BUTTONS; i++)
803 UnmapGadget(tape_gadget[i]);
806 static void HandleTapeButtons(struct GadgetInfo *gi)
808 int id = gi->custom_id;
810 if (game_status != MAINMENU && game_status != PLAYING)
815 case TAPE_CTRL_ID_EJECT:
817 if (TAPE_IS_EMPTY(tape))
820 if (TAPE_IS_EMPTY(tape))
821 Request("No tape for this level !", REQ_CONFIRM);
826 SaveTape(tape.level_nr);
829 DrawCompleteVideoDisplay();
832 case TAPE_CTRL_ID_INDEX:
834 TapeStartIndexSearch();
835 else if (tape.recording)
839 case TAPE_CTRL_ID_STOP:
843 case TAPE_CTRL_ID_PAUSE:
844 TapeTogglePause(TAPE_TOGGLE_MANUAL);
847 case TAPE_CTRL_ID_RECORD:
848 if (TAPE_IS_STOPPED(tape))
849 TapeStartGameRecording();
850 else if (tape.pausing)
852 if (tape.playing) /* PLAYING -> PAUSING -> RECORDING */
853 TapeAppendRecording();
855 TapeTogglePause(TAPE_TOGGLE_MANUAL);
859 case TAPE_CTRL_ID_PLAY:
860 if (TAPE_IS_EMPTY(tape))
863 if (TAPE_IS_STOPPED(tape))
865 TapeStartGamePlaying();
867 else if (tape.playing)
869 if (tape.pausing) /* PAUSE -> PLAY */
871 TapeTogglePause(TAPE_TOGGLE_MANUAL);
873 else if (!tape.fast_forward) /* PLAY -> FAST FORWARD PLAY */
875 tape.fast_forward = TRUE;
876 DrawVideoDisplay(VIDEO_STATE_FFWD_ON, 0);
878 else if (!tape.pause_before_death) /* FFWD PLAY -> AUTO PAUSE */
880 tape.pause_before_death = TRUE;
881 DrawVideoDisplay(VIDEO_STATE_PBEND_ON, VIDEO_DISPLAY_LABEL_ONLY);
883 else /* AUTO PAUSE -> NORMAL PLAY */
885 tape.fast_forward = FALSE;
886 tape.pause_before_death = FALSE;
887 DrawVideoDisplay(VIDEO_STATE_FFWD_OFF | VIDEO_STATE_PBEND_OFF, 0);