rnd-20050606-1-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 static void TapeSetDate()
658 {
659   time_t epoch_seconds = time(NULL);
660   struct tm *now = localtime(&epoch_seconds);
661
662   tape.date = 10000 * (now->tm_year % 100) + 100 * now->tm_mon + now->tm_mday;
663 }
664
665 void TapeErase()
666 {
667   int i;
668
669   tape.length = 0;
670   tape.counter = 0;
671
672   if (leveldir_current)
673     setString(&tape.level_identifier, leveldir_current->identifier);
674
675   tape.level_nr = level_nr;
676   tape.pos[tape.counter].delay = 0;
677   tape.changed = TRUE;
678
679   tape.random_seed = InitRND(NEW_RANDOMIZE);
680
681   tape.file_version = FILE_VERSION_ACTUAL;
682   tape.game_version = GAME_VERSION_ACTUAL;
683   tape.engine_version = level.game_version;
684
685   TapeSetDate();
686
687 #if 0
688   printf("::: tape.engine_version = level.game_version = %d \n",
689          level.game_version);
690 #endif
691
692   for (i = 0; i < MAX_PLAYERS; i++)
693     tape.player_participates[i] = FALSE;
694 }
695
696 static void TapeRewind()
697 {
698   tape.counter = 0;
699   tape.delay_played = 0;
700   tape.pause_before_death = FALSE;
701   tape.recording = FALSE;
702   tape.playing = FALSE;
703   tape.fast_forward = FALSE;
704   tape.warp_forward = FALSE;
705   tape.deactivate_display = FALSE;
706   tape.auto_play = (global.autoplay_leveldir != NULL);
707   tape.auto_play_level_solved = FALSE;
708   tape.quick_resume = FALSE;
709   tape.single_step = FALSE;
710
711   InitRND(tape.random_seed);
712 }
713
714 void TapeStartRecording()
715 {
716   if (!TAPE_IS_STOPPED(tape))
717     TapeStop();
718
719   TapeErase();
720   TapeRewind();
721
722   tape.recording = TRUE;
723
724   DrawVideoDisplay(VIDEO_STATE_REC_ON, 0);
725   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
726   DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
727   MapTapeWarpButton();
728
729   SetDrawDeactivationMask(REDRAW_NONE);
730   audio.sound_deactivated = FALSE;
731 }
732
733 static void TapeStartGameRecording()
734 {
735   TapeStartRecording();
736
737 #if defined(NETWORK_AVALIABLE)
738   if (options.network)
739     SendToServer_StartPlaying();
740   else
741 #endif
742   {
743     game_status = GAME_MODE_PLAYING;
744     StopAnimation();
745     InitGame();
746   }
747 }
748
749 static void TapeAppendRecording()
750 {
751   if (!tape.playing || !tape.pausing)
752     return;
753
754   tape.pos[tape.counter].delay = tape.delay_played;
755   tape.playing = FALSE;
756   tape.recording = TRUE;
757   tape.changed = TRUE;
758
759   TapeSetDate();
760
761   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
762   DrawVideoDisplay(VIDEO_STATE_PLAY_OFF | VIDEO_STATE_REC_ON, 0);
763 }
764
765 void TapeHaltRecording()
766 {
767   if (!tape.recording)
768     return;
769
770   tape.counter++;
771   tape.pos[tape.counter].delay = 0;
772
773   tape.length = tape.counter;
774   tape.length_seconds = GetTapeLength();
775 }
776
777 void TapeStopRecording()
778 {
779 #if 0
780   if (!tape.recording)
781     return;
782 #endif
783
784   TapeHaltRecording();
785
786   tape.recording = FALSE;
787   tape.pausing = FALSE;
788
789   DrawVideoDisplay(VIDEO_STATE_REC_OFF, 0);
790   MapTapeEjectButton();
791 }
792
793 void TapeRecordAction(byte action[MAX_PLAYERS])
794 {
795   int i;
796
797 #if 1
798   if (!tape.recording)          /* record action even when tape is paused! */
799     return;
800 #else
801   if (!tape.recording || tape.pausing)
802     return;
803 #endif
804
805   if (tape.counter >= MAX_TAPE_LEN - 1)
806   {
807     TapeStopRecording();
808     return;
809   }
810
811 #if 0
812   printf("::: %05d: recording action: %d\n", FrameCounter, action[0]);
813 #endif
814
815   if (tape.pos[tape.counter].delay > 0)         /* already stored action */
816   {
817     boolean changed_events = FALSE;
818
819     for (i = 0; i < MAX_PLAYERS; i++)
820       if (tape.pos[tape.counter].action[i] != action[i])
821         changed_events = TRUE;
822
823     if (changed_events || tape.pos[tape.counter].delay >= 255)
824     {
825       tape.counter++;
826       tape.pos[tape.counter].delay = 0;
827     }
828     else
829       tape.pos[tape.counter].delay++;
830   }
831
832   if (tape.pos[tape.counter].delay == 0)        /* store new action */
833   {
834
835 #if 0
836     printf("::: %05d: new sequence\n", FrameCounter);
837 #endif
838
839     for (i = 0; i < MAX_PLAYERS; i++)
840       tape.pos[tape.counter].action[i] = action[i];
841
842     tape.pos[tape.counter].delay++;
843   }
844 }
845
846 void TapeTogglePause(boolean toggle_manual)
847 {
848   int state = 0;
849
850 #if 0
851   if (!tape.recording && !tape.playing)
852     return;
853 #endif
854
855   if (tape.pause_before_death)
856     state |= VIDEO_STATE_PBEND_OFF;
857   else if (tape.fast_forward)
858     state |= VIDEO_STATE_FFWD_OFF;
859
860   tape.pausing = !tape.pausing;
861   tape.fast_forward = FALSE;
862   tape.pause_before_death = FALSE;
863
864   if (tape.single_step && toggle_manual)
865     tape.single_step = FALSE;
866
867   state |= (tape.pausing ? VIDEO_STATE_PAUSE_ON : VIDEO_STATE_PAUSE_OFF);
868   if (tape.playing)
869     state |= VIDEO_STATE_PLAY_ON;
870   else
871     state |= (tape.single_step ? VIDEO_STATE_1STEP_ON : VIDEO_STATE_1STEP_OFF);
872
873   DrawVideoDisplay(state, 0);
874
875 #if 0
876   if (tape.pausing)
877     DrawVideoDisplay(VIDEO_STATE_PAUSE_ON, 0);
878 #endif
879
880   if (tape.warp_forward)
881   {
882     TapeStopWarpForward();
883
884     if (tape.quick_resume)
885     {
886       tape.quick_resume = FALSE;
887
888       TapeAppendRecording();
889 #if 0
890       TapeTogglePause(toggle_manual);
891 #endif
892     }
893   }
894 }
895
896 void TapeStartPlaying()
897 {
898   if (TAPE_IS_EMPTY(tape))
899     return;
900
901   if (!TAPE_IS_STOPPED(tape))
902     TapeStop();
903
904   TapeRewind();
905
906   tape.playing = TRUE;
907
908   DrawVideoDisplay(VIDEO_STATE_PLAY_ON, 0);
909   DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
910   DrawVideoDisplay(VIDEO_STATE_TIME_ON, 0);
911   MapTapeWarpButton();
912
913   SetDrawDeactivationMask(REDRAW_NONE);
914   audio.sound_deactivated = FALSE;
915 }
916
917 static void TapeStartGamePlaying()
918 {
919   TapeStartPlaying();
920
921   game_status = GAME_MODE_PLAYING;
922   StopAnimation();
923   InitGame();
924 }
925
926 void TapeStopPlaying()
927 {
928 #if 0
929   if (!tape.playing)
930     return;
931 #endif
932
933   tape.playing = FALSE;
934   tape.pausing = FALSE;
935
936   if (tape.warp_forward)
937     TapeStopWarpForward();
938
939   DrawVideoDisplay(VIDEO_STATE_PLAY_OFF, 0);
940   MapTapeEjectButton();
941 }
942
943 byte *TapePlayAction()
944 {
945   static byte action[MAX_PLAYERS];
946   int i;
947
948   if (!tape.playing || tape.pausing)
949     return NULL;
950
951   if (tape.pause_before_death)  /* stop 10 seconds before player gets killed */
952   {
953     if (!(FrameCounter % 20))
954     {
955       if ((FrameCounter / 20) % 2)
956         DrawVideoDisplay(VIDEO_STATE_PBEND_ON, VIDEO_DISPLAY_LABEL_ONLY);
957       else
958         DrawVideoDisplay(VIDEO_STATE_PBEND_OFF, VIDEO_DISPLAY_LABEL_ONLY);
959     }
960
961     if (tape.warp_forward)
962     {
963       if (tape.deactivate_display)
964         DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
965       else
966         DrawVideoDisplay(VIDEO_STATE_WARP2_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
967     }
968
969     if (TapeTime > tape.length_seconds - TAPE_PAUSE_SECONDS_BEFORE_DEATH)
970     {
971       TapeTogglePause(TAPE_TOGGLE_MANUAL);
972
973       return NULL;
974     }
975   }
976   else if (tape.fast_forward)
977   {
978     if ((FrameCounter / 20) % 2)
979       DrawVideoDisplay(VIDEO_STATE_FFWD_ON, VIDEO_DISPLAY_LABEL_ONLY);
980     else
981       DrawVideoDisplay(VIDEO_STATE_FFWD_OFF, VIDEO_DISPLAY_LABEL_ONLY);
982
983     if (tape.warp_forward)
984     {
985       if (tape.deactivate_display)
986         DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
987       else
988         DrawVideoDisplay(VIDEO_STATE_WARP2_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
989     }
990   }
991
992 #if 0
993   /* !!! this makes things much slower !!! */
994   else if (tape.warp_forward)
995   {
996     if ((FrameCounter / 20) % 2)
997       DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_LABEL_ONLY);
998     else
999       DrawVideoDisplay(VIDEO_STATE_WARP_OFF, VIDEO_DISPLAY_LABEL_ONLY);
1000
1001     DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
1002   }
1003 #endif
1004
1005   if (tape.counter >= tape.length)      /* end of tape reached */
1006   {
1007     if (tape.warp_forward && !tape.auto_play)
1008       TapeTogglePause(TAPE_TOGGLE_MANUAL);
1009     else
1010       TapeStop();
1011
1012     return NULL;
1013   }
1014
1015   for (i = 0; i < MAX_PLAYERS; i++)
1016     action[i] = tape.pos[tape.counter].action[i];
1017
1018   tape.delay_played++;
1019   if (tape.delay_played >= tape.pos[tape.counter].delay)
1020   {
1021     tape.counter++;
1022     tape.delay_played = 0;
1023   }
1024
1025 #if 0
1026   printf("::: %05d: replaying action: %d\n", FrameCounter, action[0]);
1027 #endif
1028
1029   return action;
1030 }
1031
1032 void TapeStop()
1033 {
1034 #if 0
1035   if (tape.recording)
1036     printf("::: stopped recording: %d\n", FrameCounter);
1037   else if (tape.playing)
1038     printf("::: stopped playing:   %d\n\n", FrameCounter);
1039 #endif
1040
1041   TapeStopRecording();
1042   TapeStopPlaying();
1043
1044   DrawVideoDisplay(VIDEO_STATE_OFF, 0);
1045
1046   if (tape.date && tape.length)
1047   {
1048     DrawVideoDisplay(VIDEO_STATE_DATE_ON, tape.date);
1049     DrawVideoDisplay(VIDEO_STATE_TIME_ON, tape.length_seconds);
1050   }
1051
1052 #if 0
1053   if (tape.auto_play)
1054     AutoPlayTape();     /* continue automatically playing next tape */
1055 #endif
1056 }
1057
1058 unsigned int GetTapeLength()
1059 {
1060   unsigned int tape_length = 0;
1061   int i;
1062
1063   if (TAPE_IS_EMPTY(tape))
1064     return(0);
1065
1066   for (i = 0; i < tape.length; i++)
1067     tape_length += tape.pos[i].delay;
1068
1069   return(tape_length * GAME_FRAME_DELAY / 1000);
1070 }
1071
1072 static void TapeStartWarpForward()
1073 {
1074   tape.warp_forward = TRUE;
1075
1076 #if 1
1077   if (!tape.fast_forward && !tape.pause_before_death)
1078   {
1079     tape.pausing = FALSE;
1080     tape.deactivate_display = TRUE;
1081
1082     TapeDeactivateDisplayOn();
1083   }
1084 #else
1085   if (!tape.fast_forward || tape.pause_before_death)
1086   {
1087     tape.pausing = FALSE;
1088     tape.deactivate_display = TRUE;
1089
1090     TapeDeactivateDisplayOn();
1091   }
1092 #endif
1093
1094   if (tape.fast_forward || tape.pause_before_death)
1095     DrawVideoDisplay(VIDEO_STATE_WARP_ON, VIDEO_DISPLAY_SYMBOL_ONLY);
1096   else
1097     DrawVideoDisplay(VIDEO_STATE_WARP_ON, 0);
1098 }
1099
1100 static void TapeStopWarpForward()
1101 {
1102   int state = (tape.pausing ? VIDEO_STATE_PAUSE_ON : VIDEO_STATE_PAUSE_OFF);
1103
1104   tape.warp_forward = FALSE;
1105   tape.deactivate_display = FALSE;
1106
1107   TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING);
1108
1109 #if 0
1110 #if 1
1111   if (game_status == GAME_MODE_PLAYING)
1112 #endif
1113   {
1114     RedrawPlayfield(TRUE, 0,0,0,0);
1115     DrawGameDoorValues();
1116   }
1117 #endif
1118
1119   if (tape.pause_before_death)
1120     state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_PBEND_ON;
1121   else if (tape.fast_forward)
1122     state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_FFWD_ON;
1123   else
1124     state |= VIDEO_STATE_WARP_OFF | VIDEO_STATE_PLAY_ON;
1125
1126   DrawVideoDisplay(state, 0);
1127 }
1128
1129 static void TapeSingleStep()
1130 {
1131   if (options.network)
1132     return;
1133
1134   if (!tape.pausing)
1135     TapeTogglePause(TAPE_TOGGLE_MANUAL);
1136
1137   tape.single_step = !tape.single_step;
1138
1139   DrawVideoDisplay((tape.single_step ? VIDEO_STATE_1STEP_ON :
1140                     VIDEO_STATE_1STEP_OFF), 0);
1141 }
1142
1143 void TapeQuickSave()
1144 {
1145   if (game_status == GAME_MODE_PLAYING)
1146   {
1147     if (tape.recording)
1148       TapeHaltRecording();      /* prepare tape for saving on-the-fly */
1149
1150     if (TAPE_IS_EMPTY(tape))
1151       Request("No tape that can be saved !", REQ_CONFIRM);
1152     else
1153       SaveTape(tape.level_nr);
1154   }
1155   else if (game_status == GAME_MODE_MAIN)
1156     Request("No game that can be saved !", REQ_CONFIRM);
1157 }
1158
1159 void TapeQuickLoad()
1160 {
1161   char *filename = getTapeFilename(level_nr);
1162
1163   if (!fileExists(filename))
1164   {
1165     Request("No tape for this level !", REQ_CONFIRM);
1166
1167     return;
1168   }
1169
1170   if (tape.recording && !Request("Stop recording and load tape ?",
1171                                  REQ_ASK | REQ_STAY_CLOSED))
1172   {
1173     OpenDoor(DOOR_OPEN_1 | DOOR_COPY_BACK);
1174
1175     return;
1176   }
1177
1178   if (game_status == GAME_MODE_PLAYING || game_status == GAME_MODE_MAIN)
1179   {
1180     TapeStop();
1181     TapeErase();
1182
1183     LoadTape(level_nr);
1184     if (!TAPE_IS_EMPTY(tape))
1185     {
1186       TapeStartGamePlaying();
1187       TapeStartWarpForward();
1188
1189       tape.quick_resume = TRUE;
1190     }
1191     else        /* this should not happen (basically checked above) */
1192     {
1193       int reopen_door = (game_status == GAME_MODE_PLAYING ? REQ_REOPEN : 0);
1194
1195       Request("No tape for this level !", REQ_CONFIRM | reopen_door);
1196     }
1197   }
1198 }
1199
1200 void InsertSolutionTape()
1201 {
1202   if (!TAPE_IS_EMPTY(tape))
1203     return;
1204
1205   LoadSolutionTape(level_nr);
1206
1207   if (TAPE_IS_EMPTY(tape))
1208     Request("No solution tape for this level !", REQ_CONFIRM);
1209
1210   DrawCompleteVideoDisplay();
1211 }
1212
1213
1214 /* ------------------------------------------------------------------------- *
1215  * tape autoplay functions
1216  * ------------------------------------------------------------------------- */
1217
1218 void AutoPlayTape()
1219 {
1220   static LevelDirTree *autoplay_leveldir = NULL;
1221   static boolean autoplay_initialized = FALSE;
1222   static int autoplay_level_nr = -1;
1223   static int num_levels_played = 0;
1224   static int num_levels_solved = 0;
1225   static int num_tape_missing = 0;
1226   static boolean level_failed[MAX_TAPES_PER_SET];
1227   static boolean tape_missing[MAX_TAPES_PER_SET];
1228   int i;
1229
1230   if (autoplay_initialized)
1231   {
1232     /* just finished auto-playing tape */
1233     printf("%s.\n", tape.auto_play_level_solved ? "solved" : "NOT SOLVED");
1234
1235     num_levels_played++;
1236
1237     if (tape.auto_play_level_solved)
1238       num_levels_solved++;
1239     else if (level_nr >= 0 && level_nr < MAX_TAPES_PER_SET)
1240       level_failed[level_nr] = TRUE;
1241   }
1242   else
1243   {
1244     DrawCompleteVideoDisplay();
1245     audio.sound_enabled = FALSE;
1246
1247     autoplay_leveldir = getTreeInfoFromIdentifier(leveldir_first,
1248                                                   global.autoplay_leveldir);
1249
1250     if (autoplay_leveldir == NULL)
1251       Error(ERR_EXIT, "no such level identifier: '%s'",
1252             global.autoplay_leveldir);
1253
1254     leveldir_current = autoplay_leveldir;
1255
1256     if (autoplay_leveldir->first_level < 0)
1257       autoplay_leveldir->first_level = 0;
1258     if (autoplay_leveldir->last_level >= MAX_TAPES_PER_SET)
1259       autoplay_leveldir->last_level = MAX_TAPES_PER_SET - 1;
1260
1261     autoplay_level_nr = autoplay_leveldir->first_level;
1262
1263     printf_line("=", 79);
1264     printf("Automatically playing level tapes\n");
1265     printf_line("-", 79);
1266     printf("Level series identifier: '%s'\n", autoplay_leveldir->identifier);
1267     printf("Level series name:       '%s'\n", autoplay_leveldir->name);
1268     printf("Level series author:     '%s'\n", autoplay_leveldir->author);
1269     printf("Number of levels:        %d\n",   autoplay_leveldir->levels);
1270     printf_line("=", 79);
1271     printf("\n");
1272
1273     for (i = 0; i < MAX_TAPES_PER_SET; i++)
1274     {
1275       level_failed[i] = FALSE;
1276       tape_missing[i] = FALSE;
1277     }
1278
1279     autoplay_initialized = TRUE;
1280   }
1281
1282   while (autoplay_level_nr <= autoplay_leveldir->last_level)
1283   {
1284     level_nr = autoplay_level_nr++;
1285
1286     if (!global.autoplay_all && !global.autoplay_level[level_nr])
1287       continue;
1288
1289     TapeErase();
1290
1291     printf("Level %03d: ", level_nr);
1292
1293     LoadLevel(level_nr);
1294     if (level.no_valid_file)
1295     {
1296       printf("(no level)\n");
1297       continue;
1298     }
1299
1300     LoadSolutionTape(level_nr);
1301 #if 1
1302     if (tape.no_valid_file)
1303 #else
1304     if (TAPE_IS_EMPTY(tape))
1305 #endif
1306     {
1307       num_tape_missing++;
1308       if (level_nr >= 0 && level_nr < MAX_TAPES_PER_SET)
1309         tape_missing[level_nr] = TRUE;
1310
1311       printf("(no tape)\n");
1312       continue;
1313     }
1314
1315     printf("playing tape ... ");
1316
1317     TapeStartGamePlaying();
1318     TapeStartWarpForward();
1319
1320     return;
1321   }
1322
1323   printf("\n");
1324   printf_line("=", 79);
1325   printf("Number of levels played: %d\n", num_levels_played);
1326   printf("Number of levels solved: %d (%d%%)\n", num_levels_solved,
1327          (num_levels_played ? num_levels_solved * 100 / num_levels_played :0));
1328   printf_line("-", 79);
1329   printf("Summary (for automatic parsing by scripts):\n");
1330   printf("LEVELDIR '%s', SOLVED %d/%d (%d%%)",
1331          autoplay_leveldir->identifier, num_levels_solved, num_levels_played,
1332          (num_levels_played ? num_levels_solved * 100 / num_levels_played :0));
1333
1334   if (num_levels_played != num_levels_solved)
1335   {
1336     printf(", FAILED:");
1337     for (i = 0; i < MAX_TAPES_PER_SET; i++)
1338       if (level_failed[i])
1339         printf(" %03d", i);
1340   }
1341
1342   if (num_tape_missing > 0)
1343   {
1344     printf(", NO TAPE:");
1345     for (i = 0; i < MAX_TAPES_PER_SET; i++)
1346       if (tape_missing[i])
1347         printf(" %03d", i);
1348   }
1349
1350   printf("\n");
1351   printf_line("=", 79);
1352
1353   CloseAllAndExit(0);
1354 }
1355
1356
1357 /* ---------- new tape button stuff ---------------------------------------- */
1358
1359 /* graphic position values for tape buttons */
1360 #define TAPE_BUTTON_XSIZE       18
1361 #define TAPE_BUTTON_YSIZE       18
1362 #define TAPE_BUTTON_XPOS        5
1363 #define TAPE_BUTTON_YPOS        77
1364
1365 #define TAPE_BUTTON_EJECT_XPOS  (TAPE_BUTTON_XPOS + 0 * TAPE_BUTTON_XSIZE)
1366 #define TAPE_BUTTON_EXTRA_XPOS  (TAPE_BUTTON_XPOS + 0 * TAPE_BUTTON_XSIZE)
1367 #define TAPE_BUTTON_STOP_XPOS   (TAPE_BUTTON_XPOS + 1 * TAPE_BUTTON_XSIZE)
1368 #define TAPE_BUTTON_PAUSE_XPOS  (TAPE_BUTTON_XPOS + 2 * TAPE_BUTTON_XSIZE)
1369 #define TAPE_BUTTON_RECORD_XPOS (TAPE_BUTTON_XPOS + 3 * TAPE_BUTTON_XSIZE)
1370 #define TAPE_BUTTON_PLAY_XPOS   (TAPE_BUTTON_XPOS + 4 * TAPE_BUTTON_XSIZE)
1371
1372 static struct
1373 {
1374   int x, y;
1375   int gadget_id;
1376   char *infotext;
1377 } tapebutton_info[NUM_TAPE_BUTTONS] =
1378 {
1379   {
1380     TAPE_BUTTON_EJECT_XPOS,     TAPE_BUTTON_YPOS,
1381     TAPE_CTRL_ID_EJECT,
1382     "eject tape"
1383   },
1384   {
1385     TAPE_BUTTON_EXTRA_XPOS,     TAPE_BUTTON_YPOS,
1386     TAPE_CTRL_ID_EXTRA,
1387     "extra functions"
1388   },
1389   {
1390     TAPE_BUTTON_STOP_XPOS,      TAPE_BUTTON_YPOS,
1391     TAPE_CTRL_ID_STOP,
1392     "stop tape"
1393   },
1394   {
1395     TAPE_BUTTON_PAUSE_XPOS,     TAPE_BUTTON_YPOS,
1396     TAPE_CTRL_ID_PAUSE,
1397     "pause tape"
1398   },
1399   {
1400     TAPE_BUTTON_RECORD_XPOS,    TAPE_BUTTON_YPOS,
1401     TAPE_CTRL_ID_RECORD,
1402     "record tape"
1403   },
1404   {
1405     TAPE_BUTTON_PLAY_XPOS,      TAPE_BUTTON_YPOS,
1406     TAPE_CTRL_ID_PLAY,
1407     "play tape"
1408   }
1409 };
1410
1411 void CreateTapeButtons()
1412 {
1413   int i;
1414
1415   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1416   {
1417     Bitmap *gd_bitmap = graphic_info[IMG_GLOBAL_DOOR].bitmap;
1418     struct GadgetInfo *gi;
1419     int gd_xoffset, gd_yoffset;
1420     int gd_x1, gd_x2, gd_y;
1421     int id = i;
1422
1423     gd_xoffset = tapebutton_info[i].x;
1424     gd_yoffset = tapebutton_info[i].y;
1425     gd_x1 = DOOR_GFX_PAGEX4 + gd_xoffset;
1426     gd_x2 = DOOR_GFX_PAGEX3 + gd_xoffset;
1427     gd_y  = DOOR_GFX_PAGEY2 + gd_yoffset;
1428
1429     if (i == TAPE_CTRL_ID_EXTRA)
1430     {
1431       gd_x1 = DOOR_GFX_PAGEX6 + gd_xoffset;
1432       gd_x2 = DOOR_GFX_PAGEX5 + gd_xoffset;
1433     }
1434
1435     gi = CreateGadget(GDI_CUSTOM_ID, id,
1436                       GDI_INFO_TEXT, tapebutton_info[i].infotext,
1437                       GDI_X, VX + gd_xoffset,
1438                       GDI_Y, VY + gd_yoffset,
1439                       GDI_WIDTH, TAPE_BUTTON_XSIZE,
1440                       GDI_HEIGHT, TAPE_BUTTON_YSIZE,
1441                       GDI_TYPE, GD_TYPE_NORMAL_BUTTON,
1442                       GDI_STATE, GD_BUTTON_UNPRESSED,
1443                       GDI_DESIGN_UNPRESSED, gd_bitmap, gd_x1, gd_y,
1444                       GDI_DESIGN_PRESSED, gd_bitmap, gd_x2, gd_y,
1445                       GDI_EVENT_MASK, GD_EVENT_RELEASED,
1446                       GDI_CALLBACK_ACTION, HandleTapeButtons,
1447                       GDI_END);
1448
1449     if (gi == NULL)
1450       Error(ERR_EXIT, "cannot create gadget");
1451
1452     tape_gadget[id] = gi;
1453   }
1454 }
1455
1456 void FreeTapeButtons()
1457 {
1458   int i;
1459
1460   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1461     FreeGadget(tape_gadget[i]);
1462 }
1463
1464 void MapTapeEjectButton()
1465 {
1466   UnmapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1467   MapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1468 }
1469
1470 void MapTapeWarpButton()
1471 {
1472   UnmapGadget(tape_gadget[TAPE_CTRL_ID_EJECT]);
1473   MapGadget(tape_gadget[TAPE_CTRL_ID_EXTRA]);
1474 }
1475
1476 void MapTapeButtons()
1477 {
1478   int i;
1479
1480   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1481     if (i != TAPE_CTRL_ID_EXTRA)
1482       MapGadget(tape_gadget[i]);
1483
1484   if (tape.recording || tape.playing)
1485     MapTapeWarpButton();
1486 }
1487
1488 void UnmapTapeButtons()
1489 {
1490   int i;
1491
1492   for (i = 0; i < NUM_TAPE_BUTTONS; i++)
1493     UnmapGadget(tape_gadget[i]);
1494 }
1495
1496 static void HandleTapeButtons(struct GadgetInfo *gi)
1497 {
1498   int id = gi->custom_id;
1499
1500   if (game_status != GAME_MODE_MAIN && game_status != GAME_MODE_PLAYING)
1501     return;
1502
1503   switch (id)
1504   {
1505     case TAPE_CTRL_ID_EJECT:
1506       TapeStop();
1507       if (TAPE_IS_EMPTY(tape))
1508       {
1509         LoadTape(level_nr);
1510         if (TAPE_IS_EMPTY(tape))
1511           Request("No tape for this level !", REQ_CONFIRM);
1512       }
1513       else
1514       {
1515         if (tape.changed)
1516           SaveTape(tape.level_nr);
1517         TapeErase();
1518       }
1519       DrawCompleteVideoDisplay();
1520       break;
1521
1522     case TAPE_CTRL_ID_EXTRA:
1523       if (tape.playing)
1524       {
1525         if (!tape.warp_forward)                 /* PLAY -> WARP FORWARD PLAY */
1526         {
1527           TapeStartWarpForward();
1528         }
1529         else                                    /* WARP FORWARD PLAY -> PLAY */
1530         {
1531           TapeStopWarpForward();
1532
1533 #if 0
1534           if (tape.pause_before_death)
1535             DrawVideoDisplay(VIDEO_STATE_WARP_OFF | VIDEO_STATE_PLAY_ON, 0);
1536           else if (tape.fast_forward)
1537             DrawVideoDisplay(VIDEO_STATE_WARP_OFF | VIDEO_STATE_FFWD_ON, 0);
1538           else
1539             DrawVideoDisplay(VIDEO_STATE_WARP_OFF | VIDEO_STATE_PBEND_ON, 0);
1540 #endif
1541         }
1542       }
1543       else if (tape.recording)
1544         TapeSingleStep();
1545       break;
1546
1547     case TAPE_CTRL_ID_STOP:
1548       TapeStop();
1549       break;
1550
1551     case TAPE_CTRL_ID_PAUSE:
1552       TapeTogglePause(TAPE_TOGGLE_MANUAL);
1553       break;
1554
1555     case TAPE_CTRL_ID_RECORD:
1556       if (TAPE_IS_STOPPED(tape))
1557         TapeStartGameRecording();
1558       else if (tape.pausing)
1559       {
1560         if (tape.playing)                       /* PLAY -> PAUSE -> RECORD */
1561           TapeAppendRecording();
1562         else
1563           TapeTogglePause(TAPE_TOGGLE_MANUAL);
1564       }
1565       break;
1566
1567     case TAPE_CTRL_ID_PLAY:
1568       if (TAPE_IS_EMPTY(tape))
1569         break;
1570
1571       if (TAPE_IS_STOPPED(tape))
1572       {
1573         TapeStartGamePlaying();
1574       }
1575       else if (tape.playing)
1576       {
1577         if (tape.pausing)                       /* PAUSE -> PLAY */
1578         {
1579           TapeTogglePause(TAPE_TOGGLE_MANUAL);
1580         }
1581         else if (!tape.fast_forward)            /* PLAY -> FAST FORWARD PLAY */
1582         {
1583           tape.fast_forward = TRUE;
1584           DrawVideoDisplay(VIDEO_STATE_FFWD_ON, 0);
1585         }
1586         else if (!tape.pause_before_death)      /* FFWD PLAY -> AUTO PAUSE */
1587         {
1588           tape.pause_before_death = TRUE;
1589 #if 1
1590           DrawVideoDisplay(VIDEO_STATE_FFWD_OFF | VIDEO_STATE_PBEND_ON, 0);
1591 #else
1592           DrawVideoDisplay(VIDEO_STATE_PBEND_ON, VIDEO_DISPLAY_LABEL_ONLY);
1593 #endif
1594         }
1595         else                                    /* AUTO PAUSE -> NORMAL PLAY */
1596         {
1597 #if 1
1598           if (tape.warp_forward)
1599             TapeStopWarpForward();
1600 #else
1601           tape.warp_forward = FALSE;
1602 #endif
1603           tape.fast_forward = FALSE;
1604           tape.pause_before_death = FALSE;
1605
1606 #if 1
1607           DrawVideoDisplay(VIDEO_STATE_PBEND_OFF | VIDEO_STATE_PLAY_ON, 0);
1608 #else
1609           DrawVideoDisplay(VIDEO_STATE_FFWD_OFF | VIDEO_STATE_PBEND_OFF, 0);
1610 #endif
1611         }
1612       }
1613       break;
1614
1615     default:
1616       break;
1617   }
1618 }