]> icculus.org git repositories - btb/d2x.git/blob - main/newmenu.c
close box is pretty ugly
[btb/d2x.git] / main / newmenu.c
1 /* $Id: newmenu.c,v 1.33 2006-02-24 06:19:20 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  * Routines for menus.
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 <stdarg.h>
29 #include <ctype.h>
30 #if !defined(_MSC_VER) && !defined(macintosh)
31 #include <unistd.h>
32 #endif
33 #include <limits.h>
34
35 #include <physfs.h>
36
37 #include "error.h"
38 #include "pstypes.h"
39 #include "gr.h"
40 #include "mono.h"
41 #include "songs.h"
42 #include "key.h"
43 #include "palette.h"
44 #include "game.h"
45 #include "text.h"
46 #include "menu.h"
47 #include "newmenu.h"
48 #include "gamefont.h"
49 #include "gamepal.h"
50 #ifdef NETWORK
51 #include "network.h"
52 #endif
53 #include "iff.h"
54 #include "pcx.h"
55 #include "u_mem.h"
56 #include "mouse.h"
57 #include "joy.h"
58 #include "digi.h"
59
60 #include "multi.h"
61 #include "endlevel.h"
62 #include "screens.h"
63 #include "config.h"
64 #include "player.h"
65 #include "newdemo.h"
66 #include "kconfig.h"
67 #include "strutil.h"
68 #include "playsave.h"
69 #ifdef MACINTOSH
70 #include <Events.h>
71 #endif
72
73 #if defined (TACTILE)
74  #include "tactile.h"
75 #endif
76
77 #define MAXDISPLAYABLEITEMS 15
78
79 #define LHX(x)      ((x)*(MenuHires?2:1))
80 #define LHY(y)      ((y)*(MenuHires?2.4:1))
81
82 #define TITLE_FONT      HUGE_FONT
83 #define NORMAL_FONT     MEDIUM1_FONT    //normal, non-highlighted item
84 #define SELECTED_FONT   MEDIUM2_FONT    //highlighted item
85 #define SUBTITLE_FONT   MEDIUM3_FONT
86
87 #define NORMAL_CHECK_BOX    "\x81"  // 129
88 #define CHECKED_CHECK_BOX   "\x82"  // 130
89
90 #define NORMAL_RADIO_BOX    "\x7f"  // 127
91 #define CHECKED_RADIO_BOX   "\x80"  // 128
92 #define CURSOR_STRING       "_"
93 #define SLIDER_LEFT         "\x83"  // 131
94 #define SLIDER_RIGHT        "\x84"  // 132
95 #define SLIDER_MIDDLE       "\x85"  // 133
96 #define SLIDER_MARKER       "\x86"  // 134
97 #define UP_ARROW_MARKER     "\x87"  // 135
98 #define DOWN_ARROW_MARKER   "\x88"  // 136
99
100 int newmenu_do4( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int citem, char * filename, int width, int height, int TinyMode );
101 void show_extra_netgame_info(int choice);
102
103
104 int Newmenu_first_time = 1;
105 //--unused-- int Newmenu_fade_in = 1;
106
107 typedef struct bkg {
108         grs_canvas * menu_canvas;
109         grs_bitmap * saved;                     // The background under the menu.
110         grs_bitmap * background;
111 } bkg;
112
113 grs_bitmap nm_background,nm_background_save;
114
115 #define MESSAGEBOX_TEXT_SIZE 2176   // How many characters in messagebox (changed form 300 (fixes crash from show_game_score and friends) - 2000/01/18 Matt Mueller)
116 #define MAX_TEXT_WIDTH  200                             // How many pixels wide a input box can be
117
118 ubyte MenuReordering=0;
119 ubyte SurfingNet=0;
120 char Pauseable_menu=0;
121 char already_showing_info=0;
122
123
124 void newmenu_close()    {
125         if ( nm_background.bm_data )
126                 d_free(nm_background.bm_data);
127
128         if ( nm_background_save.bm_data )
129                 d_free(nm_background_save.bm_data);
130         Newmenu_first_time = 1;
131 }
132
133 ubyte background_palette[768];
134
135 //should be called whenever the palette changes
136 void nm_remap_background()
137 {
138         if (!Newmenu_first_time) {
139                 if (!nm_background.bm_data)
140                         nm_background.bm_data = d_malloc(nm_background.bm_w * nm_background.bm_h);
141
142                 memcpy(nm_background.bm_data,nm_background_save.bm_data,nm_background.bm_w * nm_background.bm_h);
143
144                 gr_remap_bitmap_good( &nm_background, background_palette, -1, -1 );
145         }
146 }
147
148 #include <math.h>
149
150 extern char last_palette_loaded[];
151
152 void nm_draw_background1(char * filename)
153 {
154         int pcx_error;
155         grs_bitmap *bmp;
156         ubyte pal[256*3];
157         int width, height;
158
159         //@@//I think this only gets called to fill the whole screen
160         //@@Assert(grd_curcanv->cv_bitmap.bm_w == 320);
161         //@@Assert(grd_curcanv->cv_bitmap.bm_h == 200);
162
163         pcx_error = pcx_get_dimensions(filename, &width, &height);
164         if (pcx_error != PCX_ERROR_NONE)
165                 Error("Could not open pcx file <%s>\n", filename);
166
167         bmp = gr_create_bitmap(width, height);
168
169         pcx_error = pcx_read_bitmap(filename,bmp,bmp->bm_type,pal);
170         Assert(pcx_error == PCX_ERROR_NONE);
171
172         //@@gr_remap_bitmap_good( bmp, pal, -1, -1 );
173
174
175         {       //remap stuff. this code is kindof a hack
176
177                 //now, before we bring up the menu, we need to
178                 //do some stuff to make sure the palette is ok.  First, we need to
179                 //get our current palette into the 2d's array, so the remapping will
180                 //work.  Second, we need to remap the fonts.  Third, we need to fill
181                 //in part of the fade tables so the darkening of the menu edges works
182
183                 gr_copy_palette(gr_palette, pal, sizeof(gr_palette));
184 #ifdef OGL
185                 gr_palette_load(gr_palette);
186 #endif
187                 remap_fonts_and_menus(1);
188
189         }
190
191         show_fullscr(bmp);
192
193         gr_free_bitmap(bmp);
194
195         strcpy(last_palette_loaded,"");         //force palette load next time
196
197 }
198
199 #define MENU_BACKGROUND_BITMAP_HIRES (cfexist("scoresb.pcx")?"scoresb.pcx":"scores.pcx")
200 #define MENU_BACKGROUND_BITMAP_LORES (cfexist("scores.pcx")?"scores.pcx":"scoresb.pcx") // Mac datafiles only have scoresb.pcx
201
202 #define MENU_BACKGROUND_BITMAP (MenuHires?MENU_BACKGROUND_BITMAP_HIRES:MENU_BACKGROUND_BITMAP_LORES)
203
204 int Background_hires;
205 int No_darkening=0;
206
207 void nm_draw_background(int x1, int y1, int x2, int y2 )
208 {
209         int w,h;
210
211         if (Newmenu_first_time || MenuHires!=Background_hires)  {
212                 int pcx_error;
213
214                 if (Newmenu_first_time) {
215                         atexit( newmenu_close );
216                         Newmenu_first_time = 0;
217                         nm_background_save.bm_data=NULL;                
218                 }
219                 else {
220                         if (nm_background_save.bm_data)
221                                 d_free(nm_background_save.bm_data);
222                         if (nm_background.bm_data)
223                                 d_free(nm_background.bm_data);
224                 }
225
226                 pcx_error = pcx_read_bitmap(MENU_BACKGROUND_BITMAP,&nm_background_save,BM_LINEAR,background_palette);
227                 Assert(pcx_error == PCX_ERROR_NONE);
228
229                 nm_background = nm_background_save;
230                 nm_background.bm_data=NULL;             
231                 nm_remap_background();
232
233                 Background_hires = MenuHires;
234         }
235
236         if ( x1 < 0 ) x1 = 0;
237         if ( y1 < 0 ) y1 = 0;
238
239         w = x2-x1+1;
240         h = y2-y1+1;
241
242         //if ( w > nm_background.bm_w ) w = nm_background.bm_w;
243         //if ( h > nm_background.bm_h ) h = nm_background.bm_h;
244         
245         x2 = x1 + w - 1;
246         y2 = y1 + h - 1;
247
248 #if 0
249         {
250                 grs_bitmap *tmp = gr_create_bitmap(w, h);
251
252                 gr_bitmap_scale_to(&nm_background, tmp);
253
254                 if (No_darkening)
255                         gr_bm_bitblt(w, h, x1, y1, LHX(10), LHY(10), tmp, &(grd_curcanv->cv_bitmap) );
256                 else
257                         gr_bm_bitblt(w, h, x1, y1, 0, 0, tmp, &(grd_curcanv->cv_bitmap) );
258                 gr_free_bitmap(tmp);
259         }
260 #else
261         if (No_darkening)
262                 gr_bm_bitblt(w, h, x1, y1, LHX(10), LHY(10), &nm_background, &(grd_curcanv->cv_bitmap) );
263         else
264                 gr_bm_bitblt(w, h, x1, y1, 0, 0, &nm_background, &(grd_curcanv->cv_bitmap) );
265 #endif
266
267         if (!No_darkening) {
268                 Gr_scanline_darkening_level = 2*7;
269
270                 gr_setcolor( BM_XRGB(0,0,0) );
271                 gr_urect( x2-5, y1+5, x2-5, y2-5 );
272                 gr_urect( x2-4, y1+4, x2-4, y2-5 );
273                 gr_urect( x2-3, y1+3, x2-3, y2-5 );
274                 gr_urect( x2-2, y1+2, x2-2, y2-5 );
275                 gr_urect( x2-1, y1+1, x2-1, y2-5 );
276                 gr_urect( x2+0, y1+0, x2-0, y2-5 );
277
278                 gr_urect( x1+5, y2-5, x2, y2-5 );
279                 gr_urect( x1+4, y2-4, x2, y2-4 );
280                 gr_urect( x1+3, y2-3, x2, y2-3 );
281                 gr_urect( x1+2, y2-2, x2, y2-2 );
282                 gr_urect( x1+1, y2-1, x2, y2-1 );
283                 gr_urect( x1+0, y2, x2, y2-0 );
284         }
285
286         Gr_scanline_darkening_level = GR_FADE_LEVELS;
287 }
288
289 void nm_restore_background( int x, int y, int w, int h )
290 {
291         int x1, x2, y1, y2;
292
293         x1 = x; x2 = x+w-1;
294         y1 = y; y2 = y+h-1;
295
296         if ( x1 < 0 ) x1 = 0;
297         if ( y1 < 0 ) y1 = 0;
298
299         if ( x2 >= nm_background.bm_w ) x2=nm_background.bm_w-1;
300         if ( y2 >= nm_background.bm_h ) y2=nm_background.bm_h-1;
301
302         w = x2 - x1 + 1;
303         h = y2 - y1 + 1;
304
305         gr_bm_bitblt(w, h, x1, y1, x1, y1, &nm_background, &(grd_curcanv->cv_bitmap) );
306 }
307
308 // Draw a left justfied string
309 void nm_string( bkg * b, int w1,int x, int y, char * s)
310 {
311         int w,h,aw,tx=0,t=0,i;
312         char *p,*s1,*s2,measure[2];
313         int XTabs[]={15,87,124,162,228,253};
314    
315         p=s1=NULL;
316         s2 = d_strdup(s);
317
318         for (i=0;i<6;i++) {
319                 XTabs[i]=(LHX(XTabs[i]));
320                 XTabs[i]+=x;
321         }
322  
323         measure[1]=0;
324
325         if (!SurfingNet) {
326                 p = strchr( s2, '\t' );
327                 if (p && (w1>0) ) {
328                         *p = '\0';
329                         s1 = p+1;
330                 }
331         }
332
333         gr_get_string_size(s2, &w, &h, &aw  );
334
335         if (w1 > 0)
336                 w = w1;
337
338         // CHANGED
339         gr_bm_bitblt(b->background->bm_w-15, h+2, 5, y-1, 5, y-1, b->background, &(grd_curcanv->cv_bitmap) );
340         //gr_bm_bitblt(w, h, x, y, x, y, b->background, &(grd_curcanv->cv_bitmap) );
341
342         if (SurfingNet) {
343                 for (i=0;i<strlen(s2);i++) {
344                         if (s2[i]=='\t' && SurfingNet) {
345                                 x=XTabs[t];
346                                 t++;
347                                 continue;
348                         }
349                         measure[0]=s2[i];
350                         gr_get_string_size(measure,&tx,&h,&aw);
351                         gr_string(x,y,measure);
352                         x+=tx;
353                 }
354         }
355         else
356                 gr_string (x,y,s2);
357          
358         if (!SurfingNet && p && (w1>0) ) {
359                 gr_get_string_size(s1, &w, &h, &aw  );
360
361                 gr_string( x+w1-w, y, s1 );
362
363                 *p = '\t';
364         }
365         d_free(s2);
366 }
367
368 // Draw a slider and it's string
369 void nm_string_slider( bkg * b, int w1,int x, int y, char * s )
370 {
371         int w,h,aw;
372         char *p,*s1;
373
374         s1=NULL;
375
376         p = strchr( s, '\t' );
377         if (p)  {
378                 *p = '\0';
379                 s1 = p+1;
380         }
381
382         gr_get_string_size(s, &w, &h, &aw  );
383         // CHANGED
384
385                 gr_bm_bitblt(b->background->bm_w-15, h, 5, y, 5, y, b->background, &(grd_curcanv->cv_bitmap) );
386                 //gr_bm_bitblt(w, h, x, y, x, y, b->background, &(grd_curcanv->cv_bitmap) );
387
388                 gr_string( x, y, s );
389
390                 if (p)  {
391                         gr_get_string_size(s1, &w, &h, &aw  );
392
393                         // CHANGED
394                         gr_bm_bitblt(w, 1, x+w1-w, y, x+w1-w, y, b->background, &(grd_curcanv->cv_bitmap) );
395                         // CHANGED
396                         gr_bm_bitblt(w, 1, x+w1-w, y+h-1, x+w1-w, y, b->background, &(grd_curcanv->cv_bitmap) );
397
398                         gr_string( x+w1-w, y, s1 );
399
400                         *p = '\t';
401                 }
402 }
403
404
405 // Draw a left justfied string with black background.
406 void nm_string_black( bkg * b, int w1,int x, int y, char * s )
407 {
408         int w,h,aw;
409         gr_get_string_size(s, &w, &h, &aw  );
410         if (w1 == 0) w1 = w;
411
412                 gr_setcolor( BM_XRGB(2,2,2) );
413                 gr_rect( x-1, y-1, x-1, y+h-1 );
414                 gr_rect( x-1, y-1, x+w1-1, y-1 );
415
416          
417                 gr_setcolor( BM_XRGB(5,5,5) );
418                 gr_rect( x, y+h, x+w1, y+h);
419                 gr_rect( x+w1, y-1, x+w1, y+h );
420      
421                 gr_setcolor( BM_XRGB(0,0,0) );
422                 gr_rect( x, y, x+w1-1, y+h-1 );
423         
424                 gr_string( x+1, y+1, s );
425 }
426
427
428 // Draw a right justfied string
429 void nm_rstring( bkg * b,int w1,int x, int y, char * s )
430 {
431         int w,h,aw;
432         gr_get_string_size(s, &w, &h, &aw  );
433         x -= 3;
434
435         if (w1 == 0) w1 = w;
436
437         //mprintf( 0, "Width = %d, string='%s'\n", w, s );
438
439         // CHANGED
440         gr_bm_bitblt(w1, h, x-w1, y, x-w1, y, b->background, &(grd_curcanv->cv_bitmap) );
441         gr_string( x-w, y, s );
442 }
443
444 #include "timer.h"
445
446 //for text items, constantly redraw cursor (to achieve flash)
447 void update_cursor( newmenu_item *item)
448 {
449         int w,h,aw;
450         fix time = timer_get_approx_seconds();
451         int x,y;
452         char * text = item->text;
453
454         Assert(item->type==NM_TYPE_INPUT_MENU || item->type==NM_TYPE_INPUT);
455
456         while( *text )  {
457                 gr_get_string_size(text, &w, &h, &aw  );
458                 if ( w > item->w-10 )
459                         text++;
460                 else
461                         break;
462         }
463         if (*text==0) 
464                 w = 0;
465         x = item->x+w; y = item->y;
466
467         if (time & 0x8000)
468                 gr_string( x, y, CURSOR_STRING );
469         else {
470                 gr_setcolor( BM_XRGB(0,0,0) );
471                 gr_rect( x, y, x+grd_curcanv->cv_font->ft_w-1, y+grd_curcanv->cv_font->ft_h-1 );
472         }
473 }
474
475 void nm_string_inputbox( bkg *b, int w, int x, int y, char * text, int current )
476 {
477         int w1,h1,aw;
478
479         while( *text )  {
480                 gr_get_string_size(text, &w1, &h1, &aw  );
481                 if ( w1 > w-10 )
482                         text++;
483                 else
484                         break;
485         }
486         if ( *text == 0 )
487                 w1 = 0;
488
489    nm_string_black( b, w, x, y, text );
490                 
491         if ( current )  {
492                 gr_string( x+w1+1, y, CURSOR_STRING );
493         }
494 }
495
496 void draw_item( bkg * b, newmenu_item *item, int is_current,int tiny )
497 {
498        if (tiny)
499         {
500          if (is_current)
501           gr_set_fontcolor(gr_find_closest_color_current(57,49,20),-1);
502          else
503           gr_set_fontcolor(gr_find_closest_color_current(29,29,47),-1);
504
505          if (item->text[0]=='\t')
506           gr_set_fontcolor (gr_find_closest_color_current(63,63,63),-1);
507         }
508        else
509         {
510          if (is_current)
511           grd_curcanv->cv_font = SELECTED_FONT;
512          else
513           grd_curcanv->cv_font = NORMAL_FONT;
514
515                 #ifdef WINDOWS
516                         if (is_current && item->type == NM_TYPE_TEXT) 
517                                 grd_curcanv->cv_font = NORMAL_FONT;
518                 #endif
519         }
520
521         switch( item->type )    {
522         case NM_TYPE_TEXT:
523       // grd_curcanv->cv_font=TEXT_FONT;
524                 // fall through on purpose
525
526         case NM_TYPE_MENU:
527                 nm_string( b, item->w, item->x, item->y, item->text );
528                 break;
529         case NM_TYPE_SLIDER:    {
530                 int j;
531                 if (item->value < item->min_value) item->value=item->min_value;
532                 if (item->value > item->max_value) item->value=item->max_value;
533                 sprintf( item->saved_text, "%s\t%s", item->text, SLIDER_LEFT );
534                 for (j=0; j<(item->max_value-item->min_value+1); j++ )  {
535                         sprintf( item->saved_text, "%s%s", item->saved_text,SLIDER_MIDDLE );
536                 }
537                 sprintf( item->saved_text, "%s%s", item->saved_text,SLIDER_RIGHT );
538                 
539                 item->saved_text[item->value+1+strlen(item->text)+1] = SLIDER_MARKER[0];
540                 
541                 nm_string_slider( b, item->w, item->x, item->y, item->saved_text );
542                 }
543                 break;
544         case NM_TYPE_INPUT_MENU:
545                 if ( item->group==0 )           {
546                         nm_string( b, item->w, item->x, item->y, item->text );
547                 } else {
548                         nm_string_inputbox( b, item->w, item->x, item->y, item->text, is_current );
549                 }
550                 break;
551         case NM_TYPE_INPUT:
552                 nm_string_inputbox( b, item->w, item->x, item->y, item->text, is_current );
553                 break;
554         case NM_TYPE_CHECK:
555                 nm_string( b, item->w, item->x, item->y, item->text );
556                 if (item->value)
557                         nm_rstring( b,item->right_offset,item->x, item->y, CHECKED_CHECK_BOX );
558                 else                                                                                                              
559                         nm_rstring( b,item->right_offset,item->x, item->y, NORMAL_CHECK_BOX );
560                 break;
561         case NM_TYPE_RADIO:
562                 nm_string( b, item->w, item->x, item->y, item->text );
563                 if (item->value)
564                         nm_rstring( b,item->right_offset, item->x, item->y, CHECKED_RADIO_BOX );
565                 else
566                         nm_rstring( b,item->right_offset, item->x, item->y, NORMAL_RADIO_BOX );
567                 break;
568         case NM_TYPE_NUMBER:    {
569                 char text[10];
570                 if (item->value < item->min_value) item->value=item->min_value;
571                 if (item->value > item->max_value) item->value=item->max_value;
572                 nm_string( b, item->w, item->x, item->y, item->text );
573                 sprintf( text, "%d", item->value );
574                 nm_rstring( b,item->right_offset,item->x, item->y, text );
575                 }
576                 break;
577         }
578 }
579
580 char *Newmenu_allowed_chars=NULL;
581
582 //returns true if char is allowed
583 int char_allowed(char c)
584 {
585         char *p = Newmenu_allowed_chars;
586
587         if (!p)
588                 return 1;
589
590         while (*p) {
591                 Assert(p[1]);
592
593                 if (c>=p[0] && c<=p[1])
594                         return 1;
595
596                 p += 2;
597         }
598
599         return 0;
600 }
601
602 void strip_end_whitespace( char * text )
603 {
604         int i,l;
605         l = strlen( text );
606         for (i=l-1; i>=0; i-- ) {
607                 if ( isspace(text[i]) )
608                         text[i] = 0;
609                 else
610                         return;
611         }
612 }
613
614 int newmenu_do( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem) )
615 {
616         return newmenu_do3( title, subtitle, nitems, item, subfunction, 0, NULL, -1, -1 );
617 }
618 int newmenu_dotiny( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem) )
619 {
620         return newmenu_do4( title, subtitle, nitems, item, subfunction, 0, NULL, LHX(310), -1, 1 );
621 }
622
623
624 int newmenu_dotiny2( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem) )
625 {
626         return newmenu_do4( title, subtitle, nitems, item, subfunction, 0, NULL, -1, -1, 1 );
627 }
628
629
630 int newmenu_do1( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int citem )
631 {
632         return newmenu_do3( title, subtitle, nitems, item, subfunction, citem, NULL, -1, -1 );
633 }
634
635
636 int newmenu_do2( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int citem, char * filename )
637 {
638         return newmenu_do3( title, subtitle, nitems, item, subfunction, citem, filename, -1, -1 );
639 }
640 int newmenu_do3( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int citem, char * filename, int width, int height )
641  {
642   return newmenu_do4( title, subtitle, nitems, item, subfunction, citem, filename, width, height,0 );
643  }
644
645 int newmenu_do_fixedfont( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int citem, char * filename, int width, int height){
646         set_screen_mode(SCREEN_MENU);//hafta set the screen mode before calling or fonts might get changed/freed up if screen res changes
647 //      return newmenu_do3_real( title, subtitle, nitems, item, subfunction, citem, filename, width,height, GAME_FONT, GAME_FONT, GAME_FONT, GAME_FONT);
648         return newmenu_do4( title, subtitle, nitems, item, subfunction, citem, filename, width,height, 0);
649 }
650
651 //returns 1 if a control device button has been pressed
652 int check_button_press()
653 {
654         int i;
655
656         switch (Config_control_type) {
657         case    CONTROL_JOYSTICK:
658         case    CONTROL_FLIGHTSTICK_PRO:
659         case    CONTROL_THRUSTMASTER_FCS:
660         case    CONTROL_GRAVIS_GAMEPAD:
661                 for (i=0; i<4; i++ )    
662                         if (joy_get_button_down_cnt(i)>0) return 1;
663                 break;
664         case    CONTROL_MOUSE:
665         case    CONTROL_CYBERMAN:
666 #ifndef NEWMENU_MOUSE   // don't allow mouse to continue from menu
667                 for (i=0; i<3; i++ )    
668                         if (mouse_button_down_count(i)>0) return 1;
669                 break;
670 #endif
671         case    CONTROL_WINJOYSTICK:
672         #ifdef WINDOWS  
673                 for (i=0; i<4; i++ )    
674                         if (joy_get_button_down_cnt(i)>0) return 1;
675         #endif  
676                 break;
677         case    CONTROL_NONE:           //keyboard only
678                 #ifdef APPLE_DEMO
679                         if (key_checkch())      return 1;                       
680                 #endif
681
682                 break;
683         default:
684                 Error("Bad control type (Config_control_type):%i",Config_control_type);
685         }
686
687         return 0;
688 }
689
690 extern int network_request_player_names(int);
691 extern int RestoringMenu;
692
693 #ifdef NEWMENU_MOUSE
694 ubyte Hack_DblClick_MenuMode=0;
695 #endif
696
697 #ifdef MACINTOSH
698 extern ubyte joydefs_calibrating;
699 #else
700 # define joydefs_calibrating 0
701 #endif
702
703 #define CLOSE_X     (MenuHires?15:7)
704 #define CLOSE_Y     (MenuHires?15:7)
705 #define CLOSE_SIZE  (MenuHires?10:5)
706
707 void draw_close_box(int x,int y)
708 {
709         gr_setcolor( BM_XRGB(0, 0, 0) );
710         gr_rect(x + CLOSE_X, y + CLOSE_Y, x + CLOSE_X + CLOSE_SIZE, y + CLOSE_Y + CLOSE_SIZE);
711         gr_setcolor( BM_XRGB(21, 21, 21) );
712         gr_rect(x + CLOSE_X + LHX(1), y + CLOSE_Y + LHX(1), x + CLOSE_X + CLOSE_SIZE - LHX(1), y + CLOSE_Y + CLOSE_SIZE - LHX(1));
713 }
714
715 int newmenu_do4( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int citem, char * filename, int width, int height, int TinyMode )
716 {
717         int old_keyd_repeat, done;
718         int  choice,old_choice,i,j,x,y,w,h,aw, tw, th, twidth,fm,right_offset;
719         int k, nmenus, nothers,ScrollOffset=0,LastScrollCheck=-1,MaxDisplayable,sx,sy;
720         grs_font * save_font;
721         int string_width, string_height, average_width;
722         int ty;
723         bkg bg;
724         int all_text=0;         //set true if all text items
725         int sound_stopped=0,time_stopped=0;
726    int TopChoice,IsScrollBox=0;   // Is this a scrolling box? Set to false at init
727    char *Temp,TempVal;
728         int dont_restore=0;
729    int MaxOnMenu=MAXDISPLAYABLEITEMS;
730         grs_canvas *save_canvas;        
731 #ifdef NEWMENU_MOUSE
732         int mouse_state, omouse_state, dblclick_flag=0;
733         int mx=0, my=0, x1 = 0, x2, y1, y2;
734         int close_box=0;
735 #endif
736 #ifdef MACINTOSH
737         EventRecord event;              // looking for disk inserted events for CD mounts
738 #endif
739
740         WIN(if (!_AppActive) return -1);                // Don't draw message if minimized!
741         newmenu_hide_cursor();
742
743         if (nitems < 1 )
744     {
745                 return -1;
746     } 
747
748         MaxDisplayable=nitems;
749
750         //set_screen_mode(SCREEN_MENU);
751         set_popup_screen();
752
753         if ( Function_mode == FMODE_GAME && !(Game_mode & GM_MULTI)) {
754                 digi_pause_digi_sounds();
755                 sound_stopped = 1;
756         }
757
758         if (!((Game_mode & GM_MULTI) && (Function_mode == FMODE_GAME) && (!Endlevel_sequence)) )
759         {
760                 time_stopped = 1;
761                 stop_time();
762                 #ifdef TACTILE 
763                   if (TactileStick)     
764                           DisableForces();      
765                 #endif
766         }
767
768         save_canvas = grd_curcanv;
769
770         gr_set_current_canvas(NULL);
771
772         save_font = grd_curcanv->cv_font;
773
774         tw = th = 0;
775
776         if ( title )    {
777                 grd_curcanv->cv_font = TITLE_FONT;
778                 gr_get_string_size(title,&string_width,&string_height,&average_width );
779                 tw = string_width;
780                 th = string_height;
781         }
782         if ( subtitle ) {
783                 grd_curcanv->cv_font = SUBTITLE_FONT;
784                 gr_get_string_size(subtitle,&string_width,&string_height,&average_width );
785                 if (string_width > tw )
786                         tw = string_width;
787                 th += string_height;
788         }
789
790         th += LHY(8);           //put some space between titles & body
791
792         if (TinyMode)
793         grd_curcanv->cv_font = SMALL_FONT;
794         else 
795         grd_curcanv->cv_font = NORMAL_FONT;
796
797         w = aw = 0;
798         h = th;
799         nmenus = nothers = 0;
800
801         // Find menu height & width (store in w,h)
802         for (i=0; i<nitems; i++ )       {
803                 item[i].redraw=1;
804                 item[i].y = h;
805                 gr_get_string_size(item[i].text,&string_width,&string_height,&average_width );
806                 item[i].right_offset = 0;
807                 
808                 if (SurfingNet)
809                         string_height+=LHY(3);
810
811                 item[i].saved_text[0] = '\0';
812
813                 if ( item[i].type == NM_TYPE_SLIDER )   {
814                         int w1,h1,aw1;
815                         nothers++;
816                         sprintf( item[i].saved_text, "%s", SLIDER_LEFT );
817                         for (j=0; j<(item[i].max_value-item[i].min_value+1); j++ )      {
818                                 sprintf( item[i].saved_text, "%s%s", item[i].saved_text,SLIDER_MIDDLE );
819                         }
820                         sprintf( item[i].saved_text, "%s%s", item[i].saved_text,SLIDER_RIGHT );
821                         gr_get_string_size(item[i].saved_text,&w1,&h1,&aw1 );
822                         string_width += w1 + aw;
823                 }
824
825                 if ( item[i].type == NM_TYPE_MENU )     {
826                         nmenus++;
827                 }
828
829                 if ( item[i].type == NM_TYPE_CHECK )    {
830                         int w1,h1,aw1;
831                         nothers++;
832                         gr_get_string_size(NORMAL_CHECK_BOX, &w1, &h1, &aw1  );
833                         item[i].right_offset = w1;
834                         gr_get_string_size(CHECKED_CHECK_BOX, &w1, &h1, &aw1  );
835                         if (w1 > item[i].right_offset)
836                                 item[i].right_offset = w1;
837                 }
838                 
839                 if (item[i].type == NM_TYPE_RADIO ) {
840                         int w1,h1,aw1;
841                         nothers++;
842                         gr_get_string_size(NORMAL_RADIO_BOX, &w1, &h1, &aw1  );
843                         item[i].right_offset = w1;
844                         gr_get_string_size(CHECKED_RADIO_BOX, &w1, &h1, &aw1  );
845                         if (w1 > item[i].right_offset)
846                                 item[i].right_offset = w1;
847                 }
848
849                 if  (item[i].type==NM_TYPE_NUMBER )     {
850                         int w1,h1,aw1;
851                         char test_text[20];
852                         nothers++;
853                         sprintf( test_text, "%d", item[i].max_value );
854                         gr_get_string_size( test_text, &w1, &h1, &aw1 );
855                         item[i].right_offset = w1;
856                         sprintf( test_text, "%d", item[i].min_value );
857                         gr_get_string_size( test_text, &w1, &h1, &aw1 );
858                         if ( w1 > item[i].right_offset)
859                                 item[i].right_offset = w1;
860                 }
861
862                 if ( item[i].type == NM_TYPE_INPUT )    {
863                         Assert( strlen(item[i].text) < NM_MAX_TEXT_LEN );
864                         strcpy(item[i].saved_text, item[i].text );
865                         nothers++;
866                         string_width = item[i].text_len*grd_curcanv->cv_font->ft_w+((MenuHires?3:1)*item[i].text_len);
867                         if ( string_width > MAX_TEXT_WIDTH ) 
868                                 string_width = MAX_TEXT_WIDTH;
869                         item[i].value = -1;
870                 }
871
872                 if ( item[i].type == NM_TYPE_INPUT_MENU )       {
873                         Assert( strlen(item[i].text) < NM_MAX_TEXT_LEN );
874                         strcpy(item[i].saved_text, item[i].text );
875                         nmenus++;
876                         string_width = item[i].text_len*grd_curcanv->cv_font->ft_w+((MenuHires?3:1)*item[i].text_len);
877                         item[i].value = -1;
878                         item[i].group = 0;
879                 }
880
881                 item[i].w = string_width;
882                 item[i].h = string_height;
883
884                 if ( string_width > w )
885                         w = string_width;               // Save maximum width
886                 if ( average_width > aw )
887                         aw = average_width;
888                 h += string_height+1;           // Find the height of all strings
889         }
890
891    // Big hack for allowing the netgame options menu to spill over
892
893    MaxOnMenu=MAXDISPLAYABLEITEMS;
894    if (ExtGameStatus==GAMESTAT_NETGAME_OPTIONS || ExtGameStatus==GAMESTAT_MORE_NETGAME_OPTIONS)
895                 MaxOnMenu++;
896
897    if (!TinyMode && (h>((MaxOnMenu+1)*(string_height+1))+(LHY(8))))
898     {
899      IsScrollBox=1;
900      h=(MaxOnMenu*(string_height+1)+LHY(8));
901      MaxDisplayable=MaxOnMenu;
902      mprintf ((0,"Hey, this is a scroll box!\n"));
903     }
904    else
905     IsScrollBox=0;
906
907         right_offset=0;
908
909         if ( width > -1 )
910                 w = width;
911
912         if ( height > -1 )
913                 h = height;
914
915         for (i=0; i<nitems; i++ )       {
916                 item[i].w = w;
917                 if (item[i].right_offset > right_offset )
918                         right_offset = item[i].right_offset;
919         }
920         if (right_offset > 0 )
921                 right_offset += 3;
922
923         //gr_get_string_size("",&string_width,&string_height,&average_width );
924
925         w += right_offset;
926
927
928         twidth = 0;
929         if ( tw > w )   {
930                 twidth = ( tw - w )/2;
931                 w = tw;
932         }
933
934    if (RestoringMenu)
935          { right_offset=0; twidth=0;}
936
937         mprintf(( 0, "Right offset = %d\n", right_offset ));
938
939
940         // Find min point of menu border
941 //      x = (grd_curscreen->sc_w-w)/2;
942 //      y = (grd_curscreen->sc_h-h)/2;
943
944         w += MenuHires?60:30;
945         h += MenuHires?60:30;
946
947         if ( w > grd_curcanv->cv_bitmap.bm_w ) w = grd_curcanv->cv_bitmap.bm_w;
948         if ( h > grd_curcanv->cv_bitmap.bm_h ) h = grd_curcanv->cv_bitmap.bm_h;
949
950         x = (grd_curcanv->cv_bitmap.bm_w-w)/2;
951         y = (grd_curcanv->cv_bitmap.bm_h-h)/2;
952
953         if ( x < 0 ) x = 0;
954         if ( y < 0 ) y = 0;
955
956         if ( filename != NULL ) {
957                 nm_draw_background1( filename );
958                 gr_palette_load(gr_palette);
959         }
960
961 // Save the background of the display
962         bg.menu_canvas = gr_create_sub_canvas( &grd_curscreen->sc_canvas, x, y, w, h );
963         gr_set_current_canvas(bg.menu_canvas);
964
965         if ( filename == NULL ) {
966                 // Save the background under the menu...
967                 #ifdef TACTILE
968                         if (TactileStick)
969                                 DisableForces();
970                 #endif
971                 
972                 bg.saved = gr_create_bitmap( w, h );
973                 Assert( bg.saved != NULL );
974
975                 gr_bm_bitblt(w, h, 0, 0, 0, 0, &grd_curcanv->cv_bitmap, bg.saved );
976
977                 gr_set_current_canvas( NULL );
978
979                 nm_draw_background(x,y,x+w-1,y+h-1);
980
981                 gr_set_current_canvas( bg.menu_canvas );
982
983                 bg.background = gr_create_sub_bitmap(&nm_background,0,0,w,h);
984
985         } else {
986                 bg.saved = NULL;
987                 bg.background = gr_create_bitmap( w, h );
988                 Assert( bg.background != NULL );
989
990                 gr_bm_bitblt(w, h, 0, 0, 0, 0, &grd_curcanv->cv_bitmap, bg.background );
991         }
992
993 // ty = 15 + (yborder/4);
994
995         ty = MenuHires?30:15;
996
997         if ( title )    {
998                 grd_curcanv->cv_font = TITLE_FONT;
999                 gr_set_fontcolor( GR_GETCOLOR(31,31,31), -1 );
1000                 gr_get_string_size(title,&string_width,&string_height,&average_width );
1001                 tw = string_width;
1002                 th = string_height;
1003                 gr_printf( 0x8000, ty, title );
1004                 ty += th;
1005         }
1006
1007         if ( subtitle ) {
1008                 grd_curcanv->cv_font = SUBTITLE_FONT;
1009                 gr_set_fontcolor( GR_GETCOLOR(21,21,21), -1 );
1010                 gr_get_string_size(subtitle,&string_width,&string_height,&average_width );
1011                 tw = string_width;
1012                 th = string_height;
1013                 gr_printf( 0x8000, ty, subtitle );
1014                 ty += th;
1015         }
1016
1017         if (TinyMode)
1018         grd_curcanv->cv_font = SMALL_FONT;
1019         else 
1020         grd_curcanv->cv_font = NORMAL_FONT;
1021         
1022         // Update all item's x & y values.
1023         for (i=0; i<nitems; i++ )       {
1024                 item[i].x = (MenuHires?30:15) + twidth + right_offset;
1025                 item[i].y += (MenuHires?30:15);
1026                 if ( item[i].type==NM_TYPE_RADIO )      {
1027                         fm = -1;        // find first marked one
1028                         for ( j=0; j<nitems; j++ )      {
1029                                 if ( item[j].type==NM_TYPE_RADIO && item[j].group==item[i].group )      {
1030                                         if (fm==-1 && item[j].value)
1031                                                 fm = j;
1032                                         item[j].value = 0;
1033                                 }
1034                         }
1035                         if ( fm>=0 )    
1036                                 item[fm].value=1;
1037                         else
1038                                 item[i].value=1;
1039                 }
1040         }
1041
1042         old_keyd_repeat = keyd_repeat;
1043         keyd_repeat = 1;
1044
1045         if (citem==-1)  {
1046                 choice = -1;
1047         } else {
1048                 if (citem < 0 ) citem = 0;
1049                 if (citem > nitems-1 ) citem = nitems-1;
1050                 choice = citem;
1051
1052 #ifdef NEWMENU_MOUSE
1053                 dblclick_flag = 1;
1054 #endif
1055
1056                 while ( item[choice].type==NM_TYPE_TEXT )       {
1057                         choice++;
1058                         if (choice >= nitems ) {
1059                                 choice=0; 
1060                         }
1061                         if (choice == citem ) {
1062                                 choice=0; 
1063                                 all_text=1;
1064                                 break; 
1065                         }
1066                 }
1067         } 
1068         done = 0;
1069    TopChoice=choice;
1070
1071         gr_update();
1072         // Clear mouse, joystick to clear button presses.
1073         game_flush_inputs();
1074
1075 #ifdef NEWMENU_MOUSE
1076         mouse_state = omouse_state = 0;
1077         if (filename == NULL && !MenuReordering) {
1078                 //draw_close_box(0,0);
1079                 close_box = 1;
1080         }
1081
1082         if (!MenuReordering && !joydefs_calibrating)
1083         {
1084                 newmenu_show_cursor();
1085 # ifdef WINDOWS
1086                 SetCursor(LoadCursor(NULL,IDC_ARROW));
1087 # endif
1088         }
1089 #endif
1090
1091    mprintf ((0,"Set to true!\n"));
1092
1093         while(!done)    {
1094 #ifdef NEWMENU_MOUSE
1095                 if (!joydefs_calibrating)
1096                         newmenu_show_cursor();      // possibly hidden
1097                 omouse_state = mouse_state;
1098                 if (!MenuReordering)
1099                         mouse_state = mouse_button_state(0);
1100 //@@      mprintf ((0,"mouse state:%d\n",mouse_state));
1101 #endif
1102
1103                 //see if redbook song needs to be restarted
1104                 songs_check_redbook_repeat();
1105
1106                 //network_listen();
1107
1108                 k = key_inkey();
1109
1110         if (subfunction)
1111         (*subfunction)(nitems,item,&k,choice);
1112
1113 #ifdef NETWORK
1114                 if (!time_stopped)      {
1115                         // Save current menu box
1116                         if (multi_menu_poll() == -1)
1117                                 k = -2;
1118                 }
1119 #endif
1120
1121                 if ( k<-1 ) {
1122                         dont_restore = (k == -3);               //-3 means don't restore
1123                         choice = k;
1124                         k = -1;
1125                         done = 1;
1126                 }
1127                 if (check_button_press())
1128                         done = 1;
1129
1130 //              if ( (nmenus<2) && (k>0) && (nothers==0) )
1131 //                      done=1;
1132
1133                 old_choice = choice;
1134         
1135                 switch( k )     {
1136
1137 #ifdef NETWORK
1138                 case KEY_I:
1139                  if (SurfingNet && !already_showing_info)
1140                    {
1141                          show_extra_netgame_info(choice-2);
1142                    }
1143                  if (SurfingNet && already_showing_info)
1144                         {
1145                          done=1;
1146                          choice=-1;
1147                         }
1148                  break;
1149                 case KEY_U:
1150                  if (SurfingNet && !already_showing_info)
1151                    {
1152                          network_request_player_names(choice-2);
1153                    }
1154                  if (SurfingNet && already_showing_info)
1155                         {
1156                          done=1;
1157                          choice=-1;
1158                         }
1159                  break;
1160 #endif
1161                 case KEY_PAUSE:
1162                  if (Pauseable_menu)
1163                    {    
1164                          Pauseable_menu=0;
1165                          done=1;
1166                          choice=-1;
1167                    }
1168                  break;
1169                 case KEY_TAB + KEY_SHIFTED:
1170                 case KEY_UP:
1171                 case KEY_PAD8:
1172                         if (all_text) break;
1173                         do {
1174                                 choice--;
1175
1176                 if (IsScrollBox)
1177                 {
1178                         LastScrollCheck=-1;
1179                 mprintf ((0,"Scrolling! Choice=%d\n",choice));
1180                                    
1181                 if (choice<TopChoice)
1182                         { choice=TopChoice; break; }
1183
1184                 if (choice<ScrollOffset)
1185                {
1186                         for (i=0;i<nitems;i++)
1187                                 item[i].redraw=1;
1188                      ScrollOffset--;
1189                      mprintf ((0,"ScrollOffset=%d\n",ScrollOffset));
1190                }
1191                 }
1192                 else
1193                 {
1194                         if (choice >= nitems ) choice=0;
1195                 if (choice < 0 ) choice=nitems-1;
1196                 }
1197                         } while ( item[choice].type==NM_TYPE_TEXT );
1198                         if ((item[choice].type==NM_TYPE_INPUT) && (choice!=old_choice)) 
1199                                 item[choice].value = -1;
1200                         if ((old_choice>-1) && (item[old_choice].type==NM_TYPE_INPUT_MENU) && (old_choice!=choice))     {
1201                                 item[old_choice].group=0;
1202                                 strcpy(item[old_choice].text, item[old_choice].saved_text );
1203                                 item[old_choice].value = -1;
1204                         }
1205                         if (old_choice>-1) 
1206                                 item[old_choice].redraw = 1;
1207                         item[choice].redraw=1;
1208                         break;
1209                 case KEY_TAB:
1210                 case KEY_DOWN:
1211                 case KEY_PAD2:
1212         // ((0,"Pressing down! IsScrollBox=%d",IsScrollBox));
1213                 if (all_text) break;
1214                         do {
1215                                 choice++;
1216
1217                         if (IsScrollBox)
1218                 {
1219                 LastScrollCheck=-1;
1220                 mprintf ((0,"Scrolling! Choice=%d\n",choice));
1221                                    
1222                 if (choice==nitems)
1223                 { choice--; break; }
1224
1225                 if (choice>=MaxOnMenu+ScrollOffset)
1226                 {
1227                 for (i=0;i<nitems;i++)
1228                                 item[i].redraw=1;
1229                   ScrollOffset++;
1230                   mprintf ((0,"ScrollOffset=%d\n",ScrollOffset));
1231                 }
1232                 }
1233             else
1234             {
1235                         if (choice < 0 ) choice=nitems-1;
1236                         if (choice >= nitems ) choice=0;
1237                 }
1238
1239                         } while ( item[choice].type==NM_TYPE_TEXT );
1240                                                       
1241                         if ((item[choice].type==NM_TYPE_INPUT) && (choice!=old_choice)) 
1242                                 item[choice].value = -1;
1243                         if ( (old_choice>-1) && (item[old_choice].type==NM_TYPE_INPUT_MENU) && (old_choice!=choice))    {
1244                                 item[old_choice].group=0;
1245                                 strcpy(item[old_choice].text, item[old_choice].saved_text );    
1246                                 item[old_choice].value = -1;
1247                         }
1248                         if (old_choice>-1)
1249                                 item[old_choice].redraw=1;
1250                         item[choice].redraw=1;
1251                         break;
1252                 case KEY_SPACEBAR:
1253                         if ( choice > -1 )      {
1254                                 switch( item[choice].type )     {
1255                                 case NM_TYPE_MENU:
1256                                 case NM_TYPE_INPUT:
1257                                 case NM_TYPE_INPUT_MENU:
1258                                         break;
1259                                 case NM_TYPE_CHECK:
1260                                         if ( item[choice].value )
1261                                                 item[choice].value = 0;
1262                                         else
1263                                                 item[choice].value = 1;
1264                                         mprintf ((0,"ISB=%d MDI=%d SO=%d choice=%d\n",IsScrollBox,MAXDISPLAYABLEITEMS,ScrollOffset,choice));
1265                                         if (IsScrollBox)
1266                                          {
1267                                                 if (choice==(MaxOnMenu+ScrollOffset-1) || choice==ScrollOffset)
1268                                                  {
1269                                                    mprintf ((0,"Special redraw!\n"));
1270                                                         LastScrollCheck=-1;                                     
1271                                                  }
1272                                          }
1273                                 
1274                                         item[choice].redraw=1;
1275                                         break;
1276                                 case NM_TYPE_RADIO:
1277                                         for (i=0; i<nitems; i++ )       {
1278                                                 if ((i!=choice) && (item[i].type==NM_TYPE_RADIO) && (item[i].group==item[choice].group) && (item[i].value) )    {
1279                                                         item[i].value = 0;
1280                                                         item[i].redraw = 1;
1281                                                 }
1282                                         }
1283                                         item[choice].value = 1;
1284                                         item[choice].redraw = 1;
1285                                         break;
1286                                 }       
1287                         }
1288                         break;
1289
1290                 case KEY_SHIFTED+KEY_UP:
1291                  if (MenuReordering && choice!=TopChoice)
1292                   {
1293                    Temp=item[choice].text;
1294                    TempVal=item[choice].value;
1295                    item[choice].text=item[choice-1].text;
1296                    item[choice].value=item[choice-1].value;
1297                    item[choice-1].text=Temp;
1298                    item[choice-1].value=TempVal;
1299                    item[choice].redraw=1;
1300                    item[choice-1].redraw=1;
1301                    choice--;
1302                   }
1303                  break;
1304                 case KEY_SHIFTED+KEY_DOWN:
1305                  if (MenuReordering && choice!=(nitems-1))
1306                   {
1307                    Temp=item[choice].text;
1308                    TempVal=item[choice].value;
1309                    item[choice].text=item[choice+1].text;
1310                    item[choice].value=item[choice+1].value;
1311                    item[choice+1].text=Temp;
1312                    item[choice+1].value=TempVal;
1313                    item[choice].redraw=1;
1314                    item[choice+1].redraw=1;
1315                    choice++;
1316                   }
1317                  break;
1318                 
1319                 case KEY_ENTER:
1320                 case KEY_PADENTER:
1321                         if ( (choice>-1) && (item[choice].type==NM_TYPE_INPUT_MENU) && (item[choice].group==0)) {
1322                                 item[choice].group = 1;
1323                                 item[choice].redraw = 1;
1324                                 if ( !strnicmp( item[choice].saved_text, TXT_EMPTY, strlen(TXT_EMPTY) ) )       {
1325                                         item[choice].text[0] = 0;
1326                                         item[choice].value = -1;
1327                                 } else {        
1328                                         strip_end_whitespace(item[choice].text);
1329                                 }
1330                         } else
1331                                 done = 1;
1332                         break;
1333
1334                 case KEY_ESC:
1335                         if ( (choice>-1) && (item[choice].type==NM_TYPE_INPUT_MENU) && (item[choice].group==1)) {
1336                                 item[choice].group=0;
1337                                 strcpy(item[choice].text, item[choice].saved_text );    
1338                                 item[choice].redraw=1;
1339                                 item[choice].value = -1;
1340                         } else {
1341                                 done = 1;
1342                                 choice = -1;
1343                         }
1344                         break;
1345
1346                 case KEY_COMMAND+KEY_SHIFTED+KEY_3:
1347                 case KEY_PRINT_SCREEN:
1348                         MAC(newmenu_hide_cursor());
1349                         save_screen_shot(0);
1350                         for (i=0;i<nitems;i++)
1351                                 item[i].redraw=1;
1352                         
1353                         MAC(newmenu_show_cursor());
1354                         MAC(key_flush());
1355                         break;
1356
1357                 #ifdef MACINTOSH
1358
1359                 case KEY_COMMAND+KEY_RIGHT:
1360                         songs_goto_next_song();
1361                         break;
1362                 case KEY_COMMAND+KEY_LEFT:
1363                         songs_goto_prev_song();
1364                         break;
1365                 case KEY_COMMAND+KEY_UP:
1366                         songs_play_level_song(1);
1367                         break;
1368                 case KEY_COMMAND+KEY_DOWN:
1369                         songs_stop_redbook();
1370                         break;
1371
1372                 case KEY_COMMAND+KEY_M:
1373                         k = -1;
1374                         if ( (Game_mode & GM_MULTI) )           // don't process in multiplayer games
1375                                 break;
1376
1377                         key_close();            // no processing of keys with keyboard handler.. jeez                           
1378                         stop_time();
1379                         newmenu_hide_cursor();
1380                         show_boxed_message ("Mounting CD\nESC to quit");        
1381                         RBAMountDisk();         // OS has totaly control of the CD.
1382                         if (Function_mode == FMODE_MENU)
1383                                 songs_play_song(SONG_TITLE,1);
1384                         else if (Function_mode == FMODE_GAME)
1385                                 songs_play_level_song( Current_level_num );
1386                         clear_boxed_message();
1387                         newmenu_show_cursor();
1388                         key_init();
1389                         key_flush();
1390                         start_time();
1391                         
1392                         break;
1393
1394                 case KEY_COMMAND+KEY_E:
1395                         songs_stop_redbook();
1396                         RBAEjectDisk();
1397                         k = -1;         // force key not to register
1398                         break;
1399                 #endif
1400                         
1401                 case KEY_COMMAND+KEY_Q: {
1402                         if ( !(Game_mode & GM_MULTI) )
1403                                 quit_request();
1404                         if (!joydefs_calibrating)
1405                                 newmenu_show_cursor();
1406                         k = -1;         // force key not to register
1407                         break;
1408                 }
1409
1410                 #ifndef NDEBUG
1411                 case KEY_BACKSP:        
1412                         if ( (choice>-1) && (item[choice].type!=NM_TYPE_INPUT)&&(item[choice].type!=NM_TYPE_INPUT_MENU))
1413                                 Int3(); 
1414                         break;
1415                 #endif
1416
1417                 }
1418
1419 #ifdef NEWMENU_MOUSE // for mouse selection of menu's etc.
1420                 if ( !done && mouse_state && !omouse_state && !all_text ) {
1421                         mouse_get_pos(&mx, &my);
1422                         for (i=0; i<nitems; i++ )       {
1423                                 x1 = grd_curcanv->cv_bitmap.bm_x + item[i].x - item[i].right_offset - 6;
1424                                 x2 = x1 + item[i].w;
1425                                 y1 = grd_curcanv->cv_bitmap.bm_y + item[i].y;
1426                                 y2 = y1 + item[i].h;
1427                                 if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2))) {
1428                                         if (i+ScrollOffset != choice) {
1429                                                 if(Hack_DblClick_MenuMode) dblclick_flag = 0; 
1430                                         }
1431                                         
1432                                         choice = i + ScrollOffset;
1433
1434                                         switch( item[choice].type )     {
1435                                         case NM_TYPE_CHECK:
1436                                                 if ( item[choice].value )
1437                                                         item[choice].value = 0;
1438                                                 else
1439                                                         item[choice].value = 1;
1440                                                 item[choice].redraw=1;
1441
1442                                                 if (IsScrollBox)
1443                                                         LastScrollCheck=-1;
1444 #if 0
1445                                                 if (IsScrollBox)
1446                                                  {
1447                                                         if (choice==(MaxOnMenu+ScrollOffset-1) || choice==ScrollOffset)
1448                                                          {
1449                                                            mprintf ((0,"Special redraw!\n"));
1450                                                                 LastScrollCheck=-1;                                     
1451                                                          }
1452                                                  }
1453 #endif
1454                                                 break;
1455                                         case NM_TYPE_RADIO:
1456                                                 for (i=0; i<nitems; i++ )       {
1457                                                         if ((i!=choice) && (item[i].type==NM_TYPE_RADIO) && (item[i].group==item[choice].group) && (item[i].value) )    {
1458                                                                 item[i].value = 0;
1459                                                                 item[i].redraw = 1;
1460                                                         }
1461                                                 }
1462                                                 item[choice].value = 1;
1463                                                 item[choice].redraw = 1;
1464                                                 break;
1465                                         }
1466                                         item[old_choice].redraw=1;
1467                                         break;
1468                                 }
1469                         }
1470                 }
1471
1472                 if (mouse_state && all_text)
1473                         done = 1;
1474                 
1475                 if ( !done && mouse_state && !all_text ) {
1476                         mouse_get_pos(&mx, &my);
1477                         
1478                         // check possible scrollbar stuff first
1479                         if (IsScrollBox) {
1480                                 int arrow_width, arrow_height, aw;
1481                                 
1482                                 if (ScrollOffset != 0) {
1483                                         gr_get_string_size(UP_ARROW_MARKER, &arrow_width, &arrow_height, &aw);
1484                                         x2 = grd_curcanv->cv_bitmap.bm_x + item[ScrollOffset].x-(MenuHires?24:12);
1485                                 y1 = grd_curcanv->cv_bitmap.bm_y + item[ScrollOffset].y-((string_height+1)*ScrollOffset);
1486                                         x1 = x1 - arrow_width;
1487                                         y2 = y1 + arrow_height;
1488                                         if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
1489                                                 choice--;
1490                                         LastScrollCheck=-1;
1491                                 mprintf ((0,"Scrolling! Choice=%d\n",choice));
1492                                                    
1493                                 if (choice<ScrollOffset)
1494                                {
1495                                         for (i=0;i<nitems;i++)
1496                                                 item[i].redraw=1;
1497                                      ScrollOffset--;
1498                                      mprintf ((0,"ScrollOffset=%d\n",ScrollOffset));
1499                                }
1500                                         }
1501                                 }
1502                                 if (ScrollOffset+MaxDisplayable<nitems) {
1503                                         gr_get_string_size(DOWN_ARROW_MARKER, &arrow_width, &arrow_height, &aw);
1504                                         x2 = grd_curcanv->cv_bitmap.bm_x + item[ScrollOffset+MaxDisplayable-1].x-(MenuHires?24:12);
1505                                         y1 = grd_curcanv->cv_bitmap.bm_y + item[ScrollOffset+MaxDisplayable-1].y-((string_height+1)*ScrollOffset);
1506                                         x1 = x1 - arrow_width;
1507                                         y2 = y1 + arrow_height;
1508                                         if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
1509                                                 choice++;
1510                                 LastScrollCheck=-1;
1511                                 mprintf ((0,"Scrolling! Choice=%d\n",choice));
1512                                                    
1513                                 if (choice>=MaxOnMenu+ScrollOffset)
1514                                 {
1515                                 for (i=0;i<nitems;i++)
1516                                                 item[i].redraw=1;
1517                                   ScrollOffset++;
1518                                   mprintf ((0,"ScrollOffset=%d\n",ScrollOffset));
1519                                 }
1520                                         }
1521                                 }
1522                         }
1523                         
1524                         for (i=0; i<nitems; i++ )       {
1525                                 x1 = grd_curcanv->cv_bitmap.bm_x + item[i].x - item[i].right_offset - 6;
1526                                 x2 = x1 + item[i].w;
1527                                 y1 = grd_curcanv->cv_bitmap.bm_y + item[i].y;
1528                                 y2 = y1 + item[i].h;
1529                                 if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && (item[i].type != NM_TYPE_TEXT) ) {
1530                                         if (i+ScrollOffset != choice) {
1531                                                 if(Hack_DblClick_MenuMode) dblclick_flag = 0; 
1532                                         }
1533
1534                                         choice = i + ScrollOffset;
1535
1536                                         if ( item[choice].type == NM_TYPE_SLIDER ) {
1537                                                 char slider_text[NM_MAX_TEXT_LEN+1], *p, *s1;
1538                                                 int slider_width, height, aw, sleft_width, sright_width, smiddle_width;
1539                                                 
1540                                                 strcpy(slider_text, item[choice].saved_text);
1541                                                 p = strchr(slider_text, '\t');
1542                                                 if (p) {
1543                                                         *p = '\0';
1544                                                         s1 = p+1;
1545                                                 }
1546                                                 if (p) {
1547                                                         gr_get_string_size(s1, &slider_width, &height, &aw);
1548                                                         gr_get_string_size(SLIDER_LEFT, &sleft_width, &height, &aw);
1549                                                         gr_get_string_size(SLIDER_RIGHT, &sright_width, &height, &aw);
1550                                                         gr_get_string_size(SLIDER_MIDDLE, &smiddle_width, &height, &aw);
1551
1552                                                         x1 = grd_curcanv->cv_bitmap.bm_x + item[choice].x + item[choice].w - slider_width;
1553                                                         x2 = x1 + slider_width + sright_width;
1554                                                         if ( (mx > x1) && (mx < (x1 + sleft_width)) && (item[choice].value != item[choice].min_value) ) {
1555                                                                 item[choice].value = item[choice].min_value;
1556                                                                 item[choice].redraw = 2;
1557                                                         } else if ( (mx < x2) && (mx > (x2 - sright_width)) && (item[choice].value != item[choice].max_value) ) {
1558                                                                 item[choice].value = item[choice].max_value;
1559                                                                 item[choice].redraw = 2;
1560                                                         } else if ( (mx > (x1 + sleft_width)) && (mx < (x2 - sright_width)) ) {
1561                                                                 int num_values, value_width, new_value;
1562                                                                 
1563                                                                 num_values = item[choice].max_value - item[choice].min_value + 1;
1564                                                                 value_width = (slider_width - sleft_width - sright_width) / num_values;
1565                                                                 new_value = (mx - x1 - sleft_width) / value_width;
1566                                                                 if ( item[choice].value != new_value ) {
1567                                                                         item[choice].value = new_value;
1568                                                                         item[choice].redraw = 2;
1569                                                                 }
1570                                                         }
1571                                                         *p = '\t';
1572                                                 }
1573                                         }
1574                                         if (choice == old_choice)
1575                                                 break;
1576                                         if ((item[choice].type==NM_TYPE_INPUT) && (choice!=old_choice)) 
1577                                                 item[choice].value = -1;
1578                                         if ((old_choice>-1) && (item[old_choice].type==NM_TYPE_INPUT_MENU) && (old_choice!=choice))     {
1579                                                 item[old_choice].group=0;
1580                                                 strcpy(item[old_choice].text, item[old_choice].saved_text );
1581                                                 item[old_choice].value = -1;
1582                                         }
1583                                         if (old_choice>-1) 
1584                                                 item[old_choice].redraw = 1;
1585                                         item[choice].redraw=1;
1586                                         break;
1587                                 }
1588                         }
1589                 }
1590                 
1591                 if ( !done && !mouse_state && omouse_state && !all_text && (choice != -1) && (item[choice].type == NM_TYPE_MENU) ) {
1592                         mouse_get_pos(&mx, &my);
1593                         x1 = grd_curcanv->cv_bitmap.bm_x + item[choice].x;
1594                         x2 = x1 + item[choice].w;
1595                         y1 = grd_curcanv->cv_bitmap.bm_y + item[choice].y;
1596                         y2 = y1 + item[choice].h;
1597                         if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2))) {
1598                                 if (Hack_DblClick_MenuMode) {
1599                                         if (dblclick_flag) done = 1;
1600                                         else dblclick_flag = 1;
1601                                 }
1602                                 else done = 1;
1603                         }
1604                 }
1605                 
1606                 if ( !done && !mouse_state && omouse_state && (choice>-1) && (item[choice].type==NM_TYPE_INPUT_MENU) && (item[choice].group==0))        {
1607                         item[choice].group = 1;
1608                         item[choice].redraw = 1;
1609                         if ( !strnicmp( item[choice].saved_text, TXT_EMPTY, strlen(TXT_EMPTY) ) )       {
1610                                 item[choice].text[0] = 0;
1611                                 item[choice].value = -1;
1612                         } else {        
1613                                 strip_end_whitespace(item[choice].text);
1614                         }
1615                 }
1616                 
1617                 if ( !done && !mouse_state && omouse_state && close_box ) {
1618                         mouse_get_pos(&mx, &my);
1619                         x1 = grd_curcanv->cv_bitmap.bm_x + CLOSE_X;
1620                         x2 = x1 + CLOSE_SIZE;
1621                         y1 = grd_curcanv->cv_bitmap.bm_y + CLOSE_Y;
1622                         y2 = y1 + CLOSE_SIZE;
1623                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
1624                                 choice = -1;
1625                                 done = 1;
1626                         }
1627                 }
1628
1629 //       HACK! Don't redraw loadgame preview
1630                 if (RestoringMenu) item[0].redraw = 0;
1631 #endif // NEWMENU_MOUSE
1632
1633                 if ( choice > -1 )      {
1634                         int ascii;
1635
1636                         if ( ((item[choice].type==NM_TYPE_INPUT)||((item[choice].type==NM_TYPE_INPUT_MENU)&&(item[choice].group==1)) )&& (old_choice==choice) ) {
1637                                 if ( k==KEY_LEFT || k==KEY_BACKSP || k==KEY_PAD4 )      {
1638                                         if (item[choice].value==-1) item[choice].value = strlen(item[choice].text);
1639                                         if (item[choice].value > 0)
1640                                                 item[choice].value--;
1641                                         item[choice].text[item[choice].value] = 0;
1642                                         item[choice].redraw = 1;        
1643                                 } else {
1644                                         ascii = key_to_ascii(k);
1645                                         if ((ascii < 255 ) && (item[choice].value < item[choice].text_len ))
1646                                         {
1647                                                 int allowed;
1648
1649                                                 if (item[choice].value==-1) {
1650                                                         item[choice].value = 0;
1651                                                 }
1652
1653                                                 allowed = char_allowed(ascii);
1654
1655                                                 if (!allowed && ascii==' ' && char_allowed('_')) {
1656                                                         ascii = '_';
1657                                                         allowed=1;
1658                                                 }
1659
1660                                                 if (allowed) {
1661                                                         item[choice].text[item[choice].value++] = ascii;
1662                                                         item[choice].text[item[choice].value] = 0;
1663                                                         item[choice].redraw=1;  
1664                                                 }
1665                                         }
1666                                 }
1667                         } else if ((item[choice].type!=NM_TYPE_INPUT) && (item[choice].type!=NM_TYPE_INPUT_MENU) ) {
1668                                 ascii = key_to_ascii(k);
1669                                 if (ascii < 255 ) {
1670                                         int choice1 = choice;
1671                                         ascii = toupper(ascii);
1672                                         do {
1673                                                 int i,ch;
1674                                                 choice1++;
1675                                                 if (choice1 >= nitems ) choice1=0;
1676                                                 for (i=0;(ch=item[choice1].text[i])!=0 && ch==' ';i++);
1677                                                 if ( ( (item[choice1].type==NM_TYPE_MENU) ||
1678                                                                  (item[choice1].type==NM_TYPE_CHECK) ||
1679                                                                  (item[choice1].type==NM_TYPE_RADIO) ||
1680                                                                  (item[choice1].type==NM_TYPE_NUMBER) ||
1681                                                                  (item[choice1].type==NM_TYPE_SLIDER) )
1682                                                                 && (ascii==toupper(ch)) )       {
1683                                                         k = 0;
1684                                                         choice = choice1;
1685                                                         if (old_choice>-1)
1686                                                                 item[old_choice].redraw=1;
1687                                                         item[choice].redraw=1;
1688                                                 }
1689                                         } while (choice1 != choice );
1690                                 }       
1691                         }
1692
1693                         if ( (item[choice].type==NM_TYPE_NUMBER) || (item[choice].type==NM_TYPE_SLIDER))        {
1694                                 int ov=item[choice].value;
1695                                 switch( k ) {
1696                                 case KEY_PAD4:
1697                                 case KEY_LEFT:
1698                                 case KEY_MINUS:
1699                                 case KEY_MINUS+KEY_SHIFTED:
1700                                 case KEY_PADMINUS:
1701                                         item[choice].value -= 1;
1702                                         break;
1703                                 case KEY_RIGHT:
1704                                 case KEY_PAD6:
1705                                 case KEY_EQUAL:
1706                                 case KEY_EQUAL+KEY_SHIFTED:
1707                                 case KEY_PADPLUS:
1708                                         item[choice].value++;
1709                                         break;
1710                                 case KEY_PAGEUP:
1711                                 case KEY_PAD9:
1712                                 case KEY_SPACEBAR:
1713                                         item[choice].value += 10;
1714                                         break;
1715                                 case KEY_PAGEDOWN:
1716                                 case KEY_BACKSP:
1717                                 case KEY_PAD3:
1718                                         item[choice].value -= 10;
1719                                         break;
1720                                 }
1721                                 if (ov!=item[choice].value)
1722                                         item[choice].redraw=1;
1723                         }
1724         
1725                 }
1726
1727                 gr_set_current_canvas(bg.menu_canvas);
1728
1729         // Redraw everything...
1730         for (i=ScrollOffset; i<MaxDisplayable+ScrollOffset; i++ )
1731         {
1732         if (item[i].redraw) // warning! ugly hack below                  
1733                 {
1734                 item[i].y-=((string_height+1)*ScrollOffset);
1735                         newmenu_hide_cursor();
1736                 draw_item( &bg, &item[i], (i==choice && !all_text),TinyMode );
1737                                 item[i].redraw=0;
1738 #ifdef NEWMENU_MOUSE
1739                                 if (!MenuReordering && !joydefs_calibrating)
1740                                         newmenu_show_cursor();
1741 #endif
1742             item[i].y+=((string_height+1)*ScrollOffset);
1743                 }   
1744          if (i==choice && (item[i].type==NM_TYPE_INPUT || (item[i].type==NM_TYPE_INPUT_MENU && item[i].group)))
1745                                 update_cursor( &item[i]);
1746                 }
1747         gr_update();
1748
1749       if (IsScrollBox)
1750         {
1751         //grd_curcanv->cv_font = NORMAL_FONT;
1752         
1753                 if (LastScrollCheck!=ScrollOffset)
1754          {
1755                 LastScrollCheck=ScrollOffset;
1756                 grd_curcanv->cv_font = SELECTED_FONT;
1757                                 
1758                 sy=item[ScrollOffset].y-((string_height+1)*ScrollOffset);
1759                 sx=item[ScrollOffset].x-(MenuHires?24:12);
1760                                 
1761           
1762                 if (ScrollOffset!=0)
1763                         nm_rstring( &bg, (MenuHires?20:10), sx, sy, UP_ARROW_MARKER );
1764                 else
1765                         nm_rstring( &bg, (MenuHires?20:10), sx, sy, "  " );
1766
1767                 sy=item[ScrollOffset+MaxDisplayable-1].y-((string_height+1)*ScrollOffset);
1768                 sx=item[ScrollOffset+MaxDisplayable-1].x-(MenuHires?24:12);
1769           
1770                 if (ScrollOffset+MaxDisplayable<nitems)
1771                         nm_rstring( &bg, (MenuHires?20:10), sx, sy, DOWN_ARROW_MARKER );
1772                 else
1773                 nm_rstring( &bg, (MenuHires?20:10), sx, sy, "  " );
1774
1775         }
1776
1777         }   
1778
1779                 if ( !dont_restore && gr_palette_faded_out )    {
1780                         gr_palette_fade_in( gr_palette, 32, 0 );
1781                 }
1782         }
1783
1784         newmenu_hide_cursor();
1785
1786         // Restore everything...
1787
1788         gr_set_current_canvas(bg.menu_canvas);
1789
1790         if ( filename == NULL ) {
1791                 // Save the background under the menu...
1792                 gr_bitmap(0, 0, bg.saved);      
1793                 gr_free_bitmap(bg.saved);
1794                 d_free( bg.background );
1795         } else {
1796                 if (!dont_restore)      //info passed back from subfunction
1797                         gr_bitmap(0, 0, bg.background);
1798                 gr_free_bitmap(bg.background);
1799         }
1800
1801         gr_free_sub_canvas( bg.menu_canvas );
1802
1803         gr_set_current_canvas(save_canvas);
1804         grd_curcanv->cv_font    = save_font;
1805         keyd_repeat = old_keyd_repeat;
1806
1807         game_flush_inputs();
1808
1809         if (time_stopped) 
1810      {
1811                 start_time();
1812                 #ifdef TACTILE
1813                         if (TactileStick)
1814                                 EnableForces();
1815                 #endif
1816           }
1817
1818         if ( sound_stopped )
1819                 digi_resume_digi_sounds();
1820
1821         return choice;
1822         
1823 }
1824
1825
1826 int nm_messagebox1( char *title, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int nchoices, ... )
1827 {
1828         int i;
1829         char * format;
1830         va_list args;
1831         char *s;
1832         char nm_text[MESSAGEBOX_TEXT_SIZE];
1833         newmenu_item nm_message_items[5];
1834
1835         va_start(args, nchoices );
1836
1837         Assert( nchoices <= 5 );
1838
1839         for (i=0; i<nchoices; i++ )     {
1840                 s = va_arg( args, char * );
1841                 nm_message_items[i].type = NM_TYPE_MENU; nm_message_items[i].text = s;
1842         }
1843         format = va_arg( args, char * );
1844         strcpy( nm_text, "" );
1845         vsprintf(nm_text,format,args);
1846         va_end(args);
1847
1848         Assert(strlen(nm_text) < MESSAGEBOX_TEXT_SIZE);
1849
1850         return newmenu_do( title, nm_text, nchoices, nm_message_items, subfunction );
1851 }
1852
1853 int nm_messagebox( char *title, int nchoices, ... )
1854 {
1855         int i;
1856         char * format;
1857         va_list args;
1858         char *s;
1859         char nm_text[MESSAGEBOX_TEXT_SIZE];
1860         newmenu_item nm_message_items[5];
1861
1862         va_start(args, nchoices );
1863
1864         Assert( nchoices <= 5 );
1865
1866         for (i=0; i<nchoices; i++ )     {
1867                 s = va_arg( args, char * );
1868                 nm_message_items[i].type = NM_TYPE_MENU; nm_message_items[i].text = s;
1869         }
1870         format = va_arg( args, char * );
1871         strcpy( nm_text, "" );
1872         vsprintf(nm_text,format,args);
1873         va_end(args);
1874
1875         Assert(strlen(nm_text) < MESSAGEBOX_TEXT_SIZE );
1876
1877         return newmenu_do( title, nm_text, nchoices, nm_message_items, NULL );
1878 }
1879
1880
1881
1882
1883 void newmenu_file_sort( int n, char *list )
1884 {
1885         int i, j, incr;
1886         char t[14];
1887
1888         incr = n / 2;
1889         while( incr > 0 )               {
1890                 for (i=incr; i<n; i++ )         {
1891                         j = i - incr;
1892                         while (j>=0 )                   {
1893                                 if (strncmp(&list[j*14], &list[(j+incr)*14], 12) > 0)                           {
1894                                         memcpy( t, &list[j*14], FILENAME_LEN );
1895                                         memcpy( &list[j*14], &list[(j+incr)*14], FILENAME_LEN );
1896                                         memcpy( &list[(j+incr)*14], t, FILENAME_LEN );
1897                                         j -= incr;
1898                                 }
1899                                 else
1900                                         break;
1901                         }
1902                 }
1903                 incr = incr / 2;
1904         }
1905 }
1906
1907 void delete_player_saved_games(char * name)
1908 {
1909         int i;
1910         char filename[16];
1911
1912         for (i=0;i<10; i++)     {
1913                 sprintf( filename, PLAYER_DIR "%s.sg%d", name, i );
1914                 PHYSFS_delete(filename);
1915         }
1916 }
1917
1918 #define MAX_FILES 300
1919
1920 //FIXME: should maybe put globbing ability back?
1921 int newmenu_get_filename(char *title, char *type, char *filename, int allow_abort_flag)
1922 {
1923         int i;
1924         char **find;
1925         char **f;
1926         char *ext;
1927         int NumFiles=0, key,done, citem, ocitem;
1928         char * filenames = NULL;
1929         int NumFiles_displayed = 8;
1930         int first_item = -1, ofirst_item;
1931         int old_keyd_repeat = keyd_repeat;
1932         int player_mode=0;
1933         int demo_mode=0;
1934         int demos_deleted=0;
1935         int initialized = 0;
1936         int exit_value = 0;
1937         int w_x, w_y, w_w, w_h, title_height;
1938         int box_x, box_y, box_w, box_h;
1939         bkg bg;         // background under listbox
1940 #ifdef NEWMENU_MOUSE
1941         int mx, my, x1, x2, y1, y2, mouse_state, omouse_state;
1942         int mouse2_state, omouse2_state;
1943         int dblclick_flag=0;
1944 # ifdef WINDOWS
1945         int simukey=0;
1946         int show_up_arrow=0, show_down_arrow=0;
1947 # endif
1948 #endif
1949
1950         w_x=w_y=w_w=w_h=title_height=0;
1951         box_x=box_y=box_w=box_h=0;
1952
1953         filenames = d_malloc( MAX_FILES * 14 );
1954         if (filenames==NULL) return 0;
1955
1956         citem = 0;
1957         keyd_repeat = 1;
1958
1959         if (!stricmp(type, "plr"))
1960                 player_mode = 1;
1961         else if (!stricmp(type, "dem"))
1962                 demo_mode = 1;
1963
1964 ReadFileNames:
1965         done = 0;
1966         NumFiles=0;
1967         
1968 #if !defined(APPLE_DEMO)                // no new pilots for special apple oem version
1969         if (player_mode)        {
1970                 strncpy( &filenames[NumFiles*14], TXT_CREATE_NEW, FILENAME_LEN );
1971                 NumFiles++;
1972         }
1973 #endif
1974
1975         find = PHYSFS_enumerateFiles(demo_mode?DEMO_DIR:"");
1976         for (f = find; *f != NULL; f++)
1977         {
1978                 if (player_mode)
1979                 {
1980                         ext = strrchr(*f, '.');
1981                         if (!ext || strnicmp(ext, ".plr", 4))
1982                                 continue;
1983                 }
1984                 if (NumFiles < MAX_FILES)
1985                 {
1986                         strncpy(&filenames[NumFiles*14], *f, FILENAME_LEN);
1987                         if (player_mode)
1988                         {
1989                                 char *p;
1990
1991                                 p = strchr(&filenames[NumFiles*14], '.');
1992                                 if (p)
1993                                         *p = '\0';
1994                         }
1995                         NumFiles++;
1996                 }
1997                 else
1998                         break;
1999         }
2000
2001         PHYSFS_freeList(find);
2002
2003         if ( (NumFiles < 1) && demos_deleted )  {
2004                 exit_value = 0;
2005                 goto ExitFileMenu;
2006         }
2007         if ( (NumFiles < 1) && demo_mode ) {
2008                 nm_messagebox( NULL, 1, TXT_OK, "%s %s\n%s", TXT_NO_DEMO_FILES, TXT_USE_F5, TXT_TO_CREATE_ONE);
2009                 exit_value = 0;
2010                 goto ExitFileMenu;
2011         }
2012
2013         #ifndef APPLE_DEMO
2014         if ( (NumFiles < 2) && player_mode ) {
2015                 citem = 0;
2016                 goto ExitFileMenuEarly;
2017         }
2018         #endif
2019
2020
2021         if ( NumFiles<1 )       {
2022                 #ifndef APPLE_DEMO
2023                         nm_messagebox(NULL, 1, "Ok", "%s\n '%s' %s", TXT_NO_FILES_MATCHING, type, TXT_WERE_FOUND);
2024                 #endif
2025                 exit_value = 0;
2026                 goto ExitFileMenu;
2027         }
2028
2029         if (!initialized) {     
2030 //              set_screen_mode(SCREEN_MENU);
2031                 set_popup_screen();
2032
2033                 gr_set_current_canvas(NULL);
2034
2035                 grd_curcanv->cv_font = SUBTITLE_FONT;
2036
2037                 w_w = 0;
2038                 w_h = 0;
2039
2040                 for (i=0; i<NumFiles; i++ ) {
2041                         int w, h, aw;
2042                         gr_get_string_size( &filenames[i*14], &w, &h, &aw );            
2043                         if ( w > w_w )
2044                                 w_w = w;
2045                 }
2046                 if ( title ) {
2047                         int w, h, aw;
2048                         gr_get_string_size( title, &w, &h, &aw );               
2049                         if ( w > w_w )
2050                                 w_w = w;
2051                         title_height = h + (grd_curfont->ft_h*2);               // add a little space at the bottom of the title
2052                 }
2053
2054                 box_w = w_w;
2055                 box_h = ((grd_curfont->ft_h + 2) * NumFiles_displayed);
2056
2057                 w_w += (grd_curfont->ft_w * 4);
2058                 w_h = title_height + box_h + (grd_curfont->ft_h * 2);           // more space at bottom
2059
2060                 if ( w_w > grd_curcanv->cv_w ) w_w = grd_curcanv->cv_w;
2061                 if ( w_h > grd_curcanv->cv_h ) w_h = grd_curcanv->cv_h;
2062         
2063                 w_x = (grd_curcanv->cv_w-w_w)/2;
2064                 w_y = (grd_curcanv->cv_h-w_h)/2;
2065         
2066                 if ( w_x < 0 ) w_x = 0;
2067                 if ( w_y < 0 ) w_y = 0;
2068
2069                 box_x = w_x + (grd_curfont->ft_w*2);                    // must be in sync with w_w!!!
2070                 box_y = w_y + title_height;
2071
2072 // save the screen behind the menu.
2073
2074                 bg.saved = NULL;
2075
2076                 if ( (VR_offscreen_buffer->cv_w >= w_w) && (VR_offscreen_buffer->cv_h >= w_h) ) 
2077                         bg.background = &VR_offscreen_buffer->cv_bitmap;
2078                 else
2079                         bg.background = gr_create_bitmap( w_w, w_h );
2080
2081                 Assert( bg.background != NULL );
2082
2083
2084                 gr_bm_bitblt(w_w, w_h, 0, 0, w_x, w_y, &grd_curcanv->cv_bitmap, bg.background );
2085
2086 #if 0
2087                 gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(grd_curcanv->cv_bitmap), &(VR_offscreen_buffer->cv_bitmap) );
2088 #endif
2089
2090                 nm_draw_background( w_x,w_y,w_x+w_w-1,w_y+w_h-1 );
2091                 
2092                 gr_string( 0x8000, w_y+10, title );
2093          
2094                 initialized = 1;
2095         }
2096
2097         if ( !player_mode )     {
2098                 newmenu_file_sort( NumFiles, filenames );
2099         } else {
2100                 #if defined(MACINTOSH) && defined(APPLE_DEMO)
2101                 newmenu_file_sort( NumFiles, filenames );
2102                 #else
2103                 newmenu_file_sort( NumFiles-1, &filenames[14] );                // Don't sort first one!
2104                 #endif
2105                 for ( i=0; i<NumFiles; i++ )    {
2106                         if (!stricmp(Players[Player_num].callsign, &filenames[i*14]) )  {
2107 #ifdef NEWMENU_MOUSE
2108                                 dblclick_flag = 1;
2109 #endif
2110                                 citem = i;
2111                         }
2112                 }
2113         }
2114
2115 #ifdef NEWMENU_MOUSE
2116         mouse_state = omouse_state = 0;
2117         mouse2_state = omouse2_state = 0;
2118         //draw_close_box(w_x,w_y);
2119         newmenu_show_cursor();
2120 #endif
2121
2122         while(!done)    {
2123                 ocitem = citem;
2124                 ofirst_item = first_item;
2125                 gr_update();
2126
2127 #ifdef NEWMENU_MOUSE
2128                 omouse_state = mouse_state;
2129                 omouse2_state = mouse2_state;
2130                 mouse_state = mouse_button_state(0);
2131                 mouse2_state = mouse_button_state(1);
2132 #endif
2133
2134                 //see if redbook song needs to be restarted
2135                 songs_check_redbook_repeat();
2136
2137                 key = key_inkey();
2138
2139                 switch(key)     {
2140                 case KEY_COMMAND+KEY_SHIFTED+KEY_3:
2141                 case KEY_PRINT_SCREEN:
2142                         MAC(newmenu_hide_cursor());
2143                         save_screen_shot(0);
2144                         
2145                         MAC(newmenu_show_cursor());
2146                         MAC(key_flush());
2147                         break;
2148
2149                 case KEY_CTRLED+KEY_D:
2150                         #if defined(MACINTOSH) && defined(APPLE_DEMO)
2151                         break;
2152                         #endif
2153
2154                         if ( ((player_mode)&&(citem>0)) || ((demo_mode)&&(citem>=0)) )  {
2155                                 int x = 1;
2156                                 newmenu_hide_cursor();
2157                                 if (player_mode)
2158                                         x = nm_messagebox( NULL, 2, TXT_YES, TXT_NO, "%s %s?", TXT_DELETE_PILOT, &filenames[citem*14]+((player_mode && filenames[citem*14]=='$')?1:0) );
2159                                 else if (demo_mode)
2160                                         x = nm_messagebox( NULL, 2, TXT_YES, TXT_NO, "%s %s?", TXT_DELETE_DEMO, &filenames[citem*14]+((demo_mode && filenames[citem*14]=='$')?1:0) );
2161                                 newmenu_show_cursor();
2162                                 if (x==0)       {
2163                                         char * p;
2164                                         int ret;
2165                                         char name[PATH_MAX];
2166
2167                                         p = &filenames[(citem*14)+strlen(&filenames[citem*14])];
2168                                         if (player_mode)
2169                                                 *p = '.';
2170
2171                                         strcpy(name, demo_mode?DEMO_DIR:"");
2172                                         strcat(name,&filenames[citem*14]);
2173                                         
2174                                         #ifdef MACINTOSH
2175                                         {
2176                                                 int i;
2177                                                 char *p;
2178                                                 
2179                                                 if ( !strncmp(name, ".\\", 2) )
2180                                                         for (i = 0; i < strlen(name); i++)              // don't subtract 1 from strlen to get the EOS marker
2181                                                                 name[i] = name[i+1];
2182                                                 while ( (p = strchr(name, '\\')) )
2183                                                         *p = ':';
2184                                         }
2185                                         #endif
2186                                 
2187                                         ret = !PHYSFS_delete(name);
2188                                         if (player_mode)
2189                                                 *p = 0;
2190
2191                                         if ((!ret) && player_mode)      {
2192                                                 delete_player_saved_games( &filenames[citem*14] );
2193                                         }
2194
2195                                         if (ret) {
2196                                                 if (player_mode)
2197                                                         nm_messagebox( NULL, 1, TXT_OK, "%s %s %s", TXT_COULDNT, TXT_DELETE_PILOT, &filenames[citem*14]+((player_mode && filenames[citem*14]=='$')?1:0) );
2198                                                 else if (demo_mode)
2199                                                         nm_messagebox( NULL, 1, TXT_OK, "%s %s %s", TXT_COULDNT, TXT_DELETE_DEMO, &filenames[citem*14]+((demo_mode && filenames[citem*14]=='$')?1:0) );
2200                                         } else if (demo_mode)
2201                                                 demos_deleted = 1;
2202                                         first_item = -1;
2203                                         goto ReadFileNames;
2204                                 }
2205                         }
2206                         break;
2207                 case KEY_HOME:
2208                 case KEY_PAD7:
2209                         citem = 0;
2210                         break;
2211                 case KEY_END:
2212                 case KEY_PAD1:
2213                         citem = NumFiles-1;
2214                         break;
2215                 case KEY_UP:
2216                 case KEY_PAD8:
2217                         citem--;                        
2218                         break;
2219                 case KEY_DOWN:
2220                 case KEY_PAD2:
2221                         citem++;                        
2222                         break;
2223                 case KEY_PAGEDOWN:
2224                 case KEY_PAD3:
2225                         citem += NumFiles_displayed;
2226                         break;
2227                 case KEY_PAGEUP:
2228                 case KEY_PAD9:
2229                         citem -= NumFiles_displayed;
2230                         break;
2231                 case KEY_ESC:
2232                         if (allow_abort_flag) {
2233                                 citem = -1;
2234                                 done = 1;
2235                         }
2236                         break;
2237                 case KEY_ENTER:
2238                 case KEY_PADENTER:
2239                         done = 1;
2240                         break;
2241                         
2242                 case KEY_COMMAND+KEY_Q: {
2243                         if ( !(Game_mode & GM_MULTI) )
2244                         {
2245                                 d_free(filenames);
2246                                 quit_request();
2247                         }
2248                         newmenu_show_cursor();
2249                         key_flush();
2250                         break;
2251                 }
2252                 
2253                 default:        
2254                         {
2255
2256                                 int ascii = key_to_ascii(key);
2257                                 if ( ascii < 255 )      {
2258                                         int cc,cc1;
2259                                         cc=cc1=citem+1;
2260                                         if (cc1 < 0 )  cc1 = 0;
2261                                         if (cc1 >= NumFiles )  cc1 = 0;
2262                                         while(1) {
2263                                                 if ( cc < 0 ) cc = 0;
2264                                                 if ( cc >= NumFiles ) cc = 0;
2265                                                 if ( citem == cc ) break;
2266         
2267                                                 if ( toupper(filenames[cc*14]) == toupper(ascii) )      {
2268                                                         citem = cc;
2269                                                         break;
2270                                                 }
2271                                                 cc++;
2272                                         }
2273                                 }
2274                         }
2275                 }
2276                 if ( done ) break;
2277
2278
2279                 if (citem<0)
2280                         citem=0;
2281
2282                 if (citem>=NumFiles)
2283                         citem = NumFiles-1;
2284
2285                 if (citem< first_item)
2286                         first_item = citem;
2287
2288                 if (citem>=( first_item+NumFiles_displayed))
2289                 {
2290                         first_item = citem-NumFiles_displayed+1;
2291                 }
2292
2293 #ifdef WINDOWS
2294                 if (NumFiles>first_item+NumFiles_displayed)
2295                         show_down_arrow=1;
2296                 else 
2297                         show_down_arrow=0;
2298                 if (first_item>0)
2299                         show_up_arrow=1;
2300                 else    
2301                         show_up_arrow=0;
2302 #endif
2303                         
2304
2305                 if (NumFiles <= NumFiles_displayed )
2306                          first_item = 0;
2307
2308                 if (first_item>NumFiles-NumFiles_displayed)
2309                 {
2310                         first_item = NumFiles-NumFiles_displayed;
2311                 }
2312
2313                 if (first_item < 0 ) first_item = 0;
2314
2315 #ifdef NEWMENU_MOUSE
2316                 if (mouse_state || mouse2_state) {
2317                         int w, h, aw;
2318
2319                         mouse_get_pos(&mx, &my);
2320                         for (i=first_item; i<first_item+NumFiles_displayed; i++ )       {
2321                                 gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2322                                 x1 = box_x;
2323                                 x2 = box_x + box_w - 1;
2324                                 y1 = (i-first_item)*(grd_curfont->ft_h + 2) + box_y;
2325                                 y2 = y1+h+1;
2326                                 if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2327                                         if (i == citem && !mouse2_state) {
2328                                                 break;
2329                                         }
2330                                         citem = i;
2331                                         dblclick_flag = 0;
2332                                         break;
2333                                 }
2334                         }
2335                 }
2336                 
2337                 if (!mouse_state && omouse_state) {
2338                         int w, h, aw;
2339
2340                         gr_get_string_size(&filenames[citem*14], &w, &h, &aw  );
2341                         mouse_get_pos(&mx, &my);
2342                         x1 = box_x;
2343                         x2 = box_x + box_w - 1;
2344                         y1 = (citem-first_item)*(grd_curfont->ft_h + 2) + box_y;
2345                         y2 = y1+h+1;
2346                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2347                                 if (dblclick_flag) done = 1;
2348                                 else dblclick_flag = 1;
2349                         }
2350                 }
2351
2352                 if ( !mouse_state && omouse_state ) {
2353                         mouse_get_pos(&mx, &my);
2354                         x1 = w_x + CLOSE_X + 2;
2355                         x2 = x1 + CLOSE_SIZE - 2;
2356                         y1 = w_y + CLOSE_Y + 2;
2357                         y2 = y1 + CLOSE_SIZE - 2;
2358                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2359                                 citem = -1;
2360                                 done = 1;
2361                         }
2362                    #ifdef WINDOWS
2363                         x1 = box_x-LHX(10);
2364                         x2 = x1 + LHX(10);
2365                         y1 = box_y;
2366                         y2 = box_y+LHY(7);
2367                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_up_arrow ) 
2368                                 simukey = -1;
2369                         y1 = box_y+box_h-LHY(7);
2370                         y2 = box_y+box_h;
2371                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_down_arrow) 
2372                                 simukey = 1;
2373                    #endif
2374                 }
2375
2376 #endif
2377   
2378                 gr_setcolor( BM_XRGB(2,2,2));
2379                 //gr_rect( box_x - 1, box_y-2, box_x + box_w, box_y-2 );
2380                 gr_setcolor( BM_XRGB( 0,0,0)  );
2381
2382                 if (ofirst_item != first_item)  {
2383                         newmenu_hide_cursor();
2384                         gr_setcolor( BM_XRGB( 0,0,0)  );
2385                         for (i=first_item; i<first_item+NumFiles_displayed; i++ )       {
2386                                 int w, h, aw, y;
2387                                 y = (i-first_item)*(grd_curfont->ft_h + 2) + box_y;
2388                         
2389                                 if ( i >= NumFiles )    {
2390
2391                                         gr_setcolor( BM_XRGB(5,5,5));
2392                                         gr_rect( box_x + box_w, y-1, box_x + box_w, y + grd_curfont->ft_h + 1);
2393                                         //gr_rect( box_x, y + grd_curfont->ft_h + 2, box_x + box_w, y + grd_curfont->ft_h + 2);
2394                                         
2395                                         gr_setcolor( BM_XRGB(2,2,2));
2396                                         gr_rect( box_x - 1, y - 1, box_x - 1, y + grd_curfont->ft_h + 2 );
2397                                         
2398                                         gr_setcolor( BM_XRGB(0,0,0));
2399                                         gr_rect( box_x, y - 1, box_x + box_w - 1, y + grd_curfont->ft_h + 1);
2400                                         
2401                                 } else {
2402                                         if ( i == citem )       
2403                                                 grd_curcanv->cv_font = SELECTED_FONT;
2404                                         else    
2405                                                 grd_curcanv->cv_font = NORMAL_FONT;
2406                                         gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2407
2408                                         gr_setcolor( BM_XRGB(5,5,5));
2409                                   //    gr_rect( box_x, y + h + 2, box_x + box_w, y + h + 2);
2410                                         gr_rect( box_x + box_w, y - 1, box_x + box_w, y + h + 1);
2411                                         
2412                                         gr_setcolor( BM_XRGB(2,2,2));
2413                                         gr_rect( box_x - 1, y - 1, box_x - 1, y + h + 1);
2414                                         gr_setcolor( BM_XRGB(0,0,0));
2415                                                         
2416                                         gr_rect( box_x, y-1, box_x + box_w - 1, y + h + 1 );
2417                                         gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0)  );
2418                                 }
2419                         }        
2420                         newmenu_show_cursor();
2421                 } else if ( citem != ocitem )   {
2422                         int w, h, aw, y;
2423
2424                         newmenu_hide_cursor();
2425                         i = ocitem;
2426                         if ( (i>=0) && (i<NumFiles) )   {
2427                                 y = (i-first_item)*(grd_curfont->ft_h+2)+box_y;
2428                                 if ( i == citem )       
2429                                         grd_curcanv->cv_font = SELECTED_FONT;
2430                                 else    
2431                                         grd_curcanv->cv_font = NORMAL_FONT;
2432                                 gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2433                                 gr_rect( box_x, y-1, box_x + box_w - 1, y + h + 1 );
2434                                 gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0)  );
2435                         }
2436                         i = citem;
2437                         if ( (i>=0) && (i<NumFiles) )   {
2438                                 y = (i-first_item)*(grd_curfont->ft_h+2)+box_y;
2439                                 if ( i == citem )       
2440                                         grd_curcanv->cv_font = SELECTED_FONT;
2441                                 else    
2442                                         grd_curcanv->cv_font = NORMAL_FONT;
2443                                 gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2444                                 gr_rect( box_x, y-1, box_x + box_x - 1, y + h + 1 );
2445                                 gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0)  );
2446                         }
2447                         newmenu_show_cursor();
2448                 }
2449
2450         #ifdef WINDOWS   
2451                         grd_curcanv->cv_font = NORMAL_FONT;
2452                         if (show_up_arrow)
2453                                 gr_string( box_x-LHX(10), box_y ,UP_ARROW_MARKER );
2454                         else
2455                         {
2456                                 No_darkening=1;
2457                                 nm_draw_background (box_x-LHX(10),box_y,box_x-2,box_y+LHY(7));
2458                                 No_darkening=0;
2459                         }
2460
2461                         if (show_down_arrow)
2462                         gr_string( box_x-LHX(10), box_y+box_h-LHY(7) ,DOWN_ARROW_MARKER );
2463                         else
2464                         {
2465                                 No_darkening=1;
2466                                 nm_draw_background (box_x-LHX(10),box_y+box_h-LHY(7),box_x-2,box_y+box_h);
2467                                 No_darkening=0;
2468                         }
2469
2470         #endif
2471         }
2472
2473 ExitFileMenuEarly:
2474         MAC(newmenu_hide_cursor());
2475         if ( citem > -1 )       {
2476                 strncpy( filename, (&filenames[citem*14])+((player_mode && filenames[citem*14]=='$')?1:0), FILENAME_LEN );
2477                 exit_value = 1;
2478         } else {
2479                 exit_value = 0;
2480         }                                                                                        
2481
2482 ExitFileMenu:
2483         keyd_repeat = old_keyd_repeat;
2484
2485         if ( initialized )      {
2486                 if (Newdemo_state != ND_STATE_PLAYBACK) //horrible hack to prevent restore when screen has been cleared
2487                         gr_bm_bitblt(w_w, w_h, w_x, w_y, 0, 0, bg.background, &grd_curcanv->cv_bitmap );
2488                 if ( bg.background != &VR_offscreen_buffer->cv_bitmap )
2489                         gr_free_bitmap(bg.background);
2490 #if 0
2491                 gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(VR_offscreen_buffer->cv_bitmap), &(grd_curcanv->cv_bitmap) )
2492 #endif
2493         }
2494
2495         if ( filenames )
2496                 d_free(filenames);
2497
2498         return exit_value;
2499
2500 }
2501
2502
2503 // Example listbox callback function...
2504 // int lb_callback( int * citem, int *nitems, char * items[], int *keypress )
2505 // {
2506 //      int i;
2507 // 
2508 //      if ( *keypress = KEY_CTRLED+KEY_D )     {
2509 //              if ( *nitems > 1 )      {
2510 //                      PHYSFS_delete(items[*citem]);     // Delete the file
2511 //                      for (i=*citem; i<*nitems-1; i++ )       {
2512 //                              items[i] = items[i+1];
2513 //                      }
2514 //                      *nitems = *nitems - 1;
2515 //                      d_free( items[*nitems] );
2516 //                      items[*nitems] = NULL;
2517 //                      return 1;       // redraw;
2518 //              }
2519 //                      *keypress = 0;
2520 //      }                       
2521 //      return 0;
2522 // }
2523
2524 #define LB_ITEMS_ON_SCREEN 8
2525
2526 int newmenu_listbox( char * title, int nitems, char * items[], int allow_abort_flag, int (*listbox_callback)( int * citem, int *nitems, char * items[], int *keypress ) )
2527 {
2528         return newmenu_listbox1( title, nitems, items, allow_abort_flag, 0, listbox_callback );
2529 }
2530
2531 int newmenu_listbox1( char * title, int nitems, char * items[], int allow_abort_flag, int default_item, int (*listbox_callback)( int * citem, int *nitems, char * items[], int *keypress ) )
2532 {
2533         int i;
2534         int done, ocitem,citem, ofirst_item, first_item, key, redraw;
2535         int old_keyd_repeat = keyd_repeat;
2536         int width, height, wx, wy, title_height, border_size;
2537         int total_width,total_height;
2538         bkg bg;
2539 #ifdef NEWMENU_MOUSE
2540         int mx, my, x1, x2, y1, y2, mouse_state, omouse_state;  //, dblclick_flag;
2541         int close_x,close_y;
2542 # ifdef WINDOWS
2543    int simukey=0,show_up_arrow=0,show_down_arrow=0;
2544 # endif
2545 #endif
2546
2547         keyd_repeat = 1;
2548
2549 //      set_screen_mode(SCREEN_MENU);
2550         set_popup_screen();
2551
2552         gr_set_current_canvas(NULL);
2553
2554         grd_curcanv->cv_font = SUBTITLE_FONT;
2555
2556         width = 0;
2557         for (i=0; i<nitems; i++ )       {
2558                 int w, h, aw;
2559                 gr_get_string_size( items[i], &w, &h, &aw );            
2560                 if ( w > width )
2561                         width = w;
2562         }
2563         height = (grd_curfont->ft_h + 2) * LB_ITEMS_ON_SCREEN;
2564
2565         {
2566                 int w, h, aw;
2567                 gr_get_string_size( title, &w, &h, &aw );               
2568                 if ( w > width )
2569                         width = w;
2570                 title_height = h + 5;
2571         }
2572
2573         border_size = grd_curfont->ft_w;
2574    WIN (border_size=grd_curfont->ft_w*2);
2575                 
2576         width += (grd_curfont->ft_w);
2577         if ( width > grd_curcanv->cv_w - (grd_curfont->ft_w * 3) )
2578                 width = grd_curcanv->cv_w - (grd_curfont->ft_w * 3);
2579
2580         wx = (grd_curcanv->cv_bitmap.bm_w-width)/2;
2581         wy = (grd_curcanv->cv_bitmap.bm_h-(height+title_height))/2 + title_height;
2582         if ( wy < title_height )
2583                 wy = title_height;
2584
2585         total_width = width+2*border_size;
2586         total_height = height+2*border_size+title_height;
2587
2588         bg.saved = NULL;
2589
2590         if ( (VR_offscreen_buffer->cv_w >= total_width) && (VR_offscreen_buffer->cv_h >= total_height) )
2591                 bg.background = &VR_offscreen_buffer->cv_bitmap;
2592         else
2593                 //bg.background = gr_create_bitmap( width, (height + title_height) );
2594                 bg.background = gr_create_bitmap(total_width,total_height);
2595         Assert( bg.background != NULL );
2596                 
2597         //gr_bm_bitblt(wx+width+border_size, wy+height+border_size, 0, 0, wx-border_size, wy-title_height-border_size, &grd_curcanv->cv_bitmap, bg.background );
2598         gr_bm_bitblt(total_width,total_height, 0, 0, wx-border_size, wy-title_height-border_size, &grd_curcanv->cv_bitmap, bg.background );
2599
2600 #if 0
2601         gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(grd_curcanv->cv_bitmap), &(VR_offscreen_buffer->cv_bitmap) );
2602 #endif
2603
2604         nm_draw_background( wx-border_size,wy-title_height-border_size,wx+width+border_size-1,wy+height+border_size-1 );
2605
2606         gr_string( 0x8000, wy - title_height, title );
2607
2608         done = 0;
2609         citem = default_item;
2610         if ( citem < 0 ) citem = 0;
2611         if ( citem >= nitems ) citem = 0;
2612
2613         first_item = -1;
2614
2615 #ifdef NEWMENU_MOUSE
2616         mouse_state = omouse_state = 0; //dblclick_flag = 0;
2617         close_x = wx-border_size;
2618         close_y = wy-title_height-border_size;
2619         //draw_close_box(close_x,close_y);
2620         newmenu_show_cursor();
2621 #endif
2622
2623         while(!done)    {
2624                 ocitem = citem;
2625                 ofirst_item = first_item;
2626 #ifdef NEWMENU_MOUSE
2627                 omouse_state = mouse_state;
2628                 mouse_state = mouse_button_state(0);
2629 #endif
2630                 //see if redbook song needs to be restarted
2631                 songs_check_redbook_repeat();
2632
2633                 key = key_inkey();
2634
2635                 if ( listbox_callback )
2636                         redraw = (*listbox_callback)(&citem, &nitems, items, &key );
2637                 else
2638                         redraw = 0;
2639
2640                 if ( key<-1 ) {
2641                         citem = key;
2642                         key = -1;
2643                         done = 1;
2644                 }
2645
2646
2647         #ifdef WINDOWS
2648                 if (simukey==-1)
2649                         key=KEY_UP;
2650                 else if (simukey==1)
2651                    key=KEY_DOWN;
2652                 simukey=0;
2653         #endif
2654                 
2655                 switch(key)     {
2656                 case KEY_COMMAND+KEY_SHIFTED+KEY_3:
2657                 case KEY_PRINT_SCREEN:          
2658                         MAC(newmenu_hide_cursor());
2659                         save_screen_shot(0); 
2660                         
2661                         MAC(newmenu_show_cursor());
2662                         MAC(key_flush());
2663                         break;
2664                 case KEY_HOME:
2665                 case KEY_PAD7:
2666                         citem = 0;
2667                         break;
2668                 case KEY_END:
2669                 case KEY_PAD1:
2670                         citem = nitems-1;
2671                         break;
2672                 case KEY_UP:
2673                 case KEY_PAD8:
2674                         citem--;                        
2675                         break;
2676                 case KEY_DOWN:
2677                 case KEY_PAD2:
2678                         citem++;                        
2679                         break;
2680                 case KEY_PAGEDOWN:
2681                 case KEY_PAD3:
2682                         citem += LB_ITEMS_ON_SCREEN;
2683                         break;
2684                 case KEY_PAGEUP:
2685                 case KEY_PAD9:
2686                         citem -= LB_ITEMS_ON_SCREEN;
2687                         break;
2688                 case KEY_ESC:
2689                         if (allow_abort_flag) {
2690                                 citem = -1;
2691                                 done = 1;
2692                         }
2693                         break;
2694                 case KEY_ENTER:
2695                 case KEY_PADENTER:
2696                         done = 1;
2697                         break;
2698
2699                 case KEY_COMMAND+KEY_Q: {
2700                         if ( !(Game_mode & GM_MULTI) )
2701                                 quit_request();
2702                         newmenu_show_cursor();
2703                         key_flush();
2704                         break;
2705                 }
2706
2707                 default:        
2708                         if ( key > 0 )  {
2709                                 int ascii = key_to_ascii(key);
2710                                 if ( ascii < 255 )      {
2711                                         int cc,cc1;
2712                                         cc=cc1=citem+1;
2713                                         if (cc1 < 0 )  cc1 = 0;
2714                                         if (cc1 >= nitems )  cc1 = 0;
2715                                         while(1) {
2716                                                 if ( cc < 0 ) cc = 0;
2717                                                 if ( cc >= nitems ) cc = 0;
2718                                                 if ( citem == cc ) break;
2719         
2720                                                 if ( toupper( items[cc][0] ) == toupper(ascii) )        {
2721                                                         citem = cc;
2722                                                         break;
2723                                                 }
2724                                                 cc++;
2725                                         }
2726                                 }
2727                         }
2728                 }
2729                 if ( done ) break;
2730
2731                 if (citem<0)
2732                         citem=0;
2733
2734                 if (citem>=nitems)
2735                         citem = nitems-1;
2736
2737                 if (citem< first_item)
2738                         first_item = citem;
2739
2740                 if (citem>=( first_item+LB_ITEMS_ON_SCREEN))
2741                         first_item = citem-LB_ITEMS_ON_SCREEN+1;
2742
2743                 if (nitems <= LB_ITEMS_ON_SCREEN )
2744                          first_item = 0;
2745
2746                 if (first_item>nitems-LB_ITEMS_ON_SCREEN)
2747                         first_item = nitems-LB_ITEMS_ON_SCREEN;
2748                 if (first_item < 0 ) first_item = 0;
2749
2750 #ifdef WINDOWS
2751                 if (nitems>first_item+LB_ITEMS_ON_SCREEN)
2752                         show_down_arrow=1;
2753                 else 
2754                         show_down_arrow=0;
2755                 if (first_item>0)
2756                         show_up_arrow=1;
2757                 else    
2758                         show_up_arrow=0;
2759 #endif
2760
2761
2762 #ifdef NEWMENU_MOUSE
2763                 if (mouse_state) {
2764                         int w, h, aw;
2765
2766                         mouse_get_pos(&mx, &my);
2767                         for (i=first_item; i<first_item+LB_ITEMS_ON_SCREEN; i++ )       {
2768                                 if (i > nitems)
2769                                         break;
2770                                 gr_get_string_size(items[i], &w, &h, &aw  );
2771                                 x1 = wx;
2772                                 x2 = wx + width;
2773                                 y1 = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2774                                 y2 = y1+h+1;
2775                                 if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2776                                         //if (i == citem) {
2777                                         //      break;
2778                                         //}
2779                                         //dblclick_flag= 0;
2780                                         citem = i;
2781                                         done = 1;
2782                                         break;
2783                                 }
2784                         }
2785                 }
2786
2787                 //no double-click stuff for listbox
2788                 //@@if (!mouse_state && omouse_state) {
2789                 //@@    int w, h, aw;
2790                 //@@
2791                 //@@    gr_get_string_size(items[citem], &w, &h, &aw  );
2792                 //@@    mouse_get_pos(&mx, &my);
2793                 //@@    x1 = wx;
2794                 //@@    x2 = wx + width;
2795                 //@@    y1 = (citem-first_item)*(grd_curfont->ft_h+2)+wy;
2796                 //@@    y2 = y1+h+1;
2797                 //@@    if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2798                 //@@            if (dblclick_flag) done = 1;
2799                 //@@    }
2800                 //@@}
2801
2802                 //check for close box clicked
2803                 if ( !mouse_state && omouse_state ) {
2804                         mouse_get_pos(&mx, &my);
2805                         x1 = close_x + CLOSE_X + 2;
2806                         x2 = x1 + CLOSE_SIZE - 2;
2807                         y1 = close_y + CLOSE_Y + 2;
2808                         y2 = y1 + CLOSE_SIZE - 2;
2809                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2810                                 citem = -1;
2811                                 done = 1;
2812                         }
2813
2814                    #ifdef WINDOWS
2815                         x1 = wx-LHX(10);
2816                         x2 = x1 + LHX(10);
2817                         y1 = wy;
2818                         y2 = wy+LHY(7);
2819                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_up_arrow) 
2820                                 simukey = -1;
2821                         y1 = total_height-LHY(7);
2822                         y2 = total_height;
2823                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_down_arrow ) 
2824                                 simukey = 1;
2825                    #endif
2826
2827                         
2828                 }
2829 #endif
2830
2831                 if ( (ofirst_item != first_item) || redraw)     {
2832                         newmenu_hide_cursor();
2833
2834                         gr_setcolor( BM_XRGB( 0,0,0)  );
2835                         for (i=first_item; i<first_item+LB_ITEMS_ON_SCREEN; i++ )       {
2836                                 int w, h, aw, y;
2837                                 y = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2838                                 if ( i >= nitems )      {
2839                                         gr_setcolor( BM_XRGB(0,0,0));
2840                                         gr_rect( wx, y-1, wx+width-1, y+grd_curfont->ft_h + 1 );
2841                                 } else {
2842                                         if ( i == citem )       
2843                                                 grd_curcanv->cv_font = SELECTED_FONT;
2844                                         else    
2845                                                 grd_curcanv->cv_font = NORMAL_FONT;
2846                                         gr_get_string_size(items[i], &w, &h, &aw  );
2847                                         gr_rect( wx, y-1, wx+width-1, y+h+1 );
2848                                         gr_string( wx+5, y, items[i]  );
2849                                 }
2850                         }               
2851
2852                                 
2853                         // If Win95 port, draw up/down arrows on left side of menu
2854                         #ifdef WINDOWS   
2855                                 grd_curcanv->cv_font = NORMAL_FONT;
2856                         if (show_up_arrow)
2857                                 gr_string( wx-LHX(10), wy ,UP_ARROW_MARKER );
2858                         else
2859                         {
2860                                 No_darkening=1;
2861                                 nm_draw_background (wx-LHX(10),wy,wx-2,wy+LHY(7));
2862                                 No_darkening=0;
2863                         }
2864
2865                         if (show_down_arrow)
2866                         gr_string( wx-LHX(10), wy+total_height-LHY(7) ,DOWN_ARROW_MARKER );
2867                         else
2868                         {
2869                                 No_darkening=1;
2870                                 nm_draw_background (wx-LHX(10),wy+total_height-LHY(7),wx-2,wy+total_height);
2871                                 No_darkening=0;
2872                         }
2873
2874                         #endif
2875
2876
2877                         newmenu_show_cursor();
2878                         gr_update();
2879                 } else if ( citem != ocitem )   {
2880                         int w, h, aw, y;
2881
2882                         newmenu_hide_cursor();
2883
2884                         i = ocitem;
2885                         if ( (i>=0) && (i<nitems) )     {
2886                                 y = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2887                                 if ( i == citem )       
2888                                         grd_curcanv->cv_font = SELECTED_FONT;
2889                                 else    
2890                                         grd_curcanv->cv_font = NORMAL_FONT;
2891                                 gr_get_string_size(items[i], &w, &h, &aw  );
2892                                 gr_rect( wx, y-1, wx+width-1, y+h+1 );
2893                                 gr_string( wx+5, y, items[i]  );
2894
2895                         }
2896                         i = citem;
2897                         if ( (i>=0) && (i<nitems) )     {
2898                                 y = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2899                                 if ( i == citem )       
2900                                         grd_curcanv->cv_font = SELECTED_FONT;
2901                                 else    
2902                                         grd_curcanv->cv_font = NORMAL_FONT;
2903                                 gr_get_string_size( items[i], &w, &h, &aw  );
2904                                 gr_rect( wx, y-1, wx+width-1, y+h );
2905                                 gr_string( wx+5, y, items[i]  );
2906                         }
2907
2908                         newmenu_show_cursor();
2909                         gr_update();
2910                 }
2911         }
2912         newmenu_hide_cursor();
2913
2914         keyd_repeat = old_keyd_repeat;
2915
2916         gr_bm_bitblt(total_width,total_height, wx-border_size, wy-title_height-border_size, 0, 0, bg.background, &grd_curcanv->cv_bitmap );
2917
2918         if ( bg.background != &VR_offscreen_buffer->cv_bitmap )
2919                 gr_free_bitmap(bg.background);
2920
2921 #if 0
2922         gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(VR_offscreen_buffer->cv_bitmap), &(grd_curcanv->cv_bitmap) );
2923 #endif
2924
2925         return citem;
2926 }
2927
2928 #if 0
2929 int newmenu_filelist( char * title, char * filespec, char * filename )
2930 {
2931         int i, NumFiles;
2932         char * Filenames[MAX_FILES];
2933         char FilenameText[MAX_FILES][14];
2934         FILEFINDSTRUCT find;
2935
2936         NumFiles = 0;
2937         if( !FileFindFirst( filespec, &find ) ) {
2938                 do      {
2939                         if (NumFiles<MAX_FILES) {
2940                                 strncpy( FilenameText[NumFiles], find.name, FILENAME_LEN);
2941                                 Filenames[NumFiles] = FilenameText[NumFiles];
2942                                 NumFiles++;
2943                         } else {
2944                                 break;
2945                         }
2946                 } while( !FileFindNext( &find ) );
2947                 FileFindClose();
2948         }
2949
2950         i = newmenu_listbox( title, NumFiles, Filenames, 1, NULL );
2951         if ( i > -1 )   {
2952                 strcpy( filename, Filenames[i] );
2953                 return 1;
2954         } 
2955         return 0;
2956 }
2957 #endif
2958
2959 //added on 10/14/98 by Victor Rachels to attempt a fixedwidth font messagebox
2960 int nm_messagebox_fixedfont( char *title, int nchoices, ... )
2961 {
2962         int i;
2963         char * format;
2964         va_list args;
2965         char *s;
2966         char nm_text[MESSAGEBOX_TEXT_SIZE];
2967         newmenu_item nm_message_items[5];
2968
2969         va_start(args, nchoices );
2970
2971         Assert( nchoices <= 5 );
2972
2973         for (i=0; i<nchoices; i++ )     {
2974                 s = va_arg( args, char * );
2975                 nm_message_items[i].type = NM_TYPE_MENU; nm_message_items[i].text = s;
2976         }
2977         format = va_arg( args, char * );
2978         //sprintf(        nm_text, "" ); // adb: ?
2979         vsprintf(nm_text,format,args);
2980         va_end(args);
2981
2982         Assert(strlen(nm_text) < MESSAGEBOX_TEXT_SIZE );
2983
2984         return newmenu_do_fixedfont( title, nm_text, nchoices, nm_message_items, NULL, 0, NULL, -1, -1 );
2985 }
2986 //end this section addition - Victor Rachels
2987
2988 #ifdef NETWORK
2989 extern netgame_info Active_games[];
2990 extern int NumActiveNetgames;
2991
2992 void show_extra_netgame_info(int choice)
2993  {
2994         newmenu_item m[5];
2995    char mtext[5][50];
2996         int i,num=0;
2997
2998         if (choice>=NumActiveNetgames)
2999                 return;
3000         
3001    for (i=0;i<5;i++)
3002         {
3003          m[i].text=(char *)&mtext[i];
3004     m[i].type=NM_TYPE_TEXT;             
3005         }
3006
3007    sprintf (mtext[num],"Game: %s",Active_games[choice].game_name); num++;
3008    sprintf (mtext[num],"Mission: %s",Active_games[choice].mission_title); num++;
3009         sprintf (mtext[num],"Current Level: %d",Active_games[choice].levelnum); num++;
3010         sprintf (mtext[num],"Difficulty: %s",MENU_DIFFICULTY_TEXT(Active_games[choice].difficulty)); num++;
3011
3012         already_showing_info=1; 
3013         newmenu_dotiny2( NULL, "Netgame Information", num, m, NULL);
3014         already_showing_info=0; 
3015  }
3016
3017 #endif // NETWORK
3018
3019 /* Spiffy word wrap string formatting function */
3020
3021 void nm_wrap_text(char *dbuf, char *sbuf, int line_length)
3022 {
3023         int col;
3024         char *wordptr;
3025         char *tbuf;
3026
3027         tbuf = (char *)d_malloc(strlen(sbuf)+1);
3028         strcpy(tbuf, sbuf);
3029
3030         wordptr = strtok(tbuf, " ");
3031         if (!wordptr) return;
3032         col = 0;
3033         dbuf[0] = 0;
3034
3035         while (wordptr)
3036         {
3037                 col = col+strlen(wordptr)+1;
3038                 if (col >=line_length) {
3039                         col = 0;
3040                         sprintf(dbuf, "%s\n%s ", dbuf, wordptr);
3041                 }
3042                 else {
3043                         sprintf(dbuf, "%s%s ", dbuf, wordptr);
3044                 }
3045                 wordptr = strtok(NULL, " ");
3046         }
3047
3048         d_free(tbuf);
3049 }