1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
12 #include "libgame/libgame.h"
22 #define DEBUG_TAPE_WHEN_PLAYING FALSE
24 /* tape button identifiers */
25 #define TAPE_CTRL_ID_EJECT 0
26 #define TAPE_CTRL_ID_EXTRA 1
27 #define TAPE_CTRL_ID_STOP 2
28 #define TAPE_CTRL_ID_PAUSE 3
29 #define TAPE_CTRL_ID_RECORD 4
30 #define TAPE_CTRL_ID_PLAY 5
32 #define NUM_TAPE_BUTTONS 6
34 /* values for tape handling */
35 #define TAPE_PAUSE_SECONDS_BEFORE_DEATH 5
37 /* forward declaration for internal use */
38 static void HandleTapeButtons(struct GadgetInfo *);
39 static void TapeStopWarpForward();
41 static struct GadgetInfo *tape_gadget[NUM_TAPE_BUTTONS];
44 /* ========================================================================= */
45 /* video tape definitions */
46 /* ========================================================================= */
48 /* some positions in the video tape control window */
49 #define VIDEO_DATE_LABEL_XPOS (VIDEO_DISPLAY1_XPOS)
50 #define VIDEO_DATE_LABEL_YPOS (VIDEO_DISPLAY1_YPOS)
51 #define VIDEO_DATE_LABEL_XSIZE (VIDEO_DISPLAY_XSIZE)
52 #define VIDEO_DATE_LABEL_YSIZE (VIDEO_DISPLAY_YSIZE)
53 #define VIDEO_DATE_XPOS (VIDEO_DISPLAY1_XPOS + 2)
54 #define VIDEO_DATE_YPOS (VIDEO_DISPLAY1_YPOS + 14)
55 #define VIDEO_DATE_XSIZE (VIDEO_DISPLAY_XSIZE)
56 #define VIDEO_DATE_YSIZE 16
57 #define VIDEO_REC_LABEL_XPOS (VIDEO_DISPLAY2_XPOS)
58 #define VIDEO_REC_LABEL_YPOS (VIDEO_DISPLAY2_YPOS)
59 #define VIDEO_REC_LABEL_XSIZE 20
60 #define VIDEO_REC_LABEL_YSIZE 12
61 #define VIDEO_REC_SYMBOL_XPOS (VIDEO_DISPLAY2_XPOS + 20)
62 #define VIDEO_REC_SYMBOL_YPOS (VIDEO_DISPLAY2_YPOS)
63 #define VIDEO_REC_SYMBOL_XSIZE 16
64 #define VIDEO_REC_SYMBOL_YSIZE 16
65 #define VIDEO_PLAY_LABEL_XPOS (VIDEO_DISPLAY2_XPOS + 65)
66 #define VIDEO_PLAY_LABEL_YPOS (VIDEO_DISPLAY2_YPOS)
67 #define VIDEO_PLAY_LABEL_XSIZE 22
68 #define VIDEO_PLAY_LABEL_YSIZE 12
69 #define VIDEO_PLAY_SYMBOL_XPOS (VIDEO_DISPLAY2_XPOS + 52)
70 #define VIDEO_PLAY_SYMBOL_YPOS (VIDEO_DISPLAY2_YPOS)
71 #define VIDEO_PLAY_SYMBOL_XSIZE 11
72 #define VIDEO_PLAY_SYMBOL_YSIZE 13
73 #define VIDEO_PAUSE_LABEL_XPOS (VIDEO_DISPLAY2_XPOS)
74 #define VIDEO_PAUSE_LABEL_YPOS (VIDEO_DISPLAY2_YPOS + 20)
75 #define VIDEO_PAUSE_LABEL_XSIZE 35
76 #define VIDEO_PAUSE_LABEL_YSIZE 8
77 #define VIDEO_PAUSE_SYMBOL_XPOS (VIDEO_DISPLAY2_XPOS + 35)
78 #define VIDEO_PAUSE_SYMBOL_YPOS (VIDEO_DISPLAY2_YPOS)
79 #define VIDEO_PAUSE_SYMBOL_XSIZE 17
80 #define VIDEO_PAUSE_SYMBOL_YSIZE 13
81 #define VIDEO_TIME_XPOS (VIDEO_DISPLAY2_XPOS + 39)
82 #define VIDEO_TIME_YPOS (VIDEO_DISPLAY2_YPOS + 14)
83 #define VIDEO_TIME_XSIZE 50
84 #define VIDEO_TIME_YSIZE 16
86 /* some default values for tape labels and symbols */
87 #define VIDEO_LABEL_XPOS 5
88 #define VIDEO_LABEL_YPOS 42
89 #define VIDEO_LABEL_XSIZE 40
90 #define VIDEO_LABEL_YSIZE 28
91 #define VIDEO_SYMBOL_XPOS 39
92 #define VIDEO_SYMBOL_YPOS 42
93 #define VIDEO_SYMBOL_XSIZE 56
94 #define VIDEO_SYMBOL_YSIZE 13
96 /* values for certain tape labels and symbols */
97 #define VIDEO_FFWD_LABEL_XPOS VIDEO_LABEL_XPOS
98 #define VIDEO_FFWD_LABEL_YPOS 193
99 #define VIDEO_FFWD_LABEL_XSIZE VIDEO_LABEL_XSIZE
100 #define VIDEO_FFWD_LABEL_YSIZE VIDEO_LABEL_YSIZE
101 #define VIDEO_FFWD_SYMBOL_XPOS VIDEO_SYMBOL_XPOS
102 #define VIDEO_FFWD_SYMBOL_YPOS 193
103 #define VIDEO_FFWD_SYMBOL_XSIZE 27
104 #define VIDEO_FFWD_SYMBOL_YSIZE VIDEO_SYMBOL_YSIZE
106 #define VIDEO_PBEND_LABEL_XPOS VIDEO_LABEL_XPOS
107 #define VIDEO_PBEND_LABEL_YPOS 221
108 #define VIDEO_PBEND_LABEL_XSIZE VIDEO_LABEL_XSIZE
109 #define VIDEO_PBEND_LABEL_YSIZE VIDEO_LABEL_YSIZE
110 #define VIDEO_PBEND_SYMBOL_XPOS VIDEO_SYMBOL_XPOS
111 #define VIDEO_PBEND_SYMBOL_YPOS 221
112 #define VIDEO_PBEND_SYMBOL_XSIZE 27
113 #define VIDEO_PBEND_SYMBOL_YSIZE VIDEO_SYMBOL_YSIZE
115 #define VIDEO_WARP_LABEL_XPOS VIDEO_LABEL_XPOS
116 #define VIDEO_WARP_LABEL_YPOS 165
117 #define VIDEO_WARP_LABEL_XSIZE VIDEO_LABEL_XSIZE
118 #define VIDEO_WARP_LABEL_YSIZE VIDEO_LABEL_YSIZE
119 #define VIDEO_WARP_SYMBOL_XPOS VIDEO_SYMBOL_XPOS
120 #define VIDEO_WARP_SYMBOL_YPOS 165
121 #define VIDEO_WARP_SYMBOL_XSIZE 27
122 #define VIDEO_WARP_SYMBOL_YSIZE VIDEO_SYMBOL_YSIZE
123 #define VIDEO_WARP2_SYMBOL_XPOS VIDEO_SYMBOL_XPOS
124 #define VIDEO_WARP2_SYMBOL_YPOS 152
125 #define VIDEO_WARP2_SYMBOL_XSIZE 27
126 #define VIDEO_WARP2_SYMBOL_YSIZE VIDEO_SYMBOL_YSIZE
128 #define VIDEO_1STEP_SYMBOL_XPOS (VIDEO_SYMBOL_XPOS + 18)
129 #define VIDEO_1STEP_SYMBOL_YPOS 139
130 #define VIDEO_1STEP_SYMBOL_XSIZE (VIDEO_SYMBOL_XSIZE - 18)
131 #define VIDEO_1STEP_SYMBOL_YSIZE VIDEO_SYMBOL_YSIZE
133 #define PG_X3(x) (DOOR_GFX_PAGEX3 + (x))
134 #define PG_X4(x) (DOOR_GFX_PAGEX4 + (x))
135 #define PG_X5(x) (DOOR_GFX_PAGEX5 + (x))
136 #define PG_X6(x) (DOOR_GFX_PAGEX6 + (x))
138 #define PG_Y1(y) (DOOR_GFX_PAGEY1 + (y))
139 #define PG_Y2(y) (DOOR_GFX_PAGEY2 + (y))
141 #define VIDEO_INFO_OFF (VIDEO_STATE_DATE_OFF | \
142 VIDEO_STATE_TIME_OFF)
143 #define VIDEO_STATE_OFF (VIDEO_STATE_PLAY_OFF | \
144 VIDEO_STATE_REC_OFF | \
145 VIDEO_STATE_PAUSE_OFF | \
146 VIDEO_STATE_FFWD_OFF | \
147 VIDEO_STATE_PBEND_OFF | \
148 VIDEO_STATE_1STEP_OFF)
149 #define VIDEO_PRESS_OFF (VIDEO_PRESS_PLAY_OFF | \
150 VIDEO_PRESS_REC_OFF | \
151 VIDEO_PRESS_PAUSE_OFF | \
152 VIDEO_PRESS_STOP_OFF | \
153 VIDEO_PRESS_EJECT_OFF)
154 #define VIDEO_ALL_OFF (VIDEO_INFO_OFF | \
158 #define VIDEO_INFO_ON (VIDEO_STATE_DATE_ON | \
160 #define VIDEO_STATE_ON (VIDEO_STATE_PLAY_ON | \
161 VIDEO_STATE_REC_ON | \
162 VIDEO_STATE_PAUSE_ON | \
163 VIDEO_STATE_FFWD_ON | \
164 VIDEO_STATE_PBEND_ON | \
165 VIDEO_STATE_1STEP_ON)
166 #define VIDEO_PRESS_ON (VIDEO_PRESS_PLAY_ON | \
167 VIDEO_PRESS_REC_ON | \
168 VIDEO_PRESS_PAUSE_ON | \
169 VIDEO_PRESS_STOP_ON | \
170 VIDEO_PRESS_EJECT_ON)
171 #define VIDEO_ALL_ON (VIDEO_INFO_ON | \
175 #define VIDEO_INFO (VIDEO_INFO_ON | VIDEO_INFO_OFF)
176 #define VIDEO_STATE (VIDEO_STATE_ON | VIDEO_STATE_OFF)
177 #define VIDEO_PRESS (VIDEO_PRESS_ON | VIDEO_PRESS_OFF)
178 #define VIDEO_ALL (VIDEO_ALL_ON | VIDEO_ALL_OFF)
180 #define NUM_TAPE_FUNCTIONS 10
181 #define NUM_TAPE_FUNCTION_PARTS 2
182 #define NUM_TAPE_FUNCTION_STATES 2
185 /* ========================================================================= */
186 /* video display functions */
187 /* ========================================================================= */
189 void DrawVideoDisplay(unsigned int state, unsigned int value)
192 static char *monatsname[12] =
194 "JAN", "FEB", "MAR", "APR", "MAY", "JUN",
195 "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"
203 video_pos[NUM_TAPE_FUNCTIONS][NUM_TAPE_FUNCTION_PARTS] =
206 { IMG_TAPE_LABEL_GFX_PLAY, &tape.label.play },
207 { IMG_TAPE_SYMBOL_GFX_PLAY, &tape.symbol.play },
210 { IMG_TAPE_LABEL_GFX_RECORD, &tape.label.record },
211 { IMG_TAPE_SYMBOL_GFX_RECORD, &tape.symbol.record },
214 { IMG_TAPE_LABEL_GFX_PAUSE, &tape.label.pause },
215 { IMG_TAPE_SYMBOL_GFX_PAUSE, &tape.symbol.pause },
218 { IMG_TAPE_LABEL_GFX_DATE, &tape.label.date },
222 { IMG_TAPE_LABEL_GFX_TIME, &tape.label.time },
226 { IMG_TAPE_LABEL_GFX_FAST_FORWARD, &tape.label.fast_forward },
227 { IMG_TAPE_SYMBOL_GFX_FAST_FORWARD, &tape.symbol.fast_forward },
230 { IMG_TAPE_LABEL_GFX_PAUSE_BEFORE_END, &tape.label.pause_before_end },
231 { IMG_TAPE_SYMBOL_GFX_PAUSE_BEFORE_END, &tape.symbol.pause_before_end },
234 { IMG_TAPE_LABEL_GFX_WARP_FORWARD_BLIND, &tape.label.warp_forward_blind},
235 { IMG_TAPE_SYMBOL_GFX_WARP_FORWARD_BLIND, &tape.symbol.warp_forward_blind},
238 { IMG_TAPE_LABEL_GFX_WARP_FORWARD, &tape.label.warp_forward },
239 { IMG_TAPE_SYMBOL_GFX_WARP_FORWARD, &tape.symbol.warp_forward },
242 { IMG_TAPE_LABEL_GFX_SINGLE_STEP, &tape.label.single_step },
243 { IMG_TAPE_SYMBOL_GFX_SINGLE_STEP, &tape.symbol.single_step },
247 for (k = 0; k < NUM_TAPE_FUNCTION_STATES; k++) /* on or off states */
249 for (i = 0; i < NUM_TAPE_FUNCTIONS; i++) /* record, play, ... */
251 for (j = 0; j < NUM_TAPE_FUNCTION_PARTS; j++) /* label or symbol */
253 if (video_pos[i][j].graphic == -1 ||
254 video_pos[i][j].pos->x < 0 ||
255 video_pos[i][j].pos->y < 0)
258 if (state & (1 << (i * 2 + k)))
260 struct GraphicInfo *gfx_bg = &graphic_info[IMG_BACKGROUND_TAPE];
261 struct GraphicInfo *gfx = &graphic_info[video_pos[i][j].graphic];
262 struct Rect *pos = video_pos[i][j].pos;
266 (j == 0 ? VIDEO_DISPLAY_SYMBOL_ONLY : VIDEO_DISPLAY_LABEL_ONLY);
268 if (value == skip_value)
273 gd_bitmap = gfx->bitmap;
279 gd_bitmap = gfx_bg->bitmap;
280 gd_x = gfx_bg->src_x + pos->x;
281 gd_y = gfx_bg->src_y + pos->y;
284 /* some tape graphics may be undefined -- only draw if defined */
285 if (gd_bitmap != NULL)
286 BlitBitmap(gd_bitmap, drawto, gd_x, gd_y, gfx->width, gfx->height,
287 VX + pos->x, VY + pos->y);
293 if (state & VIDEO_STATE_DATE_ON)
295 struct TextPosInfo *pos = &tape.text.date;
296 int tag = value % 100;
297 int monat = (value/100) % 100;
298 int jahr = (value/10000);
300 DrawText(VX + pos->x, VY + pos->y, int2str(tag, 2), pos->font);
301 DrawText(VX + pos->x + 27, VY + pos->y, monatsname[monat], pos->font);
302 DrawText(VX + pos->x + 64, VY + pos->y, int2str(jahr, 2), pos->font);
305 if (state & VIDEO_STATE_TIME_ON)
307 struct TextPosInfo *pos = &tape.text.time;
308 int min = value / 60;
309 int sec = value % 60;
311 DrawText(VX + pos->x, VY + pos->y, int2str(min, 2), pos->font);
312 DrawText(VX + pos->x + 27, VY + pos->y, int2str(sec, 2), pos->font);
315 redraw_mask |= REDRAW_DOOR_2;
318 void DrawCompleteVideoDisplay()
320 struct GraphicInfo *g_tape = &graphic_info[IMG_BACKGROUND_TAPE];
322 /* draw tape background */
323 BlitBitmap(g_tape->bitmap, drawto, g_tape->src_x, g_tape->src_y,
324 gfx.vxsize, gfx.vysize, gfx.vx, gfx.vy);
326 /* draw tape buttons (forced) */
330 DrawVideoDisplay(VIDEO_ALL_OFF, 0);
334 DrawVideoDisplay(VIDEO_STATE_REC_ON, 0);
335 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
336 DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
339 DrawVideoDisplay(VIDEO_STATE_PAUSE_ON, 0);
341 else if (tape.playing)
343 DrawVideoDisplay(VIDEO_STATE_PLAY_ON, 0);
344 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
345 DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
348 DrawVideoDisplay(VIDEO_STATE_PAUSE_ON, 0);
350 else if (tape.date && tape.length)
352 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
353 DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
356 BlitBitmap(drawto, bitmap_db_door_2, gfx.vx, gfx.vy, gfx.vxsize, gfx.vysize,
360 void TapeDeactivateDisplayOn()
362 SetDrawDeactivationMask(REDRAW_FIELD);
363 audio.sound_deactivated = TRUE;
366 void TapeDeactivateDisplayOff(boolean redraw_display)
368 SetDrawDeactivationMask(REDRAW_NONE);
369 audio.sound_deactivated = FALSE;
373 RedrawPlayfield(TRUE, 0,0,0,0);
374 DrawGameDoorValues();
379 /* ========================================================================= */
380 /* tape control functions */
381 /* ========================================================================= */
383 void TapeSetDateFromEpochSeconds(time_t epoch_seconds)
385 struct tm *lt = localtime(&epoch_seconds);
387 tape.date = 10000 * (lt->tm_year % 100) + 100 * lt->tm_mon + lt->tm_mday;
390 void TapeSetDateFromNow()
392 TapeSetDateFromEpochSeconds(time(NULL));
401 tape.length_seconds = 0;
403 if (leveldir_current)
404 setString(&tape.level_identifier, leveldir_current->identifier);
406 tape.level_nr = level_nr;
407 tape.pos[tape.counter].delay = 0;
410 tape.random_seed = InitRND(level.random_seed);
412 tape.file_version = FILE_VERSION_ACTUAL;
413 tape.game_version = GAME_VERSION_ACTUAL;
414 tape.engine_version = level.game_version;
416 TapeSetDateFromNow();
418 for (i = 0; i < MAX_PLAYERS; i++)
419 tape.player_participates[i] = FALSE;
421 tape.centered_player_nr_next = -1;
422 tape.set_centered_player = FALSE;
425 static void TapeRewind()
428 tape.delay_played = 0;
429 tape.pause_before_death = FALSE;
430 tape.recording = FALSE;
431 tape.playing = FALSE;
432 tape.fast_forward = FALSE;
433 tape.warp_forward = FALSE;
434 tape.deactivate_display = FALSE;
435 tape.auto_play = (global.autoplay_leveldir != NULL);
436 tape.auto_play_level_solved = FALSE;
437 tape.quick_resume = FALSE;
438 tape.single_step = FALSE;
440 tape.centered_player_nr_next = -1;
441 tape.set_centered_player = FALSE;
443 InitRND(tape.random_seed);
446 static void TapeSetRandomSeed(int random_seed)
448 tape.random_seed = InitRND(random_seed);
451 void TapeStartRecording(int random_seed)
453 if (!TAPE_IS_STOPPED(tape))
458 TapeSetRandomSeed(random_seed);
460 tape.recording = TRUE;
462 DrawVideoDisplay(VIDEO_STATE_REC_ON, 0);
463 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
464 DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
468 SetDrawDeactivationMask(REDRAW_NONE);
469 audio.sound_deactivated = FALSE;
472 static void TapeStartGameRecording()
474 TapeStartRecording(level.random_seed);
476 #if defined(NETWORK_AVALIABLE)
479 SendToServer_StartPlaying();
488 static void TapeAppendRecording()
490 if (!tape.playing || !tape.pausing)
493 tape.pos[tape.counter].delay = tape.delay_played;
494 tape.playing = FALSE;
495 tape.recording = TRUE;
498 TapeSetDateFromNow();
500 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
501 DrawVideoDisplay(VIDEO_STATE_PLAY_OFF | VIDEO_STATE_REC_ON, 0);
503 UpdateAndDisplayGameControlValues();
506 void TapeHaltRecording()
512 tape.pos[tape.counter].delay = 0;
514 tape.length = tape.counter;
515 tape.length_seconds = GetTapeLength();
518 void TapeStopRecording()
522 tape.recording = FALSE;
523 tape.pausing = FALSE;
525 DrawVideoDisplay(VIDEO_STATE_REC_OFF, 0);
526 MapTapeEjectButton();
529 void TapeRecordAction(byte action_raw[MAX_PLAYERS])
531 byte action[MAX_PLAYERS];
534 if (!tape.recording) /* (record action even when tape is paused) */
537 if (tape.counter >= MAX_TAPE_LEN - 1)
543 for (i = 0; i < MAX_PLAYERS; i++)
544 action[i] = action_raw[i];
546 if (tape.set_centered_player)
548 for (i = 0; i < MAX_PLAYERS; i++)
549 if (tape.centered_player_nr_next == i ||
550 tape.centered_player_nr_next == -1)
551 action[i] |= KEY_SET_FOCUS;
553 tape.set_centered_player = FALSE;
556 if (tape.pos[tape.counter].delay > 0) /* already stored action */
558 boolean changed_events = FALSE;
560 for (i = 0; i < MAX_PLAYERS; i++)
561 if (tape.pos[tape.counter].action[i] != action[i])
562 changed_events = TRUE;
564 if (changed_events || tape.pos[tape.counter].delay >= 255)
567 tape.pos[tape.counter].delay = 0;
570 tape.pos[tape.counter].delay++;
573 if (tape.pos[tape.counter].delay == 0) /* store new action */
575 for (i = 0; i < MAX_PLAYERS; i++)
576 tape.pos[tape.counter].action[i] = action[i];
578 tape.pos[tape.counter].delay++;
582 void TapeTogglePause(boolean toggle_manual)
586 if (tape.pause_before_death)
587 state |= VIDEO_STATE_PBEND_OFF;
588 else if (tape.fast_forward)
589 state |= VIDEO_STATE_FFWD_OFF;
591 tape.pausing = !tape.pausing;
592 tape.fast_forward = FALSE;
593 tape.pause_before_death = FALSE;
595 if (tape.single_step && toggle_manual)
596 tape.single_step = FALSE;
598 state |= (tape.pausing ? VIDEO_STATE_PAUSE_ON : VIDEO_STATE_PAUSE_OFF);
600 state |= VIDEO_STATE_PLAY_ON;
602 state |= (tape.single_step ? VIDEO_STATE_1STEP_ON : VIDEO_STATE_1STEP_OFF);
604 DrawVideoDisplay(state, 0);
606 if (tape.warp_forward)
608 TapeStopWarpForward();
610 if (tape.quick_resume)
612 tape.quick_resume = FALSE;
614 TapeAppendRecording();
616 if (!CheckEngineSnapshot())
617 SaveEngineSnapshot();
622 void TapeStartPlaying()
624 if (TAPE_IS_EMPTY(tape))
627 if (!TAPE_IS_STOPPED(tape))
634 DrawVideoDisplay(VIDEO_STATE_PLAY_ON, 0);
635 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
636 DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
640 SetDrawDeactivationMask(REDRAW_NONE);
641 audio.sound_deactivated = FALSE;
644 static void TapeStartGamePlaying()
651 void TapeStopPlaying()
653 tape.playing = FALSE;
654 tape.pausing = FALSE;
656 if (tape.warp_forward)
657 TapeStopWarpForward();
659 DrawVideoDisplay(VIDEO_STATE_PLAY_OFF, 0);
660 MapTapeEjectButton();
663 byte *TapePlayAction()
665 static byte action[MAX_PLAYERS];
668 if (!tape.playing || tape.pausing)
671 if (tape.pause_before_death) /* stop 10 seconds before player gets killed */
673 if (!(FrameCounter % 20))
675 if ((FrameCounter / 20) % 2)
676 DrawVideoDisplay(VIDEO_STATE_PBEND_ON, VIDEO_DISPLAY_LABEL_ONLY);
678 DrawVideoDisplay(VIDEO_STATE_PBEND_OFF, VIDEO_DISPLAY_LABEL_ONLY);
681 if (tape.warp_forward)
683 if (tape.deactivate_display)
684 DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
686 DrawVideoDisplay(VIDEO_STATE_WARP2_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
689 if (TapeTime > tape.length_seconds - TAPE_PAUSE_SECONDS_BEFORE_DEATH)
691 TapeTogglePause(TAPE_TOGGLE_MANUAL);
696 else if (tape.fast_forward)
698 if ((FrameCounter / 20) % 2)
699 DrawVideoDisplay(VIDEO_STATE_FFWD_ON, VIDEO_DISPLAY_LABEL_ONLY);
701 DrawVideoDisplay(VIDEO_STATE_FFWD_OFF, VIDEO_DISPLAY_LABEL_ONLY);
703 if (tape.warp_forward)
705 if (tape.deactivate_display)
706 DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
708 DrawVideoDisplay(VIDEO_STATE_WARP2_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
713 /* !!! this makes things much slower !!! */
714 else if (tape.warp_forward)
716 if ((FrameCounter / 20) % 2)
717 DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_LABEL_ONLY);
719 DrawVideoDisplay(VIDEO_STATE_WARP_OFF, VIDEO_DISPLAY_LABEL_ONLY);
721 DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
725 if (tape.counter >= tape.length) /* end of tape reached */
727 if (tape.warp_forward && !tape.auto_play)
728 TapeTogglePause(TAPE_TOGGLE_MANUAL);
735 for (i = 0; i < MAX_PLAYERS; i++)
736 action[i] = tape.pos[tape.counter].action[i];
738 #if DEBUG_TAPE_WHEN_PLAYING
739 printf("%05d", FrameCounter);
740 for (i = 0; i < MAX_PLAYERS; i++)
741 printf(" %08x", action[i]);
745 tape.set_centered_player = FALSE;
746 tape.centered_player_nr_next = -999;
748 for (i = 0; i < MAX_PLAYERS; i++)
750 if (action[i] & KEY_SET_FOCUS)
752 tape.set_centered_player = TRUE;
753 tape.centered_player_nr_next =
754 (tape.centered_player_nr_next == -999 ? i : -1);
757 action[i] &= ~KEY_SET_FOCUS;
761 if (tape.delay_played >= tape.pos[tape.counter].delay)
764 tape.delay_played = 0;
775 DrawVideoDisplay(VIDEO_STATE_OFF, 0);
777 if (tape.date && tape.length)
779 DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
780 DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
784 unsigned int GetTapeLength()
786 unsigned int tape_length = 0;
789 if (TAPE_IS_EMPTY(tape))
792 for (i = 0; i < tape.length; i++)
793 tape_length += tape.pos[i].delay;
795 return(tape_length * GAME_FRAME_DELAY / 1000);
798 static void TapeStartWarpForward()
800 tape.warp_forward = TRUE;
802 if (!tape.fast_forward && !tape.pause_before_death)
804 tape.pausing = FALSE;
805 tape.deactivate_display = TRUE;
807 TapeDeactivateDisplayOn();
810 if (tape.fast_forward || tape.pause_before_death)
811 DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
813 DrawVideoDisplay(VIDEO_STATE_WARP_ON, 0);
816 static void TapeStopWarpForward()
818 int state = (tape.pausing ? VIDEO_STATE_PAUSE_ON : VIDEO_STATE_PAUSE_OFF);
820 tape.warp_forward = FALSE;
821 tape.deactivate_display = FALSE;
823 TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING);
825 if (tape.pause_before_death)
826 state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_PBEND_ON;
827 else if (tape.fast_forward)
828 state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_FFWD_ON;
830 state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_PLAY_ON;
832 DrawVideoDisplay(state, 0);
835 static void TapeSingleStep()
841 TapeTogglePause(TAPE_TOGGLE_MANUAL);
843 tape.single_step = !tape.single_step;
845 DrawVideoDisplay((tape.single_step ? VIDEO_STATE_1STEP_ON :
846 VIDEO_STATE_1STEP_OFF), 0);
851 if (game_status == GAME_MODE_MAIN)
853 Request("No game that can be saved!", REQ_CONFIRM);
858 if (game_status != GAME_MODE_PLAYING)
862 TapeHaltRecording(); /* prepare tape for saving on-the-fly */
864 if (TAPE_IS_EMPTY(tape))
866 Request("No tape that can be saved!", REQ_CONFIRM);
871 if (SaveTapeChecked(tape.level_nr))
872 SaveEngineSnapshot();
877 char *filename = getTapeFilename(level_nr);
879 if (!fileExists(filename))
881 Request("No tape for this level!", REQ_CONFIRM);
886 if (tape.recording && !Request("Stop recording and load tape?",
887 REQ_ASK | REQ_STAY_CLOSED))
889 OpenDoor(DOOR_OPEN_1 | DOOR_COPY_BACK);
894 if (game_status != GAME_MODE_PLAYING && game_status != GAME_MODE_MAIN)
897 if (CheckEngineSnapshot())
899 TapeStartGamePlaying();
901 LoadEngineSnapshot();
903 DrawCompleteVideoDisplay();
908 TapeStopWarpForward();
909 TapeAppendRecording();
911 if (FrameCounter > 0)
920 if (!TAPE_IS_EMPTY(tape))
922 TapeStartGamePlaying();
923 TapeStartWarpForward();
925 tape.quick_resume = TRUE;
927 else /* this should not happen (basically checked above) */
929 int reopen_door = (game_status == GAME_MODE_PLAYING ? REQ_REOPEN : 0);
931 Request("No tape for this level!", REQ_CONFIRM | reopen_door);
935 void InsertSolutionTape()
937 if (!TAPE_IS_EMPTY(tape))
940 LoadSolutionTape(level_nr);
942 if (TAPE_IS_EMPTY(tape))
943 Request("No solution tape for this level!", REQ_CONFIRM);
945 DrawCompleteVideoDisplay();
949 /* ------------------------------------------------------------------------- *
950 * tape autoplay functions
951 * ------------------------------------------------------------------------- */
955 static LevelDirTree *autoplay_leveldir = NULL;
956 static boolean autoplay_initialized = FALSE;
957 static int autoplay_level_nr = -1;
958 static int num_levels_played = 0;
959 static int num_levels_solved = 0;
960 static int num_tape_missing = 0;
961 static boolean level_failed[MAX_TAPES_PER_SET];
964 if (autoplay_initialized)
966 /* just finished auto-playing tape */
967 printf("%s.\n", tape.auto_play_level_solved ? "solved" : "NOT SOLVED");
971 if (tape.auto_play_level_solved)
973 else if (level_nr >= 0 && level_nr < MAX_TAPES_PER_SET)
974 level_failed[level_nr] = TRUE;
978 DrawCompleteVideoDisplay();
979 audio.sound_enabled = FALSE;
981 autoplay_leveldir = getTreeInfoFromIdentifier(leveldir_first,
982 global.autoplay_leveldir);
984 if (autoplay_leveldir == NULL)
985 Error(ERR_EXIT, "no such level identifier: '%s'",
986 global.autoplay_leveldir);
988 leveldir_current = autoplay_leveldir;
990 if (autoplay_leveldir->first_level < 0)
991 autoplay_leveldir->first_level = 0;
992 if (autoplay_leveldir->last_level >= MAX_TAPES_PER_SET)
993 autoplay_leveldir->last_level = MAX_TAPES_PER_SET - 1;
995 autoplay_level_nr = autoplay_leveldir->first_level;
997 printf_line("=", 79);
998 printf("Automatically playing level tapes\n");
999 printf_line("-", 79);
1000 printf("Level series identifier: '%s'\n", autoplay_leveldir->identifier);
1001 printf("Level series name: '%s'\n", autoplay_leveldir->name);
1002 printf("Level series author: '%s'\n", autoplay_leveldir->author);
1003 printf("Number of levels: %d\n", autoplay_leveldir->levels);
1004 printf_line("=", 79);
1007 for (i = 0; i < MAX_TAPES_PER_SET; i++)
1008 level_failed[i] = FALSE;
1010 autoplay_initialized = TRUE;
1013 while (autoplay_level_nr <= autoplay_leveldir->last_level)
1015 level_nr = autoplay_level_nr++;
1017 if (!global.autoplay_all && !global.autoplay_level[level_nr])
1022 printf("Level %03d: ", level_nr);
1024 LoadLevel(level_nr);
1025 if (level.no_valid_file)
1027 printf("(no level)\n");
1032 /* ACTIVATE THIS FOR LOADING/TESTING OF LEVELS ONLY */
1033 printf("(only testing level)\n");
1037 LoadSolutionTape(level_nr);
1039 if (tape.no_valid_file)
1043 printf("(no tape)\n");
1048 printf("playing tape ... ");
1050 TapeStartGamePlaying();
1051 TapeStartWarpForward();
1057 printf_line("=", 79);
1058 printf("Number of levels played: %d\n", num_levels_played);
1059 printf("Number of levels solved: %d (%d%%)\n", num_levels_solved,
1060 (num_levels_played ? num_levels_solved * 100 / num_levels_played :0));
1061 printf_line("-", 79);
1062 printf("Summary (for automatic parsing by scripts):\n");
1063 printf("LEVELDIR '%s', SOLVED %d/%d (%d%%)",
1064 autoplay_leveldir->identifier, num_levels_solved, num_levels_played,
1065 (num_levels_played ? num_levels_solved * 100 / num_levels_played :0));
1067 if (num_levels_played != num_levels_solved)
1069 printf(", FAILED:");
1070 for (i = 0; i < MAX_TAPES_PER_SET; i++)
1071 if (level_failed[i])
1076 printf_line("=", 79);
1082 /* ---------- new tape button stuff ---------------------------------------- */
1090 } tapebutton_info[NUM_TAPE_BUTTONS] =
1093 IMG_TAPE_BUTTON_GFX_EJECT, &tape.button.eject,
1094 TAPE_CTRL_ID_EJECT, "eject tape"
1097 /* (same position as "eject" button) */
1098 IMG_TAPE_BUTTON_GFX_EXTRA, &tape.button.eject,
1099 TAPE_CTRL_ID_EXTRA, "extra functions"
1102 IMG_TAPE_BUTTON_GFX_STOP, &tape.button.stop,
1103 TAPE_CTRL_ID_STOP, "stop tape"
1106 IMG_TAPE_BUTTON_GFX_PAUSE, &tape.button.pause,
1107 TAPE_CTRL_ID_PAUSE, "pause tape"
1110 IMG_TAPE_BUTTON_GFX_RECORD, &tape.button.record,
1111 TAPE_CTRL_ID_RECORD, "record tape"
1114 IMG_TAPE_BUTTON_GFX_PLAY, &tape.button.play,
1115 TAPE_CTRL_ID_PLAY, "play tape"
1119 void CreateTapeButtons()
1123 for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1125 struct GraphicInfo *gfx = &graphic_info[tapebutton_info[i].graphic];
1126 struct Rect *pos = tapebutton_info[i].pos;
1127 struct GadgetInfo *gi;
1128 int gd_x = gfx->src_x;
1129 int gd_y = gfx->src_y;
1130 int gd_xp = gfx->src_x + gfx->pressed_xoffset;
1131 int gd_yp = gfx->src_y + gfx->pressed_yoffset;
1134 gi = CreateGadget(GDI_CUSTOM_ID, id,
1135 GDI_INFO_TEXT, tapebutton_info[i].infotext,
1138 GDI_WIDTH, gfx->width,
1139 GDI_HEIGHT, gfx->height,
1140 GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
1141 GDI_STATE, GD_BUTTON_UNPRESSED,
1142 GDI_DESIGN_UNPRESSED, gfx->bitmap, gd_x, gd_y,
1143 GDI_DESIGN_PRESSED, gfx->bitmap, gd_xp, gd_yp,
1144 GDI_DIRECT_DRAW, FALSE,
1145 GDI_EVENT_MASK, GD_EVENT_RELEASED,
1146 GDI_CALLBACK_ACTION, HandleTapeButtons,
1150 Error(ERR_EXIT, "cannot create gadget");
1152 tape_gadget[id] = gi;
1156 void FreeTapeButtons()
1160 for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1161 FreeGadget(tape_gadget[i]);
1164 void MapTapeEjectButton()
1166 UnmapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1167 MapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1170 void MapTapeWarpButton()
1172 UnmapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1173 MapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1176 void MapTapeButtons()
1180 for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1181 if (i != TAPE_CTRL_ID_EXTRA)
1182 MapGadget(tape_gadget[i]);
1184 if (tape.recording || tape.playing)
1185 MapTapeWarpButton();
1187 if (tape.show_game_buttons)
1191 void UnmapTapeButtons()
1195 for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1196 UnmapGadget(tape_gadget[i]);
1199 static void HandleTapeButtonsExt(int id)
1201 if (game_status != GAME_MODE_MAIN && game_status != GAME_MODE_PLAYING)
1206 case TAPE_CTRL_ID_EJECT:
1209 if (TAPE_IS_EMPTY(tape))
1213 if (TAPE_IS_EMPTY(tape))
1214 Request("No tape for this level!", REQ_CONFIRM);
1219 SaveTapeChecked(tape.level_nr);
1224 DrawCompleteVideoDisplay();
1227 case TAPE_CTRL_ID_EXTRA:
1230 if (!tape.warp_forward) /* PLAY -> WARP FORWARD PLAY */
1232 TapeStartWarpForward();
1234 else /* WARP FORWARD PLAY -> PLAY */
1236 TapeStopWarpForward();
1239 else if (tape.recording)
1244 case TAPE_CTRL_ID_STOP:
1248 case TAPE_CTRL_ID_PAUSE:
1249 TapeTogglePause(TAPE_TOGGLE_MANUAL);
1252 case TAPE_CTRL_ID_RECORD:
1253 if (TAPE_IS_STOPPED(tape))
1254 TapeStartGameRecording();
1255 else if (tape.pausing)
1257 if (tape.playing) /* PLAY -> PAUSE -> RECORD */
1258 TapeAppendRecording();
1260 TapeTogglePause(TAPE_TOGGLE_MANUAL);
1264 case TAPE_CTRL_ID_PLAY:
1265 if (TAPE_IS_EMPTY(tape))
1268 if (TAPE_IS_STOPPED(tape))
1270 TapeStartGamePlaying();
1272 else if (tape.playing)
1274 if (tape.pausing) /* PAUSE -> PLAY */
1276 TapeTogglePause(TAPE_TOGGLE_MANUAL);
1278 else if (!tape.fast_forward) /* PLAY -> FAST FORWARD PLAY */
1280 tape.fast_forward = TRUE;
1281 DrawVideoDisplay(VIDEO_STATE_FFWD_ON, 0);
1283 else if (!tape.pause_before_death) /* FFWD PLAY -> AUTO PAUSE */
1285 tape.pause_before_death = TRUE;
1286 DrawVideoDisplay(VIDEO_STATE_FFWD_OFF | VIDEO_STATE_PBEND_ON, 0);
1288 else /* AUTO PAUSE -> NORMAL PLAY */
1290 if (tape.warp_forward)
1291 TapeStopWarpForward();
1293 tape.fast_forward = FALSE;
1294 tape.pause_before_death = FALSE;
1296 DrawVideoDisplay(VIDEO_STATE_PBEND_OFF | VIDEO_STATE_PLAY_ON, 0);
1306 static void HandleTapeButtons(struct GadgetInfo *gi)
1308 HandleTapeButtonsExt(gi->custom_id);
1311 void HandleTapeButtonKeys(Key key)
1313 boolean eject_button_is_active = TAPE_IS_STOPPED(tape);
1314 boolean extra_button_is_active = !eject_button_is_active;
1316 if (key == setup.shortcut.tape_eject && eject_button_is_active)
1317 HandleTapeButtonsExt(TAPE_CTRL_ID_EJECT);
1318 else if (key == setup.shortcut.tape_extra && extra_button_is_active)
1319 HandleTapeButtonsExt(TAPE_CTRL_ID_EXTRA);
1320 else if (key == setup.shortcut.tape_stop)
1321 HandleTapeButtonsExt(TAPE_CTRL_ID_STOP);
1322 else if (key == setup.shortcut.tape_pause)
1323 HandleTapeButtonsExt(TAPE_CTRL_ID_PAUSE);
1324 else if (key == setup.shortcut.tape_record)
1325 HandleTapeButtonsExt(TAPE_CTRL_ID_RECORD);
1326 else if (key == setup.shortcut.tape_play)
1327 HandleTapeButtonsExt(TAPE_CTRL_ID_PLAY);