rnd-20040323-2-src
[rocksndiamonds.git] / src / tape.c
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * tape.c                                                   *
12 ***********************************************************/
13
14 #include "libgame/libgame.h"
15
16 #include "tape.h"
17 #include "init.h"
18 #include "game.h"
19 #include "tools.h"
20 #include "files.h"
21 #include "network.h"
22 #include "cartoons.h"
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
32 #define NUM_TAPE_BUTTONS                        6
33
34 /* values for tape handling */
35 #define TAPE_PAUSE_SECONDS_BEFORE_DEATH         5
36
37 /* forward declaration for internal use */
38 static void HandleTapeButtons(struct GadgetInfo *);
39 static void TapeStopWarpForward();
40
41 static struct GadgetInfo *tape_gadget[NUM_TAPE_BUTTONS];
42
43
44 /* ========================================================================= */
45 /* video tape definitions                                                    */
46 /* ========================================================================= */
47
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
85
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
95
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
105
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
114
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
127
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
132
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))
137
138 #define PG_Y1(y)                        (DOOR_GFX_PAGEY1 + (y))
139 #define PG_Y2(y)                        (DOOR_GFX_PAGEY2 + (y))
140
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         |       \
155                                          VIDEO_STATE_OFF        |       \
156                                          VIDEO_PRESS_OFF)
157
158 #define VIDEO_INFO_ON                   (VIDEO_STATE_DATE_ON    |       \
159                                          VIDEO_STATE_TIME_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          |       \
172                                          VIDEO_STATE_ON         |       \
173                                          VIDEO_PRESS_ON)
174
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)
179
180 #define NUM_TAPE_FUNCTIONS              10
181 #define NUM_TAPE_FUNCTION_PARTS         2
182 #define NUM_TAPE_FUNCTION_STATES        2
183
184
185 /* ========================================================================= */
186 /* video display functions                                                   */
187 /* ========================================================================= */
188
189 void DrawVideoDisplay(unsigned long state, unsigned long value)
190 {
191   int i, j, k;
192   static char *monatsname[12] =
193   {
194     "JAN", "FEB", "MAR", "APR", "MAY", "JUN",
195     "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"
196   };
197   static struct
198   {
199     int gd_x1, gd_y1;
200     int gd_x2, gd_y2;
201     int x, y;
202     int width, height;
203   }
204   video_pos[NUM_TAPE_FUNCTIONS][NUM_TAPE_FUNCTION_PARTS] =
205   {
206     {
207       {
208         PG_X4(VIDEO_PLAY_LABEL_XPOS),   PG_Y2(VIDEO_PLAY_LABEL_YPOS),
209         PG_X3(VIDEO_PLAY_LABEL_XPOS),   PG_Y2(VIDEO_PLAY_LABEL_YPOS),
210         VIDEO_PLAY_LABEL_XPOS,          VIDEO_PLAY_LABEL_YPOS,
211         VIDEO_PLAY_LABEL_XSIZE,         VIDEO_PLAY_LABEL_YSIZE
212       },
213       {
214         PG_X4(VIDEO_PLAY_SYMBOL_XPOS),  PG_Y2(VIDEO_PLAY_SYMBOL_YPOS),
215         PG_X3(VIDEO_PLAY_SYMBOL_XPOS),  PG_Y2(VIDEO_PLAY_SYMBOL_YPOS),
216         VIDEO_PLAY_SYMBOL_XPOS,         VIDEO_PLAY_SYMBOL_YPOS,
217         VIDEO_PLAY_SYMBOL_XSIZE,        VIDEO_PLAY_SYMBOL_YSIZE
218       }
219     },
220     {
221       {
222         PG_X4(VIDEO_REC_LABEL_XPOS),    PG_Y2(VIDEO_REC_LABEL_YPOS),
223         PG_X3(VIDEO_REC_LABEL_XPOS),    PG_Y2(VIDEO_REC_LABEL_YPOS),
224         VIDEO_REC_LABEL_XPOS,           VIDEO_REC_LABEL_YPOS,
225         VIDEO_REC_LABEL_XSIZE,          VIDEO_REC_LABEL_YSIZE
226       },
227       {
228         PG_X4(VIDEO_REC_SYMBOL_XPOS),   PG_Y2(VIDEO_REC_SYMBOL_YPOS),
229         PG_X3(VIDEO_REC_SYMBOL_XPOS),   PG_Y2(VIDEO_REC_SYMBOL_YPOS),
230         VIDEO_REC_SYMBOL_XPOS,          VIDEO_REC_SYMBOL_YPOS,
231         VIDEO_REC_SYMBOL_XSIZE,         VIDEO_REC_SYMBOL_YSIZE
232       }
233     },
234     {
235       {
236         PG_X4(VIDEO_PAUSE_LABEL_XPOS),  PG_Y2(VIDEO_PAUSE_LABEL_YPOS),
237         PG_X3(VIDEO_PAUSE_LABEL_XPOS),  PG_Y2(VIDEO_PAUSE_LABEL_YPOS),
238         VIDEO_PAUSE_LABEL_XPOS,         VIDEO_PAUSE_LABEL_YPOS,
239         VIDEO_PAUSE_LABEL_XSIZE,        VIDEO_PAUSE_LABEL_YSIZE
240       },
241       {
242         PG_X4(VIDEO_PAUSE_SYMBOL_XPOS), PG_Y2(VIDEO_PAUSE_SYMBOL_YPOS),
243         PG_X3(VIDEO_PAUSE_SYMBOL_XPOS), PG_Y2(VIDEO_PAUSE_SYMBOL_YPOS),
244         VIDEO_PAUSE_SYMBOL_XPOS,        VIDEO_PAUSE_SYMBOL_YPOS,
245         VIDEO_PAUSE_SYMBOL_XSIZE,       VIDEO_PAUSE_SYMBOL_YSIZE
246       }
247     },
248     {
249       {
250         PG_X4(VIDEO_DATE_LABEL_XPOS),   PG_Y2(VIDEO_DATE_LABEL_YPOS),
251         PG_X3(VIDEO_DATE_LABEL_XPOS),   PG_Y2(VIDEO_DATE_LABEL_YPOS),
252         VIDEO_DATE_LABEL_XPOS,          VIDEO_DATE_LABEL_YPOS,
253         VIDEO_DATE_LABEL_XSIZE,         VIDEO_DATE_LABEL_YSIZE
254       },
255       {
256         PG_X4(VIDEO_DATE_XPOS),         PG_Y2(VIDEO_DATE_YPOS),
257         PG_X3(VIDEO_DATE_XPOS),         PG_Y2(VIDEO_DATE_YPOS),
258         VIDEO_DATE_XPOS,                VIDEO_DATE_YPOS,
259         VIDEO_DATE_XSIZE,               VIDEO_DATE_YSIZE
260       }
261     },
262     {
263       {
264         -1,                             -1,
265         -1,                             -1,
266         -1,                             -1,
267         -1,                             -1
268       },
269       {
270         PG_X4(VIDEO_TIME_XPOS),         PG_Y2(VIDEO_TIME_YPOS),
271         PG_X3(VIDEO_TIME_XPOS),         PG_Y2(VIDEO_TIME_YPOS),
272         VIDEO_TIME_XPOS,                VIDEO_TIME_YPOS,
273         VIDEO_TIME_XSIZE,               VIDEO_TIME_YSIZE
274       }
275     },
276     {
277       {
278         PG_X6(VIDEO_FFWD_LABEL_XPOS),   PG_Y1(VIDEO_FFWD_LABEL_YPOS),
279         PG_X3(VIDEO_LABEL_XPOS),        PG_Y2(VIDEO_LABEL_YPOS),
280         VIDEO_LABEL_XPOS,               VIDEO_LABEL_YPOS,
281         VIDEO_LABEL_XSIZE,              VIDEO_LABEL_YSIZE
282       },
283       {
284         PG_X6(VIDEO_FFWD_SYMBOL_XPOS),  PG_Y1(VIDEO_FFWD_SYMBOL_YPOS),
285         PG_X3(VIDEO_FFWD_SYMBOL_XPOS),  PG_Y2(VIDEO_SYMBOL_YPOS),
286         VIDEO_SYMBOL_XPOS,              VIDEO_SYMBOL_YPOS,
287         VIDEO_FFWD_SYMBOL_XSIZE,        VIDEO_FFWD_SYMBOL_YSIZE
288       }
289     },
290     {
291       {
292         PG_X6(VIDEO_PBEND_LABEL_XPOS),  PG_Y1(VIDEO_PBEND_LABEL_YPOS),
293         PG_X3(VIDEO_LABEL_XPOS),        PG_Y2(VIDEO_LABEL_YPOS),
294         VIDEO_LABEL_XPOS,               VIDEO_LABEL_YPOS,
295         VIDEO_LABEL_XSIZE,              VIDEO_LABEL_YSIZE
296       },
297       {
298         PG_X6(VIDEO_PBEND_SYMBOL_XPOS), PG_Y1(VIDEO_PBEND_SYMBOL_YPOS),
299         PG_X3(VIDEO_PBEND_SYMBOL_XPOS), PG_Y2(VIDEO_SYMBOL_YPOS),
300         VIDEO_SYMBOL_XPOS,              VIDEO_SYMBOL_YPOS,
301         VIDEO_PBEND_SYMBOL_XSIZE,       VIDEO_PBEND_SYMBOL_YSIZE
302       }
303     },
304     {
305       {
306         PG_X6(VIDEO_WARP_LABEL_XPOS),   PG_Y1(VIDEO_WARP_LABEL_YPOS),
307         PG_X3(VIDEO_LABEL_XPOS),        PG_Y2(VIDEO_LABEL_YPOS),
308         VIDEO_LABEL_XPOS,               VIDEO_LABEL_YPOS,
309         VIDEO_LABEL_XSIZE,              VIDEO_LABEL_YSIZE
310       },
311       {
312         PG_X6(VIDEO_WARP_SYMBOL_XPOS),  PG_Y1(VIDEO_WARP_SYMBOL_YPOS),
313         PG_X3(VIDEO_WARP_SYMBOL_XPOS),  PG_Y2(VIDEO_SYMBOL_YPOS),
314         VIDEO_SYMBOL_XPOS,              VIDEO_SYMBOL_YPOS,
315         VIDEO_WARP_SYMBOL_XSIZE,        VIDEO_WARP_SYMBOL_YSIZE
316       }
317     },
318     {
319       {
320         -1,                             -1,
321         -1,                             -1,
322         -1,                             -1,
323         -1,                             -1
324       },
325       {
326         PG_X6(VIDEO_WARP2_SYMBOL_XPOS), PG_Y1(VIDEO_WARP2_SYMBOL_YPOS),
327         PG_X3(VIDEO_WARP2_SYMBOL_XPOS), PG_Y2(VIDEO_SYMBOL_YPOS),
328         VIDEO_SYMBOL_XPOS,              VIDEO_SYMBOL_YPOS,
329         VIDEO_WARP2_SYMBOL_XSIZE,       VIDEO_WARP2_SYMBOL_YSIZE
330       }
331     },
332     {
333       {
334         -1,                             -1,
335         -1,                             -1,
336         -1,                             -1,
337         -1,                             -1
338       },
339       {
340         PG_X6(VIDEO_1STEP_SYMBOL_XPOS), PG_Y1(VIDEO_1STEP_SYMBOL_YPOS),
341         PG_X3(VIDEO_1STEP_SYMBOL_XPOS), PG_Y2(VIDEO_SYMBOL_YPOS),
342         VIDEO_1STEP_SYMBOL_XPOS,        VIDEO_SYMBOL_YPOS,
343         VIDEO_1STEP_SYMBOL_XSIZE,       VIDEO_1STEP_SYMBOL_YSIZE
344       }
345     },
346   };
347
348 #if 0
349   if (state & VIDEO_STATE_FFWD_OFF)
350   {
351 #if 1
352     int cx = DOOR_GFX_PAGEX3, cy = DOOR_GFX_PAGEY2;
353
354     if (value != VIDEO_DISPLAY_SYMBOL_ONLY)
355       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
356                  cx + VIDEO_LABEL_XPOS,
357                  cy + VIDEO_LABEL_YPOS,
358                  VIDEO_LABEL_XSIZE,
359                  VIDEO_LABEL_YSIZE,
360                  VX + VIDEO_LABEL_XPOS,
361                  VY + VIDEO_LABEL_YPOS);
362
363     cx = DOOR_GFX_PAGEX3;
364     cy = DOOR_GFX_PAGEY2;
365
366     if (value != VIDEO_DISPLAY_LABEL_ONLY)
367       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
368                  cx + VIDEO_FFWD_SYMBOL_XPOS,
369                  cy + VIDEO_SYMBOL_YPOS,
370                  VIDEO_FFWD_SYMBOL_XSIZE,
371                  VIDEO_FFWD_SYMBOL_YSIZE,
372                  VX + VIDEO_SYMBOL_XPOS,
373                  VY + VIDEO_SYMBOL_YPOS);
374 #else
375     int cx = DOOR_GFX_PAGEX3, cy = DOOR_GFX_PAGEY2;
376
377     BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
378                cx + VIDEO_PLAY_SYMBOL_XPOS - 9,
379                cy + VIDEO_PLAY_SYMBOL_YPOS,
380                VIDEO_PLAY_SYMBOL_XSIZE - 2,
381                VIDEO_PLAY_SYMBOL_YSIZE,
382                VX + VIDEO_PLAY_SYMBOL_XPOS - 9,
383                VY + VIDEO_PLAY_SYMBOL_YPOS);
384 #endif
385   }
386 #endif
387
388 #if 0
389   if (state & VIDEO_STATE_PBEND_OFF)
390   {
391 #if 1
392     int cx = DOOR_GFX_PAGEX3, cy = DOOR_GFX_PAGEY2;
393
394     if (value != VIDEO_DISPLAY_SYMBOL_ONLY)
395       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
396                  cx + VIDEO_LABEL_XPOS,
397                  cy + VIDEO_LABEL_YPOS,
398                  VIDEO_LABEL_XSIZE,
399                  VIDEO_LABEL_YSIZE,
400                  VX + VIDEO_LABEL_XPOS,
401                  VY + VIDEO_LABEL_YPOS);
402
403     cx = DOOR_GFX_PAGEX3;
404     cy = DOOR_GFX_PAGEY2;
405
406     if (value != VIDEO_DISPLAY_LABEL_ONLY)
407       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
408                  cx + VIDEO_PBEND_SYMBOL_XPOS,
409                  cy + VIDEO_SYMBOL_YPOS,
410                  VIDEO_PBEND_SYMBOL_XSIZE,
411                  VIDEO_PBEND_SYMBOL_YSIZE,
412                  VX + VIDEO_PBEND_SYMBOL_XPOS,
413                  VY + VIDEO_SYMBOL_YPOS);
414 #else
415     int cx = DOOR_GFX_PAGEX3, cy = DOOR_GFX_PAGEY2;
416
417     BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
418                cx + VIDEO_REC_LABEL_XPOS,
419                cy + VIDEO_REC_LABEL_YPOS,
420                VIDEO_PBEND_LABEL_XSIZE,
421                VIDEO_PBEND_LABEL_YSIZE,
422                VX + VIDEO_REC_LABEL_XPOS,
423                VY + VIDEO_REC_LABEL_YPOS);
424 #endif
425   }
426 #endif
427
428 #if 0
429   if (state & VIDEO_STATE_1STEP_OFF)
430   {
431     int cx = DOOR_GFX_PAGEX3, cy = DOOR_GFX_PAGEY2;
432
433     if (value != VIDEO_DISPLAY_LABEL_ONLY)
434       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
435                  cx + VIDEO_1STEP_SYMBOL_XPOS,
436                  cy + VIDEO_SYMBOL_YPOS,
437                  VIDEO_1STEP_SYMBOL_XSIZE,
438                  VIDEO_1STEP_SYMBOL_YSIZE,
439                  VX + VIDEO_1STEP_SYMBOL_XPOS,
440                  VY + VIDEO_SYMBOL_YPOS);
441   }
442 #endif
443
444   for (k = 0; k < NUM_TAPE_FUNCTION_STATES; k++)        /* on or off states */
445   {
446     for (i = 0; i < NUM_TAPE_FUNCTIONS; i++)            /* record, play, ... */
447     {
448       for (j = 0; j < NUM_TAPE_FUNCTION_PARTS; j++)     /* label or symbol */
449       {
450         if (state & (1 << (i * 2 + k)))
451         {
452           int gd_x, gd_y;
453           int skip_value =
454             (j == 0 ? VIDEO_DISPLAY_SYMBOL_ONLY : VIDEO_DISPLAY_LABEL_ONLY);
455
456           if (k == 1)           /* on */
457           {
458             gd_x = video_pos[i][j].gd_x1;
459             gd_y = video_pos[i][j].gd_y1;
460           }
461           else                  /* off */
462           {
463             gd_x = video_pos[i][j].gd_x2;
464             gd_y = video_pos[i][j].gd_y2;
465           }
466
467           if (video_pos[i][j].x != -1 && value != skip_value)
468             BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
469                        gd_x, gd_y,
470                        video_pos[i][j].width,
471                        video_pos[i][j].height,
472                        VX + video_pos[i][j].x,
473                        VY + video_pos[i][j].y);
474         }
475       }
476     }
477   }
478
479 #if 0
480   if (state & VIDEO_STATE_FFWD_ON)
481   {
482 #if 1
483     int cx = DOOR_GFX_PAGEX6, cy = DOOR_GFX_PAGEY1;
484
485     if (value != VIDEO_DISPLAY_SYMBOL_ONLY)
486       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
487                  cx + VIDEO_FFWD_LABEL_XPOS,
488                  cy + VIDEO_FFWD_LABEL_YPOS,
489                  VIDEO_LABEL_XSIZE,
490                  VIDEO_LABEL_YSIZE,
491                  VX + VIDEO_LABEL_XPOS,
492                  VY + VIDEO_LABEL_YPOS);
493
494     cx = DOOR_GFX_PAGEX6;
495     cy = DOOR_GFX_PAGEY1;
496
497     if (value != VIDEO_DISPLAY_LABEL_ONLY)
498       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
499                  cx + VIDEO_FFWD_SYMBOL_XPOS,
500                  cy + VIDEO_FFWD_SYMBOL_YPOS,
501                  VIDEO_FFWD_SYMBOL_XSIZE,
502                  VIDEO_FFWD_SYMBOL_YSIZE,
503                  VX + VIDEO_SYMBOL_XPOS,
504                  VY + VIDEO_SYMBOL_YPOS);
505 #else
506     int cx = DOOR_GFX_PAGEX4, cy = DOOR_GFX_PAGEY2;
507
508     BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
509                cx + VIDEO_PLAY_SYMBOL_XPOS,
510                cy + VIDEO_PLAY_SYMBOL_YPOS,
511                VIDEO_PLAY_SYMBOL_XSIZE - 2,
512                VIDEO_PLAY_SYMBOL_YSIZE,
513                VX + VIDEO_PLAY_SYMBOL_XPOS - 9,
514                VY + VIDEO_PLAY_SYMBOL_YPOS);
515 #endif
516   }
517 #endif
518
519 #if 0
520   if (state & VIDEO_STATE_PBEND_ON)
521   {
522 #if 1
523     int cx = DOOR_GFX_PAGEX6, cy = DOOR_GFX_PAGEY1;
524
525     if (value != VIDEO_DISPLAY_SYMBOL_ONLY)
526       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
527                  cx + VIDEO_PBEND_LABEL_XPOS,
528                  cy + VIDEO_PBEND_LABEL_YPOS,
529                  VIDEO_LABEL_XSIZE,
530                  VIDEO_LABEL_YSIZE,
531                  VX + VIDEO_LABEL_XPOS,
532                  VY + VIDEO_LABEL_YPOS);
533
534     cx = DOOR_GFX_PAGEX6;
535     cy = DOOR_GFX_PAGEY1;
536
537     if (value != VIDEO_DISPLAY_LABEL_ONLY)
538       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
539                  cx + VIDEO_PBEND_SYMBOL_XPOS,
540                  cy + VIDEO_PBEND_SYMBOL_YPOS,
541                  VIDEO_PBEND_SYMBOL_XSIZE,
542                  VIDEO_PBEND_SYMBOL_YSIZE,
543                  VX + VIDEO_SYMBOL_XPOS,
544                  VY + VIDEO_SYMBOL_YPOS);
545 #else
546     int cx = DOOR_GFX_PAGEX6, cy = DOOR_GFX_PAGEY1;
547
548     BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
549                cx + VIDEO_PBEND_LABEL_XPOS,
550                cy + VIDEO_PBEND_LABEL_YPOS,
551                VIDEO_PBEND_LABEL_XSIZE,
552                VIDEO_PBEND_LABEL_YSIZE,
553                VX + VIDEO_REC_LABEL_XPOS,
554                VY + VIDEO_REC_LABEL_YPOS);
555 #endif
556   }
557 #endif
558
559 #if 0
560   if (state & VIDEO_STATE_1STEP_ON)
561   {
562     int cx = DOOR_GFX_PAGEX6, cy = DOOR_GFX_PAGEY1;
563
564     if (value != VIDEO_DISPLAY_LABEL_ONLY)
565       BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
566                  cx + VIDEO_1STEP_SYMBOL_XPOS,
567                  cy + VIDEO_1STEP_SYMBOL_YPOS,
568                  VIDEO_1STEP_SYMBOL_XSIZE,
569                  VIDEO_1STEP_SYMBOL_YSIZE,
570                  VX + VIDEO_1STEP_SYMBOL_XPOS,
571                  VY + VIDEO_SYMBOL_YPOS);
572   }
573 #endif
574
575   if (state & VIDEO_STATE_DATE_ON)
576   {
577     int tag = value % 100;
578     int monat = (value/100) % 100;
579     int jahr = (value/10000);
580
581     DrawText(VX + VIDEO_DATE_XPOS, VY + VIDEO_DATE_YPOS,
582              int2str(tag, 2), FONT_TAPE_RECORDER);
583     DrawText(VX + VIDEO_DATE_XPOS + 27, VY + VIDEO_DATE_YPOS,
584              monatsname[monat], FONT_TAPE_RECORDER);
585     DrawText(VX + VIDEO_DATE_XPOS + 64, VY + VIDEO_DATE_YPOS,
586              int2str(jahr, 2), FONT_TAPE_RECORDER);
587   }
588
589   if (state & VIDEO_STATE_TIME_ON)
590   {
591     int min = value / 60;
592     int sec = value % 60;
593
594     DrawText(VX + VIDEO_TIME_XPOS, VY + VIDEO_TIME_YPOS,
595              int2str(min, 2), FONT_TAPE_RECORDER);
596     DrawText(VX + VIDEO_TIME_XPOS + 27, VY + VIDEO_TIME_YPOS,
597              int2str(sec, 2), FONT_TAPE_RECORDER);
598   }
599
600 #if 1
601   redraw_mask |= REDRAW_DOOR_2;
602 #else
603   if (state & VIDEO_STATE_DATE)
604     redraw_mask |= REDRAW_VIDEO_1;
605   if ((state & ~VIDEO_STATE_DATE) & VIDEO_STATE)
606     redraw_mask |= REDRAW_VIDEO_2;
607   if (state & VIDEO_PRESS)
608     redraw_mask |= REDRAW_VIDEO_3;
609 #endif
610 }
611
612 void DrawCompleteVideoDisplay()
613 {
614   BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
615              DOOR_GFX_PAGEX3, DOOR_GFX_PAGEY2,
616              gfx.vxsize, gfx.vysize, gfx.vx, gfx.vy);
617   BlitBitmap(graphic_info[IMG_GLOBAL_DOOR].bitmap, drawto,
618              DOOR_GFX_PAGEX4 + VIDEO_CONTROL_XPOS,
619              DOOR_GFX_PAGEY2 + VIDEO_CONTROL_YPOS,
620              VIDEO_CONTROL_XSIZE, VIDEO_CONTROL_YSIZE,
621              gfx.vx + VIDEO_CONTROL_XPOS, gfx.vy + VIDEO_CONTROL_YPOS);
622
623   DrawVideoDisplay(VIDEO_ALL_OFF, 0);
624   if (tape.date && tape.length)
625   {
626     DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
627     DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
628   }
629
630   BlitBitmap(drawto, bitmap_db_door, gfx.vx, gfx.vy, gfx.vxsize, gfx.vysize,
631              DOOR_GFX_PAGEX1, DOOR_GFX_PAGEY2);
632 }
633
634 void TapeDeactivateDisplayOn()
635 {
636   SetDrawDeactivationMask(REDRAW_FIELD);
637   audio.sound_deactivated = TRUE;
638 }
639
640 void TapeDeactivateDisplayOff(boolean redraw_display)
641 {
642   SetDrawDeactivationMask(REDRAW_NONE);
643   audio.sound_deactivated = FALSE;
644
645   if (redraw_display)
646   {
647     RedrawPlayfield(TRUE, 0,0,0,0);
648     DrawGameDoorValues();
649   }
650 }
651
652
653 /* ========================================================================= */
654 /* tape control functions                                                    */
655 /* ========================================================================= */
656
657 void TapeErase()
658 {
659   time_t epoch_seconds = time(NULL);
660   struct tm *time = localtime(&epoch_seconds);
661   int i;
662
663   tape.length = 0;
664   tape.counter = 0;
665
666   if (leveldir_current)
667     setString(&tape.level_identifier, leveldir_current->identifier);
668
669   tape.level_nr = level_nr;
670   tape.pos[tape.counter].delay = 0;
671   tape.changed = TRUE;
672
673   tape.date = 10000*(time->tm_year % 100) + 100*time->tm_mon + time->tm_mday;
674   tape.random_seed = InitRND(NEW_RANDOMIZE);
675
676   tape.file_version = FILE_VERSION_ACTUAL;
677   tape.game_version = GAME_VERSION_ACTUAL;
678   tape.engine_version = level.game_version;
679
680 #if 0
681   printf("::: tape.engine_version = level.game_version = %d \n",
682          level.game_version);
683 #endif
684
685   for (i = 0; i < MAX_PLAYERS; i++)
686     tape.player_participates[i] = FALSE;
687 }
688
689 static void TapeRewind()
690 {
691   tape.counter = 0;
692   tape.delay_played = 0;
693   tape.pause_before_death = FALSE;
694   tape.recording = FALSE;
695   tape.playing = FALSE;
696   tape.fast_forward = FALSE;
697   tape.warp_forward = FALSE;
698   tape.deactivate_display = FALSE;
699   tape.auto_play = (global.autoplay_leveldir != NULL);
700   tape.auto_play_level_solved = FALSE;
701   tape.quick_resume = FALSE;
702   tape.single_step = FALSE;
703
704   InitRND(tape.random_seed);
705 }
706
707 void TapeStartRecording()
708 {
709   if (!TAPE_IS_STOPPED(tape))
710     TapeStop();
711
712   TapeErase();
713   TapeRewind();
714
715   tape.recording = TRUE;
716
717   DrawVideoDisplay(VIDEO_STATE_REC_ON, 0);
718   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
719   DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
720   MapTapeWarpButton();
721
722   SetDrawDeactivationMask(REDRAW_NONE);
723   audio.sound_deactivated = FALSE;
724 }
725
726 static void TapeStartGameRecording()
727 {
728   TapeStartRecording();
729
730 #if defined(PLATFORM_UNIX)
731   if (options.network)
732     SendToServer_StartPlaying();
733   else
734 #endif
735   {
736     game_status = GAME_MODE_PLAYING;
737     StopAnimation();
738     InitGame();
739   }
740 }
741
742 static void TapeAppendRecording()
743 {
744   if (!tape.playing || !tape.pausing)
745     return;
746
747   tape.pos[tape.counter].delay = tape.delay_played;
748   tape.playing = FALSE;
749   tape.recording = TRUE;
750   tape.changed = TRUE;
751
752   DrawVideoDisplay(VIDEO_STATE_PLAY_OFF | VIDEO_STATE_REC_ON,0);
753 }
754
755 void TapeHaltRecording()
756 {
757   if (!tape.recording)
758     return;
759
760   tape.counter++;
761   tape.pos[tape.counter].delay = 0;
762
763   tape.length = tape.counter;
764   tape.length_seconds = GetTapeLength();
765 }
766
767 void TapeStopRecording()
768 {
769   if (!tape.recording)
770     return;
771
772   TapeHaltRecording();
773
774   tape.recording = FALSE;
775   tape.pausing = FALSE;
776
777   DrawVideoDisplay(VIDEO_STATE_REC_OFF, 0);
778   MapTapeEjectButton();
779 }
780
781 void TapeRecordAction(byte action[MAX_PLAYERS])
782 {
783   int i;
784
785 #if 1
786   if (!tape.recording)          /* record action even when tape is paused! */
787     return;
788 #else
789   if (!tape.recording || tape.pausing)
790     return;
791 #endif
792
793   if (tape.counter >= MAX_TAPELEN - 1)
794   {
795     TapeStopRecording();
796     return;
797   }
798
799 #if 0
800   printf("::: %05d: recording action: %d\n", FrameCounter, action[0]);
801 #endif
802
803   if (tape.pos[tape.counter].delay > 0)         /* already stored action */
804   {
805     boolean changed_events = FALSE;
806
807     for (i = 0; i < MAX_PLAYERS; i++)
808       if (tape.pos[tape.counter].action[i] != action[i])
809         changed_events = TRUE;
810
811     if (changed_events || tape.pos[tape.counter].delay >= 255)
812     {
813       tape.counter++;
814       tape.pos[tape.counter].delay = 0;
815     }
816     else
817       tape.pos[tape.counter].delay++;
818   }
819
820   if (tape.pos[tape.counter].delay == 0)        /* store new action */
821   {
822
823 #if 0
824     printf("::: %05d: new sequence\n", FrameCounter);
825 #endif
826
827     for (i = 0; i < MAX_PLAYERS; i++)
828       tape.pos[tape.counter].action[i] = action[i];
829
830     tape.pos[tape.counter].delay++;
831   }
832 }
833
834 void TapeTogglePause(boolean toggle_manual)
835 {
836   int state = 0;
837
838 #if 0
839   if (!tape.recording && !tape.playing)
840     return;
841 #endif
842
843   if (tape.pause_before_death)
844     state |= VIDEO_STATE_PBEND_OFF;
845   else if (tape.fast_forward)
846     state |= VIDEO_STATE_FFWD_OFF;
847
848   tape.pausing = !tape.pausing;
849   tape.fast_forward = FALSE;
850   tape.pause_before_death = FALSE;
851
852   if (tape.single_step && toggle_manual)
853     tape.single_step = FALSE;
854
855   state |= (tape.pausing ? VIDEO_STATE_PAUSE_ON : VIDEO_STATE_PAUSE_OFF);
856   if (tape.playing)
857     state |= VIDEO_STATE_PLAY_ON;
858   else
859     state |= (tape.single_step ? VIDEO_STATE_1STEP_ON : VIDEO_STATE_1STEP_OFF);
860
861   DrawVideoDisplay(state, 0);
862
863 #if 0
864   if (tape.pausing)
865     DrawVideoDisplay(VIDEO_STATE_PAUSE_ON, 0);
866 #endif
867
868   if (tape.warp_forward)
869   {
870     TapeStopWarpForward();
871
872     if (tape.quick_resume)
873     {
874       tape.quick_resume = FALSE;
875
876       TapeAppendRecording();
877 #if 0
878       TapeTogglePause(toggle_manual);
879 #endif
880     }
881   }
882 }
883
884 void TapeStartPlaying()
885 {
886   if (TAPE_IS_EMPTY(tape))
887     return;
888
889   if (!TAPE_IS_STOPPED(tape))
890     TapeStop();
891
892   TapeRewind();
893
894   tape.playing = TRUE;
895
896   DrawVideoDisplay(VIDEO_STATE_PLAY_ON, 0);
897   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
898   DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
899   MapTapeWarpButton();
900
901   SetDrawDeactivationMask(REDRAW_NONE);
902   audio.sound_deactivated = FALSE;
903 }
904
905 static void TapeStartGamePlaying()
906 {
907   TapeStartPlaying();
908
909   game_status = GAME_MODE_PLAYING;
910   StopAnimation();
911   InitGame();
912 }
913
914 void TapeStopPlaying()
915 {
916   if (!tape.playing)
917     return;
918
919   tape.playing = FALSE;
920   tape.pausing = FALSE;
921
922   if (tape.warp_forward)
923     TapeStopWarpForward();
924
925   DrawVideoDisplay(VIDEO_STATE_PLAY_OFF, 0);
926   MapTapeEjectButton();
927 }
928
929 byte *TapePlayAction()
930 {
931   static byte action[MAX_PLAYERS];
932   int i;
933
934   if (!tape.playing || tape.pausing)
935     return NULL;
936
937   if (tape.pause_before_death)  /* STOP 10s BEFORE PLAYER GETS KILLED... */
938   {
939     if (!(FrameCounter % 20))
940     {
941       if ((FrameCounter / 20) % 2)
942         DrawVideoDisplay(VIDEO_STATE_PBEND_ON, VIDEO_DISPLAY_LABEL_ONLY);
943       else
944         DrawVideoDisplay(VIDEO_STATE_PBEND_OFF, VIDEO_DISPLAY_LABEL_ONLY);
945     }
946
947     if (tape.warp_forward)
948     {
949       if (tape.deactivate_display)
950         DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
951       else
952         DrawVideoDisplay(VIDEO_STATE_WARP2_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
953     }
954
955     if (TimePlayed > tape.length_seconds - TAPE_PAUSE_SECONDS_BEFORE_DEATH)
956     {
957       TapeTogglePause(TAPE_TOGGLE_MANUAL);
958       return NULL;
959     }
960   }
961   else if (tape.fast_forward)
962   {
963     if ((FrameCounter / 20) % 2)
964       DrawVideoDisplay(VIDEO_STATE_FFWD_ON, VIDEO_DISPLAY_LABEL_ONLY);
965     else
966       DrawVideoDisplay(VIDEO_STATE_FFWD_OFF, VIDEO_DISPLAY_LABEL_ONLY);
967
968     if (tape.warp_forward)
969     {
970       if (tape.deactivate_display)
971         DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
972       else
973         DrawVideoDisplay(VIDEO_STATE_WARP2_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
974     }
975   }
976 #if 0
977   /* !!! this makes things much slower !!! */
978   else if (tape.warp_forward)
979   {
980     if ((FrameCounter / 20) % 2)
981       DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_LABEL_ONLY);
982     else
983       DrawVideoDisplay(VIDEO_STATE_WARP_OFF, VIDEO_DISPLAY_LABEL_ONLY);
984
985     DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
986   }
987 #endif
988
989   if (tape.counter >= tape.length)      /* end of tape reached */
990   {
991     if (tape.warp_forward && !tape.auto_play)
992       TapeTogglePause(TAPE_TOGGLE_MANUAL);
993     else
994       TapeStop();
995
996     return NULL;
997   }
998
999   for (i = 0; i < MAX_PLAYERS; i++)
1000     action[i] = tape.pos[tape.counter].action[i];
1001
1002   tape.delay_played++;
1003   if (tape.delay_played >= tape.pos[tape.counter].delay)
1004   {
1005     tape.counter++;
1006     tape.delay_played = 0;
1007   }
1008
1009 #if 0
1010   printf("::: %05d: replaying action: %d\n", FrameCounter, action[0]);
1011 #endif
1012
1013   return action;
1014 }
1015
1016 void TapeStop()
1017 {
1018 #if 0
1019   if (tape.recording)
1020     printf("::: stopped recording: %d\n", FrameCounter);
1021   else if (tape.playing)
1022     printf("::: stopped playing:   %d\n\n", FrameCounter);
1023 #endif
1024
1025   TapeStopRecording();
1026   TapeStopPlaying();
1027
1028   DrawVideoDisplay(VIDEO_STATE_OFF, 0);
1029
1030   if (tape.date && tape.length)
1031   {
1032     DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
1033     DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
1034   }
1035
1036 #if 0
1037   if (tape.auto_play)
1038     AutoPlayTape();     /* continue automatically playing next tape */
1039 #endif
1040 }
1041
1042 unsigned int GetTapeLength()
1043 {
1044   unsigned int tape_length = 0;
1045   int i;
1046
1047   if (TAPE_IS_EMPTY(tape))
1048     return(0);
1049
1050   for (i = 0; i < tape.length; i++)
1051     tape_length += tape.pos[i].delay;
1052
1053   return(tape_length * GAME_FRAME_DELAY / 1000);
1054 }
1055
1056 static void TapeStartWarpForward()
1057 {
1058   tape.warp_forward = TRUE;
1059
1060 #if 1
1061   if (!tape.fast_forward && !tape.pause_before_death)
1062   {
1063     tape.pausing = FALSE;
1064     tape.deactivate_display = TRUE;
1065
1066     TapeDeactivateDisplayOn();
1067   }
1068 #else
1069   if (!tape.fast_forward || tape.pause_before_death)
1070   {
1071     tape.pausing = FALSE;
1072     tape.deactivate_display = TRUE;
1073
1074     TapeDeactivateDisplayOn();
1075   }
1076 #endif
1077
1078   if (tape.fast_forward || tape.pause_before_death)
1079     DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
1080   else
1081     DrawVideoDisplay(VIDEO_STATE_WARP_ON, 0);
1082 }
1083
1084 static void TapeStopWarpForward()
1085 {
1086   int state = (tape.pausing ? VIDEO_STATE_PAUSE_ON : VIDEO_STATE_PAUSE_OFF);
1087
1088   tape.warp_forward = FALSE;
1089   tape.deactivate_display = FALSE;
1090
1091   TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING);
1092
1093 #if 0
1094 #if 1
1095   if (game_status == GAME_MODE_PLAYING)
1096 #endif
1097   {
1098     RedrawPlayfield(TRUE, 0,0,0,0);
1099     DrawGameDoorValues();
1100   }
1101 #endif
1102
1103   if (tape.pause_before_death)
1104     state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_PBEND_ON;
1105   else if (tape.fast_forward)
1106     state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_FFWD_ON;
1107   else
1108     state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_PLAY_ON;
1109
1110   DrawVideoDisplay(state, 0);
1111 }
1112
1113 static void TapeSingleStep()
1114 {
1115   if (options.network)
1116     return;
1117
1118   if (!tape.pausing)
1119     TapeTogglePause(TAPE_TOGGLE_MANUAL);
1120
1121   tape.single_step = !tape.single_step;
1122
1123   DrawVideoDisplay((tape.single_step ? VIDEO_STATE_1STEP_ON :
1124                     VIDEO_STATE_1STEP_OFF), 0);
1125 }
1126
1127 void TapeQuickSave()
1128 {
1129   if (game_status == GAME_MODE_PLAYING)
1130   {
1131     if (tape.recording)
1132       TapeHaltRecording();      /* prepare tape for saving on-the-fly */
1133
1134     if (TAPE_IS_EMPTY(tape))
1135       Request("No tape that can be saved !", REQ_CONFIRM);
1136     else
1137       SaveTape(tape.level_nr);
1138   }
1139   else if (game_status == GAME_MODE_MAIN)
1140     Request("No game that can be saved !", REQ_CONFIRM);
1141 }
1142
1143 void TapeQuickLoad()
1144 {
1145   if (game_status == GAME_MODE_PLAYING || game_status == GAME_MODE_MAIN)
1146   {
1147     TapeStop();
1148     TapeErase();
1149
1150     LoadTape(level_nr);
1151     if (!TAPE_IS_EMPTY(tape))
1152     {
1153       TapeStartGamePlaying();
1154       TapeStartWarpForward();
1155
1156       tape.quick_resume = TRUE;
1157     }
1158     else
1159       Request("No tape for this level !", REQ_CONFIRM);
1160   }
1161 }
1162
1163 void InsertSolutionTape()
1164 {
1165   if (!TAPE_IS_EMPTY(tape))
1166     return;
1167
1168   LoadSolutionTape(level_nr);
1169
1170   if (TAPE_IS_EMPTY(tape))
1171     Request("No solution tape for this level !", REQ_CONFIRM);
1172
1173   DrawCompleteVideoDisplay();
1174 }
1175
1176
1177 /* ------------------------------------------------------------------------- *
1178  * tape autoplay functions
1179  * ------------------------------------------------------------------------- */
1180
1181 #define MAX_NUM_AUTOPLAY_LEVELS         1000
1182
1183 void AutoPlayTape()
1184 {
1185   static LevelDirTree *autoplay_leveldir = NULL;
1186   static boolean autoplay_initialized = FALSE;
1187   static int autoplay_level_nr = -1;
1188   static int num_levels_played = 0;
1189   static int num_levels_solved = 0;
1190   static boolean levels_failed[MAX_NUM_AUTOPLAY_LEVELS];
1191   int i;
1192
1193   if (autoplay_initialized)
1194   {
1195     /* just finished auto-playing tape */
1196     printf("%s.\n", tape.auto_play_level_solved ? "solved" : "NOT SOLVED");
1197
1198     num_levels_played++;
1199     if (tape.auto_play_level_solved)
1200       num_levels_solved++;
1201     else if (level_nr >= 0 && level_nr < MAX_NUM_AUTOPLAY_LEVELS)
1202       levels_failed[level_nr] = TRUE;
1203   }
1204   else
1205   {
1206     DrawCompleteVideoDisplay();
1207     audio.sound_enabled = FALSE;
1208
1209     autoplay_leveldir = getTreeInfoFromIdentifier(leveldir_first,
1210                                                   global.autoplay_leveldir);
1211
1212     if (autoplay_leveldir == NULL)
1213       Error(ERR_EXIT, "no such level identifier: '%s'",
1214             global.autoplay_leveldir);
1215
1216     leveldir_current = autoplay_leveldir;
1217
1218     if (global.autoplay_level_nr != -1)
1219     {
1220       autoplay_leveldir->first_level = global.autoplay_level_nr;
1221       autoplay_leveldir->last_level  = global.autoplay_level_nr;
1222     }
1223
1224     autoplay_level_nr = autoplay_leveldir->first_level;
1225
1226     printf_line("=", 79);
1227     printf("Automatically playing level tapes\n");
1228     printf_line("-", 79);
1229     printf("Level series identifier: '%s'\n", autoplay_leveldir->identifier);
1230     printf("Level series name:       '%s'\n", autoplay_leveldir->name);
1231     printf("Level series author:     '%s'\n", autoplay_leveldir->author);
1232     printf("Number of levels:        %d\n",   autoplay_leveldir->levels);
1233     printf_line("=", 79);
1234     printf("\n");
1235
1236     for (i = 0; i < MAX_NUM_AUTOPLAY_LEVELS; i++)
1237       levels_failed[i] = FALSE;
1238
1239     autoplay_initialized = TRUE;
1240   }
1241
1242   while (autoplay_level_nr <= autoplay_leveldir->last_level)
1243   {
1244     level_nr = autoplay_level_nr++;
1245
1246     TapeErase();
1247
1248     printf("Level %03d: ", level_nr);
1249
1250     LoadLevel(level_nr);
1251     if (level.no_valid_file)
1252     {
1253       printf("(no level)\n");
1254       continue;
1255     }
1256
1257     LoadSolutionTape(level_nr);
1258 #if 1
1259     if (tape.no_valid_file)
1260 #else
1261     if (TAPE_IS_EMPTY(tape))
1262 #endif
1263     {
1264       printf("(no tape)\n");
1265       continue;
1266     }
1267
1268     printf("playing tape ... ");
1269
1270     TapeStartGamePlaying();
1271     TapeStartWarpForward();
1272
1273     return;
1274   }
1275
1276   printf("\n");
1277   printf_line("=", 79);
1278   printf("Number of levels played: %d\n", num_levels_played);
1279   printf("Number of levels solved: %d (%d%%)\n", num_levels_solved,
1280          (num_levels_played ? num_levels_solved * 100 / num_levels_played :0));
1281   printf_line("-", 79);
1282   printf("Summary (for automatic parsing by scripts):\n");
1283   printf("LEVELDIR '%s', SOLVED %d/%d (%d%%)",
1284          autoplay_leveldir->identifier, num_levels_solved, num_levels_played,
1285          (num_levels_played ? num_levels_solved * 100 / num_levels_played :0));
1286   if (num_levels_played != num_levels_solved)
1287   {
1288     printf(", FAILED:");
1289     for (i = 0; i < MAX_NUM_AUTOPLAY_LEVELS; i++)
1290       if (levels_failed[i])
1291         printf(" %03d", i);
1292   }
1293   printf("\n");
1294   printf_line("=", 79);
1295
1296   CloseAllAndExit(0);
1297 }
1298
1299
1300 /* ---------- new tape button stuff ---------------------------------------- */
1301
1302 /* graphic position values for tape buttons */
1303 #define TAPE_BUTTON_XSIZE       18
1304 #define TAPE_BUTTON_YSIZE       18
1305 #define TAPE_BUTTON_XPOS        5
1306 #define TAPE_BUTTON_YPOS        77
1307
1308 #define TAPE_BUTTON_EJECT_XPOS  (TAPE_BUTTON_XPOS + 0 * TAPE_BUTTON_XSIZE)
1309 #define TAPE_BUTTON_EXTRA_XPOS  (TAPE_BUTTON_XPOS + 0 * TAPE_BUTTON_XSIZE)
1310 #define TAPE_BUTTON_STOP_XPOS   (TAPE_BUTTON_XPOS + 1 * TAPE_BUTTON_XSIZE)
1311 #define TAPE_BUTTON_PAUSE_XPOS  (TAPE_BUTTON_XPOS + 2 * TAPE_BUTTON_XSIZE)
1312 #define TAPE_BUTTON_RECORD_XPOS (TAPE_BUTTON_XPOS + 3 * TAPE_BUTTON_XSIZE)
1313 #define TAPE_BUTTON_PLAY_XPOS   (TAPE_BUTTON_XPOS + 4 * TAPE_BUTTON_XSIZE)
1314
1315 static struct
1316 {
1317   int x, y;
1318   int gadget_id;
1319   char *infotext;
1320 } tapebutton_info[NUM_TAPE_BUTTONS] =
1321 {
1322   {
1323     TAPE_BUTTON_EJECT_XPOS,     TAPE_BUTTON_YPOS,
1324     TAPE_CTRL_ID_EJECT,
1325     "eject tape"
1326   },
1327   {
1328     TAPE_BUTTON_EXTRA_XPOS,     TAPE_BUTTON_YPOS,
1329     TAPE_CTRL_ID_EXTRA,
1330     "extra functions"
1331   },
1332   {
1333     TAPE_BUTTON_STOP_XPOS,      TAPE_BUTTON_YPOS,
1334     TAPE_CTRL_ID_STOP,
1335     "stop tape"
1336   },
1337   {
1338     TAPE_BUTTON_PAUSE_XPOS,     TAPE_BUTTON_YPOS,
1339     TAPE_CTRL_ID_PAUSE,
1340     "pause tape"
1341   },
1342   {
1343     TAPE_BUTTON_RECORD_XPOS,    TAPE_BUTTON_YPOS,
1344     TAPE_CTRL_ID_RECORD,
1345     "record tape"
1346   },
1347   {
1348     TAPE_BUTTON_PLAY_XPOS,      TAPE_BUTTON_YPOS,
1349     TAPE_CTRL_ID_PLAY,
1350     "play tape"
1351   }
1352 };
1353
1354 void CreateTapeButtons()
1355 {
1356   int i;
1357
1358   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1359   {
1360     Bitmap *gd_bitmap = graphic_info[IMG_GLOBAL_DOOR].bitmap;
1361     struct GadgetInfo *gi;
1362     int gd_xoffset, gd_yoffset;
1363     int gd_x1, gd_x2, gd_y;
1364     int id = i;
1365
1366     gd_xoffset = tapebutton_info[i].x;
1367     gd_yoffset = tapebutton_info[i].y;
1368     gd_x1 = DOOR_GFX_PAGEX4 + gd_xoffset;
1369     gd_x2 = DOOR_GFX_PAGEX3 + gd_xoffset;
1370     gd_y  = DOOR_GFX_PAGEY2 + gd_yoffset;
1371
1372     if (i == TAPE_CTRL_ID_EXTRA)
1373     {
1374       gd_x1 = DOOR_GFX_PAGEX6 + gd_xoffset;
1375       gd_x2 = DOOR_GFX_PAGEX5 + gd_xoffset;
1376     }
1377
1378     gi = CreateGadget(GDI_CUSTOM_ID, id,
1379                       GDI_INFO_TEXT, tapebutton_info[i].infotext,
1380                       GDI_X, VX + gd_xoffset,
1381                       GDI_Y, VY + gd_yoffset,
1382                       GDI_WIDTH, TAPE_BUTTON_XSIZE,
1383                       GDI_HEIGHT, TAPE_BUTTON_YSIZE,
1384                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
1385                       GDI_STATE, GD_BUTTON_UNPRESSED,
1386                       GDI_DESIGN_UNPRESSED, gd_bitmap, gd_x1, gd_y,
1387                       GDI_DESIGN_PRESSED, gd_bitmap, gd_x2, gd_y,
1388                       GDI_EVENT_MASK, GD_EVENT_RELEASED,
1389                       GDI_CALLBACK_ACTION, HandleTapeButtons,
1390                       GDI_END);
1391
1392     if (gi == NULL)
1393       Error(ERR_EXIT, "cannot create gadget");
1394
1395     tape_gadget[id] = gi;
1396   }
1397 }
1398
1399 void FreeTapeButtons()
1400 {
1401   int i;
1402
1403   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1404     FreeGadget(tape_gadget[i]);
1405 }
1406
1407 void MapTapeEjectButton()
1408 {
1409   UnmapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1410   MapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1411 }
1412
1413 void MapTapeWarpButton()
1414 {
1415   UnmapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1416   MapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1417 }
1418
1419 void MapTapeButtons()
1420 {
1421   int i;
1422
1423   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1424     if (i != TAPE_CTRL_ID_EXTRA)
1425       MapGadget(tape_gadget[i]);
1426
1427   if (tape.recording || tape.playing)
1428     MapTapeWarpButton();
1429 }
1430
1431 void UnmapTapeButtons()
1432 {
1433   int i;
1434
1435   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1436     UnmapGadget(tape_gadget[i]);
1437 }
1438
1439 static void HandleTapeButtons(struct GadgetInfo *gi)
1440 {
1441   int id = gi->custom_id;
1442
1443   if (game_status != GAME_MODE_MAIN && game_status != GAME_MODE_PLAYING)
1444     return;
1445
1446   switch (id)
1447   {
1448     case TAPE_CTRL_ID_EJECT:
1449       TapeStop();
1450       if (TAPE_IS_EMPTY(tape))
1451       {
1452         LoadTape(level_nr);
1453         if (TAPE_IS_EMPTY(tape))
1454           Request("No tape for this level !", REQ_CONFIRM);
1455       }
1456       else
1457       {
1458         if (tape.changed)
1459           SaveTape(tape.level_nr);
1460         TapeErase();
1461       }
1462       DrawCompleteVideoDisplay();
1463       break;
1464
1465     case TAPE_CTRL_ID_EXTRA:
1466       if (tape.playing)
1467       {
1468         if (!tape.warp_forward)                 /* PLAY -> WARP FORWARD PLAY */
1469         {
1470           TapeStartWarpForward();
1471         }
1472         else                                    /* WARP FORWARD PLAY -> PLAY */
1473         {
1474           TapeStopWarpForward();
1475
1476 #if 0
1477           if (tape.pause_before_death)
1478             DrawVideoDisplay(VIDEO_STATE_WARP_OFF | VIDEO_STATE_PLAY_ON, 0);
1479           else if (tape.fast_forward)
1480             DrawVideoDisplay(VIDEO_STATE_WARP_OFF | VIDEO_STATE_FFWD_ON, 0);
1481           else
1482             DrawVideoDisplay(VIDEO_STATE_WARP_OFF | VIDEO_STATE_PBEND_ON, 0);
1483 #endif
1484         }
1485       }
1486       else if (tape.recording)
1487         TapeSingleStep();
1488       break;
1489
1490     case TAPE_CTRL_ID_STOP:
1491       TapeStop();
1492       break;
1493
1494     case TAPE_CTRL_ID_PAUSE:
1495       TapeTogglePause(TAPE_TOGGLE_MANUAL);
1496       break;
1497
1498     case TAPE_CTRL_ID_RECORD:
1499       if (TAPE_IS_STOPPED(tape))
1500         TapeStartGameRecording();
1501       else if (tape.pausing)
1502       {
1503         if (tape.playing)                       /* PLAY -> PAUSE -> RECORD */
1504           TapeAppendRecording();
1505         else
1506           TapeTogglePause(TAPE_TOGGLE_MANUAL);
1507       }
1508       break;
1509
1510     case TAPE_CTRL_ID_PLAY:
1511       if (TAPE_IS_EMPTY(tape))
1512         break;
1513
1514       if (TAPE_IS_STOPPED(tape))
1515       {
1516         TapeStartGamePlaying();
1517       }
1518       else if (tape.playing)
1519       {
1520         if (tape.pausing)                       /* PAUSE -> PLAY */
1521         {
1522           TapeTogglePause(TAPE_TOGGLE_MANUAL);
1523         }
1524         else if (!tape.fast_forward)            /* PLAY -> FAST FORWARD PLAY */
1525         {
1526           tape.fast_forward = TRUE;
1527           DrawVideoDisplay(VIDEO_STATE_FFWD_ON, 0);
1528         }
1529         else if (!tape.pause_before_death)      /* FFWD PLAY -> AUTO PAUSE */
1530         {
1531           tape.pause_before_death = TRUE;
1532 #if 1
1533           DrawVideoDisplay(VIDEO_STATE_FFWD_OFF | VIDEO_STATE_PBEND_ON, 0);
1534 #else
1535           DrawVideoDisplay(VIDEO_STATE_PBEND_ON, VIDEO_DISPLAY_LABEL_ONLY);
1536 #endif
1537         }
1538         else                                    /* AUTO PAUSE -> NORMAL PLAY */
1539         {
1540           tape.fast_forward = FALSE;
1541           tape.pause_before_death = FALSE;
1542           tape.warp_forward = FALSE;
1543 #if 1
1544           DrawVideoDisplay(VIDEO_STATE_PBEND_OFF | VIDEO_STATE_PLAY_ON, 0);
1545 #else
1546           DrawVideoDisplay(VIDEO_STATE_FFWD_OFF | VIDEO_STATE_PBEND_OFF, 0);
1547 #endif
1548         }
1549       }
1550       break;
1551
1552     default:
1553       break;
1554   }
1555 }