]> icculus.org git repositories - btb/d2x.git/blob - main/mission.c
use the orientation parameter of g3_draw_bitmap
[btb/d2x.git] / main / mission.c
1 /* $Id: mission.c,v 1.43 2005-06-14 07:58:26 chris 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  * Code to handle multiple missions
18  *
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include <conf.h>
23 #endif
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <ctype.h>
29 #include <limits.h>
30
31 #include "pstypes.h"
32 #include "cfile.h"
33
34 #include "strutil.h"
35 #include "inferno.h"
36 #include "mission.h"
37 #include "gameseq.h"
38 #include "titles.h"
39 #include "songs.h"
40 #include "mono.h"
41 #include "error.h"
42 #include "config.h"
43 #include "newmenu.h"
44 #include "text.h"
45 #include "u_mem.h"
46 #include "ignorecase.h"
47
48 //values for d1 built-in mission
49 #define BIM_LAST_LEVEL          27
50 #define BIM_LAST_SECRET_LEVEL   -3
51 #define BIM_BRIEFING_FILE       "briefing.tex"
52 #define BIM_ENDING_FILE         "endreg.tex"
53
54 //mission list entry
55 typedef struct mle {
56         char    *filename;          // filename without extension
57         int     builtin_hogsize;    // if it's the built-in mission, used for determining the version
58         char    mission_name[MISSION_NAME_LEN+1];
59         ubyte   descent_version;    // descent 1 or descent 2?
60         ubyte   anarchy_only_flag;  // if true, mission is anarchy only
61         char    *path;                          // relative file path
62         int             location;           // see defines below
63 } mle;
64
65 //values that describe where a mission is located
66 #define ML_CURDIR       0
67 #define ML_MISSIONDIR   1
68 #define ML_CDROM        2
69
70 int num_missions = -1;
71
72 Mission *Current_mission = NULL; // currently loaded mission
73
74 //
75 //  Special versions of mission routines for d1 builtins
76 //
77
78 int load_mission_d1(void)
79 {
80         int i;
81
82         switch (cfile_size("descent.hog")) {
83         case D1_SHAREWARE_MISSION_HOGSIZE:
84         case D1_SHAREWARE_10_MISSION_HOGSIZE:
85                 N_secret_levels = 0;
86
87                 Last_level = 7;
88                 Last_secret_level = 0;
89
90                 //build level names
91                 for (i=0;i<Last_level;i++)
92                         sprintf(Level_names[i], "level%02d.sdl", i+1);
93
94                 break;
95         case D1_MAC_SHARE_MISSION_HOGSIZE:
96                 N_secret_levels = 0;
97
98                 Last_level = 3;
99                 Last_secret_level = 0;
100
101                 //build level names
102                 for (i=0;i<Last_level;i++)
103                         sprintf(Level_names[i], "level%02d.sdl", i+1);
104
105                 break;
106         case D1_OEM_MISSION_HOGSIZE:
107         case D1_OEM_10_MISSION_HOGSIZE:
108                 N_secret_levels = 1;
109
110                 Last_level = 15;
111                 Last_secret_level = -1;
112
113                 //build level names
114                 for (i=0; i < Last_level - 1; i++)
115                         sprintf(Level_names[i], "level%02d.rdl", i+1);
116                 sprintf(Level_names[i], "saturn%02d.rdl", i+1);
117                 for (i=0; i < -Last_secret_level; i++)
118                         sprintf(Secret_level_names[i], "levels%1d.rdl", i+1);
119
120                 Secret_level_table[0] = 10;
121
122                 break;
123         default:
124                 Int3(); // fall through
125         case D1_MISSION_HOGSIZE:
126         case D1_10_MISSION_HOGSIZE:
127         case D1_MAC_MISSION_HOGSIZE:
128                 N_secret_levels = 3;
129
130                 Last_level = BIM_LAST_LEVEL;
131                 Last_secret_level = BIM_LAST_SECRET_LEVEL;
132
133                 //build level names
134                 for (i=0;i<Last_level;i++)
135                         sprintf(Level_names[i], "level%02d.rdl", i+1);
136                 for (i=0;i<-Last_secret_level;i++)
137                         sprintf(Secret_level_names[i], "levels%1d.rdl", i+1);
138
139                 Secret_level_table[0] = 10;
140                 Secret_level_table[1] = 21;
141                 Secret_level_table[2] = 24;
142
143                 break;
144         }
145         strcpy(Briefing_text_filename,BIM_BRIEFING_FILE);
146         strcpy(Ending_text_filename,BIM_ENDING_FILE);
147
148         return 1;
149 }
150
151
152 //
153 //  Special versions of mission routines for shareware
154 //
155
156 int load_mission_shareware(void)
157 {
158     strcpy(Current_mission->mission_name, SHAREWARE_MISSION_NAME);
159     Current_mission->descent_version = 2;
160     Current_mission->anarchy_only_flag = 0;
161     
162     switch (Current_mission->builtin_hogsize) {
163         case MAC_SHARE_MISSION_HOGSIZE:
164                 N_secret_levels = 1;
165
166                 Last_level = 4;
167                 Last_secret_level = -1;
168
169                 // mac demo is using the regular hog and rl2 files
170                 strcpy(Level_names[0],"d2leva-1.rl2");
171                 strcpy(Level_names[1],"d2leva-2.rl2");
172                 strcpy(Level_names[2],"d2leva-3.rl2");
173                 strcpy(Level_names[3],"d2leva-4.rl2");
174                 strcpy(Secret_level_names[0],"d2leva-s.rl2");
175                 break;
176         default:
177                 Int3(); // fall through
178         case SHAREWARE_MISSION_HOGSIZE:
179                 N_secret_levels = 0;
180
181                 Last_level = 3;
182                 Last_secret_level = 0;
183
184                 strcpy(Level_names[0],"d2leva-1.sl2");
185                 strcpy(Level_names[1],"d2leva-2.sl2");
186                 strcpy(Level_names[2],"d2leva-3.sl2");
187         }
188
189         return 1;
190 }
191
192
193 //
194 //  Special versions of mission routines for Diamond/S3 version
195 //
196
197 int load_mission_oem(void)
198 {
199     strcpy(Current_mission->mission_name, OEM_MISSION_NAME);
200     Current_mission->descent_version = 2;
201     Current_mission->anarchy_only_flag = 0;
202     
203         N_secret_levels = 2;
204
205         Last_level = 8;
206         Last_secret_level = -2;
207
208         strcpy(Level_names[0],"d2leva-1.rl2");
209         strcpy(Level_names[1],"d2leva-2.rl2");
210         strcpy(Level_names[2],"d2leva-3.rl2");
211         strcpy(Level_names[3],"d2leva-4.rl2");
212
213         strcpy(Secret_level_names[0],"d2leva-s.rl2");
214
215         strcpy(Level_names[4],"d2levb-1.rl2");
216         strcpy(Level_names[5],"d2levb-2.rl2");
217         strcpy(Level_names[6],"d2levb-3.rl2");
218         strcpy(Level_names[7],"d2levb-4.rl2");
219
220         strcpy(Secret_level_names[1],"d2levb-s.rl2");
221
222         Secret_level_table[0] = 1;
223         Secret_level_table[1] = 5;
224
225         return 1;
226 }
227
228
229 //compare a string for a token. returns true if match
230 int istok(char *buf,char *tok)
231 {
232         return strnicmp(buf,tok,strlen(tok)) == 0;
233
234 }
235
236 //adds a terminating 0 after a string at the first white space
237 void add_term(char *s)
238 {
239         while (*s && !isspace(*s)) s++;
240
241         *s = 0;         //terminate!
242 }
243
244 //returns ptr to string after '=' & white space, or NULL if no '='
245 //adds 0 after parm at first white space
246 char *get_value(char *buf)
247 {
248         char *t;
249
250         t = strchr(buf,'=')+1;
251
252         if (t) {
253                 while (*t && isspace(*t)) t++;
254
255                 if (*t)
256                         return t;
257         }
258
259         return NULL;            //error!
260 }
261
262 //reads a line, returns ptr to value of passed parm.  returns NULL if none
263 char *get_parm_value(char *parm,CFILE *f)
264 {
265         static char buf[80];
266
267         if (!cfgets(buf,80,f))
268                 return NULL;
269
270         if (istok(buf,parm))
271                 return get_value(buf);
272         else
273                 return NULL;
274 }
275
276 int ml_sort_func(mle *e0,mle *e1)
277 {
278         return stricmp(e0->mission_name,e1->mission_name);
279
280 }
281
282 extern char CDROM_dir[];
283
284 //returns 1 if file read ok, else 0
285 int read_mission_file(mle *mission, char *filename, int location)
286 {
287         char filename2[100];
288         CFILE *mfile;
289
290         //printf("reading: %s\n", filename);
291
292         switch (location) {
293                 case ML_MISSIONDIR:
294                         strcpy(filename2,MISSION_DIR);
295                         break;
296
297                 case ML_CDROM:
298                         songs_stop_redbook();           //so we can read from the CD
299                         strcpy(filename2,CDROM_dir);
300                         break;
301
302                 default:
303                         Int3();         //fall through
304
305                 case ML_CURDIR:
306                         strcpy(filename2,"");
307                         break;
308         }
309         strcat(filename2,filename);
310
311         mfile = cfopen(filename2,"rb");
312
313         if (mfile) {
314                 char *p;
315                 char temp[PATH_MAX], *ext;
316
317                 strcpy(temp,filename);
318                 p = strrchr(temp, '/'); // get the filename at the end of the path
319                 if (!p)
320                         p = temp;
321                 else p++;
322                 
323                 if ((ext = strchr(p, '.')) == NULL)
324                         return 0;       //missing extension
325                 // look if it's .mn2 or .msn
326                 mission->descent_version = (ext[3] == '2') ? 2 : 1;
327                 *ext = 0;                       //kill extension
328
329                 mission->path = d_strdup(temp);
330                 mission->anarchy_only_flag = 0;
331                 mission->filename = mission->path + (p - temp);
332                 mission->location = location;
333
334                 p = get_parm_value("name",mfile);
335
336                 if (!p) {               //try enhanced mission
337                         cfseek(mfile,0,SEEK_SET);
338                         p = get_parm_value("xname",mfile);
339                 }
340
341                 if (!p) {       //try super-enhanced mission!
342                         cfseek(mfile,0,SEEK_SET);
343                         p = get_parm_value("zname",mfile);
344                 }
345
346                 if (p) {
347                         char *t;
348                         if ((t=strchr(p,';'))!=NULL)
349                                 *t=0;
350                         t = p + strlen(p)-1;
351                         while (isspace(*t))
352                                 *t-- = 0; // remove trailing whitespace
353                         if (strlen(p) > MISSION_NAME_LEN)
354                                 p[MISSION_NAME_LEN] = 0;
355                         strncpy(mission->mission_name, p, MISSION_NAME_LEN + 1);
356                 }
357                 else {
358                         cfclose(mfile);
359                         d_free(mission->path);
360                         return 0;
361                 }
362
363                 p = get_parm_value("type",mfile);
364
365                 //get mission type
366                 if (p)
367                         mission->anarchy_only_flag = istok(p,"anarchy");
368
369                 cfclose(mfile);
370
371                 return 1;
372         }
373
374         return 0;
375 }
376
377 void add_d1_builtin_mission_to_list(mle *mission)
378 {
379     int size;
380     
381         if (!cfexist("descent.hog"))
382                 return;
383
384         size = cfile_size("descent.hog");
385
386         switch (size) {
387         case D1_SHAREWARE_MISSION_HOGSIZE:
388         case D1_SHAREWARE_10_MISSION_HOGSIZE:
389         case D1_MAC_SHARE_MISSION_HOGSIZE:
390                 mission->filename = d_strdup(D1_MISSION_FILENAME);
391                 strcpy(mission->mission_name, D1_SHAREWARE_MISSION_NAME);
392                 mission->anarchy_only_flag = 0;
393                 break;
394         case D1_OEM_MISSION_HOGSIZE:
395         case D1_OEM_10_MISSION_HOGSIZE:
396                 mission->filename = d_strdup(D1_MISSION_FILENAME);
397                 strcpy(mission->mission_name, D1_OEM_MISSION_NAME);
398                 mission->anarchy_only_flag = 0;
399                 break;
400         default:
401                 Warning("Unknown D1 hogsize %d\n", size);
402                 Int3();
403                 // fall through
404         case D1_MISSION_HOGSIZE:
405         case D1_10_MISSION_HOGSIZE:
406         case D1_MAC_MISSION_HOGSIZE:
407                 mission->filename = d_strdup(D1_MISSION_FILENAME);
408                 strcpy(mission->mission_name, D1_MISSION_NAME);
409                 mission->anarchy_only_flag = 0;
410                 break;
411         }
412
413         mission->descent_version = 1;
414         mission->anarchy_only_flag = 0;
415         mission->builtin_hogsize = 0;
416         mission->path = mission->filename;
417         num_missions++;
418 }
419
420
421 void add_builtin_mission_to_list(mle *mission, char *name)
422 {
423     int size = cfile_size("descent2.hog");
424     
425         if (size == -1)
426                 size = cfile_size("d2demo.hog");
427
428         switch (size) {
429         case SHAREWARE_MISSION_HOGSIZE:
430         case MAC_SHARE_MISSION_HOGSIZE:
431                 mission->filename = d_strdup(SHAREWARE_MISSION_FILENAME);
432                 strcpy(mission->mission_name,SHAREWARE_MISSION_NAME);
433                 mission->anarchy_only_flag = 0;
434                 break;
435         case OEM_MISSION_HOGSIZE:
436                 mission->filename = d_strdup(OEM_MISSION_FILENAME);
437                 strcpy(mission->mission_name,OEM_MISSION_NAME);
438                 mission->anarchy_only_flag = 0;
439                 break;
440         default:
441                 Warning("Unknown hogsize %d, trying %s\n", size, FULL_MISSION_FILENAME ".mn2");
442                 Int3(); //fall through
443         case FULL_MISSION_HOGSIZE:
444         case FULL_10_MISSION_HOGSIZE:
445         case MAC_FULL_MISSION_HOGSIZE:
446                 if (!read_mission_file(mission, FULL_MISSION_FILENAME ".mn2", ML_CURDIR))
447                         Error("Could not find required mission file <%s>", FULL_MISSION_FILENAME ".mn2");
448         }
449
450         mission->path = mission->filename;
451         strcpy(name, mission->filename);
452     mission->builtin_hogsize = size;
453         mission->descent_version = 2;
454         mission->anarchy_only_flag = 0;
455         num_missions++;
456 }
457
458
459 void add_missions_to_list(mle *mission_list, char *path, char *rel_path, int anarchy_mode)
460 {
461         char **find, **i, *ext;
462
463         find = PHYSFS_enumerateFiles(path);
464
465         for (i = find; *i != NULL; i++)
466         {
467                 if (strlen(path) + strlen(*i) + 1 >= PATH_MAX)
468                         continue;       // path is too long
469
470                 strcat(rel_path, *i);
471                 if (PHYSFS_isDirectory(path))
472                 {
473                         strcat(rel_path, "/");
474                         add_missions_to_list(mission_list, path, rel_path, anarchy_mode);
475                         *(strrchr(path, '/')) = 0;
476                 }
477                 else if ((ext = strrchr(*i, '.')) && (!strnicmp(ext, ".msn", 4) || !strnicmp(ext, ".mn2", 4)))
478                         if (read_mission_file(&mission_list[num_missions], rel_path, ML_MISSIONDIR))
479                         {
480                                 if (anarchy_mode || !mission_list[num_missions].anarchy_only_flag)
481                                 {
482                                         mission_list[num_missions].builtin_hogsize = 0;
483                                         num_missions++;
484                                 }
485                                 else
486                                         d_free(mission_list[num_missions].path);
487                         }
488                 
489                 if (num_missions >= MAX_MISSIONS)
490                 {
491                         mprintf((0, "Warning: more missions than d2x can handle\n"));
492                         break;
493                 }
494
495                 (strrchr(path, '/'))[1] = 0;    // chop off the entry
496         }
497
498         PHYSFS_freeList(find);
499 }
500
501 /* move <mission_name> to <place> on mission list, increment <place> */
502 void promote (mle *mission_list, char * mission_name, int * top_place)
503 {
504         int i;
505         char name[FILENAME_LEN], * t;
506         strcpy(name, mission_name);
507         if ((t = strchr(name,'.')) != NULL)
508                 *t = 0; //kill extension
509         //printf("promoting: %s\n", name);
510         for (i = *top_place; i < num_missions; i++)
511                 if (!stricmp(mission_list[i].filename, name)) {
512                         //swap mission positions
513                         mle temp;
514
515                         temp = mission_list[*top_place];
516                         mission_list[*top_place] = mission_list[i];
517                         mission_list[i] = temp;
518                         ++(*top_place);
519                         break;
520                 }
521 }
522
523 void free_mission(void)
524 {
525     // May become more complex with the editor
526     if (Current_mission) {
527                 d_free(Current_mission->filename);
528         d_free(Current_mission);
529     }
530 }
531
532
533
534 //fills in the global list of missions.  Returns the number of missions
535 //in the list.  If anarchy_mode is set, then also add anarchy-only missions.
536
537 extern char CDROM_dir[];
538 #if 0
539 extern char AltHogDir[];
540 extern char AltHogdir_initialized;
541 #endif
542
543 mle *build_mission_list(int anarchy_mode)
544 {
545         mle *mission_list;
546         int top_place;
547     char        builtin_mission_filename[FILENAME_LEN];
548         char    search_str[PATH_MAX] = MISSION_DIR;
549
550         //now search for levels on disk
551
552 //@@Took out this code because after this routine was called once for
553 //@@a list of single-player missions, a subsequent call for a list of
554 //@@anarchy missions would not scan again, and thus would not find the
555 //@@anarchy-only missions.  If we retain the minimum level of install,
556 //@@we may want to put the code back in, having it always scan for all
557 //@@missions, and have the code that uses it sort out the ones it wants.
558 //@@    if (num_missions != -1) {
559 //@@            if (Current_mission_num != 0)
560 //@@                    load_mission(0);                                //set built-in mission as default
561 //@@            return num_missions;
562 //@@    }
563
564         MALLOC(mission_list, mle, MAX_MISSIONS);
565         num_missions = 0;
566         
567         add_builtin_mission_to_list(mission_list + num_missions, builtin_mission_filename);  //read built-in first
568         add_d1_builtin_mission_to_list(mission_list + num_missions);
569         add_missions_to_list(mission_list, search_str, search_str + strlen(search_str), anarchy_mode);
570         
571         // move original missions (in story-chronological order)
572         // to top of mission list
573         top_place = 0;
574         promote(mission_list, "descent", &top_place); // original descent 1 mission
575         promote(mission_list, builtin_mission_filename, &top_place); // d2 or d2demo
576         promote(mission_list, "d2x", &top_place); // vertigo
577
578         if (num_missions > top_place)
579                 qsort(&mission_list[top_place],
580                       num_missions - top_place,
581                       sizeof(*mission_list),
582                                 (int (*)( const void *, const void * ))ml_sort_func);
583
584
585         if (num_missions > top_place)
586                 qsort(&mission_list[top_place],
587                       num_missions - top_place,
588                       sizeof(*mission_list),
589                       (int (*)( const void *, const void * ))ml_sort_func);
590
591         //load_mission(0);   //set built-in mission as default
592
593     atexit(free_mission);
594
595         return mission_list;
596 }
597
598 void free_mission_list(mle *mission_list)
599 {
600         int i;
601
602         for (i = 0; i < num_missions; i++)
603                 d_free(mission_list[i].path);
604         
605         d_free(mission_list);
606         num_missions = 0;
607 }
608
609 void init_extra_robot_movie(char *filename);
610
611 //values for built-in mission
612
613 //loads the specfied mission from the mission list.
614 //build_mission_list() must have been called.
615 //Returns true if mission loaded ok, else false.
616 int load_mission(mle *mission)
617 {
618         CFILE *mfile;
619         char buf[PATH_MAX], *v;
620     int found_hogfile;
621
622     if (Current_mission)
623         free_mission();
624     Current_mission = d_malloc(sizeof(Mission));
625     if (!Current_mission) return 0;
626     *(mle *) Current_mission = *mission;
627         Current_mission->filename = d_strdup(mission->filename); // don't want to lose it
628
629     // for Descent 1 missions, load descent.hog
630     if (EMULATING_D1) {
631         if (!cfile_init("descent.hog"))
632             Warning("descent.hog not available, this mission may be missing some files required for briefings and exit sequence\n");
633         if (!stricmp(Current_mission_filename, D1_MISSION_FILENAME))
634             return load_mission_d1();
635     }
636
637     if (PLAYING_BUILTIN_MISSION) {
638                 switch (Current_mission->builtin_hogsize) {
639                 case SHAREWARE_MISSION_HOGSIZE:
640                 case MAC_SHARE_MISSION_HOGSIZE:
641                         return load_mission_shareware();
642                         break;
643                 case OEM_MISSION_HOGSIZE:
644                         return load_mission_oem();
645                         break;
646                 default:
647                         Int3(); // fall through
648                 case FULL_MISSION_HOGSIZE:
649                 case FULL_10_MISSION_HOGSIZE:
650                 case MAC_FULL_MISSION_HOGSIZE:
651                         // continue on... (use d2.mn2 from hogfile)
652                         break;
653                 }
654     }
655
656         mprintf(( 0, "Loading mission %s\n", Current_mission_filename ));
657
658         //read mission from file
659
660         switch (mission->location) {
661         case ML_MISSIONDIR:
662                 strcpy(buf,MISSION_DIR);
663                 break;
664         case ML_CDROM:
665                 strcpy(buf,CDROM_dir);
666                 break;
667         default:
668                 Int3();                                                 //fall through
669         case ML_CURDIR:
670                 strcpy(buf,"");
671                 break;
672         }
673         strcat(buf, mission->path);
674         if (mission->descent_version == 2)
675                 strcat(buf,".mn2");
676         else
677                 strcat(buf,".msn");
678
679         PHYSFSEXT_locateCorrectCase(buf);
680
681         mfile = cfopen(buf,"rb");
682         if (mfile == NULL) {
683         free_mission();
684                 return 0;               //error!
685         }
686
687     //for non-builtin missions, load HOG
688     if (!PLAYING_BUILTIN_MISSION) {
689
690         strcpy(buf+strlen(buf)-4,".hog");               //change extension
691
692                 PHYSFSEXT_locateCorrectCase(buf);
693
694                 found_hogfile = cfile_init(buf);
695
696 #ifdef RELEASE                          //for release, require mission to be in hogfile
697         if (! found_hogfile) {
698             cfclose(mfile);
699             free_mission();
700             return 0;
701         }
702 #endif
703     }
704
705     //init vars
706         Last_level = 0;
707         Last_secret_level = 0;
708         Briefing_text_filename[0] = 0;
709         Ending_text_filename[0] = 0;
710
711         while (cfgets(buf,80,mfile)) {
712
713                 if (istok(buf,"name")) {
714                         Current_mission->enhanced = 0;
715                         continue;                                               //already have name, go to next line
716                 }
717                 if (istok(buf,"xname")) {
718                         Current_mission->enhanced = 1;
719                         continue;                                               //already have name, go to next line
720                 }
721                 if (istok(buf,"zname")) {
722                         Current_mission->enhanced = 2;
723                         continue;                                               //already have name, go to next line
724                 }
725                 else if (istok(buf,"type"))
726                         continue;                                               //already have name, go to next line
727                 else if (istok(buf,"hog")) {
728                         char    *bufp = buf;
729
730                         while (*(bufp++) != '=')
731                                 ;
732
733                         if (*bufp == ' ')
734                                 while (*(++bufp) == ' ')
735                                         ;
736
737                         cfile_init(bufp);
738                         mprintf((0, "Hog file override = [%s]\n", bufp));
739                 }
740                 else if (istok(buf,"briefing")) {
741                         if ((v = get_value(buf)) != NULL) {
742                                 add_term(v);
743                                 if (strlen(v) < 13)
744                                         strcpy(Briefing_text_filename,v);
745                         }
746                 }
747                 else if (istok(buf,"ending")) {
748                         if ((v = get_value(buf)) != NULL) {
749                                 add_term(v);
750                                 if (strlen(v) < 13)
751                                         strcpy(Ending_text_filename,v);
752                         }
753                 }
754                 else if (istok(buf,"num_levels")) {
755
756                         if ((v=get_value(buf))!=NULL) {
757                                 int n_levels,i;
758
759                                 n_levels = atoi(v);
760
761                                 for (i=0;i<n_levels && cfgets(buf,80,mfile);i++) {
762
763                                         add_term(buf);
764                                         if (strlen(buf) <= 12) {
765                                                 strcpy(Level_names[i],buf);
766                                                 Last_level++;
767                                         }
768                                         else
769                                                 break;
770                                 }
771
772                         }
773                 }
774                 else if (istok(buf,"num_secrets")) {
775                         if ((v=get_value(buf))!=NULL) {
776                                 int i;
777
778                                 N_secret_levels = atoi(v);
779
780                                 Assert(N_secret_levels <= MAX_SECRET_LEVELS_PER_MISSION);
781
782                                 for (i=0;i<N_secret_levels && cfgets(buf,80,mfile);i++) {
783                                         char *t;
784
785                                         
786                                         if ((t=strchr(buf,','))!=NULL) *t++=0;
787                                         else
788                                                 break;
789
790                                         add_term(buf);
791                                         if (strlen(buf) <= 12) {
792                                                 strcpy(Secret_level_names[i],buf);
793                                                 Secret_level_table[i] = atoi(t);
794                                                 if (Secret_level_table[i]<1 || Secret_level_table[i]>Last_level)
795                                                         break;
796                                                 Last_secret_level--;
797                                         }
798                                         else
799                                                 break;
800                                 }
801
802                         }
803                 }
804
805         }
806
807         cfclose(mfile);
808
809         if (Last_level <= 0) {
810                 free_mission();         //no valid mission loaded
811                 return 0;
812         }
813
814         if (Current_mission->enhanced) {
815                 char t[50];
816                 extern void bm_read_extra_robots();
817                 sprintf(t,"%s.ham",Current_mission_filename);
818                 bm_read_extra_robots(t, Current_mission->enhanced);
819                 strncpy(t,Current_mission_filename,6);
820                 init_extra_robot_movie(t);
821         }
822
823         return 1;
824 }
825
826 //loads the named mission if exists.
827 //Returns true if mission loaded ok, else false.
828 int load_mission_by_name(char *mission_name)
829 {
830         int i;
831         mle *mission_list = build_mission_list(1);
832         bool found = 0;
833
834         for (i = 0; i < num_missions; i++)
835                 if (!stricmp(mission_name, mission_list[i].filename))
836                         found = load_mission(mission_list + i);
837
838         free_mission_list(mission_list);
839         return found;
840 }
841
842 int select_mission(int anarchy_mode, char *message)
843 {
844     mle *mission_list = build_mission_list(anarchy_mode);
845         int new_mission_num;
846
847     if (num_missions <= 1) {
848         new_mission_num = load_mission(mission_list) ? 0 : -1;
849     } else {
850         int i, default_mission;
851         char * m[MAX_MISSIONS];
852
853         default_mission = 0;
854         for (i = 0; i < num_missions; i++) {
855             m[i] = mission_list[i].mission_name;
856             if ( !stricmp( m[i], config_last_mission ) )
857                 default_mission = i;
858         }
859
860         new_mission_num = newmenu_listbox1( message, num_missions, m, 1, default_mission, NULL );
861
862         if (new_mission_num >= 0) {
863                         // Chose a mission
864                         strcpy(config_last_mission, m[new_mission_num]  );
865         
866                         if (!load_mission(mission_list + new_mission_num)) {
867                                 nm_messagebox( NULL, 1, TXT_OK, TXT_MISSION_ERROR);
868                                 new_mission_num = -1;
869                         }
870                 }
871     }
872
873         free_mission_list(mission_list);
874     return (new_mission_num >= 0);
875 }