fixed potential crash bug when processing manipulated tape files
[rocksndiamonds.git] / src / tape.c
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  https://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // tape.c
10 // ============================================================================
11
12 #include "libgame/libgame.h"
13
14 #include "tape.h"
15 #include "init.h"
16 #include "game.h"
17 #include "tools.h"
18 #include "files.h"
19 #include "network.h"
20 #include "anim.h"
21
22 #define DEBUG_TAPE_WHEN_PLAYING                 FALSE
23
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
31 #define TAPE_CTRL_ID_INSERT_SOLUTION            6
32 #define TAPE_CTRL_ID_PLAY_SOLUTION              7
33
34 #define NUM_TAPE_BUTTONS                        8
35
36 // values for tape handling
37 #define TAPE_PAUSE_SECONDS_BEFORE_DEATH         5
38 #define TAPE_MIN_SECONDS_FOR_UNDO_BUFFER        20
39
40 // forward declaration for internal use
41 static void HandleTapeButtons(struct GadgetInfo *);
42 static void TapeStopWarpForward(void);
43 static float GetTapeLengthSecondsFloat(void);
44 static void CopyTapeToUndoBuffer(void);
45
46 static struct GadgetInfo *tape_gadget[NUM_TAPE_BUTTONS];
47 static struct TapeInfo tape_undo_buffer;
48
49
50 // ============================================================================
51 // video tape definitions
52 // ============================================================================
53
54 #define VIDEO_INFO_OFF                  (VIDEO_STATE_DATE_OFF   |       \
55                                          VIDEO_STATE_TIME_OFF   |       \
56                                          VIDEO_STATE_FRAME_OFF)
57 #define VIDEO_STATE_OFF                 (VIDEO_STATE_PLAY_OFF   |       \
58                                          VIDEO_STATE_REC_OFF    |       \
59                                          VIDEO_STATE_PAUSE_OFF  |       \
60                                          VIDEO_STATE_FFWD_OFF   |       \
61                                          VIDEO_STATE_WARP_OFF   |       \
62                                          VIDEO_STATE_WARP2_OFF  |       \
63                                          VIDEO_STATE_PBEND_OFF  |       \
64                                          VIDEO_STATE_1STEP_OFF)
65 #define VIDEO_PRESS_OFF                 (VIDEO_PRESS_PLAY_OFF   |       \
66                                          VIDEO_PRESS_REC_OFF    |       \
67                                          VIDEO_PRESS_PAUSE_OFF  |       \
68                                          VIDEO_PRESS_STOP_OFF   |       \
69                                          VIDEO_PRESS_EJECT_OFF)
70 #define VIDEO_ALL_OFF                   (VIDEO_INFO_OFF         |       \
71                                          VIDEO_STATE_OFF        |       \
72                                          VIDEO_PRESS_OFF)
73
74 #define VIDEO_INFO_ON                   (VIDEO_STATE_DATE_ON    |       \
75                                          VIDEO_STATE_TIME_ON    |       \
76                                          VIDEO_STATE_FRAME_ON)
77 #define VIDEO_STATE_ON                  (VIDEO_STATE_PLAY_ON    |       \
78                                          VIDEO_STATE_REC_ON     |       \
79                                          VIDEO_STATE_PAUSE_ON   |       \
80                                          VIDEO_STATE_FFWD_ON    |       \
81                                          VIDEO_STATE_WARP_ON    |       \
82                                          VIDEO_STATE_WARP2_ON   |       \
83                                          VIDEO_STATE_PBEND_ON   |       \
84                                          VIDEO_STATE_1STEP_ON)
85 #define VIDEO_PRESS_ON                  (VIDEO_PRESS_PLAY_ON    |       \
86                                          VIDEO_PRESS_REC_ON     |       \
87                                          VIDEO_PRESS_PAUSE_ON   |       \
88                                          VIDEO_PRESS_STOP_ON    |       \
89                                          VIDEO_PRESS_EJECT_ON)
90 #define VIDEO_ALL_ON                    (VIDEO_INFO_ON          |       \
91                                          VIDEO_STATE_ON         |       \
92                                          VIDEO_PRESS_ON)
93
94 #define VIDEO_INFO                      (VIDEO_INFO_ON | VIDEO_INFO_OFF)
95 #define VIDEO_STATE                     (VIDEO_STATE_ON | VIDEO_STATE_OFF)
96 #define VIDEO_PRESS                     (VIDEO_PRESS_ON | VIDEO_PRESS_OFF)
97 #define VIDEO_ALL                       (VIDEO_ALL_ON | VIDEO_ALL_OFF)
98
99 #define NUM_TAPE_FUNCTIONS              11
100 #define NUM_TAPE_FUNCTION_PARTS         2
101 #define NUM_TAPE_FUNCTION_STATES        2
102
103
104 // ============================================================================
105 // video display functions
106 // ============================================================================
107
108 static void DrawVideoDisplay_Graphics(unsigned int state, unsigned int value)
109 {
110   int i, j, k;
111
112   static struct
113   {
114     int graphic;
115     struct XY *pos;
116   }
117   video_pos[NUM_TAPE_FUNCTIONS][NUM_TAPE_FUNCTION_PARTS] =
118   {
119     {
120       { IMG_GFX_TAPE_LABEL_PLAY,                &tape.label.play        },
121       { IMG_GFX_TAPE_SYMBOL_PLAY,               &tape.symbol.play       },
122     },
123     {
124       { IMG_GFX_TAPE_LABEL_RECORD,              &tape.label.record      },
125       { IMG_GFX_TAPE_SYMBOL_RECORD,             &tape.symbol.record     },
126     },
127     {
128       { IMG_GFX_TAPE_LABEL_PAUSE,               &tape.label.pause       },
129       { IMG_GFX_TAPE_SYMBOL_PAUSE,              &tape.symbol.pause      },
130     },
131     {
132       { IMG_GFX_TAPE_LABEL_DATE,                &tape.label.date        },
133       { -1,                                     NULL                    },
134     },
135     {
136       { IMG_GFX_TAPE_LABEL_TIME,                &tape.label.time        },
137       { -1,                                     NULL                    },
138     },
139     {
140       // (no label for displaying optional frame)
141       { -1,                                     NULL                    },
142       { -1,                                     NULL                    },
143     },
144     {
145       { IMG_GFX_TAPE_LABEL_FAST_FORWARD,        &tape.label.fast_forward  },
146       { IMG_GFX_TAPE_SYMBOL_FAST_FORWARD,       &tape.symbol.fast_forward },
147     },
148     {
149       { IMG_GFX_TAPE_LABEL_WARP_FORWARD,        &tape.label.warp_forward  },
150       { IMG_GFX_TAPE_SYMBOL_WARP_FORWARD,       &tape.symbol.warp_forward },
151     },
152     {
153       { IMG_GFX_TAPE_LABEL_WARP_FORWARD_BLIND,  &tape.label.warp_forward_blind},
154       { IMG_GFX_TAPE_SYMBOL_WARP_FORWARD_BLIND, &tape.symbol.warp_forward_blind},
155     },
156     {
157       { IMG_GFX_TAPE_LABEL_PAUSE_BEFORE_END,    &tape.label.pause_before_end  },
158       { IMG_GFX_TAPE_SYMBOL_PAUSE_BEFORE_END,   &tape.symbol.pause_before_end },
159     },
160     {
161       { IMG_GFX_TAPE_LABEL_SINGLE_STEP,         &tape.label.single_step  },
162       { IMG_GFX_TAPE_SYMBOL_SINGLE_STEP,        &tape.symbol.single_step },
163     },
164   };
165
166   for (k = 0; k < NUM_TAPE_FUNCTION_STATES; k++)        // on or off states
167   {
168     for (i = 0; i < NUM_TAPE_FUNCTIONS; i++)            // record, play, ...
169     {
170       for (j = 0; j < NUM_TAPE_FUNCTION_PARTS; j++)     // label or symbol
171       {
172         int graphic = video_pos[i][j].graphic;
173         struct XY *pos = video_pos[i][j].pos;
174
175         if (graphic == -1 ||
176             pos->x == -1 ||
177             pos->y == -1)
178           continue;
179
180         if (state & (1 << (i * 2 + k)))
181         {
182           struct GraphicInfo *gfx_bg = &graphic_info[IMG_BACKGROUND_TAPE];
183           struct GraphicInfo *gfx = &graphic_info[graphic];
184           Bitmap *gd_bitmap;
185           int gd_x, gd_y;
186           int skip_value =
187             (j == 0 ? VIDEO_DISPLAY_SYMBOL_ONLY : VIDEO_DISPLAY_LABEL_ONLY);
188
189           if (value == skip_value)
190             continue;
191
192           if (k == 1)           // on
193           {
194             gd_bitmap = gfx->bitmap;
195             gd_x = gfx->src_x;
196             gd_y = gfx->src_y;
197           }
198           else                  // off
199           {
200             gd_bitmap = gfx_bg->bitmap;
201             gd_x = gfx_bg->src_x + pos->x;
202             gd_y = gfx_bg->src_y + pos->y;
203           }
204
205           // some tape graphics may be undefined -- only draw if defined
206           if (gd_bitmap != NULL)
207             BlitBitmap(gd_bitmap, drawto, gd_x, gd_y, gfx->width, gfx->height,
208                        VX + pos->x, VY + pos->y);
209
210           redraw_mask |= REDRAW_DOOR_2;
211         }
212       }
213     }
214   }
215 }
216
217
218 #define DATETIME_NONE                   (0)
219
220 #define DATETIME_DATE_YYYY              (1 << 0)
221 #define DATETIME_DATE_YY                (1 << 1)
222 #define DATETIME_DATE_MON               (1 << 2)
223 #define DATETIME_DATE_MM                (1 << 3)
224 #define DATETIME_DATE_DD                (1 << 4)
225
226 #define DATETIME_TIME_HH                (1 << 5)
227 #define DATETIME_TIME_MIN               (1 << 6)
228 #define DATETIME_TIME_MM                (1 << 7)
229 #define DATETIME_TIME_SS                (1 << 8)
230
231 #define DATETIME_FRAME                  (1 << 9)
232
233 #define DATETIME_XOFFSET_1              (1 << 10)
234 #define DATETIME_XOFFSET_2              (1 << 11)
235
236 #define DATETIME_DATE                   (DATETIME_DATE_YYYY     |       \
237                                          DATETIME_DATE_YY       |       \
238                                          DATETIME_DATE_MON      |       \
239                                          DATETIME_DATE_MM       |       \
240                                          DATETIME_DATE_DD)
241
242 #define DATETIME_TIME                   (DATETIME_TIME_HH       |       \
243                                          DATETIME_TIME_MIN      |       \
244                                          DATETIME_TIME_MM       |       \
245                                          DATETIME_TIME_SS)
246
247 #define MAX_DATETIME_STRING_SIZE        32
248
249 static void DrawVideoDisplay_DateTime(unsigned int state, unsigned int value)
250 {
251   int i;
252
253   static char *month_shortnames[] =
254   {
255     "JAN",
256     "FEB",
257     "MAR",
258     "APR",
259     "MAY",
260     "JUN",
261     "JUL",
262     "AUG",
263     "SEP",
264     "OCT",
265     "NOV",
266     "DEC"
267   };
268
269   static struct
270   {
271     struct TextPosInfo *pos;
272     int type;
273   }
274   datetime_info[] =
275   {
276     { &tape.text.date,          DATETIME_DATE_DD                        },
277     { &tape.text.date,          DATETIME_DATE_MON | DATETIME_XOFFSET_1  },
278     { &tape.text.date,          DATETIME_DATE_YY  | DATETIME_XOFFSET_2  },
279     { &tape.text.date_yyyy,     DATETIME_DATE_YYYY                      },
280     { &tape.text.date_yy,       DATETIME_DATE_YY                        },
281     { &tape.text.date_mon,      DATETIME_DATE_MON                       },
282     { &tape.text.date_mm,       DATETIME_DATE_MM                        },
283     { &tape.text.date_dd,       DATETIME_DATE_DD                        },
284
285     { &tape.text.time,          DATETIME_TIME_MIN                       },
286     { &tape.text.time,          DATETIME_TIME_SS  | DATETIME_XOFFSET_1  },
287     { &tape.text.time_hh,       DATETIME_TIME_HH                        },
288     { &tape.text.time_mm,       DATETIME_TIME_MM                        },
289     { &tape.text.time_ss,       DATETIME_TIME_SS                        },
290
291     { &tape.text.frame,         DATETIME_FRAME                          },
292
293     { NULL,                     DATETIME_NONE                           },
294   };
295
296   for (i = 0; datetime_info[i].pos != NULL; i++)
297   {
298     struct TextPosInfo *pos = datetime_info[i].pos;
299     int type = datetime_info[i].type;
300     int xpos, ypos;
301
302     if (pos->x == -1 &&
303         pos->y == -1)
304       continue;
305
306     xpos = VX + pos->x + (type & DATETIME_XOFFSET_1 ? pos->xoffset  :
307                           type & DATETIME_XOFFSET_2 ? pos->xoffset2 : 0);
308     ypos = VY + pos->y;
309
310     if ((type & DATETIME_DATE) && (state & VIDEO_STATE_DATE_ON))
311     {
312       char s[MAX_DATETIME_STRING_SIZE];
313       int year2 = value / 10000;
314       int year4 = (year2 < 70 ? 2000 + year2 : 1900 + year2);
315       int month_index_raw = (value / 100) % 100;
316       int month_index = month_index_raw % 12;   // prevent invalid index
317       int month = month_index + 1;
318       int day = value % 100;
319
320       strcpy(s, (type & DATETIME_DATE_YYYY ? int2str(year4, 4) :
321                  type & DATETIME_DATE_YY   ? int2str(year2, 2) :
322                  type & DATETIME_DATE_MON  ? month_shortnames[month_index] :
323                  type & DATETIME_DATE_MM   ? int2str(month, 2) :
324                  type & DATETIME_DATE_DD   ? int2str(day, 2) : ""));
325
326       DrawText(xpos, ypos, s, pos->font);
327     }
328     else if ((type & DATETIME_TIME) && (state & VIDEO_STATE_TIME_ON))
329     {
330       char s[MAX_DATETIME_STRING_SIZE];
331       int hh = (value / 3600) % 100;
332       int min = value / 60;
333       int mm = (value / 60) % 60;
334       int ss = value % 60;
335
336       strcpy(s, (type & DATETIME_TIME_HH  ? int2str(hh, 2) :
337                  type & DATETIME_TIME_MIN ? int2str(min, 2) :
338                  type & DATETIME_TIME_MM  ? int2str(mm, 2) :
339                  type & DATETIME_TIME_SS  ? int2str(ss, 2) : ""));
340
341       DrawText(xpos, ypos, s, pos->font);
342     }
343     else if ((type & DATETIME_FRAME) && (state & VIDEO_STATE_FRAME_ON))
344     {
345       DrawText(xpos, ypos, int2str(value, pos->size), pos->font);
346     }
347   }
348 }
349
350 void DrawVideoDisplay(unsigned int state, unsigned int value)
351 {
352   DrawVideoDisplay_Graphics(state, value);
353   DrawVideoDisplay_DateTime(state, value);
354 }
355
356 static void DrawVideoDisplayLabel(unsigned int state)
357 {
358   DrawVideoDisplay(state, VIDEO_DISPLAY_LABEL_ONLY);
359 }
360
361 static void DrawVideoDisplaySymbol(unsigned int state)
362 {
363   DrawVideoDisplay(state, VIDEO_DISPLAY_SYMBOL_ONLY);
364 }
365
366 static void DrawVideoDisplayCurrentState(void)
367 {
368   int state = 0;
369
370   DrawVideoDisplay(VIDEO_STATE_OFF, 0);
371
372   if (tape.pausing)
373     state |= VIDEO_STATE_PAUSE_ON;
374
375   if (tape.recording)
376   {
377     state |= VIDEO_STATE_REC_ON;
378
379     if (tape.single_step)
380       state |= VIDEO_STATE_1STEP_ON;
381   }
382   else if (tape.playing)
383   {
384     state |= VIDEO_STATE_PLAY_ON;
385
386     if (!tape.pausing)
387     {
388       if (tape.deactivate_display)
389         state |= VIDEO_STATE_WARP2_ON;
390       else if (tape.warp_forward)
391         state |= VIDEO_STATE_WARP_ON;
392       else if (tape.fast_forward)
393         state |= VIDEO_STATE_FFWD_ON;
394
395       if (tape.pause_before_end)
396         state |= VIDEO_STATE_PBEND_ON;
397     }
398   }
399
400   // draw labels and symbols separately to prevent labels overlapping symbols
401   DrawVideoDisplayLabel(state);
402   DrawVideoDisplaySymbol(state);
403 }
404
405 void DrawCompleteVideoDisplay(void)
406 {
407   struct GraphicInfo *g_tape = &graphic_info[IMG_BACKGROUND_TAPE];
408
409   // draw tape background
410   BlitBitmap(g_tape->bitmap, drawto, g_tape->src_x, g_tape->src_y,
411              gfx.vxsize, gfx.vysize, gfx.vx, gfx.vy);
412
413   // draw tape buttons (forced)
414   RedrawOrRemapTapeButtons();
415
416   DrawVideoDisplay(VIDEO_ALL_OFF, 0);
417
418   if (tape.recording)
419   {
420     DrawVideoDisplay(VIDEO_STATE_REC_ON, 0);
421     DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
422     DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
423     DrawVideoDisplay(VIDEO_STATE_FRAME_ON, tape.length_frames);
424
425     if (tape.pausing)
426       DrawVideoDisplay(VIDEO_STATE_PAUSE_ON, 0);
427   }
428   else if (tape.playing)
429   {
430     DrawVideoDisplay(VIDEO_STATE_PLAY_ON, 0);
431     DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
432     DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
433     DrawVideoDisplay(VIDEO_STATE_FRAME_ON, 0);
434
435     if (tape.pausing)
436       DrawVideoDisplay(VIDEO_STATE_PAUSE_ON, 0);
437   }
438   else if (tape.date && tape.length)
439   {
440     DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
441     DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
442     DrawVideoDisplay(VIDEO_STATE_FRAME_ON, tape.length_frames);
443   }
444
445   BlitBitmap(drawto, bitmap_db_door_2, gfx.vx, gfx.vy, gfx.vxsize, gfx.vysize,
446              0, 0);
447 }
448
449 void TapeDeactivateDisplayOn(void)
450 {
451   SetDrawDeactivationMask(REDRAW_FIELD);
452   audio.sound_deactivated = TRUE;
453 }
454
455 void TapeDeactivateDisplayOff(boolean redraw_display)
456 {
457   SetDrawDeactivationMask(REDRAW_NONE);
458   audio.sound_deactivated = FALSE;
459
460   if (redraw_display)
461   {
462     RedrawPlayfield();
463
464     UpdateGameDoorValues();
465     DrawGameDoorValues();
466   }
467 }
468
469
470 // ============================================================================
471 // tape logging functions
472 // ============================================================================
473
474 static char tape_patch_info[MAX_OUTPUT_LINESIZE];
475
476 static void PrintTapeReplayProgress(boolean replay_finished)
477 {
478   static unsigned int counter_last = -1;
479   unsigned int counter = Counter();
480   unsigned int counter_seconds  = counter / 1000;
481
482   if (!replay_finished)
483   {
484     unsigned int counter_delay = 50;
485
486     if (counter > counter_last + counter_delay)
487     {
488       PrintNoLog("\r");
489       PrintNoLog("Tape %03d %s[%02d:%02d]: [%02d:%02d] - playing tape ... ",
490                  level_nr,  tape_patch_info,
491                  tape.length_seconds / 60, tape.length_seconds % 60,
492                  TapeTime / 60, TapeTime % 60);
493
494       counter_last = counter;
495     }
496   }
497   else
498   {
499     float tape_length_seconds = GetTapeLengthSecondsFloat();
500
501     PrintNoLog("\r");
502     Print("Tape %03d %s[%02d:%02d]: (%02d:%02d.%03d / %.2f %%) - %s.\n",
503           level_nr, tape_patch_info,
504           tape.length_seconds / 60, tape.length_seconds % 60,
505           counter_seconds / 60, counter_seconds % 60, counter % 1000,
506           (float)counter / tape_length_seconds / 10,
507           tape.auto_play_level_fixed ? "solved and fixed" :
508           tape.auto_play_level_solved ? "solved" :
509           tape.auto_play_level_not_fixable ? "NOT SOLVED, NOT FIXED" :
510           "NOT SOLVED");
511
512     counter_last = -1;
513   }
514 }
515
516 static FILE *tape_log_file;
517
518 static void OpenTapeLogfile(void)
519 {
520   if (!(tape_log_file = fopen(options.tape_log_filename, MODE_WRITE)))
521     Warn("cannot write tape logfile '%s'", options.tape_log_filename);
522 }
523
524 static void WriteTapeLogfile(byte action[MAX_TAPE_ACTIONS])
525 {
526   int i;
527
528   for (i = 0; i < MAX_TAPE_ACTIONS; i++)
529     putFile8Bit(tape_log_file, action[i]);
530 }
531
532 static void CloseTapeLogfile(void)
533 {
534   fclose(tape_log_file);
535 }
536
537
538 // ============================================================================
539 // tape control functions
540 // ============================================================================
541
542 void TapeSetDateFromEpochSeconds(time_t epoch_seconds)
543 {
544   struct tm *lt = localtime(&epoch_seconds);
545
546   tape.date = 10000 * (lt->tm_year % 100) + 100 * lt->tm_mon + lt->tm_mday;
547 }
548
549 void TapeSetDateFromNow(void)
550 {
551   TapeSetDateFromEpochSeconds(time(NULL));
552 }
553
554 void TapeErase(void)
555 {
556   int i;
557
558   CopyTapeToUndoBuffer();
559
560   tape.counter = 0;
561   tape.length = 0;
562   tape.length_frames = 0;
563   tape.length_seconds = 0;
564
565   tape.score_tape_basename[0] = '\0';
566
567   if (leveldir_current)
568   {
569     strncpy(tape.level_identifier, leveldir_current->identifier,
570             MAX_FILENAME_LEN);
571     tape.level_identifier[MAX_FILENAME_LEN] = '\0';
572   }
573
574   tape.level_nr = level_nr;
575   tape.pos[tape.counter].delay = 0;
576   tape.changed = TRUE;
577
578   tape.random_seed = InitRND(level.random_seed);
579
580   tape.file_version = FILE_VERSION_ACTUAL;
581   tape.game_version = GAME_VERSION_ACTUAL;
582   tape.engine_version = level.game_version;
583
584   TapeSetDateFromNow();
585
586   for (i = 0; i < MAX_PLAYERS; i++)
587     tape.player_participates[i] = FALSE;
588
589   tape.centered_player_nr_next = -1;
590   tape.set_centered_player = FALSE;
591
592   // set flags for game actions to default values (may be overwritten later)
593   tape.use_key_actions = TRUE;
594   tape.use_mouse_actions = FALSE;
595 }
596
597 static void TapeRewind(void)
598 {
599   tape.counter = 0;
600   tape.delay_played = 0;
601   tape.pause_before_end = FALSE;
602   tape.recording = FALSE;
603   tape.playing = FALSE;
604   tape.fast_forward = FALSE;
605   tape.warp_forward = FALSE;
606   tape.deactivate_display = FALSE;
607   tape.auto_play = (global.autoplay_leveldir != NULL);
608   tape.auto_play_level_solved = FALSE;
609   tape.auto_play_level_fixed = FALSE;
610   tape.auto_play_level_not_fixable = FALSE;
611   tape.quick_resume = FALSE;
612   tape.single_step = FALSE;
613
614   tape.centered_player_nr_next = -1;
615   tape.set_centered_player = FALSE;
616
617   InitRND(tape.random_seed);
618 }
619
620 static void TapeSetRandomSeed(int random_seed)
621 {
622   tape.random_seed = InitRND(random_seed);
623 }
624
625 void TapeStartRecording(int random_seed)
626 {
627   if (!TAPE_IS_STOPPED(tape))
628     TapeStop();
629
630   TapeErase();
631   TapeRewind();
632   TapeSetRandomSeed(random_seed);
633
634   tape.recording = TRUE;
635
636   DrawVideoDisplay(VIDEO_STATE_REC_ON, 0);
637   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
638   DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
639   DrawVideoDisplay(VIDEO_STATE_FRAME_ON, 0);
640
641   MapTapeWarpButton();
642
643   SetDrawDeactivationMask(REDRAW_NONE);
644   audio.sound_deactivated = FALSE;
645
646   // required here to update video display if tape door is closed
647   if (GetDoorState() & DOOR_CLOSE_2)
648     OpenDoor(GetDoorState() | DOOR_NO_DELAY | DOOR_FORCE_REDRAW);
649 }
650
651 static void TapeStartGameRecording(void)
652 {
653   StartGameActions(network.enabled, TRUE, level.random_seed);
654 }
655
656 static void TapeAppendRecording(void)
657 {
658   if (!tape.playing || !tape.pausing)
659     return;
660
661   // stop playing
662   tape.playing = FALSE;
663   tape.fast_forward = FALSE;
664   tape.warp_forward = FALSE;
665   tape.pause_before_end = FALSE;
666   tape.deactivate_display = FALSE;
667
668   // start recording
669   tape.recording = TRUE;
670   tape.changed = TRUE;
671
672   // set current delay (for last played move)
673   tape.pos[tape.counter].delay = tape.delay_played;
674
675   // set current date
676   TapeSetDateFromNow();
677
678   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
679   DrawVideoDisplay(VIDEO_STATE_PLAY_OFF | VIDEO_STATE_REC_ON, 0);
680
681   UpdateAndDisplayGameControlValues();
682 }
683
684 void TapeHaltRecording(void)
685 {
686   tape.counter++;
687
688   // initialize delay for next tape entry (to be able to continue recording)
689   if (tape.counter < MAX_TAPE_LEN)
690     tape.pos[tape.counter].delay = 0;
691
692   tape.length = tape.counter;
693   tape.length_frames = GetTapeLengthFrames();
694   tape.length_seconds = GetTapeLengthSeconds();
695 }
696
697 void TapeStopRecording(void)
698 {
699   if (tape.recording)
700     TapeHaltRecording();
701
702   tape.recording = FALSE;
703   tape.pausing = FALSE;
704
705   DrawVideoDisplay(VIDEO_STATE_REC_OFF, 0);
706   MapTapeEjectButton();
707 }
708
709 boolean TapeAddAction(byte action[MAX_TAPE_ACTIONS])
710 {
711   int i;
712
713   if (tape.pos[tape.counter].delay > 0)         // already stored action
714   {
715     boolean changed_events = FALSE;
716
717     for (i = 0; i < MAX_TAPE_ACTIONS; i++)
718       if (tape.pos[tape.counter].action[i] != action[i])
719         changed_events = TRUE;
720
721     if (changed_events || tape.pos[tape.counter].delay >= 255)
722     {
723       if (tape.counter >= MAX_TAPE_LEN - 1)
724         return FALSE;
725
726       tape.counter++;
727       tape.pos[tape.counter].delay = 0;
728     }
729     else
730       tape.pos[tape.counter].delay++;
731   }
732
733   if (tape.pos[tape.counter].delay == 0)        // store new action
734   {
735     for (i = 0; i < MAX_TAPE_ACTIONS; i++)
736       tape.pos[tape.counter].action[i] = action[i];
737
738     tape.pos[tape.counter].delay++;
739   }
740
741   return TRUE;
742 }
743
744 void TapeRecordAction(byte action_raw[MAX_TAPE_ACTIONS])
745 {
746   byte action[MAX_TAPE_ACTIONS];
747   int i;
748
749   if (!tape.recording)          // (record action even when tape is paused)
750     return;
751
752   for (i = 0; i < MAX_TAPE_ACTIONS; i++)
753     action[i] = action_raw[i];
754
755   if (tape.use_key_actions && tape.set_centered_player)
756   {
757     for (i = 0; i < MAX_PLAYERS; i++)
758       if (tape.centered_player_nr_next == i ||
759           tape.centered_player_nr_next == -1)
760         action[i] |= KEY_SET_FOCUS;
761
762     tape.set_centered_player = FALSE;
763   }
764
765   if (!TapeAddAction(action))
766     TapeStopRecording();
767 }
768
769 void TapeTogglePause(boolean toggle_mode)
770 {
771   if (tape.playing && tape.pausing && (toggle_mode & TAPE_TOGGLE_PLAY_PAUSE))
772   {
773     // continue playing in normal mode
774     tape.fast_forward = FALSE;
775     tape.warp_forward = FALSE;
776     tape.deactivate_display = FALSE;
777
778     tape.pause_before_end = FALSE;
779   }
780
781   tape.pausing = !tape.pausing;
782
783   if (tape.single_step && (toggle_mode & TAPE_TOGGLE_MANUAL))
784     tape.single_step = FALSE;
785
786   DrawVideoDisplayCurrentState();
787
788   if (tape.deactivate_display)
789   {
790     if (tape.pausing)
791       TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING);
792     else
793       TapeDeactivateDisplayOn();
794   }
795
796   if (tape.quick_resume)
797   {
798     tape.quick_resume = FALSE;
799
800     TapeStopWarpForward();
801     TapeAppendRecording();
802
803     if (!CheckEngineSnapshotSingle())
804       SaveEngineSnapshotSingle();
805
806     // restart step/move snapshots after quick loading tape
807     SaveEngineSnapshotToListInitial();
808
809     // do not map undo/redo buttons after quick loading tape
810     return;
811   }
812
813   if (game_status == GAME_MODE_PLAYING)
814   {
815     if (setup.show_snapshot_buttons && CheckEngineSnapshotList())
816     {
817       if (tape.pausing)
818         MapUndoRedoButtons();
819       else if (!tape.single_step)
820         UnmapUndoRedoButtons();
821     }
822
823     ModifyPauseButtons();
824   }
825 }
826
827 void TapeStartPlaying(void)
828 {
829   if (TAPE_IS_EMPTY(tape))
830     return;
831
832   if (!TAPE_IS_STOPPED(tape))
833     TapeStop();
834
835   TapeRewind();
836
837   tape.playing = TRUE;
838
839   DrawVideoDisplay(VIDEO_STATE_PLAY_ON, 0);
840   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
841   DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
842   DrawVideoDisplay(VIDEO_STATE_FRAME_ON, 0);
843
844   MapTapeWarpButton();
845
846   SetDrawDeactivationMask(REDRAW_NONE);
847   audio.sound_deactivated = FALSE;
848 }
849
850 static void TapeStartGamePlaying(void)
851 {
852   TapeStartPlaying();
853
854   InitGame();
855 }
856
857 void TapeStopPlaying(void)
858 {
859   tape.playing = FALSE;
860   tape.pausing = FALSE;
861
862   if (tape.warp_forward)
863     TapeStopWarpForward();
864
865   DrawVideoDisplay(VIDEO_STATE_PLAY_OFF, 0);
866   MapTapeEjectButton();
867 }
868
869 byte *TapePlayAction(void)
870 {
871   int update_delay = FRAMES_PER_SECOND / 2;
872   boolean update_video_display = (FrameCounter % update_delay == 0);
873   boolean update_draw_label_on = ((FrameCounter / update_delay) % 2 == 1);
874   static byte action[MAX_TAPE_ACTIONS];
875   int i;
876
877   if (!tape.playing || tape.pausing)
878     return NULL;
879
880   if (tape.pause_before_end)  // stop some seconds before end of tape
881   {
882     if (TapeTime > tape.length_seconds - TAPE_PAUSE_SECONDS_BEFORE_DEATH)
883     {
884       TapeStopWarpForward();
885       TapeTogglePause(TAPE_TOGGLE_MANUAL);
886
887       return NULL;
888     }
889   }
890
891   if (tape.counter >= tape.length)      // end of tape reached
892   {
893     if (tape.warp_forward && !tape.auto_play)
894     {
895       TapeStopWarpForward();
896       TapeTogglePause(TAPE_TOGGLE_MANUAL);
897     }
898     else
899     {
900       TapeStop();
901     }
902
903     return NULL;
904   }
905
906   if (update_video_display && !tape.deactivate_display)
907   {
908     int state = 0;
909
910     if (tape.warp_forward)
911       state |= VIDEO_STATE_WARP(update_draw_label_on);
912     else if (tape.fast_forward)
913       state |= VIDEO_STATE_FFWD(update_draw_label_on);
914
915     if (tape.pause_before_end)
916       state |= VIDEO_STATE_PBEND(update_draw_label_on);
917
918     // draw labels and symbols separately to prevent labels overlapping symbols
919     DrawVideoDisplayLabel(state);
920     DrawVideoDisplaySymbol(state);
921   }
922
923   for (i = 0; i < MAX_TAPE_ACTIONS; i++)
924     action[i] = tape.pos[tape.counter].action[i];
925
926 #if DEBUG_TAPE_WHEN_PLAYING
927   DebugContinued("", "%05d", FrameCounter);
928   for (i = 0; i < MAX_TAPE_ACTIONS; i++)
929     DebugContinued("", "   %08x", action[i]);
930   DebugContinued("tape:play", "\n");
931 #endif
932
933   tape.set_centered_player = FALSE;
934   tape.centered_player_nr_next = -999;
935
936   if (tape.use_key_actions)
937   {
938     for (i = 0; i < MAX_PLAYERS; i++)
939     {
940       if (action[i] & KEY_SET_FOCUS)
941       {
942         tape.set_centered_player = TRUE;
943         tape.centered_player_nr_next =
944           (tape.centered_player_nr_next == -999 ? i : -1);
945       }
946
947       action[i] &= ~KEY_SET_FOCUS;
948     }
949   }
950
951   tape.delay_played++;
952   if (tape.delay_played >= tape.pos[tape.counter].delay)
953   {
954     tape.counter++;
955     tape.delay_played = 0;
956   }
957
958   if (tape.auto_play)
959     PrintTapeReplayProgress(FALSE);
960
961   if (options.tape_log_filename != NULL)
962     WriteTapeLogfile(action);
963
964   return action;
965 }
966
967 void TapeStop(void)
968 {
969   if (tape.pausing)
970     TapeTogglePause(TAPE_TOGGLE_MANUAL);
971
972   TapeStopRecording();
973   TapeStopPlaying();
974
975   DrawVideoDisplay(VIDEO_STATE_OFF, 0);
976
977   if (tape.date && tape.length)
978   {
979     DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
980     DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
981     DrawVideoDisplay(VIDEO_STATE_FRAME_ON, tape.length_frames);
982   }
983 }
984
985 unsigned int GetTapeLengthFrames(void)
986 {
987   unsigned int tape_length_frames = 0;
988   int i;
989
990   if (TAPE_IS_EMPTY(tape))
991     return 0;
992
993   for (i = 0; i < tape.length; i++)
994     tape_length_frames += tape.pos[i].delay;
995
996   return tape_length_frames;
997 }
998
999 unsigned int GetTapeLengthSeconds(void)
1000 {
1001   return (GetTapeLengthFrames() * GAME_FRAME_DELAY / 1000);
1002 }
1003
1004 static float GetTapeLengthSecondsFloat(void)
1005 {
1006   return ((float)GetTapeLengthFrames() * GAME_FRAME_DELAY / 1000);
1007 }
1008
1009 static void TapeStartWarpForward(int mode)
1010 {
1011   tape.fast_forward = (mode & AUTOPLAY_FFWD);
1012   tape.warp_forward = (mode & AUTOPLAY_WARP);
1013   tape.deactivate_display = (mode & AUTOPLAY_WARP_NO_DISPLAY);
1014
1015   tape.pausing = FALSE;
1016
1017   if (tape.deactivate_display)
1018     TapeDeactivateDisplayOn();
1019
1020   DrawVideoDisplayCurrentState();
1021 }
1022
1023 static void TapeStopWarpForward(void)
1024 {
1025   tape.fast_forward = FALSE;
1026   tape.warp_forward = FALSE;
1027   tape.deactivate_display = FALSE;
1028
1029   tape.pause_before_end = FALSE;
1030
1031   TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING);
1032
1033   DrawVideoDisplayCurrentState();
1034 }
1035
1036 static void TapeSingleStep(void)
1037 {
1038   if (network.enabled)
1039     return;
1040
1041   if (!tape.pausing)
1042     TapeTogglePause(TAPE_TOGGLE_MANUAL);
1043
1044   tape.single_step = !tape.single_step;
1045
1046   DrawVideoDisplay(VIDEO_STATE_1STEP(tape.single_step), 0);
1047 }
1048
1049 void TapeQuickSave(void)
1050 {
1051   if (game_status == GAME_MODE_MAIN)
1052   {
1053     Request("No game that can be saved!", REQ_CONFIRM);
1054
1055     return;
1056   }
1057
1058   if (game_status != GAME_MODE_PLAYING)
1059     return;
1060
1061   if (tape.recording)
1062     TapeHaltRecording();        // prepare tape for saving on-the-fly
1063
1064   if (TAPE_IS_EMPTY(tape))
1065   {
1066     Request("No tape that can be saved!", REQ_CONFIRM);
1067
1068     return;
1069   }
1070
1071   if (SaveTapeChecked(tape.level_nr))
1072     SaveEngineSnapshotSingle();
1073 }
1074
1075 void TapeQuickLoad(void)
1076 {
1077   char *filename = getTapeFilename(level_nr);
1078
1079   if (!fileExists(filename))
1080   {
1081     Request("No tape for this level!", REQ_CONFIRM);
1082
1083     return;
1084   }
1085
1086   if (tape.recording && !Request("Stop recording and load tape?",
1087                                  REQ_ASK | REQ_STAY_CLOSED))
1088   {
1089     OpenDoor(DOOR_OPEN_1 | DOOR_COPY_BACK);
1090
1091     return;
1092   }
1093
1094   if (game_status != GAME_MODE_PLAYING && game_status != GAME_MODE_MAIN)
1095     return;
1096
1097   if (CheckEngineSnapshotSingle())
1098   {
1099     TapeStartGamePlaying();
1100
1101     LoadEngineSnapshotSingle();
1102
1103     DrawCompleteVideoDisplay();
1104
1105     tape.playing = TRUE;
1106     tape.pausing = TRUE;
1107
1108     TapeStopWarpForward();
1109     TapeAppendRecording();
1110
1111     // restart step/move snapshots after quick loading tape
1112     SaveEngineSnapshotToListInitial();
1113
1114     if (FrameCounter > 0)
1115       return;
1116   }
1117
1118   TapeStop();
1119   TapeErase();
1120
1121   LoadTape(level_nr);
1122
1123   if (!TAPE_IS_EMPTY(tape))
1124   {
1125     TapeStartGamePlaying();
1126     TapeStartWarpForward(AUTOPLAY_MODE_WARP_NO_DISPLAY);
1127
1128     tape.quick_resume = TRUE;
1129   }
1130   else  // this should not happen (basically checked above)
1131   {
1132     int reopen_door = (game_status == GAME_MODE_PLAYING ? REQ_REOPEN : 0);
1133
1134     Request("No tape for this level!", REQ_CONFIRM | reopen_door);
1135   }
1136 }
1137
1138 boolean hasSolutionTape(void)
1139 {
1140   boolean tape_file_exists = fileExists(getSolutionTapeFilename(level_nr));
1141   boolean level_has_tape = (level.game_engine_type == GAME_ENGINE_TYPE_SP &&
1142                             level.native_sp_level->demo.is_available);
1143
1144   return (tape_file_exists || level_has_tape);
1145 }
1146
1147 boolean InsertSolutionTape(void)
1148 {
1149   if (!hasSolutionTape())
1150   {
1151     Request("No solution tape for this level!", REQ_CONFIRM);
1152
1153     return FALSE;
1154   }
1155
1156   if (!TAPE_IS_STOPPED(tape))
1157     TapeStop();
1158
1159   // if tape recorder already contains a tape, remove it without asking
1160   TapeErase();
1161
1162   LoadSolutionTape(level_nr);
1163
1164   DrawCompleteVideoDisplay();
1165
1166   if (TAPE_IS_EMPTY(tape))
1167   {
1168     Request("Loading solution tape for this level failed!", REQ_CONFIRM);
1169
1170     return FALSE;
1171   }
1172
1173   return TRUE;
1174 }
1175
1176 boolean PlaySolutionTape(void)
1177 {
1178   if (!InsertSolutionTape())
1179     return FALSE;
1180
1181   TapeStartGamePlaying();
1182
1183   return TRUE;
1184 }
1185
1186 static boolean checkTapesFromSameLevel(struct TapeInfo *t1, struct TapeInfo *t2)
1187 {
1188   return (strEqual(t1->level_identifier, t2->level_identifier) &&
1189           t1->level_nr == t2->level_nr);
1190 }
1191
1192 static void CopyTape(struct TapeInfo *tape_from, struct TapeInfo *tape_to)
1193 {
1194   *tape_to = *tape_from;
1195 }
1196
1197 static void SwapTapes(struct TapeInfo *t1, struct TapeInfo *t2)
1198 {
1199   struct TapeInfo tmp = *t1;
1200
1201   *t1 = *t2;
1202   *t2 = tmp;
1203 }
1204
1205 static void CopyTapeToUndoBuffer(void)
1206 {
1207   // copy tapes to undo buffer if large enough (or larger than last undo tape)
1208   // or if the last undo tape is from a different level set or level number
1209   if (tape.length_seconds >= TAPE_MIN_SECONDS_FOR_UNDO_BUFFER ||
1210       tape.length_seconds >= tape_undo_buffer.length_seconds ||
1211       !checkTapesFromSameLevel(&tape, &tape_undo_buffer))
1212   {
1213     CopyTape(&tape, &tape_undo_buffer);
1214   }
1215 }
1216
1217 void UndoTape(void)
1218 {
1219   // only undo tapes from same level set and with same level number
1220   if (!checkTapesFromSameLevel(&tape, &tape_undo_buffer))
1221     return;
1222
1223   if (!TAPE_IS_STOPPED(tape))
1224     TapeStop();
1225
1226   // swap last recorded tape with undo buffer, so undo can be reversed
1227   SwapTapes(&tape, &tape_undo_buffer);
1228
1229   DrawCompleteVideoDisplay();
1230 }
1231
1232 void FixTape_ForceSinglePlayer(void)
1233 {
1234   int i;
1235
1236   /* fix single-player tapes that contain player input for more than one
1237      player (due to a bug in 3.3.1.2 and earlier versions), which results
1238      in playing levels with more than one player in multi-player mode,
1239      even though the tape was originally recorded in single-player mode */
1240
1241   // remove player input actions for all players but the first one
1242   for (i = 1; i < MAX_PLAYERS; i++)
1243     tape.player_participates[i] = FALSE;
1244
1245   tape.changed = TRUE;
1246 }
1247
1248
1249 // ----------------------------------------------------------------------------
1250 // tape autoplay functions
1251 // ----------------------------------------------------------------------------
1252
1253 void AutoPlayTapes(void)
1254 {
1255   static LevelDirTree *autoplay_leveldir = NULL;
1256   static boolean autoplay_initialized = FALSE;
1257   static int autoplay_last_level_nr = -1;
1258   static int autoplay_level_nr = -1;
1259   static int num_levels_played = 0;
1260   static int num_levels_solved = 0;
1261   static int num_tapes_patched = 0;
1262   static int num_tape_missing = 0;
1263   static boolean level_failed[MAX_TAPES_PER_SET];
1264   static char *tape_filename = NULL;
1265   static int patch_nr = 0;
1266   static char *patch_name[] =
1267   {
1268     "original tape",
1269     "em_random_bug",
1270     "screen_34x34",
1271
1272     NULL
1273   };
1274   static int patch_version_first[] =
1275   {
1276     VERSION_IDENT(0,0,0,0),
1277     VERSION_IDENT(3,3,1,0),
1278     VERSION_IDENT(0,0,0,0),
1279
1280     -1
1281   };
1282   static int patch_version_last[] =
1283   {
1284     VERSION_IDENT(9,9,9,9),
1285     VERSION_IDENT(4,0,1,1),
1286     VERSION_IDENT(4,2,2,0),
1287
1288     -1
1289   };
1290   static byte patch_property_bit[] =
1291   {
1292     TAPE_PROPERTY_NONE,
1293     TAPE_PROPERTY_EM_RANDOM_BUG,
1294     TAPE_PROPERTY_NONE,
1295
1296     -1
1297   };
1298   int i;
1299
1300   if (autoplay_initialized)
1301   {
1302     if (global.autoplay_mode == AUTOPLAY_MODE_FIX)
1303     {
1304       if (tape.auto_play_level_solved)
1305       {
1306         if (patch_nr > 0)
1307         {
1308           // level solved by patched tape -- save fixed tape
1309           char *filename = getTapeFilename(level_nr);
1310           char *filename_orig = getStringCat2(filename, ".orig");
1311
1312           // create backup from old tape, if not yet existing
1313           if (!fileExists(filename_orig))
1314             rename(filename, filename_orig);
1315
1316           SaveTapeToFilename(filename);
1317
1318           tape.auto_play_level_fixed = TRUE;
1319           num_tapes_patched++;
1320         }
1321
1322         // continue with next tape
1323         patch_nr = 0;
1324       }
1325       else if (patch_name[patch_nr + 1] != NULL)
1326       {
1327         // level not solved by patched tape -- continue with next patch
1328         patch_nr++;
1329       }
1330       else
1331       {
1332         // level not solved by any patched tape -- continue with next tape
1333         tape.auto_play_level_not_fixable = TRUE;
1334         patch_nr = 0;
1335       }
1336     }
1337
1338     // just finished auto-playing tape
1339     PrintTapeReplayProgress(TRUE);
1340
1341     if (options.tape_log_filename != NULL)
1342       CloseTapeLogfile();
1343
1344     if (global.autoplay_mode == AUTOPLAY_MODE_SAVE &&
1345         tape.auto_play_level_solved)
1346     {
1347       // set unique basename for score tape (for uploading to score server)
1348       strcpy(tape.score_tape_basename, getScoreTapeBasename(setup.player_name));
1349
1350       // store score in first score entry
1351       scores.last_added = 0;
1352
1353       struct ScoreEntry *entry = &scores.entry[scores.last_added];
1354
1355       strncpy(entry->tape_basename, tape.score_tape_basename, MAX_FILENAME_LEN);
1356       strncpy(entry->name, setup.player_name, MAX_PLAYER_NAME_LEN);
1357
1358       entry->score = game.score_final;
1359       entry->time = game.score_time_final;
1360
1361       if (leveldir_current)
1362       {
1363         // the tape's level set identifier may differ from current level set
1364         strncpy(tape.level_identifier, leveldir_current->identifier,
1365                 MAX_FILENAME_LEN);
1366         tape.level_identifier[MAX_FILENAME_LEN] = '\0';
1367
1368         // the tape's level number may differ from current level number
1369         tape.level_nr = level_nr;
1370       }
1371
1372       PrintNoLog("- uploading score tape to score server ... ");
1373
1374       server_scores.uploaded = FALSE;
1375
1376       // temporarily save score tape (as the tape filename is unknown here)
1377       SaveScoreTape(level_nr);
1378       SaveServerScore(level_nr);
1379
1380       unsigned int upload_delay = 0;
1381       unsigned int upload_delay_value = 10000;
1382
1383       ResetDelayCounter(&upload_delay);
1384
1385       // wait for score tape to be successfully uploaded (and fail on timeout)
1386       while (!server_scores.uploaded)
1387       {
1388         if (DelayReached(&upload_delay, upload_delay_value))
1389         {
1390           PrintNoLog("\r");
1391           Print("- uploading score tape to score server - TIMEOUT.\n");
1392
1393           Fail("cannot upload score tape to score server");
1394         }
1395
1396         Delay(20);
1397       }
1398
1399       PrintNoLog("\r");
1400       Print("- uploading score tape to score server - uploaded.\n");
1401     }
1402
1403     if (patch_nr == 0)
1404       num_levels_played++;
1405
1406     if (tape.auto_play_level_solved)
1407       num_levels_solved++;
1408
1409     if (level_nr >= 0 && level_nr < MAX_TAPES_PER_SET)
1410       level_failed[level_nr] = !tape.auto_play_level_solved;
1411   }
1412   else
1413   {
1414     DrawCompleteVideoDisplay();
1415
1416     audio.sound_enabled = FALSE;
1417     setup.engine_snapshot_mode = getStringCopy(STR_SNAPSHOT_MODE_OFF);
1418
1419     if (strSuffix(global.autoplay_leveldir, ".tape"))
1420     {
1421       tape_filename = global.autoplay_leveldir;
1422
1423       LoadTapeFromFilename(tape_filename);
1424
1425       global.autoplay_leveldir = tape.level_identifier;
1426
1427       if (tape.level_nr >= 0 && tape.level_nr < MAX_TAPES_PER_SET)
1428         global.autoplay_level[tape.level_nr] = TRUE;
1429
1430       global.autoplay_all = FALSE;
1431     }
1432
1433     autoplay_leveldir = getTreeInfoFromIdentifier(leveldir_first,
1434                                                   global.autoplay_leveldir);
1435
1436     if (autoplay_leveldir == NULL)
1437       Fail("no such level identifier: '%s'", global.autoplay_leveldir);
1438
1439     leveldir_current = autoplay_leveldir;
1440
1441     if (autoplay_leveldir->first_level < 0)
1442       autoplay_leveldir->first_level = 0;
1443     if (autoplay_leveldir->last_level >= MAX_TAPES_PER_SET)
1444       autoplay_leveldir->last_level = MAX_TAPES_PER_SET - 1;
1445
1446     autoplay_level_nr = autoplay_leveldir->first_level;
1447
1448     PrintLine("=", 79);
1449     if (global.autoplay_mode == AUTOPLAY_MODE_FIX)
1450       Print("Automatically fixing level tapes\n");
1451     else
1452       Print("Automatically playing level tapes\n");
1453     PrintLine("-", 79);
1454     Print("Level series identifier: '%s'\n", autoplay_leveldir->identifier);
1455     Print("Level series name:       '%s'\n", autoplay_leveldir->name);
1456     Print("Level series author:     '%s'\n", autoplay_leveldir->author);
1457     Print("Number of levels:        %d\n",   autoplay_leveldir->levels);
1458     PrintLine("=", 79);
1459     Print("\n");
1460
1461     for (i = 0; i < MAX_TAPES_PER_SET; i++)
1462       level_failed[i] = FALSE;
1463
1464     // only private tapes may be modified
1465     if (global.autoplay_mode == AUTOPLAY_MODE_FIX)
1466       options.mytapes = TRUE;
1467
1468     autoplay_initialized = TRUE;
1469   }
1470
1471   while (1)
1472   {
1473     if (global.autoplay_mode != AUTOPLAY_MODE_FIX || patch_nr == 0)
1474       level_nr = autoplay_level_nr++;
1475
1476     if (level_nr > autoplay_leveldir->last_level)
1477       break;
1478
1479     // set patch info (required for progress output)
1480     strcpy(tape_patch_info, "");
1481     if (global.autoplay_mode == AUTOPLAY_MODE_FIX)
1482       snprintf(tape_patch_info, MAX_OUTPUT_LINESIZE, "[%-13s] ",
1483                patch_name[patch_nr]);
1484
1485     if (!global.autoplay_all && !global.autoplay_level[level_nr])
1486       continue;
1487
1488     TapeErase();
1489
1490     LoadLevel(level_nr);
1491
1492     if (level.no_level_file || level.no_valid_file)
1493     {
1494       Print("Tape %03d: (no level found)\n", level_nr);
1495
1496       continue;
1497     }
1498
1499 #if 0
1500     // ACTIVATE THIS FOR LOADING/TESTING OF LEVELS ONLY
1501     Print("Tape %03d: (only testing level)\n", level_nr);
1502     continue;
1503 #endif
1504
1505     if (tape_filename)
1506       LoadTapeFromFilename(tape_filename);
1507     else if (options.mytapes)
1508       LoadTape(level_nr);
1509     else
1510       LoadSolutionTape(level_nr);
1511
1512     if (tape.no_valid_file)
1513     {
1514       num_tape_missing++;
1515
1516       Print("Tape %03d: (no tape found)\n", level_nr);
1517
1518       continue;
1519     }
1520
1521     if (global.autoplay_mode == AUTOPLAY_MODE_FIX)
1522     {
1523       boolean skip_patch = FALSE;
1524
1525       if (tape.engine_version < patch_version_first[patch_nr] ||
1526           tape.engine_version > patch_version_last[patch_nr])
1527       {
1528         Print("Tape %03d %s[%02d:%02d]: (%s %d.%d.%d.%d) - skipped.\n",
1529               level_nr,  tape_patch_info,
1530               tape.length_seconds / 60, tape.length_seconds % 60,
1531               "not suitable for version",
1532               (tape.engine_version / 1000000) % 100,
1533               (tape.engine_version / 10000  ) % 100,
1534               (tape.engine_version / 100    ) % 100,
1535               (tape.engine_version          ) % 100);
1536
1537         skip_patch = TRUE;
1538       }
1539
1540       if (strEqual(patch_name[patch_nr], "screen_34x34") &&
1541           tape.num_participating_players == 1)
1542       {
1543         Print("Tape %03d %s[%02d:%02d]: (%s) - skipped.\n",
1544               level_nr,  tape_patch_info,
1545               tape.length_seconds / 60, tape.length_seconds % 60,
1546               "not suitable for single player tapes");
1547
1548         skip_patch = TRUE;
1549       }
1550
1551       if (skip_patch)
1552       {
1553         if (patch_name[patch_nr + 1] != NULL)
1554         {
1555           // continue with next patch
1556           patch_nr++;
1557         }
1558         else
1559         {
1560           // continue with next tape
1561           patch_nr = 0;
1562         }
1563
1564         continue;
1565       }
1566
1567       if (strEqual(patch_name[patch_nr], "screen_34x34"))
1568       {
1569         tape.scr_fieldx = SCR_FIELDX_DEFAULT * 2;
1570         tape.scr_fieldy = SCR_FIELDY_DEFAULT * 2;
1571       }
1572       else
1573       {
1574         tape.property_bits |= patch_property_bit[patch_nr];
1575       }
1576     }
1577
1578     InitCounter();
1579
1580     if (options.tape_log_filename != NULL)
1581       OpenTapeLogfile();
1582
1583     TapeStartGamePlaying();
1584     TapeStartWarpForward(global.autoplay_mode);
1585
1586     autoplay_last_level_nr = level_nr;
1587
1588     return;
1589   }
1590
1591   char *autoplay_status = (num_levels_played == num_levels_solved &&
1592                            num_levels_played > 0 ? " OK " : "WARN");
1593   int autoplay_percent = (num_levels_played ?
1594                           num_levels_solved * 100 / num_levels_played : 0);
1595
1596   Print("\n");
1597   PrintLine("=", 79);
1598   Print("Number of levels played: %d\n", num_levels_played);
1599   Print("Number of levels solved: %d (%d%%)\n", num_levels_solved,
1600         (num_levels_played ? num_levels_solved * 100 / num_levels_played : 0));
1601   if (global.autoplay_mode == AUTOPLAY_MODE_FIX)
1602     Print("Number of tapes fixed: %d\n", num_tapes_patched);
1603   PrintLine("-", 79);
1604   Print("Summary (for automatic parsing by scripts):\n");
1605
1606   if (tape_filename)
1607   {
1608     Print("TAPEFILE [%s] '%s', %d, %d, %d",
1609           autoplay_status,
1610           autoplay_leveldir->identifier,
1611           autoplay_last_level_nr,
1612           game.score_final,
1613           game.score_time_final);
1614   }
1615   else
1616   {
1617     Print("LEVELDIR [%s] '%s', SOLVED %d/%d (%d%%)",
1618           autoplay_status,
1619           autoplay_leveldir->identifier,
1620           num_levels_solved,
1621           num_levels_played,
1622           autoplay_percent);
1623
1624     if (num_levels_played != num_levels_solved)
1625     {
1626       Print(", FAILED:");
1627       for (i = 0; i < MAX_TAPES_PER_SET; i++)
1628         if (level_failed[i])
1629           Print(" %03d", i);
1630     }
1631   }
1632
1633   Print("\n");
1634   PrintLine("=", 79);
1635
1636   CloseAllAndExit(0);
1637 }
1638
1639
1640 // ----------------------------------------------------------------------------
1641 // tape patch functions
1642 // ----------------------------------------------------------------------------
1643
1644 static boolean PatchTape(struct TapeInfo *tape, char *mode)
1645 {
1646   Print("[%d.%d.%d.%d]: ",
1647         (tape->engine_version / 1000000) % 100,
1648         (tape->engine_version / 10000  ) % 100,
1649         (tape->engine_version / 100    ) % 100,
1650         (tape->engine_version          ) % 100);
1651
1652   if (strEqual(mode, "info"))
1653   {
1654     Print("property bits == 0x%02x\n", tape->property_bits);
1655
1656     return FALSE;
1657   }
1658
1659   boolean unpatch_tape = FALSE;
1660   boolean use_property_bit = FALSE;
1661   byte property_bitmask = 0;
1662
1663   if (strSuffix(mode, ":0") ||
1664       strSuffix(mode, ":off") ||
1665       strSuffix(mode, ":clear"))
1666     unpatch_tape = TRUE;
1667
1668   if (strEqual(mode, "em_random_bug") || strPrefix(mode, "em_random_bug:"))
1669   {
1670     // this bug was introduced in version 3.3.1.0 and fixed in version 4.0.1.2
1671     if (tape->engine_version <  VERSION_IDENT(3,3,1,0) ||
1672         tape->engine_version >= VERSION_IDENT(4,0,1,2))
1673     {
1674       Print("This tape version cannot be patched against EM random bug!\n");
1675
1676       return FALSE;
1677     }
1678
1679     property_bitmask = TAPE_PROPERTY_EM_RANDOM_BUG;
1680
1681     use_property_bit = TRUE;
1682   }
1683   else if (strEqual(mode, "screen_34x34") || strPrefix(mode, "screen_34x34:"))
1684   {
1685     // this bug only affects team mode tapes
1686     if (tape->num_participating_players == 1)
1687     {
1688       Print("Only team mode tapes can be patched against screen size bug!\n");
1689
1690       return FALSE;
1691     }
1692
1693     // this bug (that always existed before) was fixed in version 4.2.2.1
1694     if (tape->engine_version >= VERSION_IDENT(4,2,2,1))
1695     {
1696       Print("This tape version cannot be patched against screen size bug!\n");
1697
1698       return FALSE;
1699     }
1700
1701     int factor = (unpatch_tape ? 1 : 2);
1702     int scr_fieldx_new = SCR_FIELDX_DEFAULT * factor;
1703     int scr_fieldy_new = SCR_FIELDY_DEFAULT * factor;
1704
1705     if (scr_fieldx_new == tape->scr_fieldx &&
1706         scr_fieldy_new == tape->scr_fieldy)
1707     {
1708       Print("Tape already patched for '%s'!\n", mode);
1709
1710       return FALSE;
1711     }
1712
1713     tape->scr_fieldx = scr_fieldx_new;
1714     tape->scr_fieldy = scr_fieldy_new;
1715   }
1716   else
1717   {
1718     Print("Unknown patch mode '%s'!\n", mode);
1719
1720     return FALSE;
1721   }
1722
1723   // patching tapes using property bits may be used for several patch modes
1724   if (use_property_bit)
1725   {
1726     byte property_bits = tape->property_bits;
1727     boolean set_property_bit = (unpatch_tape ? FALSE : TRUE);
1728
1729     if (set_property_bit)
1730       property_bits |= property_bitmask;
1731     else
1732       property_bits &= ~property_bitmask;
1733
1734     if (property_bits == tape->property_bits)
1735     {
1736       Print("Tape already patched for '%s'!\n", mode);
1737
1738       return FALSE;
1739     }
1740
1741     tape->property_bits = property_bits;
1742   }
1743
1744   Print("Patching for '%s' ... ", mode);
1745
1746   return TRUE;
1747 }
1748
1749 void PatchTapes(void)
1750 {
1751   static LevelDirTree *patchtapes_leveldir = NULL;
1752   static int num_tapes_found = 0;
1753   static int num_tapes_patched = 0;
1754   char *mode = global.patchtapes_mode;
1755   int i;
1756
1757   if (strEqual(mode, "help"))
1758   {
1759     PrintLine("=", 79);
1760     Print("Supported patch modes:\n");
1761     Print("- \"em_random_bug\"   - use 64-bit random value bug for EM engine\n");
1762     Print("- \"screen_34x34\"    - force visible playfield size of 34 x 34\n");
1763     PrintLine("-", 79);
1764     Print("Supported modifiers:\n");
1765     Print("- add \":0\", \":off\" or \":clear\" to patch mode to un-patch tape file\n");
1766     PrintLine("=", 79);
1767
1768     CloseAllAndExit(0);
1769   }
1770
1771   patchtapes_leveldir = getTreeInfoFromIdentifier(leveldir_first,
1772                                                   global.patchtapes_leveldir);
1773
1774   if (patchtapes_leveldir == NULL)
1775     Fail("no such level identifier: '%s'", global.patchtapes_leveldir);
1776
1777   leveldir_current = patchtapes_leveldir;
1778
1779   if (patchtapes_leveldir->first_level < 0)
1780     patchtapes_leveldir->first_level = 0;
1781   if (patchtapes_leveldir->last_level >= MAX_TAPES_PER_SET)
1782     patchtapes_leveldir->last_level = MAX_TAPES_PER_SET - 1;
1783
1784   PrintLine("=", 79);
1785   Print("Patching level tapes for patch mode '%s'\n", mode);
1786   PrintLine("-", 79);
1787   Print("Level series identifier: '%s'\n", patchtapes_leveldir->identifier);
1788   Print("Level series name:       '%s'\n", patchtapes_leveldir->name);
1789   Print("Level series author:     '%s'\n", patchtapes_leveldir->author);
1790   Print("Number of levels:        %d\n",   patchtapes_leveldir->levels);
1791   PrintLine("=", 79);
1792   Print("\n");
1793
1794   int first_level = patchtapes_leveldir->first_level;
1795   int last_level = patchtapes_leveldir->last_level;
1796
1797   for (i = first_level; i <= last_level; i++)
1798   {
1799     if (!global.patchtapes_all && !global.patchtapes_level[i])
1800       continue;
1801
1802     Print("Tape %03d: ", i);
1803
1804     TapeErase();
1805     LoadTape(i);
1806
1807     if (tape.no_valid_file)
1808     {
1809       Print("(no tape found)\n");
1810
1811       continue;
1812     }
1813
1814     num_tapes_found++;
1815
1816     if (PatchTape(&tape, mode))
1817     {
1818       char *filename = getTapeFilename(i);
1819       char *filename_orig = getStringCat2(filename, ".orig");
1820
1821       if (!fileExists(filename_orig))
1822         rename(filename, filename_orig);
1823
1824       SaveTapeToFilename(filename);
1825
1826       Print("patched tape saved.\n");
1827
1828       num_tapes_patched++;
1829     }
1830   }
1831
1832   Print("\n");
1833   PrintLine("=", 79);
1834   Print("Number of tapes found: %d\n", num_tapes_found);
1835   Print("Number of tapes patched: %d\n", num_tapes_patched);
1836   PrintLine("=", 79);
1837
1838   CloseAllAndExit(0);
1839 }
1840
1841
1842 // ---------- new tape button stuff -------------------------------------------
1843
1844 static struct
1845 {
1846   int graphic;
1847   struct XY *pos;
1848   int gadget_id;
1849   char *infotext;
1850 } tapebutton_info[NUM_TAPE_BUTTONS] =
1851 {
1852   {
1853     IMG_GFX_TAPE_BUTTON_EJECT,          &tape.button.eject,
1854     TAPE_CTRL_ID_EJECT,                 "eject tape"
1855   },
1856   {
1857     // (same position as "eject" button)
1858     IMG_GFX_TAPE_BUTTON_EXTRA,          &tape.button.eject,
1859     TAPE_CTRL_ID_EXTRA,                 "extra functions"
1860   },
1861   {
1862     IMG_GFX_TAPE_BUTTON_STOP,           &tape.button.stop,
1863     TAPE_CTRL_ID_STOP,                  "stop tape"
1864   },
1865   {
1866     IMG_GFX_TAPE_BUTTON_PAUSE,          &tape.button.pause,
1867     TAPE_CTRL_ID_PAUSE,                 "pause tape"
1868   },
1869   {
1870     IMG_GFX_TAPE_BUTTON_RECORD,         &tape.button.record,
1871     TAPE_CTRL_ID_RECORD,                "record tape"
1872   },
1873   {
1874     IMG_GFX_TAPE_BUTTON_PLAY,           &tape.button.play,
1875     TAPE_CTRL_ID_PLAY,                  "play tape"
1876   },
1877   {
1878     IMG_GFX_TAPE_BUTTON_INSERT_SOLUTION,&tape.button.insert_solution,
1879     TAPE_CTRL_ID_INSERT_SOLUTION,       "insert solution tape"
1880   },
1881   {
1882     IMG_GFX_TAPE_BUTTON_PLAY_SOLUTION,  &tape.button.play_solution,
1883     TAPE_CTRL_ID_PLAY_SOLUTION,         "play solution tape"
1884   }
1885 };
1886
1887 void CreateTapeButtons(void)
1888 {
1889   int i;
1890
1891   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1892   {
1893     int graphic = tapebutton_info[i].graphic;
1894     struct GraphicInfo *gfx = &graphic_info[graphic];
1895     struct XY *pos = tapebutton_info[i].pos;
1896     struct GadgetInfo *gi;
1897     int gd_x = gfx->src_x;
1898     int gd_y = gfx->src_y;
1899     int gd_xp = gfx->src_x + gfx->pressed_xoffset;
1900     int gd_yp = gfx->src_y + gfx->pressed_yoffset;
1901     int id = i;
1902
1903     gi = CreateGadget(GDI_CUSTOM_ID, id,
1904                       GDI_IMAGE_ID, graphic,
1905                       GDI_INFO_TEXT, tapebutton_info[i].infotext,
1906                       GDI_X, VX + pos->x,
1907                       GDI_Y, VY + pos->y,
1908                       GDI_WIDTH, gfx->width,
1909                       GDI_HEIGHT, gfx->height,
1910                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
1911                       GDI_STATE, GD_BUTTON_UNPRESSED,
1912                       GDI_DESIGN_UNPRESSED, gfx->bitmap, gd_x, gd_y,
1913                       GDI_DESIGN_PRESSED, gfx->bitmap, gd_xp, gd_yp,
1914                       GDI_DIRECT_DRAW, FALSE,
1915                       GDI_EVENT_MASK, GD_EVENT_RELEASED,
1916                       GDI_CALLBACK_ACTION, HandleTapeButtons,
1917                       GDI_END);
1918
1919     if (gi == NULL)
1920       Fail("cannot create gadget");
1921
1922     tape_gadget[id] = gi;
1923   }
1924 }
1925
1926 void FreeTapeButtons(void)
1927 {
1928   int i;
1929
1930   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1931     FreeGadget(tape_gadget[i]);
1932 }
1933
1934 void MapTapeEjectButton(void)
1935 {
1936   UnmapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1937   MapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1938 }
1939
1940 void MapTapeWarpButton(void)
1941 {
1942   UnmapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1943   MapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1944 }
1945
1946 void MapTapeButtons(void)
1947 {
1948   int i;
1949
1950   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1951     if (i != TAPE_CTRL_ID_EXTRA)
1952       MapGadget(tape_gadget[i]);
1953
1954   if (tape.recording || tape.playing)
1955     MapTapeWarpButton();
1956
1957   if (tape.show_game_buttons)
1958     MapGameButtonsOnTape();
1959 }
1960
1961 void UnmapTapeButtons(void)
1962 {
1963   int i;
1964
1965   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1966     UnmapGadget(tape_gadget[i]);
1967
1968   if (tape.show_game_buttons)
1969     UnmapGameButtonsOnTape();
1970 }
1971
1972 void RedrawTapeButtons(void)
1973 {
1974   int i;
1975
1976   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1977     RedrawGadget(tape_gadget[i]);
1978
1979   if (tape.show_game_buttons)
1980     RedrawGameButtonsOnTape();
1981 }
1982
1983 void RedrawOrRemapTapeButtons(void)
1984 {
1985   if (tape_gadget[TAPE_CTRL_ID_PLAY]->mapped)
1986   {
1987     // tape buttons already mapped
1988     RedrawTapeButtons();
1989   }
1990   else
1991   {
1992     UnmapTapeButtons();
1993     MapTapeButtons();
1994   }
1995 }
1996
1997 static void HandleTapeButtonsExt(int id)
1998 {
1999   if (game_status != GAME_MODE_MAIN && game_status != GAME_MODE_PLAYING)
2000     return;
2001
2002   switch (id)
2003   {
2004     case TAPE_CTRL_ID_EJECT:
2005       TapeStop();
2006
2007       if (TAPE_IS_EMPTY(tape))
2008       {
2009         LoadTape(level_nr);
2010
2011         if (TAPE_IS_EMPTY(tape))
2012           Request("No tape for this level!", REQ_CONFIRM);
2013       }
2014       else
2015       {
2016         if (tape.changed)
2017           SaveTapeChecked(level_nr);
2018
2019         TapeErase();
2020       }
2021
2022       DrawCompleteVideoDisplay();
2023       break;
2024
2025     case TAPE_CTRL_ID_EXTRA:
2026       if (tape.playing)
2027       {
2028         tape.pause_before_end = !tape.pause_before_end;
2029
2030         DrawVideoDisplayCurrentState();
2031       }
2032       else if (tape.recording)
2033       {
2034         TapeSingleStep();
2035       }
2036
2037       break;
2038
2039     case TAPE_CTRL_ID_STOP:
2040       TapeStop();
2041
2042       break;
2043
2044     case TAPE_CTRL_ID_PAUSE:
2045       TapeTogglePause(TAPE_TOGGLE_MANUAL);
2046
2047       break;
2048
2049     case TAPE_CTRL_ID_RECORD:
2050       if (TAPE_IS_STOPPED(tape))
2051       {
2052         TapeStartGameRecording();
2053       }
2054       else if (tape.pausing)
2055       {
2056         if (tape.playing)                       // PLAY -> PAUSE -> RECORD
2057           TapeAppendRecording();
2058         else
2059           TapeTogglePause(TAPE_TOGGLE_MANUAL);
2060       }
2061
2062       break;
2063
2064     case TAPE_CTRL_ID_PLAY:
2065       if (tape.recording && tape.pausing)       // PAUSE -> RECORD
2066       {
2067         // ("TAPE_IS_EMPTY(tape)" is TRUE here -- probably fix this)
2068
2069         TapeTogglePause(TAPE_TOGGLE_MANUAL);
2070       }
2071
2072       if (TAPE_IS_EMPTY(tape))
2073         break;
2074
2075       if (TAPE_IS_STOPPED(tape))
2076       {
2077         TapeStartGamePlaying();
2078       }
2079       else if (tape.playing)
2080       {
2081         if (tape.pausing)                       // PAUSE -> PLAY
2082         {
2083           TapeTogglePause(TAPE_TOGGLE_MANUAL | TAPE_TOGGLE_PLAY_PAUSE);
2084         }
2085         else if (!tape.fast_forward)            // PLAY -> FFWD
2086         {
2087           tape.fast_forward = TRUE;
2088         }
2089         else if (!tape.warp_forward)            // FFWD -> WARP
2090         {
2091           tape.warp_forward = TRUE;
2092         }
2093         else if (!tape.deactivate_display)      // WARP -> WARP BLIND
2094         {
2095           tape.deactivate_display = TRUE;
2096
2097           TapeDeactivateDisplayOn();
2098         }
2099         else                                    // WARP BLIND -> PLAY
2100         {
2101           tape.fast_forward = FALSE;
2102           tape.warp_forward = FALSE;
2103           tape.deactivate_display = FALSE;
2104
2105           TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING);
2106         }
2107
2108         DrawVideoDisplayCurrentState();
2109       }
2110
2111       break;
2112
2113     case TAPE_CTRL_ID_INSERT_SOLUTION:
2114       InsertSolutionTape();
2115
2116       break;
2117
2118     case TAPE_CTRL_ID_PLAY_SOLUTION:
2119       PlaySolutionTape();
2120
2121       break;
2122
2123     default:
2124       break;
2125   }
2126 }
2127
2128 static void HandleTapeButtons(struct GadgetInfo *gi)
2129 {
2130   HandleTapeButtonsExt(gi->custom_id);
2131 }
2132
2133 void HandleTapeButtonKeys(Key key)
2134 {
2135   boolean eject_button_is_active = TAPE_IS_STOPPED(tape);
2136   boolean extra_button_is_active = !eject_button_is_active;
2137
2138   if (key == setup.shortcut.tape_eject && eject_button_is_active)
2139     HandleTapeButtonsExt(TAPE_CTRL_ID_EJECT);
2140   else if (key == setup.shortcut.tape_extra && extra_button_is_active)
2141     HandleTapeButtonsExt(TAPE_CTRL_ID_EXTRA);
2142   else if (key == setup.shortcut.tape_stop)
2143     HandleTapeButtonsExt(TAPE_CTRL_ID_STOP);
2144   else if (key == setup.shortcut.tape_pause)
2145     HandleTapeButtonsExt(TAPE_CTRL_ID_PAUSE);
2146   else if (key == setup.shortcut.tape_record)
2147     HandleTapeButtonsExt(TAPE_CTRL_ID_RECORD);
2148   else if (key == setup.shortcut.tape_play)
2149     HandleTapeButtonsExt(TAPE_CTRL_ID_PLAY);
2150 }