]> icculus.org git repositories - btb/d2x.git/blob - main/newmenu.c
use PLAYER_DIR for rest of player files
[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 !defined(SHAREWARE) || defined(APPLE_DEMO)
1375                         if ( (Game_mode & GM_MULTI) )           // don't process in multiplayer games
1376                                 break;
1377
1378                         key_close();            // no processing of keys with keyboard handler.. jeez                           
1379                         stop_time();
1380                         newmenu_hide_cursor();
1381                         show_boxed_message ("Mounting CD\nESC to quit");        
1382                         RBAMountDisk();         // OS has totaly control of the CD.
1383                         if (Function_mode == FMODE_MENU)
1384                                 songs_play_song(SONG_TITLE,1);
1385                         else if (Function_mode == FMODE_GAME)
1386                                 songs_play_level_song( Current_level_num );
1387                         clear_boxed_message();
1388                         newmenu_show_cursor();
1389                         key_init();
1390                         key_flush();
1391                         start_time();
1392                         #endif
1393                         
1394                         break;
1395
1396                 case KEY_COMMAND+KEY_E:
1397                         songs_stop_redbook();
1398                         RBAEjectDisk();
1399                         k = -1;         // force key not to register
1400                         break;
1401                 #endif
1402                         
1403                 case KEY_COMMAND+KEY_Q: {
1404                         if ( !(Game_mode & GM_MULTI) )
1405                                 quit_request();
1406                         if (!joydefs_calibrating)
1407                                 newmenu_show_cursor();
1408                         k = -1;         // force key not to register
1409                         break;
1410                 }
1411
1412                 #ifndef NDEBUG
1413                 case KEY_BACKSP:        
1414                         if ( (choice>-1) && (item[choice].type!=NM_TYPE_INPUT)&&(item[choice].type!=NM_TYPE_INPUT_MENU))
1415                                 Int3(); 
1416                         break;
1417                 #endif
1418
1419                 }
1420
1421 #ifdef NEWMENU_MOUSE // for mouse selection of menu's etc.
1422                 if ( !done && mouse_state && !omouse_state && !all_text ) {
1423                         mouse_get_pos(&mx, &my);
1424                         for (i=0; i<nitems; i++ )       {
1425                                 x1 = grd_curcanv->cv_bitmap.bm_x + item[i].x - item[i].right_offset - 6;
1426                                 x2 = x1 + item[i].w;
1427                                 y1 = grd_curcanv->cv_bitmap.bm_y + item[i].y;
1428                                 y2 = y1 + item[i].h;
1429                                 if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2))) {
1430                                         if (i+ScrollOffset != choice) {
1431                                                 if(Hack_DblClick_MenuMode) dblclick_flag = 0; 
1432                                         }
1433                                         
1434                                         choice = i + ScrollOffset;
1435
1436                                         switch( item[choice].type )     {
1437                                         case NM_TYPE_CHECK:
1438                                                 if ( item[choice].value )
1439                                                         item[choice].value = 0;
1440                                                 else
1441                                                         item[choice].value = 1;
1442                                                 item[choice].redraw=1;
1443
1444                                                 if (IsScrollBox)
1445                                                         LastScrollCheck=-1;
1446 #if 0
1447                                                 if (IsScrollBox)
1448                                                  {
1449                                                         if (choice==(MaxOnMenu+ScrollOffset-1) || choice==ScrollOffset)
1450                                                          {
1451                                                            mprintf ((0,"Special redraw!\n"));
1452                                                                 LastScrollCheck=-1;                                     
1453                                                          }
1454                                                  }
1455 #endif
1456                                                 break;
1457                                         case NM_TYPE_RADIO:
1458                                                 for (i=0; i<nitems; i++ )       {
1459                                                         if ((i!=choice) && (item[i].type==NM_TYPE_RADIO) && (item[i].group==item[choice].group) && (item[i].value) )    {
1460                                                                 item[i].value = 0;
1461                                                                 item[i].redraw = 1;
1462                                                         }
1463                                                 }
1464                                                 item[choice].value = 1;
1465                                                 item[choice].redraw = 1;
1466                                                 break;
1467                                         }
1468                                         item[old_choice].redraw=1;
1469                                         break;
1470                                 }
1471                         }
1472                 }
1473
1474                 if (mouse_state && all_text)
1475                         done = 1;
1476                 
1477                 if ( !done && mouse_state && !all_text ) {
1478                         mouse_get_pos(&mx, &my);
1479                         
1480                         // check possible scrollbar stuff first
1481                         if (IsScrollBox) {
1482                                 int arrow_width, arrow_height, aw;
1483                                 
1484                                 if (ScrollOffset != 0) {
1485                                         gr_get_string_size(UP_ARROW_MARKER, &arrow_width, &arrow_height, &aw);
1486                                         x2 = grd_curcanv->cv_bitmap.bm_x + item[ScrollOffset].x-(MenuHires?24:12);
1487                                 y1 = grd_curcanv->cv_bitmap.bm_y + item[ScrollOffset].y-((string_height+1)*ScrollOffset);
1488                                         x1 = x1 - arrow_width;
1489                                         y2 = y1 + arrow_height;
1490                                         if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
1491                                                 choice--;
1492                                         LastScrollCheck=-1;
1493                                 mprintf ((0,"Scrolling! Choice=%d\n",choice));
1494                                                    
1495                                 if (choice<ScrollOffset)
1496                                {
1497                                         for (i=0;i<nitems;i++)
1498                                                 item[i].redraw=1;
1499                                      ScrollOffset--;
1500                                      mprintf ((0,"ScrollOffset=%d\n",ScrollOffset));
1501                                }
1502                                         }
1503                                 }
1504                                 if (ScrollOffset+MaxDisplayable<nitems) {
1505                                         gr_get_string_size(DOWN_ARROW_MARKER, &arrow_width, &arrow_height, &aw);
1506                                         x2 = grd_curcanv->cv_bitmap.bm_x + item[ScrollOffset+MaxDisplayable-1].x-(MenuHires?24:12);
1507                                         y1 = grd_curcanv->cv_bitmap.bm_y + item[ScrollOffset+MaxDisplayable-1].y-((string_height+1)*ScrollOffset);
1508                                         x1 = x1 - arrow_width;
1509                                         y2 = y1 + arrow_height;
1510                                         if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
1511                                                 choice++;
1512                                 LastScrollCheck=-1;
1513                                 mprintf ((0,"Scrolling! Choice=%d\n",choice));
1514                                                    
1515                                 if (choice>=MaxOnMenu+ScrollOffset)
1516                                 {
1517                                 for (i=0;i<nitems;i++)
1518                                                 item[i].redraw=1;
1519                                   ScrollOffset++;
1520                                   mprintf ((0,"ScrollOffset=%d\n",ScrollOffset));
1521                                 }
1522                                         }
1523                                 }
1524                         }
1525                         
1526                         for (i=0; i<nitems; i++ )       {
1527                                 x1 = grd_curcanv->cv_bitmap.bm_x + item[i].x - item[i].right_offset - 6;
1528                                 x2 = x1 + item[i].w;
1529                                 y1 = grd_curcanv->cv_bitmap.bm_y + item[i].y;
1530                                 y2 = y1 + item[i].h;
1531                                 if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && (item[i].type != NM_TYPE_TEXT) ) {
1532                                         if (i+ScrollOffset != choice) {
1533                                                 if(Hack_DblClick_MenuMode) dblclick_flag = 0; 
1534                                         }
1535
1536                                         choice = i + ScrollOffset;
1537
1538                                         if ( item[choice].type == NM_TYPE_SLIDER ) {
1539                                                 char slider_text[NM_MAX_TEXT_LEN+1], *p, *s1;
1540                                                 int slider_width, height, aw, sleft_width, sright_width, smiddle_width;
1541                                                 
1542                                                 strcpy(slider_text, item[choice].saved_text);
1543                                                 p = strchr(slider_text, '\t');
1544                                                 if (p) {
1545                                                         *p = '\0';
1546                                                         s1 = p+1;
1547                                                 }
1548                                                 if (p) {
1549                                                         gr_get_string_size(s1, &slider_width, &height, &aw);
1550                                                         gr_get_string_size(SLIDER_LEFT, &sleft_width, &height, &aw);
1551                                                         gr_get_string_size(SLIDER_RIGHT, &sright_width, &height, &aw);
1552                                                         gr_get_string_size(SLIDER_MIDDLE, &smiddle_width, &height, &aw);
1553
1554                                                         x1 = grd_curcanv->cv_bitmap.bm_x + item[choice].x + item[choice].w - slider_width;
1555                                                         x2 = x1 + slider_width + sright_width;
1556                                                         if ( (mx > x1) && (mx < (x1 + sleft_width)) && (item[choice].value != item[choice].min_value) ) {
1557                                                                 item[choice].value = item[choice].min_value;
1558                                                                 item[choice].redraw = 2;
1559                                                         } else if ( (mx < x2) && (mx > (x2 - sright_width)) && (item[choice].value != item[choice].max_value) ) {
1560                                                                 item[choice].value = item[choice].max_value;
1561                                                                 item[choice].redraw = 2;
1562                                                         } else if ( (mx > (x1 + sleft_width)) && (mx < (x2 - sright_width)) ) {
1563                                                                 int num_values, value_width, new_value;
1564                                                                 
1565                                                                 num_values = item[choice].max_value - item[choice].min_value + 1;
1566                                                                 value_width = (slider_width - sleft_width - sright_width) / num_values;
1567                                                                 new_value = (mx - x1 - sleft_width) / value_width;
1568                                                                 if ( item[choice].value != new_value ) {
1569                                                                         item[choice].value = new_value;
1570                                                                         item[choice].redraw = 2;
1571                                                                 }
1572                                                         }
1573                                                         *p = '\t';
1574                                                 }
1575                                         }
1576                                         if (choice == old_choice)
1577                                                 break;
1578                                         if ((item[choice].type==NM_TYPE_INPUT) && (choice!=old_choice)) 
1579                                                 item[choice].value = -1;
1580                                         if ((old_choice>-1) && (item[old_choice].type==NM_TYPE_INPUT_MENU) && (old_choice!=choice))     {
1581                                                 item[old_choice].group=0;
1582                                                 strcpy(item[old_choice].text, item[old_choice].saved_text );
1583                                                 item[old_choice].value = -1;
1584                                         }
1585                                         if (old_choice>-1) 
1586                                                 item[old_choice].redraw = 1;
1587                                         item[choice].redraw=1;
1588                                         break;
1589                                 }
1590                         }
1591                 }
1592                 
1593                 if ( !done && !mouse_state && omouse_state && !all_text && (choice != -1) && (item[choice].type == NM_TYPE_MENU) ) {
1594                         mouse_get_pos(&mx, &my);
1595                         x1 = grd_curcanv->cv_bitmap.bm_x + item[choice].x;
1596                         x2 = x1 + item[choice].w;
1597                         y1 = grd_curcanv->cv_bitmap.bm_y + item[choice].y;
1598                         y2 = y1 + item[choice].h;
1599                         if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2))) {
1600                                 if (Hack_DblClick_MenuMode) {
1601                                         if (dblclick_flag) done = 1;
1602                                         else dblclick_flag = 1;
1603                                 }
1604                                 else done = 1;
1605                         }
1606                 }
1607                 
1608                 if ( !done && !mouse_state && omouse_state && (choice>-1) && (item[choice].type==NM_TYPE_INPUT_MENU) && (item[choice].group==0))        {
1609                         item[choice].group = 1;
1610                         item[choice].redraw = 1;
1611                         if ( !strnicmp( item[choice].saved_text, TXT_EMPTY, strlen(TXT_EMPTY) ) )       {
1612                                 item[choice].text[0] = 0;
1613                                 item[choice].value = -1;
1614                         } else {        
1615                                 strip_end_whitespace(item[choice].text);
1616                         }
1617                 }
1618                 
1619                 if ( !done && !mouse_state && omouse_state && close_box ) {
1620                         mouse_get_pos(&mx, &my);
1621                         x1 = grd_curcanv->cv_bitmap.bm_x + CLOSE_X;
1622                         x2 = x1 + CLOSE_SIZE;
1623                         y1 = grd_curcanv->cv_bitmap.bm_y + CLOSE_Y;
1624                         y2 = y1 + CLOSE_SIZE;
1625                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
1626                                 choice = -1;
1627                                 done = 1;
1628                         }
1629                 }
1630
1631 //       HACK! Don't redraw loadgame preview
1632                 if (RestoringMenu) item[0].redraw = 0;
1633 #endif // NEWMENU_MOUSE
1634
1635                 if ( choice > -1 )      {
1636                         int ascii;
1637
1638                         if ( ((item[choice].type==NM_TYPE_INPUT)||((item[choice].type==NM_TYPE_INPUT_MENU)&&(item[choice].group==1)) )&& (old_choice==choice) ) {
1639                                 if ( k==KEY_LEFT || k==KEY_BACKSP || k==KEY_PAD4 )      {
1640                                         if (item[choice].value==-1) item[choice].value = strlen(item[choice].text);
1641                                         if (item[choice].value > 0)
1642                                                 item[choice].value--;
1643                                         item[choice].text[item[choice].value] = 0;
1644                                         item[choice].redraw = 1;        
1645                                 } else {
1646                                         ascii = key_to_ascii(k);
1647                                         if ((ascii < 255 ) && (item[choice].value < item[choice].text_len ))
1648                                         {
1649                                                 int allowed;
1650
1651                                                 if (item[choice].value==-1) {
1652                                                         item[choice].value = 0;
1653                                                 }
1654
1655                                                 allowed = char_allowed(ascii);
1656
1657                                                 if (!allowed && ascii==' ' && char_allowed('_')) {
1658                                                         ascii = '_';
1659                                                         allowed=1;
1660                                                 }
1661
1662                                                 if (allowed) {
1663                                                         item[choice].text[item[choice].value++] = ascii;
1664                                                         item[choice].text[item[choice].value] = 0;
1665                                                         item[choice].redraw=1;  
1666                                                 }
1667                                         }
1668                                 }
1669                         } else if ((item[choice].type!=NM_TYPE_INPUT) && (item[choice].type!=NM_TYPE_INPUT_MENU) ) {
1670                                 ascii = key_to_ascii(k);
1671                                 if (ascii < 255 ) {
1672                                         int choice1 = choice;
1673                                         ascii = toupper(ascii);
1674                                         do {
1675                                                 int i,ch;
1676                                                 choice1++;
1677                                                 if (choice1 >= nitems ) choice1=0;
1678                                                 for (i=0;(ch=item[choice1].text[i])!=0 && ch==' ';i++);
1679                                                 if ( ( (item[choice1].type==NM_TYPE_MENU) ||
1680                                                                  (item[choice1].type==NM_TYPE_CHECK) ||
1681                                                                  (item[choice1].type==NM_TYPE_RADIO) ||
1682                                                                  (item[choice1].type==NM_TYPE_NUMBER) ||
1683                                                                  (item[choice1].type==NM_TYPE_SLIDER) )
1684                                                                 && (ascii==toupper(ch)) )       {
1685                                                         k = 0;
1686                                                         choice = choice1;
1687                                                         if (old_choice>-1)
1688                                                                 item[old_choice].redraw=1;
1689                                                         item[choice].redraw=1;
1690                                                 }
1691                                         } while (choice1 != choice );
1692                                 }       
1693                         }
1694
1695                         if ( (item[choice].type==NM_TYPE_NUMBER) || (item[choice].type==NM_TYPE_SLIDER))        {
1696                                 int ov=item[choice].value;
1697                                 switch( k ) {
1698                                 case KEY_PAD4:
1699                                 case KEY_LEFT:
1700                                 case KEY_MINUS:
1701                                 case KEY_MINUS+KEY_SHIFTED:
1702                                 case KEY_PADMINUS:
1703                                         item[choice].value -= 1;
1704                                         break;
1705                                 case KEY_RIGHT:
1706                                 case KEY_PAD6:
1707                                 case KEY_EQUAL:
1708                                 case KEY_EQUAL+KEY_SHIFTED:
1709                                 case KEY_PADPLUS:
1710                                         item[choice].value++;
1711                                         break;
1712                                 case KEY_PAGEUP:
1713                                 case KEY_PAD9:
1714                                 case KEY_SPACEBAR:
1715                                         item[choice].value += 10;
1716                                         break;
1717                                 case KEY_PAGEDOWN:
1718                                 case KEY_BACKSP:
1719                                 case KEY_PAD3:
1720                                         item[choice].value -= 10;
1721                                         break;
1722                                 }
1723                                 if (ov!=item[choice].value)
1724                                         item[choice].redraw=1;
1725                         }
1726         
1727                 }
1728
1729                 gr_set_current_canvas(bg.menu_canvas);
1730
1731         // Redraw everything...
1732         for (i=ScrollOffset; i<MaxDisplayable+ScrollOffset; i++ )
1733         {
1734         if (item[i].redraw) // warning! ugly hack below                  
1735                 {
1736                 item[i].y-=((string_height+1)*ScrollOffset);
1737                         newmenu_hide_cursor();
1738                 draw_item( &bg, &item[i], (i==choice && !all_text),TinyMode );
1739                                 item[i].redraw=0;
1740 #ifdef NEWMENU_MOUSE
1741                                 if (!MenuReordering && !joydefs_calibrating)
1742                                         newmenu_show_cursor();
1743 #endif
1744             item[i].y+=((string_height+1)*ScrollOffset);
1745                 }   
1746          if (i==choice && (item[i].type==NM_TYPE_INPUT || (item[i].type==NM_TYPE_INPUT_MENU && item[i].group)))
1747                                 update_cursor( &item[i]);
1748                 }
1749         gr_update();
1750
1751       if (IsScrollBox)
1752         {
1753         //grd_curcanv->cv_font = NORMAL_FONT;
1754         
1755                 if (LastScrollCheck!=ScrollOffset)
1756          {
1757                 LastScrollCheck=ScrollOffset;
1758                 grd_curcanv->cv_font = SELECTED_FONT;
1759                                 
1760                 sy=item[ScrollOffset].y-((string_height+1)*ScrollOffset);
1761                 sx=item[ScrollOffset].x-(MenuHires?24:12);
1762                                 
1763           
1764                 if (ScrollOffset!=0)
1765                         nm_rstring( &bg, (MenuHires?20:10), sx, sy, UP_ARROW_MARKER );
1766                 else
1767                         nm_rstring( &bg, (MenuHires?20:10), sx, sy, "  " );
1768
1769                 sy=item[ScrollOffset+MaxDisplayable-1].y-((string_height+1)*ScrollOffset);
1770                 sx=item[ScrollOffset+MaxDisplayable-1].x-(MenuHires?24:12);
1771           
1772                 if (ScrollOffset+MaxDisplayable<nitems)
1773                         nm_rstring( &bg, (MenuHires?20:10), sx, sy, DOWN_ARROW_MARKER );
1774                 else
1775                 nm_rstring( &bg, (MenuHires?20:10), sx, sy, "  " );
1776
1777         }
1778
1779         }   
1780
1781                 if ( !dont_restore && gr_palette_faded_out )    {
1782                         gr_palette_fade_in( gr_palette, 32, 0 );
1783                 }
1784         }
1785
1786         newmenu_hide_cursor();
1787
1788         // Restore everything...
1789
1790         gr_set_current_canvas(bg.menu_canvas);
1791
1792         if ( filename == NULL ) {
1793                 // Save the background under the menu...
1794                 gr_bitmap(0, 0, bg.saved);      
1795                 gr_free_bitmap(bg.saved);
1796                 d_free( bg.background );
1797         } else {
1798                 if (!dont_restore)      //info passed back from subfunction
1799                         gr_bitmap(0, 0, bg.background);
1800                 gr_free_bitmap(bg.background);
1801         }
1802
1803         gr_free_sub_canvas( bg.menu_canvas );
1804
1805         gr_set_current_canvas(save_canvas);
1806         grd_curcanv->cv_font    = save_font;
1807         keyd_repeat = old_keyd_repeat;
1808
1809         game_flush_inputs();
1810
1811         if (time_stopped) 
1812      {
1813                 start_time();
1814                 #ifdef TACTILE
1815                         if (TactileStick)
1816                                 EnableForces();
1817                 #endif
1818           }
1819
1820         if ( sound_stopped )
1821                 digi_resume_digi_sounds();
1822
1823         return choice;
1824         
1825 }
1826
1827
1828 int nm_messagebox1( char *title, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int nchoices, ... )
1829 {
1830         int i;
1831         char * format;
1832         va_list args;
1833         char *s;
1834         char nm_text[MESSAGEBOX_TEXT_SIZE];
1835         newmenu_item nm_message_items[5];
1836
1837         va_start(args, nchoices );
1838
1839         Assert( nchoices <= 5 );
1840
1841         for (i=0; i<nchoices; i++ )     {
1842                 s = va_arg( args, char * );
1843                 nm_message_items[i].type = NM_TYPE_MENU; nm_message_items[i].text = s;
1844         }
1845         format = va_arg( args, char * );
1846         strcpy( nm_text, "" );
1847         vsprintf(nm_text,format,args);
1848         va_end(args);
1849
1850         Assert(strlen(nm_text) < MESSAGEBOX_TEXT_SIZE);
1851
1852         return newmenu_do( title, nm_text, nchoices, nm_message_items, subfunction );
1853 }
1854
1855 int nm_messagebox( char *title, int nchoices, ... )
1856 {
1857         int i;
1858         char * format;
1859         va_list args;
1860         char *s;
1861         char nm_text[MESSAGEBOX_TEXT_SIZE];
1862         newmenu_item nm_message_items[5];
1863
1864         va_start(args, nchoices );
1865
1866         Assert( nchoices <= 5 );
1867
1868         for (i=0; i<nchoices; i++ )     {
1869                 s = va_arg( args, char * );
1870                 nm_message_items[i].type = NM_TYPE_MENU; nm_message_items[i].text = s;
1871         }
1872         format = va_arg( args, char * );
1873         strcpy( nm_text, "" );
1874         vsprintf(nm_text,format,args);
1875         va_end(args);
1876
1877         Assert(strlen(nm_text) < MESSAGEBOX_TEXT_SIZE );
1878
1879         return newmenu_do( title, nm_text, nchoices, nm_message_items, NULL );
1880 }
1881
1882
1883
1884
1885 void newmenu_file_sort( int n, char *list )
1886 {
1887         int i, j, incr;
1888         char t[14];
1889
1890         incr = n / 2;
1891         while( incr > 0 )               {
1892                 for (i=incr; i<n; i++ )         {
1893                         j = i - incr;
1894                         while (j>=0 )                   {
1895                                 if (strncmp(&list[j*14], &list[(j+incr)*14], 12) > 0)                           {
1896                                         memcpy( t, &list[j*14], FILENAME_LEN );
1897                                         memcpy( &list[j*14], &list[(j+incr)*14], FILENAME_LEN );
1898                                         memcpy( &list[(j+incr)*14], t, FILENAME_LEN );
1899                                         j -= incr;
1900                                 }
1901                                 else
1902                                         break;
1903                         }
1904                 }
1905                 incr = incr / 2;
1906         }
1907 }
1908
1909 void delete_player_saved_games(char * name)
1910 {
1911         int i;
1912         char filename[16];
1913
1914         for (i=0;i<10; i++)     {
1915                 sprintf( filename, PLAYER_DIR "%s.sg%d", name, i );
1916                 PHYSFS_delete(filename);
1917         }
1918 }
1919
1920 #define MAX_FILES 300
1921
1922 //FIXME: should maybe put globbing ability back?
1923 int newmenu_get_filename(char *title, char *type, char *filename, int allow_abort_flag)
1924 {
1925         int i;
1926         char **find;
1927         char **f;
1928         char *ext;
1929         int NumFiles=0, key,done, citem, ocitem;
1930         char * filenames = NULL;
1931         int NumFiles_displayed = 8;
1932         int first_item = -1, ofirst_item;
1933         int old_keyd_repeat = keyd_repeat;
1934         int player_mode=0;
1935         int demo_mode=0;
1936         int demos_deleted=0;
1937         int initialized = 0;
1938         int exit_value = 0;
1939         int w_x, w_y, w_w, w_h, title_height;
1940         int box_x, box_y, box_w, box_h;
1941         bkg bg;         // background under listbox
1942 #ifdef NEWMENU_MOUSE
1943         int mx, my, x1, x2, y1, y2, mouse_state, omouse_state;
1944         int mouse2_state, omouse2_state;
1945         int dblclick_flag=0;
1946 # ifdef WINDOWS
1947         int simukey=0;
1948         int show_up_arrow=0, show_down_arrow=0;
1949 # endif
1950 #endif
1951
1952         w_x=w_y=w_w=w_h=title_height=0;
1953         box_x=box_y=box_w=box_h=0;
1954
1955         filenames = d_malloc( MAX_FILES * 14 );
1956         if (filenames==NULL) return 0;
1957
1958         citem = 0;
1959         keyd_repeat = 1;
1960
1961         if (!stricmp(type, "plr"))
1962                 player_mode = 1;
1963         else if (!stricmp(type, "dem"))
1964                 demo_mode = 1;
1965
1966 ReadFileNames:
1967         done = 0;
1968         NumFiles=0;
1969         
1970 #if !defined(APPLE_DEMO)                // no new pilots for special apple oem version
1971         if (player_mode)        {
1972                 strncpy( &filenames[NumFiles*14], TXT_CREATE_NEW, FILENAME_LEN );
1973                 NumFiles++;
1974         }
1975 #endif
1976
1977         find = PHYSFS_enumerateFiles(demo_mode?DEMO_DIR:"");
1978         for (f = find; *f != NULL; f++)
1979         {
1980                 if (player_mode)
1981                 {
1982                         ext = strrchr(*f, '.');
1983                         if (!ext || strnicmp(ext, ".plr", 4))
1984                                 continue;
1985                 }
1986                 if (NumFiles < MAX_FILES)
1987                 {
1988                         strncpy(&filenames[NumFiles*14], *f, FILENAME_LEN);
1989                         if (player_mode)
1990                         {
1991                                 char *p;
1992
1993                                 p = strchr(&filenames[NumFiles*14], '.');
1994                                 if (p)
1995                                         *p = '\0';
1996                         }
1997                         NumFiles++;
1998                 }
1999                 else
2000                         break;
2001         }
2002
2003         PHYSFS_freeList(find);
2004
2005         if ( (NumFiles < 1) && demos_deleted )  {
2006                 exit_value = 0;
2007                 goto ExitFileMenu;
2008         }
2009         if ( (NumFiles < 1) && demo_mode ) {
2010                 nm_messagebox( NULL, 1, TXT_OK, "%s %s\n%s", TXT_NO_DEMO_FILES, TXT_USE_F5, TXT_TO_CREATE_ONE);
2011                 exit_value = 0;
2012                 goto ExitFileMenu;
2013         }
2014
2015         #ifndef APPLE_DEMO
2016         if ( (NumFiles < 2) && player_mode ) {
2017                 citem = 0;
2018                 goto ExitFileMenuEarly;
2019         }
2020         #endif
2021
2022
2023         if ( NumFiles<1 )       {
2024                 #ifndef APPLE_DEMO
2025                         nm_messagebox(NULL, 1, "Ok", "%s\n '%s' %s", TXT_NO_FILES_MATCHING, type, TXT_WERE_FOUND);
2026                 #endif
2027                 exit_value = 0;
2028                 goto ExitFileMenu;
2029         }
2030
2031         if (!initialized) {     
2032 //              set_screen_mode(SCREEN_MENU);
2033                 set_popup_screen();
2034
2035                 gr_set_current_canvas(NULL);
2036
2037                 grd_curcanv->cv_font = SUBTITLE_FONT;
2038
2039                 w_w = 0;
2040                 w_h = 0;
2041
2042                 for (i=0; i<NumFiles; i++ ) {
2043                         int w, h, aw;
2044                         gr_get_string_size( &filenames[i*14], &w, &h, &aw );            
2045                         if ( w > w_w )
2046                                 w_w = w;
2047                 }
2048                 if ( title ) {
2049                         int w, h, aw;
2050                         gr_get_string_size( title, &w, &h, &aw );               
2051                         if ( w > w_w )
2052                                 w_w = w;
2053                         title_height = h + (grd_curfont->ft_h*2);               // add a little space at the bottom of the title
2054                 }
2055
2056                 box_w = w_w;
2057                 box_h = ((grd_curfont->ft_h + 2) * NumFiles_displayed);
2058
2059                 w_w += (grd_curfont->ft_w * 4);
2060                 w_h = title_height + box_h + (grd_curfont->ft_h * 2);           // more space at bottom
2061
2062                 if ( w_w > grd_curcanv->cv_w ) w_w = grd_curcanv->cv_w;
2063                 if ( w_h > grd_curcanv->cv_h ) w_h = grd_curcanv->cv_h;
2064         
2065                 w_x = (grd_curcanv->cv_w-w_w)/2;
2066                 w_y = (grd_curcanv->cv_h-w_h)/2;
2067         
2068                 if ( w_x < 0 ) w_x = 0;
2069                 if ( w_y < 0 ) w_y = 0;
2070
2071                 box_x = w_x + (grd_curfont->ft_w*2);                    // must be in sync with w_w!!!
2072                 box_y = w_y + title_height;
2073
2074 // save the screen behind the menu.
2075
2076                 bg.saved = NULL;
2077
2078                 if ( (VR_offscreen_buffer->cv_w >= w_w) && (VR_offscreen_buffer->cv_h >= w_h) ) 
2079                         bg.background = &VR_offscreen_buffer->cv_bitmap;
2080                 else
2081                         bg.background = gr_create_bitmap( w_w, w_h );
2082
2083                 Assert( bg.background != NULL );
2084
2085
2086                 gr_bm_bitblt(w_w, w_h, 0, 0, w_x, w_y, &grd_curcanv->cv_bitmap, bg.background );
2087
2088 #if 0
2089                 gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(grd_curcanv->cv_bitmap), &(VR_offscreen_buffer->cv_bitmap) );
2090 #endif
2091
2092                 nm_draw_background( w_x,w_y,w_x+w_w-1,w_y+w_h-1 );
2093                 
2094                 gr_string( 0x8000, w_y+10, title );
2095          
2096                 initialized = 1;
2097         }
2098
2099         if ( !player_mode )     {
2100                 newmenu_file_sort( NumFiles, filenames );
2101         } else {
2102                 #if defined(MACINTOSH) && defined(APPLE_DEMO)
2103                 newmenu_file_sort( NumFiles, filenames );
2104                 #else
2105                 newmenu_file_sort( NumFiles-1, &filenames[14] );                // Don't sort first one!
2106                 #endif
2107                 for ( i=0; i<NumFiles; i++ )    {
2108                         if (!stricmp(Players[Player_num].callsign, &filenames[i*14]) )  {
2109 #ifdef NEWMENU_MOUSE
2110                                 dblclick_flag = 1;
2111 #endif
2112                                 citem = i;
2113                         }
2114                 }
2115         }
2116
2117 #ifdef NEWMENU_MOUSE
2118         mouse_state = omouse_state = 0;
2119         mouse2_state = omouse2_state = 0;
2120         draw_close_box(w_x,w_y);
2121         newmenu_show_cursor();
2122 #endif
2123
2124         while(!done)    {
2125                 ocitem = citem;
2126                 ofirst_item = first_item;
2127                 gr_update();
2128
2129 #ifdef NEWMENU_MOUSE
2130                 omouse_state = mouse_state;
2131                 omouse2_state = mouse2_state;
2132                 mouse_state = mouse_button_state(0);
2133                 mouse2_state = mouse_button_state(1);
2134 #endif
2135
2136                 //see if redbook song needs to be restarted
2137                 songs_check_redbook_repeat();
2138
2139                 key = key_inkey();
2140
2141                 switch(key)     {
2142                 case KEY_COMMAND+KEY_SHIFTED+KEY_3:
2143                 case KEY_PRINT_SCREEN:
2144                         MAC(newmenu_hide_cursor());
2145                         save_screen_shot(0);
2146                         
2147                         MAC(newmenu_show_cursor());
2148                         MAC(key_flush());
2149                         break;
2150
2151                 case KEY_CTRLED+KEY_D:
2152                         #if defined(MACINTOSH) && defined(APPLE_DEMO)
2153                         break;
2154                         #endif
2155
2156                         if ( ((player_mode)&&(citem>0)) || ((demo_mode)&&(citem>=0)) )  {
2157                                 int x = 1;
2158                                 newmenu_hide_cursor();
2159                                 if (player_mode)
2160                                         x = nm_messagebox( NULL, 2, TXT_YES, TXT_NO, "%s %s?", TXT_DELETE_PILOT, &filenames[citem*14]+((player_mode && filenames[citem*14]=='$')?1:0) );
2161                                 else if (demo_mode)
2162                                         x = nm_messagebox( NULL, 2, TXT_YES, TXT_NO, "%s %s?", TXT_DELETE_DEMO, &filenames[citem*14]+((demo_mode && filenames[citem*14]=='$')?1:0) );
2163                                 newmenu_show_cursor();
2164                                 if (x==0)       {
2165                                         char * p;
2166                                         int ret;
2167                                         char name[PATH_MAX];
2168
2169                                         p = &filenames[(citem*14)+strlen(&filenames[citem*14])];
2170                                         if (player_mode)
2171                                                 *p = '.';
2172
2173                                         strcpy(name, demo_mode?DEMO_DIR:"");
2174                                         strcat(name,&filenames[citem*14]);
2175                                         
2176                                         #ifdef MACINTOSH
2177                                         {
2178                                                 int i;
2179                                                 char *p;
2180                                                 
2181                                                 if ( !strncmp(name, ".\\", 2) )
2182                                                         for (i = 0; i < strlen(name); i++)              // don't subtract 1 from strlen to get the EOS marker
2183                                                                 name[i] = name[i+1];
2184                                                 while ( (p = strchr(name, '\\')) )
2185                                                         *p = ':';
2186                                         }
2187                                         #endif
2188                                 
2189                                         ret = !PHYSFS_delete(name);
2190                                         if (player_mode)
2191                                                 *p = 0;
2192
2193                                         if ((!ret) && player_mode)      {
2194                                                 delete_player_saved_games( &filenames[citem*14] );
2195                                         }
2196
2197                                         if (ret) {
2198                                                 if (player_mode)
2199                                                         nm_messagebox( NULL, 1, TXT_OK, "%s %s %s", TXT_COULDNT, TXT_DELETE_PILOT, &filenames[citem*14]+((player_mode && filenames[citem*14]=='$')?1:0) );
2200                                                 else if (demo_mode)
2201                                                         nm_messagebox( NULL, 1, TXT_OK, "%s %s %s", TXT_COULDNT, TXT_DELETE_DEMO, &filenames[citem*14]+((demo_mode && filenames[citem*14]=='$')?1:0) );
2202                                         } else if (demo_mode)
2203                                                 demos_deleted = 1;
2204                                         first_item = -1;
2205                                         goto ReadFileNames;
2206                                 }
2207                         }
2208                         break;
2209                 case KEY_HOME:
2210                 case KEY_PAD7:
2211                         citem = 0;
2212                         break;
2213                 case KEY_END:
2214                 case KEY_PAD1:
2215                         citem = NumFiles-1;
2216                         break;
2217                 case KEY_UP:
2218                 case KEY_PAD8:
2219                         citem--;                        
2220                         break;
2221                 case KEY_DOWN:
2222                 case KEY_PAD2:
2223                         citem++;                        
2224                         break;
2225                 case KEY_PAGEDOWN:
2226                 case KEY_PAD3:
2227                         citem += NumFiles_displayed;
2228                         break;
2229                 case KEY_PAGEUP:
2230                 case KEY_PAD9:
2231                         citem -= NumFiles_displayed;
2232                         break;
2233                 case KEY_ESC:
2234                         if (allow_abort_flag) {
2235                                 citem = -1;
2236                                 done = 1;
2237                         }
2238                         break;
2239                 case KEY_ENTER:
2240                 case KEY_PADENTER:
2241                         done = 1;
2242                         break;
2243                         
2244                 case KEY_COMMAND+KEY_Q: {
2245                         if ( !(Game_mode & GM_MULTI) )
2246                                 quit_request();
2247                         newmenu_show_cursor();
2248                         key_flush();
2249                         break;
2250                 }
2251                 
2252                 default:        
2253                         {
2254
2255                                 int ascii = key_to_ascii(key);
2256                                 if ( ascii < 255 )      {
2257                                         int cc,cc1;
2258                                         cc=cc1=citem+1;
2259                                         if (cc1 < 0 )  cc1 = 0;
2260                                         if (cc1 >= NumFiles )  cc1 = 0;
2261                                         while(1) {
2262                                                 if ( cc < 0 ) cc = 0;
2263                                                 if ( cc >= NumFiles ) cc = 0;
2264                                                 if ( citem == cc ) break;
2265         
2266                                                 if ( toupper(filenames[cc*14]) == toupper(ascii) )      {
2267                                                         citem = cc;
2268                                                         break;
2269                                                 }
2270                                                 cc++;
2271                                         }
2272                                 }
2273                         }
2274                 }
2275                 if ( done ) break;
2276
2277
2278                 if (citem<0)
2279                         citem=0;
2280
2281                 if (citem>=NumFiles)
2282                         citem = NumFiles-1;
2283
2284                 if (citem< first_item)
2285                         first_item = citem;
2286
2287                 if (citem>=( first_item+NumFiles_displayed))
2288                 {
2289                         first_item = citem-NumFiles_displayed+1;
2290                 }
2291
2292 #ifdef WINDOWS
2293                 if (NumFiles>first_item+NumFiles_displayed)
2294                         show_down_arrow=1;
2295                 else 
2296                         show_down_arrow=0;
2297                 if (first_item>0)
2298                         show_up_arrow=1;
2299                 else    
2300                         show_up_arrow=0;
2301 #endif
2302                         
2303
2304                 if (NumFiles <= NumFiles_displayed )
2305                          first_item = 0;
2306
2307                 if (first_item>NumFiles-NumFiles_displayed)
2308                 {
2309                         first_item = NumFiles-NumFiles_displayed;
2310                 }
2311
2312                 if (first_item < 0 ) first_item = 0;
2313
2314 #ifdef NEWMENU_MOUSE
2315                 if (mouse_state || mouse2_state) {
2316                         int w, h, aw;
2317
2318                         mouse_get_pos(&mx, &my);
2319                         for (i=first_item; i<first_item+NumFiles_displayed; i++ )       {
2320                                 gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2321                                 x1 = box_x;
2322                                 x2 = box_x + box_w - 1;
2323                                 y1 = (i-first_item)*(grd_curfont->ft_h + 2) + box_y;
2324                                 y2 = y1+h+1;
2325                                 if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2326                                         if (i == citem && !mouse2_state) {
2327                                                 break;
2328                                         }
2329                                         citem = i;
2330                                         dblclick_flag = 0;
2331                                         break;
2332                                 }
2333                         }
2334                 }
2335                 
2336                 if (!mouse_state && omouse_state) {
2337                         int w, h, aw;
2338
2339                         gr_get_string_size(&filenames[citem*14], &w, &h, &aw  );
2340                         mouse_get_pos(&mx, &my);
2341                         x1 = box_x;
2342                         x2 = box_x + box_w - 1;
2343                         y1 = (citem-first_item)*(grd_curfont->ft_h + 2) + box_y;
2344                         y2 = y1+h+1;
2345                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2346                                 if (dblclick_flag) done = 1;
2347                                 else dblclick_flag = 1;
2348                         }
2349                 }
2350
2351                 if ( !mouse_state && omouse_state ) {
2352                         mouse_get_pos(&mx, &my);
2353                         x1 = w_x + CLOSE_X + 2;
2354                         x2 = x1 + CLOSE_SIZE - 2;
2355                         y1 = w_y + CLOSE_Y + 2;
2356                         y2 = y1 + CLOSE_SIZE - 2;
2357                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2358                                 citem = -1;
2359                                 done = 1;
2360                         }
2361                    #ifdef WINDOWS
2362                         x1 = box_x-LHX(10);
2363                         x2 = x1 + LHX(10);
2364                         y1 = box_y;
2365                         y2 = box_y+LHY(7);
2366                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_up_arrow ) 
2367                                 simukey = -1;
2368                         y1 = box_y+box_h-LHY(7);
2369                         y2 = box_y+box_h;
2370                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_down_arrow) 
2371                                 simukey = 1;
2372                    #endif
2373                 }
2374
2375 #endif
2376   
2377                 gr_setcolor( BM_XRGB(2,2,2));
2378                 //gr_rect( box_x - 1, box_y-2, box_x + box_w, box_y-2 );
2379                 gr_setcolor( BM_XRGB( 0,0,0)  );
2380
2381                 if (ofirst_item != first_item)  {
2382                         newmenu_hide_cursor();
2383                         gr_setcolor( BM_XRGB( 0,0,0)  );
2384                         for (i=first_item; i<first_item+NumFiles_displayed; i++ )       {
2385                                 int w, h, aw, y;
2386                                 y = (i-first_item)*(grd_curfont->ft_h + 2) + box_y;
2387                         
2388                                 if ( i >= NumFiles )    {
2389
2390                                         gr_setcolor( BM_XRGB(5,5,5));
2391                                         gr_rect( box_x + box_w, y-1, box_x + box_w, y + grd_curfont->ft_h + 1);
2392                                         //gr_rect( box_x, y + grd_curfont->ft_h + 2, box_x + box_w, y + grd_curfont->ft_h + 2);
2393                                         
2394                                         gr_setcolor( BM_XRGB(2,2,2));
2395                                         gr_rect( box_x - 1, y - 1, box_x - 1, y + grd_curfont->ft_h + 2 );
2396                                         
2397                                         gr_setcolor( BM_XRGB(0,0,0));
2398                                         gr_rect( box_x, y - 1, box_x + box_w - 1, y + grd_curfont->ft_h + 1);
2399                                         
2400                                 } else {
2401                                         if ( i == citem )       
2402                                                 grd_curcanv->cv_font = SELECTED_FONT;
2403                                         else    
2404                                                 grd_curcanv->cv_font = NORMAL_FONT;
2405                                         gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2406
2407                                         gr_setcolor( BM_XRGB(5,5,5));
2408                                   //    gr_rect( box_x, y + h + 2, box_x + box_w, y + h + 2);
2409                                         gr_rect( box_x + box_w, y - 1, box_x + box_w, y + h + 1);
2410                                         
2411                                         gr_setcolor( BM_XRGB(2,2,2));
2412                                         gr_rect( box_x - 1, y - 1, box_x - 1, y + h + 1);
2413                                         gr_setcolor( BM_XRGB(0,0,0));
2414                                                         
2415                                         gr_rect( box_x, y-1, box_x + box_w - 1, y + h + 1 );
2416                                         gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0)  );
2417                                 }
2418                         }        
2419                         newmenu_show_cursor();
2420                 } else if ( citem != ocitem )   {
2421                         int w, h, aw, y;
2422
2423                         newmenu_hide_cursor();
2424                         i = ocitem;
2425                         if ( (i>=0) && (i<NumFiles) )   {
2426                                 y = (i-first_item)*(grd_curfont->ft_h+2)+box_y;
2427                                 if ( i == citem )       
2428                                         grd_curcanv->cv_font = SELECTED_FONT;
2429                                 else    
2430                                         grd_curcanv->cv_font = NORMAL_FONT;
2431                                 gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2432                                 gr_rect( box_x, y-1, box_x + box_w - 1, y + h + 1 );
2433                                 gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0)  );
2434                         }
2435                         i = citem;
2436                         if ( (i>=0) && (i<NumFiles) )   {
2437                                 y = (i-first_item)*(grd_curfont->ft_h+2)+box_y;
2438                                 if ( i == citem )       
2439                                         grd_curcanv->cv_font = SELECTED_FONT;
2440                                 else    
2441                                         grd_curcanv->cv_font = NORMAL_FONT;
2442                                 gr_get_string_size(&filenames[i*14], &w, &h, &aw  );
2443                                 gr_rect( box_x, y-1, box_x + box_x - 1, y + h + 1 );
2444                                 gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0)  );
2445                         }
2446                         newmenu_show_cursor();
2447                 }
2448
2449         #ifdef WINDOWS   
2450                         grd_curcanv->cv_font = NORMAL_FONT;
2451                         if (show_up_arrow)
2452                                 gr_string( box_x-LHX(10), box_y ,UP_ARROW_MARKER );
2453                         else
2454                         {
2455                                 No_darkening=1;
2456                                 nm_draw_background (box_x-LHX(10),box_y,box_x-2,box_y+LHY(7));
2457                                 No_darkening=0;
2458                         }
2459
2460                         if (show_down_arrow)
2461                         gr_string( box_x-LHX(10), box_y+box_h-LHY(7) ,DOWN_ARROW_MARKER );
2462                         else
2463                         {
2464                                 No_darkening=1;
2465                                 nm_draw_background (box_x-LHX(10),box_y+box_h-LHY(7),box_x-2,box_y+box_h);
2466                                 No_darkening=0;
2467                         }
2468
2469         #endif
2470         }
2471
2472 ExitFileMenuEarly:
2473         MAC(newmenu_hide_cursor());
2474         if ( citem > -1 )       {
2475                 strncpy( filename, (&filenames[citem*14])+((player_mode && filenames[citem*14]=='$')?1:0), FILENAME_LEN );
2476                 exit_value = 1;
2477         } else {
2478                 exit_value = 0;
2479         }                                                                                        
2480
2481 ExitFileMenu:
2482         keyd_repeat = old_keyd_repeat;
2483
2484         if ( initialized )      {
2485                 if (Newdemo_state != ND_STATE_PLAYBACK) //horrible hack to prevent restore when screen has been cleared
2486                         gr_bm_bitblt(w_w, w_h, w_x, w_y, 0, 0, bg.background, &grd_curcanv->cv_bitmap );
2487                 if ( bg.background != &VR_offscreen_buffer->cv_bitmap )
2488                         gr_free_bitmap(bg.background);
2489 #if 0
2490                 gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(VR_offscreen_buffer->cv_bitmap), &(grd_curcanv->cv_bitmap) )
2491 #endif
2492         }
2493
2494         if ( filenames )
2495                 d_free(filenames);
2496
2497         return exit_value;
2498
2499 }
2500
2501
2502 // Example listbox callback function...
2503 // int lb_callback( int * citem, int *nitems, char * items[], int *keypress )
2504 // {
2505 //      int i;
2506 // 
2507 //      if ( *keypress = KEY_CTRLED+KEY_D )     {
2508 //              if ( *nitems > 1 )      {
2509 //                      PHYSFS_delete(items[*citem]);     // Delete the file
2510 //                      for (i=*citem; i<*nitems-1; i++ )       {
2511 //                              items[i] = items[i+1];
2512 //                      }
2513 //                      *nitems = *nitems - 1;
2514 //                      d_free( items[*nitems] );
2515 //                      items[*nitems] = NULL;
2516 //                      return 1;       // redraw;
2517 //              }
2518 //                      *keypress = 0;
2519 //      }                       
2520 //      return 0;
2521 // }
2522
2523 #define LB_ITEMS_ON_SCREEN 8
2524
2525 int newmenu_listbox( char * title, int nitems, char * items[], int allow_abort_flag, int (*listbox_callback)( int * citem, int *nitems, char * items[], int *keypress ) )
2526 {
2527         return newmenu_listbox1( title, nitems, items, allow_abort_flag, 0, listbox_callback );
2528 }
2529
2530 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 ) )
2531 {
2532         int i;
2533         int done, ocitem,citem, ofirst_item, first_item, key, redraw;
2534         int old_keyd_repeat = keyd_repeat;
2535         int width, height, wx, wy, title_height, border_size;
2536         int total_width,total_height;
2537         bkg bg;
2538 #ifdef NEWMENU_MOUSE
2539         int mx, my, x1, x2, y1, y2, mouse_state, omouse_state;  //, dblclick_flag;
2540         int close_x,close_y;
2541 # ifdef WINDOWS
2542    int simukey=0,show_up_arrow=0,show_down_arrow=0;
2543 # endif
2544 #endif
2545
2546         keyd_repeat = 1;
2547
2548 //      set_screen_mode(SCREEN_MENU);
2549         set_popup_screen();
2550
2551         gr_set_current_canvas(NULL);
2552
2553         grd_curcanv->cv_font = SUBTITLE_FONT;
2554
2555         width = 0;
2556         for (i=0; i<nitems; i++ )       {
2557                 int w, h, aw;
2558                 gr_get_string_size( items[i], &w, &h, &aw );            
2559                 if ( w > width )
2560                         width = w;
2561         }
2562         height = (grd_curfont->ft_h + 2) * LB_ITEMS_ON_SCREEN;
2563
2564         {
2565                 int w, h, aw;
2566                 gr_get_string_size( title, &w, &h, &aw );               
2567                 if ( w > width )
2568                         width = w;
2569                 title_height = h + 5;
2570         }
2571
2572         border_size = grd_curfont->ft_w;
2573    WIN (border_size=grd_curfont->ft_w*2);
2574                 
2575         width += (grd_curfont->ft_w);
2576         if ( width > grd_curcanv->cv_w - (grd_curfont->ft_w * 3) )
2577                 width = grd_curcanv->cv_w - (grd_curfont->ft_w * 3);
2578
2579         wx = (grd_curcanv->cv_bitmap.bm_w-width)/2;
2580         wy = (grd_curcanv->cv_bitmap.bm_h-(height+title_height))/2 + title_height;
2581         if ( wy < title_height )
2582                 wy = title_height;
2583
2584         total_width = width+2*border_size;
2585         total_height = height+2*border_size+title_height;
2586
2587         bg.saved = NULL;
2588
2589         if ( (VR_offscreen_buffer->cv_w >= total_width) && (VR_offscreen_buffer->cv_h >= total_height) )
2590                 bg.background = &VR_offscreen_buffer->cv_bitmap;
2591         else
2592                 //bg.background = gr_create_bitmap( width, (height + title_height) );
2593                 bg.background = gr_create_bitmap(total_width,total_height);
2594         Assert( bg.background != NULL );
2595                 
2596         //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 );
2597         gr_bm_bitblt(total_width,total_height, 0, 0, wx-border_size, wy-title_height-border_size, &grd_curcanv->cv_bitmap, bg.background );
2598
2599 #if 0
2600         gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(grd_curcanv->cv_bitmap), &(VR_offscreen_buffer->cv_bitmap) );
2601 #endif
2602
2603         nm_draw_background( wx-border_size,wy-title_height-border_size,wx+width+border_size-1,wy+height+border_size-1 );
2604
2605         gr_string( 0x8000, wy - title_height, title );
2606
2607         done = 0;
2608         citem = default_item;
2609         if ( citem < 0 ) citem = 0;
2610         if ( citem >= nitems ) citem = 0;
2611
2612         first_item = -1;
2613
2614 #ifdef NEWMENU_MOUSE
2615         mouse_state = omouse_state = 0; //dblclick_flag = 0;
2616         close_x = wx-border_size;
2617         close_y = wy-title_height-border_size;
2618         draw_close_box(close_x,close_y);
2619         newmenu_show_cursor();
2620 #endif
2621
2622         while(!done)    {
2623                 ocitem = citem;
2624                 ofirst_item = first_item;
2625 #ifdef NEWMENU_MOUSE
2626                 omouse_state = mouse_state;
2627                 mouse_state = mouse_button_state(0);
2628 #endif
2629                 //see if redbook song needs to be restarted
2630                 songs_check_redbook_repeat();
2631
2632                 key = key_inkey();
2633
2634                 if ( listbox_callback )
2635                         redraw = (*listbox_callback)(&citem, &nitems, items, &key );
2636                 else
2637                         redraw = 0;
2638
2639                 if ( key<-1 ) {
2640                         citem = key;
2641                         key = -1;
2642                         done = 1;
2643                 }
2644
2645
2646         #ifdef WINDOWS
2647                 if (simukey==-1)
2648                         key=KEY_UP;
2649                 else if (simukey==1)
2650                    key=KEY_DOWN;
2651                 simukey=0;
2652         #endif
2653                 
2654                 switch(key)     {
2655                 case KEY_COMMAND+KEY_SHIFTED+KEY_3:
2656                 case KEY_PRINT_SCREEN:          
2657                         MAC(newmenu_hide_cursor());
2658                         save_screen_shot(0); 
2659                         
2660                         MAC(newmenu_show_cursor());
2661                         MAC(key_flush());
2662                         break;
2663                 case KEY_HOME:
2664                 case KEY_PAD7:
2665                         citem = 0;
2666                         break;
2667                 case KEY_END:
2668                 case KEY_PAD1:
2669                         citem = nitems-1;
2670                         break;
2671                 case KEY_UP:
2672                 case KEY_PAD8:
2673                         citem--;                        
2674                         break;
2675                 case KEY_DOWN:
2676                 case KEY_PAD2:
2677                         citem++;                        
2678                         break;
2679                 case KEY_PAGEDOWN:
2680                 case KEY_PAD3:
2681                         citem += LB_ITEMS_ON_SCREEN;
2682                         break;
2683                 case KEY_PAGEUP:
2684                 case KEY_PAD9:
2685                         citem -= LB_ITEMS_ON_SCREEN;
2686                         break;
2687                 case KEY_ESC:
2688                         if (allow_abort_flag) {
2689                                 citem = -1;
2690                                 done = 1;
2691                         }
2692                         break;
2693                 case KEY_ENTER:
2694                 case KEY_PADENTER:
2695                         done = 1;
2696                         break;
2697
2698                 case KEY_COMMAND+KEY_Q: {
2699                         if ( !(Game_mode & GM_MULTI) )
2700                                 quit_request();
2701                         newmenu_show_cursor();
2702                         key_flush();
2703                         break;
2704                 }
2705
2706                 default:        
2707                         if ( key > 0 )  {
2708                                 int ascii = key_to_ascii(key);
2709                                 if ( ascii < 255 )      {
2710                                         int cc,cc1;
2711                                         cc=cc1=citem+1;
2712                                         if (cc1 < 0 )  cc1 = 0;
2713                                         if (cc1 >= nitems )  cc1 = 0;
2714                                         while(1) {
2715                                                 if ( cc < 0 ) cc = 0;
2716                                                 if ( cc >= nitems ) cc = 0;
2717                                                 if ( citem == cc ) break;
2718         
2719                                                 if ( toupper( items[cc][0] ) == toupper(ascii) )        {
2720                                                         citem = cc;
2721                                                         break;
2722                                                 }
2723                                                 cc++;
2724                                         }
2725                                 }
2726                         }
2727                 }
2728                 if ( done ) break;
2729
2730                 if (citem<0)
2731                         citem=0;
2732
2733                 if (citem>=nitems)
2734                         citem = nitems-1;
2735
2736                 if (citem< first_item)
2737                         first_item = citem;
2738
2739                 if (citem>=( first_item+LB_ITEMS_ON_SCREEN))
2740                         first_item = citem-LB_ITEMS_ON_SCREEN+1;
2741
2742                 if (nitems <= LB_ITEMS_ON_SCREEN )
2743                          first_item = 0;
2744
2745                 if (first_item>nitems-LB_ITEMS_ON_SCREEN)
2746                         first_item = nitems-LB_ITEMS_ON_SCREEN;
2747                 if (first_item < 0 ) first_item = 0;
2748
2749 #ifdef WINDOWS
2750                 if (nitems>first_item+LB_ITEMS_ON_SCREEN)
2751                         show_down_arrow=1;
2752                 else 
2753                         show_down_arrow=0;
2754                 if (first_item>0)
2755                         show_up_arrow=1;
2756                 else    
2757                         show_up_arrow=0;
2758 #endif
2759
2760
2761 #ifdef NEWMENU_MOUSE
2762                 if (mouse_state) {
2763                         int w, h, aw;
2764
2765                         mouse_get_pos(&mx, &my);
2766                         for (i=first_item; i<first_item+LB_ITEMS_ON_SCREEN; i++ )       {
2767                                 if (i > nitems)
2768                                         break;
2769                                 gr_get_string_size(items[i], &w, &h, &aw  );
2770                                 x1 = wx;
2771                                 x2 = wx + width;
2772                                 y1 = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2773                                 y2 = y1+h+1;
2774                                 if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2775                                         //if (i == citem) {
2776                                         //      break;
2777                                         //}
2778                                         //dblclick_flag= 0;
2779                                         citem = i;
2780                                         done = 1;
2781                                         break;
2782                                 }
2783                         }
2784                 }
2785
2786                 //no double-click stuff for listbox
2787                 //@@if (!mouse_state && omouse_state) {
2788                 //@@    int w, h, aw;
2789                 //@@
2790                 //@@    gr_get_string_size(items[citem], &w, &h, &aw  );
2791                 //@@    mouse_get_pos(&mx, &my);
2792                 //@@    x1 = wx;
2793                 //@@    x2 = wx + width;
2794                 //@@    y1 = (citem-first_item)*(grd_curfont->ft_h+2)+wy;
2795                 //@@    y2 = y1+h+1;
2796                 //@@    if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2797                 //@@            if (dblclick_flag) done = 1;
2798                 //@@    }
2799                 //@@}
2800
2801                 //check for close box clicked
2802                 if ( !mouse_state && omouse_state ) {
2803                         mouse_get_pos(&mx, &my);
2804                         x1 = close_x + CLOSE_X + 2;
2805                         x2 = x1 + CLOSE_SIZE - 2;
2806                         y1 = close_y + CLOSE_Y + 2;
2807                         y2 = y1 + CLOSE_SIZE - 2;
2808                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) {
2809                                 citem = -1;
2810                                 done = 1;
2811                         }
2812
2813                    #ifdef WINDOWS
2814                         x1 = wx-LHX(10);
2815                         x2 = x1 + LHX(10);
2816                         y1 = wy;
2817                         y2 = wy+LHY(7);
2818                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_up_arrow) 
2819                                 simukey = -1;
2820                         y1 = total_height-LHY(7);
2821                         y2 = total_height;
2822                         if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_down_arrow ) 
2823                                 simukey = 1;
2824                    #endif
2825
2826                         
2827                 }
2828 #endif
2829
2830                 if ( (ofirst_item != first_item) || redraw)     {
2831                         newmenu_hide_cursor();
2832
2833                         gr_setcolor( BM_XRGB( 0,0,0)  );
2834                         for (i=first_item; i<first_item+LB_ITEMS_ON_SCREEN; i++ )       {
2835                                 int w, h, aw, y;
2836                                 y = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2837                                 if ( i >= nitems )      {
2838                                         gr_setcolor( BM_XRGB(0,0,0));
2839                                         gr_rect( wx, y-1, wx+width-1, y+grd_curfont->ft_h + 1 );
2840                                 } else {
2841                                         if ( i == citem )       
2842                                                 grd_curcanv->cv_font = SELECTED_FONT;
2843                                         else    
2844                                                 grd_curcanv->cv_font = NORMAL_FONT;
2845                                         gr_get_string_size(items[i], &w, &h, &aw  );
2846                                         gr_rect( wx, y-1, wx+width-1, y+h+1 );
2847                                         gr_string( wx+5, y, items[i]  );
2848                                 }
2849                         }               
2850
2851                                 
2852                         // If Win95 port, draw up/down arrows on left side of menu
2853                         #ifdef WINDOWS   
2854                                 grd_curcanv->cv_font = NORMAL_FONT;
2855                         if (show_up_arrow)
2856                                 gr_string( wx-LHX(10), wy ,UP_ARROW_MARKER );
2857                         else
2858                         {
2859                                 No_darkening=1;
2860                                 nm_draw_background (wx-LHX(10),wy,wx-2,wy+LHY(7));
2861                                 No_darkening=0;
2862                         }
2863
2864                         if (show_down_arrow)
2865                         gr_string( wx-LHX(10), wy+total_height-LHY(7) ,DOWN_ARROW_MARKER );
2866                         else
2867                         {
2868                                 No_darkening=1;
2869                                 nm_draw_background (wx-LHX(10),wy+total_height-LHY(7),wx-2,wy+total_height);
2870                                 No_darkening=0;
2871                         }
2872
2873                         #endif
2874
2875
2876                         newmenu_show_cursor();
2877                         gr_update();
2878                 } else if ( citem != ocitem )   {
2879                         int w, h, aw, y;
2880
2881                         newmenu_hide_cursor();
2882
2883                         i = ocitem;
2884                         if ( (i>=0) && (i<nitems) )     {
2885                                 y = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2886                                 if ( i == citem )       
2887                                         grd_curcanv->cv_font = SELECTED_FONT;
2888                                 else    
2889                                         grd_curcanv->cv_font = NORMAL_FONT;
2890                                 gr_get_string_size(items[i], &w, &h, &aw  );
2891                                 gr_rect( wx, y-1, wx+width-1, y+h+1 );
2892                                 gr_string( wx+5, y, items[i]  );
2893
2894                         }
2895                         i = citem;
2896                         if ( (i>=0) && (i<nitems) )     {
2897                                 y = (i-first_item)*(grd_curfont->ft_h+2)+wy;
2898                                 if ( i == citem )       
2899                                         grd_curcanv->cv_font = SELECTED_FONT;
2900                                 else    
2901                                         grd_curcanv->cv_font = NORMAL_FONT;
2902                                 gr_get_string_size( items[i], &w, &h, &aw  );
2903                                 gr_rect( wx, y-1, wx+width-1, y+h );
2904                                 gr_string( wx+5, y, items[i]  );
2905                         }
2906
2907                         newmenu_show_cursor();
2908                         gr_update();
2909                 }
2910         }
2911         newmenu_hide_cursor();
2912
2913         keyd_repeat = old_keyd_repeat;
2914
2915         gr_bm_bitblt(total_width,total_height, wx-border_size, wy-title_height-border_size, 0, 0, bg.background, &grd_curcanv->cv_bitmap );
2916
2917         if ( bg.background != &VR_offscreen_buffer->cv_bitmap )
2918                 gr_free_bitmap(bg.background);
2919
2920 #if 0
2921         gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(VR_offscreen_buffer->cv_bitmap), &(grd_curcanv->cv_bitmap) );
2922 #endif
2923
2924         return citem;
2925 }
2926
2927 #if 0
2928 int newmenu_filelist( char * title, char * filespec, char * filename )
2929 {
2930         int i, NumFiles;
2931         char * Filenames[MAX_FILES];
2932         char FilenameText[MAX_FILES][14];
2933         FILEFINDSTRUCT find;
2934
2935         NumFiles = 0;
2936         if( !FileFindFirst( filespec, &find ) ) {
2937                 do      {
2938                         if (NumFiles<MAX_FILES) {
2939                                 strncpy( FilenameText[NumFiles], find.name, FILENAME_LEN);
2940                                 Filenames[NumFiles] = FilenameText[NumFiles];
2941                                 NumFiles++;
2942                         } else {
2943                                 break;
2944                         }
2945                 } while( !FileFindNext( &find ) );
2946                 FileFindClose();
2947         }
2948
2949         i = newmenu_listbox( title, NumFiles, Filenames, 1, NULL );
2950         if ( i > -1 )   {
2951                 strcpy( filename, Filenames[i] );
2952                 return 1;
2953         } 
2954         return 0;
2955 }
2956 #endif
2957
2958 //added on 10/14/98 by Victor Rachels to attempt a fixedwidth font messagebox
2959 int nm_messagebox_fixedfont( char *title, int nchoices, ... )
2960 {
2961         int i;
2962         char * format;
2963         va_list args;
2964         char *s;
2965         char nm_text[MESSAGEBOX_TEXT_SIZE];
2966         newmenu_item nm_message_items[5];
2967
2968         va_start(args, nchoices );
2969
2970         Assert( nchoices <= 5 );
2971
2972         for (i=0; i<nchoices; i++ )     {
2973                 s = va_arg( args, char * );
2974                 nm_message_items[i].type = NM_TYPE_MENU; nm_message_items[i].text = s;
2975         }
2976         format = va_arg( args, char * );
2977         //sprintf(        nm_text, "" ); // adb: ?
2978         vsprintf(nm_text,format,args);
2979         va_end(args);
2980
2981         Assert(strlen(nm_text) < MESSAGEBOX_TEXT_SIZE );
2982
2983         return newmenu_do_fixedfont( title, nm_text, nchoices, nm_message_items, NULL, 0, NULL, -1, -1 );
2984 }
2985 //end this section addition - Victor Rachels
2986
2987 #ifdef NETWORK
2988 extern netgame_info Active_games[];
2989 extern int NumActiveNetgames;
2990
2991 void show_extra_netgame_info(int choice)
2992  {
2993         newmenu_item m[5];
2994    char mtext[5][50];
2995         int i,num=0;
2996
2997         if (choice>=NumActiveNetgames)
2998                 return;
2999         
3000    for (i=0;i<5;i++)
3001         {
3002          m[i].text=(char *)&mtext[i];
3003     m[i].type=NM_TYPE_TEXT;             
3004         }
3005
3006    sprintf (mtext[num],"Game: %s",Active_games[choice].game_name); num++;
3007    sprintf (mtext[num],"Mission: %s",Active_games[choice].mission_title); num++;
3008         sprintf (mtext[num],"Current Level: %d",Active_games[choice].levelnum); num++;
3009         sprintf (mtext[num],"Difficulty: %s",MENU_DIFFICULTY_TEXT(Active_games[choice].difficulty)); num++;
3010
3011         already_showing_info=1; 
3012         newmenu_dotiny2( NULL, "Netgame Information", num, m, NULL);
3013         already_showing_info=0; 
3014  }
3015
3016 #endif // NETWORK
3017
3018 /* Spiffy word wrap string formatting function */
3019
3020 void nm_wrap_text(char *dbuf, char *sbuf, int line_length)
3021 {
3022         int col;
3023         char *wordptr;
3024         char *tbuf;
3025
3026         tbuf = (char *)d_malloc(strlen(sbuf)+1);
3027         strcpy(tbuf, sbuf);
3028
3029         wordptr = strtok(tbuf, " ");
3030         if (!wordptr) return;
3031         col = 0;
3032         dbuf[0] = 0;
3033
3034         while (wordptr)
3035         {
3036                 col = col+strlen(wordptr)+1;
3037                 if (col >=line_length) {
3038                         col = 0;
3039                         sprintf(dbuf, "%s\n%s ", dbuf, wordptr);
3040                 }
3041                 else {
3042                         sprintf(dbuf, "%s%s ", dbuf, wordptr);
3043                 }
3044                 wordptr = strtok(NULL, " ");
3045         }
3046
3047         d_free(tbuf);
3048 }