]> icculus.org git repositories - btb/d2x.git/blob - main/movie.c
enabled mouse control of menus
[btb/d2x.git] / main / movie.c
1 /* $Id: movie.c,v 1.32 2003-11-07 06:30:06 btb Exp $ */
2 /*
3 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
4 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
5 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
6 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
7 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
8 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
9 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
10 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
11 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
12 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
13 */
14
15 /*
16  *
17  * Movie Playing Stuff
18  *
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include <conf.h>
23 #endif
24
25 #ifdef RCS
26 static char rcsid[] = "$Id: movie.c,v 1.32 2003-11-07 06:30:06 btb Exp $";
27 #endif
28
29 #define DEBUG_LEVEL CON_NORMAL
30
31 #include <string.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <fcntl.h>
35 #include <unistd.h>
36 #include <ctype.h>
37
38 #include "movie.h"
39 #include "console.h"
40 #include "args.h"
41 #include "key.h"
42 #include "digi.h"
43 #include "songs.h"
44 #include "inferno.h"
45 #include "palette.h"
46 #include "strutil.h"
47 #include "error.h"
48 #include "u_mem.h"
49 #include "byteswap.h"
50 #include "gr.h"
51 #include "gamefont.h"
52 #include "cfile.h"
53 #include "menu.h"
54 #include "libmve.h"
55 #include "text.h"
56 #include "screens.h"
57
58 extern int MenuHiresAvailable;
59 extern char CDROM_dir[];
60
61 #define VID_PLAY 0
62 #define VID_PAUSE 1
63
64 int Vid_State;
65
66
67 // Subtitle data
68 typedef struct {
69         short first_frame,last_frame;
70         char *msg;
71 } subtitle;
72
73 #define MAX_SUBTITLES 500
74 #define MAX_ACTIVE_SUBTITLES 3
75 subtitle Subtitles[MAX_SUBTITLES];
76 int Num_subtitles;
77
78 // Movielib data
79 typedef struct {
80         char name[FILENAME_LEN];
81         int offset,len;
82 } ml_entry;
83
84 #define MLF_ON_CD    1
85 #define MAX_MOVIES_PER_LIB    50    //determines size of malloc
86
87 typedef struct {
88         char     name[100]; //[FILENAME_LEN];
89         int      n_movies;
90         ubyte    flags,pad[3];
91         ml_entry *movies;
92 } movielib;
93
94 #ifdef D2_OEM
95 char movielib_files[][FILENAME_LEN] = {"intro-l.mvl","other-l.mvl","robots-l.mvl","oem-l.mvl"};
96 #else
97 char movielib_files[][FILENAME_LEN] = {"intro-l.mvl","other-l.mvl","robots-l.mvl"};
98 #endif
99
100 #define N_BUILTIN_MOVIE_LIBS (sizeof(movielib_files)/sizeof(*movielib_files))
101 #define N_MOVIE_LIBS (N_BUILTIN_MOVIE_LIBS+1)
102 #define EXTRA_ROBOT_LIB N_BUILTIN_MOVIE_LIBS
103 movielib *movie_libs[N_MOVIE_LIBS];
104
105
106 //do we have the robot movies available
107 int robot_movies = 0; //0 means none, 1 means lowres, 2 means hires
108
109 int MovieHires = 1;   //default is highres
110
111 CFILE *RoboFile = NULL;
112 int RoboFilePos = 0;
113
114 // Function Prototypes
115 int RunMovie(char *filename, int highres_flag, int allow_abort,int dx,int dy);
116
117 CFILE *open_movie_file(char *filename, int must_have);
118 int reset_movie_file(CFILE *handle);
119
120 void change_filename_ext( char *dest, char *src, char *ext );
121 void decode_text_line(char *p);
122 void draw_subtitles(int frame_num);
123
124
125 // ----------------------------------------------------------------------
126 void* MPlayAlloc(unsigned size)
127 {
128     return d_malloc(size);
129 }
130
131 void MPlayFree(void *p)
132 {
133     d_free(p);
134 }
135
136
137 //-----------------------------------------------------------------------
138
139 unsigned int FileRead(void *handle, void *buf, unsigned int count)
140 {
141     unsigned numread;
142     numread = cfread(buf, 1, count, (CFILE *)handle);
143     return (numread == count);
144 }
145
146
147 //-----------------------------------------------------------------------
148
149
150 //filename will actually get modified to be either low-res or high-res
151 //returns status.  see values in movie.h
152 int PlayMovie(const char *filename, int must_have)
153 {
154         char name[FILENAME_LEN],*p;
155         int c, ret;
156
157 #ifndef RELEASE
158         if (FindArg("-nomovies"))
159                 return MOVIE_NOT_PLAYED;
160 #endif
161
162         strcpy(name,filename);
163
164         if ((p=strchr(name,'.')) == NULL)               //add extension, if missing
165                 strcat(name,".mve");
166
167         //check for escape already pressed & abort if so
168         while ((c=key_inkey()) != 0)
169                 if (c == KEY_ESC)
170                         return MOVIE_ABORTED;
171
172         // Stop all digital sounds currently playing.
173         digi_stop_all();
174
175         // Stop all songs
176         songs_stop_all();
177
178         digi_close();
179
180         // Start sound
181         if (!FindArg("-nosound"))
182                 MVE_sndInit(1);
183         else
184                 MVE_sndInit(-1);
185
186         ret = RunMovie(name,MovieHires,must_have,-1,-1);
187
188         if (!FindArg("-nosound"))
189                 digi_init();
190
191         Screen_mode = -1;               //force screen reset
192
193         return ret;
194 }
195
196
197 void MovieShowFrame(ubyte *buf, uint bufw, uint bufh, uint sx, uint sy,
198                                         uint w, uint h, uint dstx, uint dsty)
199 {
200         grs_bitmap source_bm;
201
202         //mprintf((0,"MovieShowFrame %d,%d  %d,%d  %d,%d  %d,%d\n",bufw,bufh,sx,sy,w,h,dstx,dsty));
203
204         Assert(bufw == w && bufh == h);
205
206         source_bm.bm_x = source_bm.bm_y = 0;
207         source_bm.bm_w = source_bm.bm_rowsize = bufw;
208         source_bm.bm_h = bufh;
209         source_bm.bm_type = BM_LINEAR;
210         source_bm.bm_flags = 0;
211         source_bm.bm_data = buf;
212
213         gr_bm_ubitblt(bufw,bufh,dstx,dsty,sx,sy,&source_bm,&grd_curcanv->cv_bitmap);
214 }
215
216 //our routine to set the pallete, called from the movie code
217 void MovieSetPalette(unsigned char *p, unsigned start, unsigned count)
218 {
219         if (count == 0)
220                 return;
221
222         //mprintf((0,"SetPalette p=%x, start=%d, count=%d\n",p,start,count));
223
224         //Color 0 should be black, and we get color 255
225         Assert(start>=1 && start+count-1<=254);
226
227         //Set color 0 to be black
228         gr_palette[0] = gr_palette[1] = gr_palette[2] = 0;
229
230         //Set color 255 to be our subtitle color
231         gr_palette[765] = gr_palette[766] = gr_palette[767] = 50;
232
233         //movie libs palette into our array
234         memcpy(gr_palette+start*3,p+start*3,count*3);
235
236         //finally set the palette in the hardware
237         //gr_palette_load(gr_palette);
238
239         //MVE_SetPalette(p, start, count);
240 }
241
242
243 #if 0
244 typedef struct bkg {
245         short x, y, w, h;           // The location of the menu.
246         grs_bitmap * bmp;               // The background under the menu.
247 } bkg;
248
249 bkg movie_bg = {0,0,0,0,NULL};
250 #endif
251
252 #define BOX_BORDER (MenuHires?40:20)
253
254
255 void show_pause_message(char *msg)
256 {
257         int w,h,aw;
258         int x,y;
259
260         gr_set_current_canvas(NULL);
261         gr_set_curfont( SMALL_FONT );
262
263         gr_get_string_size(msg,&w,&h,&aw);
264
265         x = (grd_curscreen->sc_w-w)/2;
266         y = (grd_curscreen->sc_h-h)/2;
267
268 #if 0
269         if (movie_bg.bmp) {
270                 gr_free_bitmap(movie_bg.bmp);
271                 movie_bg.bmp = NULL;
272         }
273
274         // Save the background of the display
275         movie_bg.x=x; movie_bg.y=y; movie_bg.w=w; movie_bg.h=h;
276
277         movie_bg.bmp = gr_create_bitmap( w+BOX_BORDER, h+BOX_BORDER );
278
279         gr_bm_ubitblt(w+BOX_BORDER, h+BOX_BORDER, 0, 0, x-BOX_BORDER/2, y-BOX_BORDER/2, &(grd_curcanv->cv_bitmap), movie_bg.bmp );
280 #endif
281
282         gr_setcolor(0);
283         gr_rect(x-BOX_BORDER/2,y-BOX_BORDER/2,x+w+BOX_BORDER/2-1,y+h+BOX_BORDER/2-1);
284
285         gr_set_fontcolor( 255, -1 );
286
287         gr_ustring( 0x8000, y, msg );
288
289         gr_update();
290 }
291
292 void clear_pause_message()
293 {
294 #if 0
295         if (movie_bg.bmp) {
296
297                 gr_bitmap(movie_bg.x-BOX_BORDER/2, movie_bg.y-BOX_BORDER/2, movie_bg.bmp);
298
299                 gr_free_bitmap(movie_bg.bmp);
300                 movie_bg.bmp = NULL;
301         }
302 #endif
303 }
304
305
306 //returns status.  see movie.h
307 int RunMovie(char *filename, int hires_flag, int must_have,int dx,int dy)
308 {
309         CFILE *filehndl;
310         int result=1,aborted=0;
311         int track = 0;
312         int frame_num;
313         int key;
314 #ifdef OGL
315         char pal_save[768];
316 #endif
317
318         result=1;
319
320         // Open Movie file.  If it doesn't exist, no movie, just return.
321
322         filehndl = open_movie_file(filename,must_have);
323
324         if (filehndl == NULL)
325         {
326                 if (must_have)
327                         con_printf(CON_NORMAL, "movie: RunMovie: Cannot open movie <%s>\n",filename);
328                 return MOVIE_NOT_PLAYED;
329         }
330
331         MVE_memCallbacks(MPlayAlloc, MPlayFree);
332         MVE_ioCallbacks(FileRead);
333
334         if (hires_flag) {
335                 gr_set_mode(SM(640,480));
336         } else {
337                 gr_set_mode(SM(320,200));
338         }
339 #ifdef OGL
340         set_screen_mode(SCREEN_MENU);
341         gr_copy_palette(pal_save, gr_palette, 768);
342         memset(gr_palette, 0, 768);
343         gr_palette_load(gr_palette);
344 #endif
345
346 #if !defined(POLY_ACC)
347         MVE_sfCallbacks(MovieShowFrame);
348         MVE_palCallbacks(MovieSetPalette);
349 #endif
350
351         if (MVE_rmPrepMovie((void *)filehndl, dx, dy, track)) {
352                 Int3();
353                 return MOVIE_NOT_PLAYED;
354         }
355
356         frame_num = 0;
357
358         FontHires = FontHiresAvailable && hires_flag;
359
360         while((result = MVE_rmStepMovie()) == 0) {
361
362                 draw_subtitles(frame_num);
363
364                 gr_palette_load(gr_palette); // moved this here because of flashing
365
366                 gr_update();
367
368                 key = key_inkey();
369
370                 // If ESCAPE pressed, then quit movie.
371                 if (key == KEY_ESC) {
372                         result = aborted = 1;
373                         break;
374                 }
375
376                 // If PAUSE pressed, then pause movie
377                 if (key == KEY_PAUSE) {
378                         MVE_rmHoldMovie();
379                         show_pause_message(TXT_PAUSE);
380                         while (!key_inkey()) ;
381                         clear_pause_message();
382                 }
383
384 #ifdef GR_SUPPORTS_FULLSCREEN_TOGGLE
385                 if ((key == KEY_ALTED+KEY_ENTER) ||
386                     (key == KEY_ALTED+KEY_PADENTER))
387                         gr_toggle_fullscreen();
388 #endif
389
390                 frame_num++;
391         }
392
393         Assert(aborted || result == MVE_ERR_EOF);        ///movie should be over
394
395     MVE_rmEndMovie();
396
397         cfclose(filehndl);                           // Close Movie File
398
399         // Restore old graphic state
400
401         Screen_mode=-1;  //force reset of screen mode
402 #ifdef OGL
403         gr_copy_palette(gr_palette, pal_save, 768);
404         gr_palette_load(pal_save);
405 #endif
406
407         return (aborted?MOVIE_ABORTED:MOVIE_PLAYED_FULL);
408 }
409
410
411 int InitMovieBriefing()
412 {
413 #if 0
414         if (MenuHires)
415                 gr_set_mode(SM(640,480));
416         else
417                 gr_set_mode(SM(320,200));
418
419         gr_init_sub_canvas( &VR_screen_pages[0], &grd_curscreen->sc_canvas, 0, 0, grd_curscreen->sc_w, grd_curscreen->sc_h );
420         gr_init_sub_canvas( &VR_screen_pages[1], &grd_curscreen->sc_canvas, 0, 0, grd_curscreen->sc_w, grd_curscreen->sc_h );
421 #endif
422
423         return 1;
424 }
425
426
427 //returns 1 if frame updated ok
428 int RotateRobot()
429 {
430         int err;
431
432         err = MVE_rmStepMovie();
433
434         gr_palette_load(gr_palette);
435
436         if (err == MVE_ERR_EOF)     //end of movie, so reset
437         {
438                 reset_movie_file(RoboFile);
439                 if (MVE_rmPrepMovie((void *)RoboFile, MenuHires?280:140, MenuHires?200:80, 0)) {
440                         Int3();
441                         return 0;
442                 }
443         }
444         else if (err) {
445                 Int3();
446                 return 0;
447         }
448
449         return 1;
450 }
451
452
453 void DeInitRobotMovie(void)
454 {
455         MVE_rmEndMovie();
456         cfclose(RoboFile);                           // Close Movie File
457 }
458
459
460 int InitRobotMovie(char *filename)
461 {
462         if (FindArg("-nomovies"))
463                 return 0;
464
465         con_printf(DEBUG_LEVEL, "RoboFile=%s\n", filename);
466
467         MVE_sndInit(-1);        //tell movies to play no sound for robots
468
469         RoboFile = open_movie_file(filename, 1);
470
471         if (RoboFile == NULL)
472         {
473                 Warning("movie: InitRobotMovie: Cannot open movie file <%s>",filename);
474                 return MOVIE_NOT_PLAYED;
475         }
476
477         Vid_State = VID_PLAY;
478
479         if (MVE_rmPrepMovie((void *)RoboFile, MenuHires?280:140, MenuHires?200:80, 0)) {
480                 Int3();
481                 return 0;
482         }
483
484         RoboFilePos = cfseek(RoboFile, 0L, SEEK_CUR);
485
486         con_printf(DEBUG_LEVEL, "RoboFilePos=%d!\n", RoboFilePos);
487
488         return 1;
489 }
490
491
492 /*
493  *              Subtitle system code
494  */
495
496 ubyte *subtitle_raw_data;
497
498
499 //search for next field following whitespace 
500 ubyte *next_field(ubyte *p)
501 {
502         while (*p && !isspace(*p))
503                 p++;
504
505         if (!*p)
506                 return NULL;
507
508         while (*p && isspace(*p))
509                 p++;
510
511         if (!*p)
512                 return NULL;
513
514         return p;
515 }
516
517
518 int init_subtitles(char *filename)
519 {
520         CFILE *ifile;
521         int size,read_count;
522         ubyte *p;
523         int have_binary = 0;
524
525         Num_subtitles = 0;
526
527         if (! FindArg("-subtitles"))
528                 return 0;
529
530         ifile = cfopen(filename,"rb");          //try text version
531
532         if (!ifile) {                                                           //no text version, try binary version
533                 char filename2[FILENAME_LEN];
534                 change_filename_ext(filename2,filename,".TXB");
535                 ifile = cfopen(filename2,"rb");
536                 if (!ifile)
537                         return 0;
538                 have_binary = 1;
539         }
540
541         size = cfilelength(ifile);
542
543         MALLOC (subtitle_raw_data, ubyte, size+1);
544
545         read_count = cfread(subtitle_raw_data, 1, size, ifile);
546
547         cfclose(ifile);
548
549         subtitle_raw_data[size] = 0;
550
551         if (read_count != size) {
552                 d_free(subtitle_raw_data);
553                 return 0;
554         }
555
556         p = subtitle_raw_data;
557
558         while (p && p < subtitle_raw_data+size) {
559                 char *endp;
560
561                 endp = strchr(p,'\n'); 
562                 if (endp) {
563                         if (endp[-1] == '\r')
564                                 endp[-1] = 0;           //handle 0d0a pair
565                         *endp = 0;                      //string termintor
566                 }
567
568                 if (have_binary)
569                         decode_text_line(p);
570
571                 if (*p != ';') {
572                         Subtitles[Num_subtitles].first_frame = atoi(p);
573                         p = next_field(p); if (!p) continue;
574                         Subtitles[Num_subtitles].last_frame = atoi(p);
575                         p = next_field(p); if (!p) continue;
576                         Subtitles[Num_subtitles].msg = p;
577
578                         Assert(Num_subtitles==0 || Subtitles[Num_subtitles].first_frame >= Subtitles[Num_subtitles-1].first_frame);
579                         Assert(Subtitles[Num_subtitles].last_frame >= Subtitles[Num_subtitles].first_frame);
580
581                         Num_subtitles++;
582                 }
583
584                 p = endp+1;
585
586         }
587
588         return 1;
589 }
590
591
592 void close_subtitles()
593 {
594         if (subtitle_raw_data)
595                 d_free(subtitle_raw_data);
596         subtitle_raw_data = NULL;
597         Num_subtitles = 0;
598 }
599
600
601 //draw the subtitles for this frame
602 void draw_subtitles(int frame_num)
603 {
604         static int active_subtitles[MAX_ACTIVE_SUBTITLES];
605         static int num_active_subtitles,next_subtitle,line_spacing;
606         int t,y;
607         int must_erase=0;
608
609         if (frame_num == 0) {
610                 num_active_subtitles = 0;
611                 next_subtitle = 0;
612                 gr_set_curfont( GAME_FONT );
613                 line_spacing = grd_curcanv->cv_font->ft_h + (grd_curcanv->cv_font->ft_h >> 2);
614                 gr_set_fontcolor(255,-1);
615         }
616
617         //get rid of any subtitles that have expired
618         for (t=0;t<num_active_subtitles;)
619                 if (frame_num > Subtitles[active_subtitles[t]].last_frame) {
620                         int t2;
621                         for (t2=t;t2<num_active_subtitles-1;t2++)
622                                 active_subtitles[t2] = active_subtitles[t2+1];
623                         num_active_subtitles--;
624                         must_erase = 1;
625                 }
626                 else
627                         t++;
628
629         //get any subtitles new for this frame 
630         while (next_subtitle < Num_subtitles && frame_num >= Subtitles[next_subtitle].first_frame) {
631                 if (num_active_subtitles >= MAX_ACTIVE_SUBTITLES)
632                         Error("Too many active subtitles!");
633                 active_subtitles[num_active_subtitles++] = next_subtitle;
634                 next_subtitle++;
635         }
636
637         //find y coordinate for first line of subtitles
638         y = grd_curcanv->cv_bitmap.bm_h-((line_spacing+1)*MAX_ACTIVE_SUBTITLES+2);
639
640         //erase old subtitles if necessary
641         if (must_erase) {
642                 gr_setcolor(0);
643                 gr_rect(0,y,grd_curcanv->cv_bitmap.bm_w-1,grd_curcanv->cv_bitmap.bm_h-1);
644         }
645
646         //now draw the current subtitles
647         for (t=0;t<num_active_subtitles;t++)
648                 if (active_subtitles[t] != -1) {
649                         gr_string(0x8000,y,Subtitles[active_subtitles[t]].msg);
650                         y += line_spacing+1;
651                 }
652 }
653
654
655 movielib *init_new_movie_lib(char *filename, CFILE *fp)
656 {
657         int nfiles,offset;
658         int i,n;
659         movielib *table;
660
661         //read movie file header
662
663         nfiles = cfile_read_int(fp);        //get number of files
664
665         //table = d_malloc(sizeof(*table) + sizeof(ml_entry)*nfiles);
666         MALLOC(table, movielib, 1);
667         MALLOC(table->movies, ml_entry, nfiles);
668
669         strcpy(table->name,filename);
670         table->n_movies = nfiles;
671
672         offset = 4+4+nfiles*(13+4);     //id + nfiles + nfiles * (filename + size)
673
674         for (i=0;i<nfiles;i++) {
675                 int len;
676
677                 n = cfread(table->movies[i].name, 13, 1, fp);
678                 if ( n != 1 )
679                         break;          //end of file (probably)
680
681                 len = cfile_read_int(fp);
682
683                 table->movies[i].len = len;
684                 table->movies[i].offset = offset;
685
686                 offset += table->movies[i].len;
687
688         }
689
690         cfclose(fp);
691
692         table->flags = 0;
693
694         return table;
695
696 }
697
698
699 movielib *init_old_movie_lib(char *filename, CFILE *fp)
700 {
701         int nfiles,size;
702         int i;
703         movielib *table,*table2;
704
705         nfiles = 0;
706
707         //allocate big table
708         table = d_malloc(sizeof(*table) + sizeof(ml_entry)*MAX_MOVIES_PER_LIB);
709
710         while( 1 ) {
711                 int len;
712
713                 i = cfread(table->movies[nfiles].name, 13, 1, fp);
714                 if ( i != 1 )
715                         break;          //end of file (probably)
716
717                 i = cfread(&len, 4, 1, fp);
718                 if ( i != 1 )
719                         Error("error reading movie library <%s>",filename);
720
721                 table->movies[nfiles].len = INTEL_INT(len);
722                 table->movies[nfiles].offset = cftell(fp);
723
724                 cfseek(fp, INTEL_INT(len), SEEK_CUR);       //skip data
725
726                 nfiles++;
727         }
728
729         //allocate correct-sized table
730         size = sizeof(*table) + sizeof(ml_entry)*nfiles;
731         table2 = d_malloc(size);
732         memcpy(table2,table,size);
733         d_free(table);
734         table = table2;
735
736         strcpy(table->name,filename);
737
738         table->n_movies = nfiles;
739
740         cfclose(fp);
741
742         table->flags = 0;
743
744         return table;
745
746 }
747
748
749 //find the specified movie library, and read in list of movies in it
750 movielib *init_movie_lib(char *filename)
751 {
752         //note: this based on cfile_init_hogfile()
753
754         char id[4];
755         CFILE *fp;
756
757         fp = cfopen(filename, "rb");
758
759         if ( fp == NULL )
760                 return NULL;
761
762         cfread(id, 4, 1, fp);
763         if ( !strncmp( id, "DMVL", 4 ) )
764                 return init_new_movie_lib(filename,fp);
765         else if ( !strncmp( id, "DHF", 3 ) ) {
766                 cfseek(fp,-1,SEEK_CUR);         //old file had 3 char id
767                 return init_old_movie_lib(filename,fp);
768         }
769         else {
770                 cfclose(fp);
771                 return NULL;
772         }
773 }
774
775
776 void close_movie(int i)
777 {
778         if (movie_libs[i]) {
779                 d_free(movie_libs[i]->movies);
780                 d_free(movie_libs[i]);
781         }
782 }
783
784
785 void close_movies()
786 {
787         int i;
788
789         for (i=0;i<N_MOVIE_LIBS;i++)
790                 close_movie(i);
791 }
792
793
794 //ask user to put the D2 CD in.
795 //returns -1 if ESC pressed, 0 if OK chosen
796 //CD may not have been inserted
797 int request_cd(void)
798 {
799 #if 0
800         ubyte save_pal[256*3];
801         grs_canvas *save_canv,*tcanv;
802         int ret,was_faded=gr_palette_faded_out;
803
804         gr_palette_clear();
805
806         save_canv = grd_curcanv;
807         tcanv = gr_create_canvas(grd_curcanv->cv_w,grd_curcanv->cv_h);
808
809         gr_set_current_canvas(tcanv);
810         gr_ubitmap(0,0,&save_canv->cv_bitmap);
811         gr_set_current_canvas(save_canv);
812
813         gr_clear_canvas(BM_XRGB(0,0,0));
814
815         memcpy(save_pal,gr_palette,sizeof(save_pal));
816
817         memcpy(gr_palette,last_palette_for_color_fonts,sizeof(gr_palette));
818
819  try_again:;
820
821         ret = nm_messagebox( "CD ERROR", 1, "Ok", "Please insert your Descent II CD");
822
823         if (ret == -1) {
824                 int ret2;
825
826                 ret2 = nm_messagebox( "CD ERROR", 2, "Try Again", "Leave Game", "You must insert your\nDescent II CD to Continue");
827
828                 if (ret2 == -1 || ret2 == 0)
829                         goto try_again;
830         }
831
832         force_rb_register = 1;  //disc has changed; force register new CD
833
834         gr_palette_clear();
835
836         memcpy(gr_palette,save_pal,sizeof(save_pal));
837
838         gr_ubitmap(0,0,&tcanv->cv_bitmap);
839
840         if (!was_faded)
841                 gr_palette_load(gr_palette);
842
843         gr_free_canvas(tcanv);
844
845         return ret;
846 #else
847         con_printf(DEBUG_LEVEL, "STUB: movie: request_cd\n");
848         return 0;
849 #endif
850 }
851
852
853 void init_movie(char *filename, int libnum, int is_robots, int required)
854 {
855         int high_res, try;
856         char *res = strchr(filename, '.') - 1; // 'h' == high resolution, 'l' == low
857
858 #ifndef RELEASE
859         if (FindArg("-nomovies")) {
860                 movie_libs[libnum] = NULL;
861                 return;
862         }
863 #endif
864
865         //for robots, load highres versions if highres menus set
866         if (is_robots)
867                 high_res = MenuHiresAvailable;
868         else
869                 high_res = MovieHires;
870
871         if (high_res)
872                 *res = 'h';
873
874         for (try = 0; (movie_libs[libnum] = init_movie_lib(filename)) == NULL; try++) {
875                 char name2[100];
876
877                 strcpy(name2,CDROM_dir);
878                 strcat(name2,filename);
879                 movie_libs[libnum] = init_movie_lib(name2);
880
881                 if (movie_libs[libnum] != NULL) {
882                         movie_libs[libnum]->flags |= MLF_ON_CD;
883                         break; // we found our movie on the CD
884                 } else {
885                         if (try == 0) { // first try
886                                 if (*res == 'h') { // try low res instead
887                                         *res = 'l';
888                                         high_res = 0;
889                                 } else if (*res == 'l') { // try high
890                                         *res = 'h';
891                                         high_res = 1;
892                                 } else {
893                                         if (required)
894                                                 Warning("Cannot open movie file <%s>",filename);
895                                         break;
896                                 }
897                         } else { // try == 1
898                                 if (required) {
899                                         *res = '*';
900                                         Warning("Cannot open any movie file <%s>", filename);
901                                 }
902                                 break;
903                         }
904                 }
905         }
906
907         if (is_robots && movie_libs[libnum]!=NULL)
908                 robot_movies = high_res?2:1;
909 }
910
911
912 //find and initialize the movie libraries
913 void init_movies()
914 {
915         int i;
916         int is_robots;
917
918         for (i=0;i<N_BUILTIN_MOVIE_LIBS;i++) {
919
920                 if (!strnicmp(movielib_files[i],"robot",5))
921                         is_robots = 1;
922                 else
923                         is_robots = 0;
924
925                 init_movie(movielib_files[i],i,is_robots,1);
926         }
927
928         movie_libs[EXTRA_ROBOT_LIB] = NULL;
929
930         atexit(close_movies);
931 }
932
933
934 void init_extra_robot_movie(char *filename)
935 {
936         close_movie(EXTRA_ROBOT_LIB);
937         init_movie(filename,EXTRA_ROBOT_LIB,1,0);
938 }
939
940
941 CFILE *movie_handle;
942 int movie_start;
943
944 //looks through a movie library for a movie file
945 //returns filehandle, with fileposition at movie, or -1 if can't find
946 CFILE *search_movie_lib(movielib *lib, char *filename, int must_have)
947 {
948         int i;
949         CFILE *filehandle;
950
951         if (lib == NULL)
952                 return NULL;
953
954         for (i=0;i<lib->n_movies;i++)
955                 if (!stricmp(filename,lib->movies[i].name)) {   //found the movie in a library 
956                         int from_cd;
957
958                         from_cd = (lib->flags & MLF_ON_CD);
959
960                         if (from_cd)
961                                 songs_stop_redbook();           //ready to read from CD
962
963                         do {            //keep trying until we get the file handle
964
965                                 movie_handle = filehandle = cfopen(lib->name, "rb");
966
967                                 if (must_have && from_cd && filehandle == NULL)
968                                 {   //didn't get file!
969
970                                         if (request_cd() == -1)         //ESC from requester
971                                                 break;                                          //bail from here. will get error later
972                                 }
973
974                         } while (must_have && from_cd && filehandle == NULL);
975
976                         if (filehandle)
977                                 cfseek(filehandle, (movie_start = lib->movies[i].offset), SEEK_SET);
978
979                         return filehandle;
980                 }
981
982         return NULL;
983 }
984
985
986 //returns file handle
987 CFILE *open_movie_file(char *filename, int must_have)
988 {
989         CFILE *filehandle;
990         int i;
991
992         for (i=0;i<N_MOVIE_LIBS;i++) {
993                 if ((filehandle = search_movie_lib(movie_libs[i], filename, must_have)) != NULL)
994                         return filehandle;
995         }
996
997         return NULL;    //couldn't find it
998 }
999
1000 //sets the file position to the start of this already-open file
1001 int reset_movie_file(CFILE *handle)
1002 {
1003         Assert(handle == movie_handle);
1004
1005         cfseek(handle, movie_start, SEEK_SET);
1006
1007         return 0;       //everything is cool
1008 }