/* THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE. COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. */ #ifdef HAVE_CONFIG_H #include #endif #ifdef RCS static char rcsid[] = "$Id: newmenu.c,v 1.4 2001-10-25 02:15:57 bradleyb Exp $"; #endif #ifdef WINDOWS #include "desw.h" #endif #include #include #include #include #include #include #include "pa_enabl.h" //$$POLY_ACC #include "error.h" #include "pstypes.h" #include "gr.h" #include "mono.h" #include "songs.h" #include "key.h" #include "palette.h" #include "game.h" #include "text.h" #include "findfile.h" #include "menu.h" #include "newmenu.h" #include "gamefont.h" #include "gamepal.h" #ifdef NETWORK #include "network.h" #endif #include "iff.h" #include "pcx.h" #include "u_mem.h" #include "mouse.h" #include "joy.h" #include "digi.h" #include "multi.h" #include "endlevel.h" #include "screens.h" #include "config.h" #include "player.h" #include "newdemo.h" #include "kconfig.h" #include "strutil.h" #ifdef MACINTOSH #include #endif #if defined (TACTILE) #include "tactile.h" #endif #if defined(POLY_ACC) #include "poly_acc.h" #endif #define MAXDISPLAYABLEITEMS 15 #define LHX(x) ((x)*(MenuHires?2:1)) #define LHY(y) ((y)*(MenuHires?2.4:1)) #define TITLE_FONT HUGE_FONT #define NORMAL_FONT MEDIUM1_FONT //normal, non-highlighted item #define SELECTED_FONT MEDIUM2_FONT //highlighted item #define SUBTITLE_FONT MEDIUM3_FONT #define NORMAL_CHECK_BOX "" #define CHECKED_CHECK_BOX "" #define NORMAL_RADIO_BOX "" #define CHECKED_RADIO_BOX "" #define CURSOR_STRING "_" #define SLIDER_LEFT "" // 131 #define SLIDER_RIGHT "" // 132 #define SLIDER_MIDDLE "" // 133 #define SLIDER_MARKER "" // 134 #define UP_ARROW_MARKER "" // 135 #define DOWN_ARROW_MARKER "" // 136 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 ); void show_extra_netgame_info(int choice); int Newmenu_first_time = 1; //--unused-- int Newmenu_fade_in = 1; typedef struct bkg { WINDOS (dd_grs_canvas *menu_canvas, grs_canvas * menu_canvas); grs_bitmap * saved; // The background under the menu. grs_bitmap * background; } bkg; grs_bitmap nm_background,nm_background_save; #define MESSAGEBOX_TEXT_SIZE 300 // How many characters in messagebox #define MAX_TEXT_WIDTH 200 // How many pixels wide a input box can be extern void gr_bm_bitblt(int w, int h, int dx, int dy, int sx, int sy, grs_bitmap * src, grs_bitmap * dest); ubyte MenuReordering=0; ubyte SurfingNet=0; char Pauseable_menu=0; char already_showing_info=0; void newmenu_close() { if ( nm_background.bm_data ) d_free(nm_background.bm_data); if ( nm_background_save.bm_data ) d_free(nm_background_save.bm_data); Newmenu_first_time = 1; } ubyte background_palette[768]; //should be called whenever the palette changes void nm_remap_background() { if (!Newmenu_first_time) { if (!nm_background.bm_data) nm_background.bm_data = d_malloc(nm_background.bm_w * nm_background.bm_h); memcpy(nm_background.bm_data,nm_background_save.bm_data,nm_background.bm_w * nm_background.bm_h); gr_remap_bitmap_good( &nm_background, background_palette, -1, -1 ); } } #include extern char last_palette_loaded[]; void nm_draw_background1(char * filename) { int pcx_error; grs_bitmap *bmp; ubyte pal[256*3]; //@@//I think this only gets called to fill the whole screen //@@Assert(grd_curcanv->cv_bitmap.bm_w == 320); //@@Assert(grd_curcanv->cv_bitmap.bm_h == 200); bmp = gr_create_bitmap(grd_curcanv->cv_bitmap.bm_w,grd_curcanv->cv_bitmap.bm_h); pcx_error = pcx_read_bitmap(filename,bmp,bmp->bm_type,pal); Assert(pcx_error == PCX_ERROR_NONE); //@@gr_remap_bitmap_good( bmp, pal, -1, -1 ); { //remap stuff. this code is kindof a hack //now, before we bring up the menu, we need to //do some stuff to make sure the palette is ok. First, we need to //get our current palette into the 2d's array, so the remapping will //work. Second, we need to remap the fonts. Third, we need to fill //in part of the fade tables so the darkening of the menu edges works gr_copy_palette(gr_palette, pal, sizeof(gr_palette)); remap_fonts_and_menus(1); } WIN(DDGRLOCK(dd_grd_curcanv)); #if defined(POLY_ACC) pa_save_clut(); pa_update_clut(gr_palette, 0, 256, 0); #endif gr_bitmap(0,0,bmp); #if defined(POLY_ACC) pa_restore_clut(); #endif WIN(DDGRUNLOCK(dd_grd_curcanv)); gr_free_bitmap(bmp); strcpy(last_palette_loaded,""); //force palette load next time } #ifdef RELEASE #define MENU_BACKGROUND_BITMAP (MenuHires?"\x01scoresb.pcx":"\x01scores.pcx") //read only from hog file #else #define MENU_BACKGROUND_BITMAP (MenuHires?"scoresb.pcx":"scores.pcx") #endif int Background_hires; int No_darkening=0; void nm_draw_background(int x1, int y1, int x2, int y2 ) { int w,h; if (Newmenu_first_time || MenuHires!=Background_hires) { int pcx_error; if (Newmenu_first_time) { atexit( newmenu_close ); Newmenu_first_time = 0; nm_background_save.bm_data=NULL; } else { if (nm_background_save.bm_data) d_free(nm_background_save.bm_data); if (nm_background.bm_data) d_free(nm_background.bm_data); } pcx_error = pcx_read_bitmap(MENU_BACKGROUND_BITMAP,&nm_background_save,BM_LINEAR,background_palette); Assert(pcx_error == PCX_ERROR_NONE); nm_background = nm_background_save; nm_background.bm_data=NULL; nm_remap_background(); Background_hires = MenuHires; } if ( x1 < 0 ) x1 = 0; if ( y1 < 0 ) y1 = 0; w = x2-x1+1; h = y2-y1+1; if ( w > nm_background.bm_w ) w = nm_background.bm_w; if ( h > nm_background.bm_h ) h = nm_background.bm_h; x2 = x1 + w - 1; y2 = y1 + h - 1; WIN(DDGRLOCK(dd_grd_curcanv)); if (No_darkening) gr_bm_bitblt(w, h, x1, y1, LHX(10), LHY(10), &nm_background, &(grd_curcanv->cv_bitmap) ); else gr_bm_bitblt(w, h, x1, y1, 0, 0, &nm_background, &(grd_curcanv->cv_bitmap) ); if (!No_darkening) { Gr_scanline_darkening_level = 2*7; gr_setcolor( BM_XRGB(0,0,0) ); gr_urect( x2-5, y1+5, x2-5, y2-5 ); gr_urect( x2-4, y1+4, x2-4, y2-5 ); gr_urect( x2-3, y1+3, x2-3, y2-5 ); gr_urect( x2-2, y1+2, x2-2, y2-5 ); gr_urect( x2-1, y1+1, x2-1, y2-5 ); gr_urect( x2+0, y1+0, x2-0, y2-5 ); gr_urect( x1+5, y2-5, x2, y2-5 ); gr_urect( x1+4, y2-4, x2, y2-4 ); gr_urect( x1+3, y2-3, x2, y2-3 ); gr_urect( x1+2, y2-2, x2, y2-2 ); gr_urect( x1+1, y2-1, x2, y2-1 ); gr_urect( x1+0, y2, x2, y2-0 ); } WIN(DDGRUNLOCK(dd_grd_curcanv)); Gr_scanline_darkening_level = GR_FADE_LEVELS; } void nm_restore_background( int x, int y, int w, int h ) { int x1, x2, y1, y2; x1 = x; x2 = x+w-1; y1 = y; y2 = y+h-1; if ( x1 < 0 ) x1 = 0; if ( y1 < 0 ) y1 = 0; if ( x2 >= nm_background.bm_w ) x2=nm_background.bm_w-1; if ( y2 >= nm_background.bm_h ) y2=nm_background.bm_h-1; w = x2 - x1 + 1; h = y2 - y1 + 1; WIN(DDGRLOCK(dd_grd_curcanv)); gr_bm_bitblt(w, h, x1, y1, x1, y1, &nm_background, &(grd_curcanv->cv_bitmap) ); WIN(DDGRUNLOCK(dd_grd_curcanv)); } // Draw a left justfied string void nm_string( bkg * b, int w1,int x, int y, char * s) { int w,h,aw,tx=0,t=0,i; char *p,*s1,measure[2]; int XTabs[]={15,87,124,162,228,253}; p=s1=NULL; for (i=0;i<6;i++) { XTabs[i]=(LHX(XTabs[i])); XTabs[i]+=x; } measure[1]=0; if (!SurfingNet) { p = strchr( s, '\t' ); if (p && (w1>0) ) { *p = '\0'; s1 = p+1; } } gr_get_string_size(s, &w, &h, &aw ); if (w1 > 0) w = w1; // CHANGED gr_bm_bitblt(b->background->bm_w-15, h+2, 5, y-1, 5, y-1, b->background, &(grd_curcanv->cv_bitmap) ); //gr_bm_bitblt(w, h, x, y, x, y, b->background, &(grd_curcanv->cv_bitmap) ); if (SurfingNet) { for (i=0;i0) ) { gr_get_string_size(s1, &w, &h, &aw ); gr_string( x+w1-w, y, s1 ); *p = '\t'; } } // Draw a slider and it's string void nm_string_slider( bkg * b, int w1,int x, int y, char * s ) { int w,h,aw; char *p,*s1; s1=NULL; p = strchr( s, '\t' ); if (p) { *p = '\0'; s1 = p+1; } gr_get_string_size(s, &w, &h, &aw ); // CHANGED gr_bm_bitblt(b->background->bm_w-15, h, 5, y, 5, y, b->background, &(grd_curcanv->cv_bitmap) ); //gr_bm_bitblt(w, h, x, y, x, y, b->background, &(grd_curcanv->cv_bitmap) ); gr_string( x, y, s ); if (p) { gr_get_string_size(s1, &w, &h, &aw ); // CHANGED gr_bm_bitblt(w, 1, x+w1-w, y, x+w1-w, y, b->background, &(grd_curcanv->cv_bitmap) ); // CHANGED gr_bm_bitblt(w, 1, x+w1-w, y+h-1, x+w1-w, y, b->background, &(grd_curcanv->cv_bitmap) ); gr_string( x+w1-w, y, s1 ); *p = '\t'; } } // Draw a left justfied string with black background. void nm_string_black( bkg * b, int w1,int x, int y, char * s ) { int w,h,aw; gr_get_string_size(s, &w, &h, &aw ); b = b; if (w1 == 0) w1 = w; WIN(DDGRLOCK(dd_grd_curcanv)); gr_setcolor( BM_XRGB(2,2,2) ); gr_rect( x-1, y-1, x-1, y+h-1 ); gr_rect( x-1, y-1, x+w1-1, y-1 ); gr_setcolor( BM_XRGB(5,5,5) ); gr_rect( x, y+h, x+w1, y+h); gr_rect( x+w1, y-1, x+w1, y+h ); gr_setcolor( BM_XRGB(0,0,0) ); gr_rect( x, y, x+w1-1, y+h-1 ); gr_string( x+1, y+1, s ); WIN(DDGRUNLOCK(dd_grd_curcanv)); } // Draw a right justfied string void nm_rstring( bkg * b,int w1,int x, int y, char * s ) { int w,h,aw; gr_get_string_size(s, &w, &h, &aw ); x -= 3; if (w1 == 0) w1 = w; //mprintf( 0, "Width = %d, string='%s'\n", w, s ); // CHANGED WIN(DDGRLOCK(dd_grd_curcanv)); gr_bm_bitblt(w1, h, x-w1, y, x-w1, y, b->background, &(grd_curcanv->cv_bitmap) ); gr_string( x-w, y, s ); WIN(DDGRUNLOCK(dd_grd_curcanv)); } #include "timer.h" //for text items, constantly redraw cursor (to achieve flash) void update_cursor( newmenu_item *item) { int w,h,aw; fix time = timer_get_approx_seconds(); int x,y; char * text = item->text; Assert(item->type==NM_TYPE_INPUT_MENU || item->type==NM_TYPE_INPUT); while( *text ) { gr_get_string_size(text, &w, &h, &aw ); if ( w > item->w-10 ) text++; else break; } if (*text==0) w = 0; x = item->x+w; y = item->y; WIN(DDGRLOCK(dd_grd_curcanv)); if (time & 0x8000) gr_string( x, y, CURSOR_STRING ); else { gr_setcolor( BM_XRGB(0,0,0) ); gr_rect( x, y, x+grd_curcanv->cv_font->ft_w-1, y+grd_curcanv->cv_font->ft_h-1 ); } WIN(DDGRUNLOCK(dd_grd_curcanv)); } void nm_string_inputbox( bkg *b, int w, int x, int y, char * text, int current ) { int w1,h1,aw; while( *text ) { gr_get_string_size(text, &w1, &h1, &aw ); if ( w1 > w-10 ) text++; else break; } if ( *text == 0 ) w1 = 0; nm_string_black( b, w, x, y, text ); if ( current ) { gr_string( x+w1+1, y, CURSOR_STRING ); } } void draw_item( bkg * b, newmenu_item *item, int is_current,int tiny ) { if (tiny) { if (is_current) gr_set_fontcolor(gr_find_closest_color_current(57,49,20),-1); else gr_set_fontcolor(gr_find_closest_color_current(29,29,47),-1); if (item->text[0]=='\t') gr_set_fontcolor (gr_find_closest_color_current(63,63,63),-1); } else { if (is_current) grd_curcanv->cv_font = SELECTED_FONT; else grd_curcanv->cv_font = NORMAL_FONT; #ifdef WINDOWS if (is_current && item->type == NM_TYPE_TEXT) grd_curcanv->cv_font = NORMAL_FONT; #endif } WIN(DDGRLOCK(dd_grd_curcanv)); switch( item->type ) { case NM_TYPE_TEXT: // grd_curcanv->cv_font=TEXT_FONT; // fall through on purpose case NM_TYPE_MENU: nm_string( b, item->w, item->x, item->y, item->text ); break; case NM_TYPE_SLIDER: { int j; if (item->value < item->min_value) item->value=item->min_value; if (item->value > item->max_value) item->value=item->max_value; sprintf( item->saved_text, "%s\t%s", item->text, SLIDER_LEFT ); for (j=0; j<(item->max_value-item->min_value+1); j++ ) { sprintf( item->saved_text, "%s%s", item->saved_text,SLIDER_MIDDLE ); } sprintf( item->saved_text, "%s%s", item->saved_text,SLIDER_RIGHT ); item->saved_text[item->value+1+strlen(item->text)+1] = SLIDER_MARKER[0]; nm_string_slider( b, item->w, item->x, item->y, item->saved_text ); } break; case NM_TYPE_INPUT_MENU: if ( item->group==0 ) { nm_string( b, item->w, item->x, item->y, item->text ); } else { nm_string_inputbox( b, item->w, item->x, item->y, item->text, is_current ); } break; case NM_TYPE_INPUT: nm_string_inputbox( b, item->w, item->x, item->y, item->text, is_current ); break; case NM_TYPE_CHECK: nm_string( b, item->w, item->x, item->y, item->text ); if (item->value) nm_rstring( b,item->right_offset,item->x, item->y, CHECKED_CHECK_BOX ); else nm_rstring( b,item->right_offset,item->x, item->y, NORMAL_CHECK_BOX ); break; case NM_TYPE_RADIO: nm_string( b, item->w, item->x, item->y, item->text ); if (item->value) nm_rstring( b,item->right_offset, item->x, item->y, CHECKED_RADIO_BOX ); else nm_rstring( b,item->right_offset, item->x, item->y, NORMAL_RADIO_BOX ); break; case NM_TYPE_NUMBER: { char text[10]; if (item->value < item->min_value) item->value=item->min_value; if (item->value > item->max_value) item->value=item->max_value; nm_string( b, item->w, item->x, item->y, item->text ); sprintf( text, "%d", item->value ); nm_rstring( b,item->right_offset,item->x, item->y, text ); } break; } WIN(DDGRUNLOCK(dd_grd_curcanv)); } char *Newmenu_allowed_chars=NULL; //returns true if char is allowed int char_allowed(char c) { char *p = Newmenu_allowed_chars; if (!p) return 1; while (*p) { Assert(p[1]); if (c>=p[0] && c<=p[1]) return 1; p += 2; } return 0; } void strip_end_whitespace( char * text ) { int i,l; l = strlen( text ); for (i=l-1; i>=0; i-- ) { if ( isspace(text[i]) ) text[i] = 0; else return; } } int newmenu_do( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem) ) { return newmenu_do3( title, subtitle, nitems, item, subfunction, 0, NULL, -1, -1 ); } int newmenu_dotiny( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem) ) { return newmenu_do4( title, subtitle, nitems, item, subfunction, 0, NULL, LHX(310), -1, 1 ); } int newmenu_dotiny2( char * title, char * subtitle, int nitems, newmenu_item * item, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem) ) { return newmenu_do4( title, subtitle, nitems, item, subfunction, 0, NULL, -1, -1, 1 ); } 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 ) { return newmenu_do3( title, subtitle, nitems, item, subfunction, citem, NULL, -1, -1 ); } 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 ) { return newmenu_do3( title, subtitle, nitems, item, subfunction, citem, filename, -1, -1 ); } 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 ) { return newmenu_do4( title, subtitle, nitems, item, subfunction, citem, filename, width, height,0 ); } //returns 1 if a control device button has been pressed int check_button_press() { int i; switch (Config_control_type) { case CONTROL_JOYSTICK: case CONTROL_FLIGHTSTICK_PRO: case CONTROL_THRUSTMASTER_FCS: case CONTROL_GRAVIS_GAMEPAD: for (i=0; i<4; i++ ) if (joy_get_button_down_cnt(i)>0) return 1; break; case CONTROL_MOUSE: case CONTROL_CYBERMAN: #ifndef MACINTOSH // don't allow mouse to continue from menu for (i=0; i<3; i++ ) if (mouse_button_down_count(i)>0) return 1; break; #endif case CONTROL_WINJOYSTICK: #ifdef WINDOWS for (i=0; i<4; i++ ) if (joy_get_button_down_cnt(i)>0) return 1; #endif break; case CONTROL_NONE: //keyboard only #ifdef APPLE_DEMO if (key_checkch()) return 1; #endif break; default: Error("Bad control type (Config_control_type):%i",Config_control_type); } return 0; } extern int network_request_player_names(int); extern int RestoringMenu; #if defined(WINDOWS) || defined(MACINTOSH) ubyte Hack_DblClick_MenuMode=0; #endif MAC(extern ubyte joydefs_calibrating;) #define CLOSE_X 15 #define CLOSE_Y 15 #define CLOSE_SIZE 10 void draw_close_box(int x,int y) { WIN (DDGRLOCK(dd_grd_curcanv)); gr_setcolor( BM_XRGB(0, 0, 0) ); gr_rect(x + CLOSE_X, y + CLOSE_Y, x + CLOSE_X + CLOSE_SIZE, y + CLOSE_Y + CLOSE_SIZE); gr_setcolor( BM_XRGB(21, 21, 21) ); gr_rect( x + CLOSE_X + 2, y + CLOSE_Y + 2, x + CLOSE_X + CLOSE_SIZE - 2, y + CLOSE_Y + CLOSE_SIZE - 2 ); WIN (DDGRUNLOCK(dd_grd_curcanv)); } 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 ) { int old_keyd_repeat, done; int choice,old_choice,i,j,x,y,w,h,aw, tw, th, twidth,fm,right_offset; int k, nmenus, nothers,ScrollOffset=0,LastScrollCheck=-1,MaxDisplayable,sx,sy; grs_font * save_font; int string_width, string_height, average_width; int ty; bkg bg; int all_text=0; //set true if all text items int sound_stopped=0,time_stopped=0; int TopChoice,IsScrollBox=0; // Is this a scrolling box? Set to false at init char *Temp,TempVal; int dont_restore=0; int MaxOnMenu=MAXDISPLAYABLEITEMS; WINDOS(dd_grs_canvas *save_canvas, grs_canvas *save_canvas ); #if defined(MACINTOSH) || defined(WINDOWS) int mouse_state, omouse_state, dblclick_flag=0; int mx=0, my=0, x1, x2, y1, y2; int close_box=0; #endif #ifdef MACINTOSH EventRecord event; // looking for disk inserted events for CD mounts #endif PA_DFX (pa_set_frontbuffer_current()); PA_DFX (pa_set_front_to_read()); WIN(if (!_AppActive) return -1); // Don't draw message if minimized! WIN(HideCursorW()); MAC(hide_cursor();) if (nitems < 1 ) { return -1; } WIN(mouse_set_mode(0)); //disable centering mode MaxDisplayable=nitems; // set_screen_mode(SCREEN_MENU); set_popup_screen(); if ( Function_mode == FMODE_GAME && !(Game_mode & GM_MULTI)) { digi_pause_digi_sounds(); sound_stopped = 1; } if (!((Game_mode & GM_MULTI) && (Function_mode == FMODE_GAME) && (!Endlevel_sequence)) ) { time_stopped = 1; stop_time(); #ifdef TACTILE if (TactileStick) DisableForces(); #endif } #ifdef WINDOWS RePaintNewmenu4: #endif WINDOS( save_canvas = dd_grd_curcanv, save_canvas = grd_curcanv ); WINDOS( dd_gr_set_current_canvas(NULL), gr_set_current_canvas(NULL) ); save_font = grd_curcanv->cv_font; tw = th = 0; if ( title ) { grd_curcanv->cv_font = TITLE_FONT; gr_get_string_size(title,&string_width,&string_height,&average_width ); tw = string_width; th = string_height; } if ( subtitle ) { grd_curcanv->cv_font = SUBTITLE_FONT; gr_get_string_size(subtitle,&string_width,&string_height,&average_width ); if (string_width > tw ) tw = string_width; th += string_height; } th += LHY(8); //put some space between titles & body if (TinyMode) grd_curcanv->cv_font = SMALL_FONT; else grd_curcanv->cv_font = NORMAL_FONT; w = aw = 0; h = th; nmenus = nothers = 0; // Find menu height & width (store in w,h) for (i=0; i item[i].right_offset) item[i].right_offset = w1; } if (item[i].type == NM_TYPE_RADIO ) { int w1,h1,aw1; nothers++; gr_get_string_size(NORMAL_RADIO_BOX, &w1, &h1, &aw1 ); item[i].right_offset = w1; gr_get_string_size(CHECKED_RADIO_BOX, &w1, &h1, &aw1 ); if (w1 > item[i].right_offset) item[i].right_offset = w1; } if (item[i].type==NM_TYPE_NUMBER ) { int w1,h1,aw1; char test_text[20]; nothers++; sprintf( test_text, "%d", item[i].max_value ); gr_get_string_size( test_text, &w1, &h1, &aw1 ); item[i].right_offset = w1; sprintf( test_text, "%d", item[i].min_value ); gr_get_string_size( test_text, &w1, &h1, &aw1 ); if ( w1 > item[i].right_offset) item[i].right_offset = w1; } if ( item[i].type == NM_TYPE_INPUT ) { Assert( strlen(item[i].text) < NM_MAX_TEXT_LEN ); strcpy(item[i].saved_text, item[i].text ); nothers++; string_width = item[i].text_len*grd_curcanv->cv_font->ft_w+((MenuHires?3:1)*item[i].text_len); if ( string_width > MAX_TEXT_WIDTH ) string_width = MAX_TEXT_WIDTH; item[i].value = -1; } if ( item[i].type == NM_TYPE_INPUT_MENU ) { Assert( strlen(item[i].text) < NM_MAX_TEXT_LEN ); strcpy(item[i].saved_text, item[i].text ); nmenus++; string_width = item[i].text_len*grd_curcanv->cv_font->ft_w+((MenuHires?3:1)*item[i].text_len); item[i].value = -1; item[i].group = 0; } item[i].w = string_width; item[i].h = string_height; if ( string_width > w ) w = string_width; // Save maximum width if ( average_width > aw ) aw = average_width; h += string_height+1; // Find the height of all strings } // Big hack for allowing the netgame options menu to spill over MaxOnMenu=MAXDISPLAYABLEITEMS; if (ExtGameStatus==GAMESTAT_NETGAME_OPTIONS || ExtGameStatus==GAMESTAT_MORE_NETGAME_OPTIONS) MaxOnMenu++; if (!TinyMode && (h>((MaxOnMenu+1)*(string_height+1))+(LHY(8)))) { IsScrollBox=1; h=(MaxOnMenu*(string_height+1)+LHY(8)); MaxDisplayable=MaxOnMenu; mprintf ((0,"Hey, this is a scroll box!\n")); } else IsScrollBox=0; right_offset=0; if ( width > -1 ) w = width; if ( height > -1 ) h = height; for (i=0; i right_offset ) right_offset = item[i].right_offset; } if (right_offset > 0 ) right_offset += 3; //gr_get_string_size("",&string_width,&string_height,&average_width ); w += right_offset; twidth = 0; if ( tw > w ) { twidth = ( tw - w )/2; w = tw; } if (RestoringMenu) { right_offset=0; twidth=0;} mprintf(( 0, "Right offset = %d\n", right_offset )); // Find min point of menu border // x = (grd_curscreen->sc_w-w)/2; // y = (grd_curscreen->sc_h-h)/2; w += MenuHires?60:30; h += MenuHires?60:30; if ( w > grd_curcanv->cv_bitmap.bm_w ) w = grd_curcanv->cv_bitmap.bm_w; if ( h > grd_curcanv->cv_bitmap.bm_h ) h = grd_curcanv->cv_bitmap.bm_h; x = (grd_curcanv->cv_bitmap.bm_w-w)/2; y = (grd_curcanv->cv_bitmap.bm_h-h)/2; if ( x < 0 ) x = 0; if ( y < 0 ) y = 0; if ( filename != NULL ) { nm_draw_background1( filename ); gr_palette_load(gr_palette); } // Save the background of the display // Win95 must refer to the screen as a dd_grs_canvas, so... WINDOS ( bg.menu_canvas = dd_gr_create_sub_canvas( dd_grd_screencanv, x, y, w, h ), bg.menu_canvas = gr_create_sub_canvas( &grd_curscreen->sc_canvas, x, y, w, h ) ); WINDOS ( dd_gr_set_current_canvas( bg.menu_canvas ), gr_set_current_canvas(bg.menu_canvas) ); if ( filename == NULL ) { // Save the background under the menu... #ifdef TACTILE if (TactileStick) DisableForces(); #endif #if defined(POLY_ACC) bg.saved = gr_create_bitmap2( w, h, grd_curcanv->cv_bitmap.bm_type, NULL ); #else bg.saved = gr_create_bitmap( w, h ); #endif Assert( bg.saved != NULL ); WIN (DDGRLOCK(dd_grd_curcanv)); gr_bm_bitblt(w, h, 0, 0, 0, 0, &grd_curcanv->cv_bitmap, bg.saved ); WIN (DDGRUNLOCK(dd_grd_curcanv)); WINDOS ( dd_gr_set_current_canvas(NULL), gr_set_current_canvas( NULL ) ); nm_draw_background(x,y,x+w-1,y+h-1); WINDOS ( dd_gr_set_current_canvas(bg.menu_canvas), gr_set_current_canvas( bg.menu_canvas ) ); bg.background = gr_create_sub_bitmap(&nm_background,0,0,w,h); } else { bg.saved = NULL; #if defined(POLY_ACC) bg.background = gr_create_bitmap2( w, h, grd_curcanv->cv_bitmap.bm_type, NULL ); #else bg.background = gr_create_bitmap( w, h ); #endif Assert( bg.background != NULL ); WIN (DDGRLOCK(dd_grd_curcanv)); gr_bm_bitblt(w, h, 0, 0, 0, 0, &grd_curcanv->cv_bitmap, bg.background ); WIN (DDGRUNLOCK(dd_grd_curcanv)); } // ty = 15 + (yborder/4); ty = MenuHires?30:15; if ( title ) { grd_curcanv->cv_font = TITLE_FONT; gr_set_fontcolor( GR_GETCOLOR(31,31,31), -1 ); gr_get_string_size(title,&string_width,&string_height,&average_width ); tw = string_width; th = string_height; WIN (DDGRLOCK(dd_grd_curcanv)); gr_printf( 0x8000, ty, title ); WIN (DDGRUNLOCK(dd_grd_curcanv)); ty += th; } if ( subtitle ) { grd_curcanv->cv_font = SUBTITLE_FONT; gr_set_fontcolor( GR_GETCOLOR(21,21,21), -1 ); gr_get_string_size(subtitle,&string_width,&string_height,&average_width ); tw = string_width; th = string_height; WIN (DDGRLOCK(dd_grd_curcanv)); gr_printf( 0x8000, ty, subtitle ); WIN (DDGRUNLOCK(dd_grd_curcanv)); ty += th; } if (TinyMode) grd_curcanv->cv_font = SMALL_FONT; else grd_curcanv->cv_font = NORMAL_FONT; // Update all item's x & y values. for (i=0; i=0 ) item[fm].value=1; else item[i].value=1; } } old_keyd_repeat = keyd_repeat; keyd_repeat = 1; if (citem==-1) { choice = -1; } else { if (citem < 0 ) citem = 0; if (citem > nitems-1 ) citem = nitems-1; choice = citem; #if defined(WINDOWS) || defined(MACINTOSH) dblclick_flag = 1; #endif while ( item[choice].type==NM_TYPE_TEXT ) { choice++; if (choice >= nitems ) { choice=0; } if (choice == citem ) { choice=0; all_text=1; break; } } } done = 0; TopChoice=choice; gr_update(); // Clear mouse, joystick to clear button presses. game_flush_inputs(); #if defined(WINDOWS) || defined(MACINTOSH) mouse_state = omouse_state = 0; if (filename == NULL && !MenuReordering) { draw_close_box(0,0); close_box = 1; } #endif #ifdef WINDOWS if (!MenuReordering) { ShowCursorW(); SetCursor (LoadCursor(NULL,IDC_ARROW)); } #endif #ifdef MACINTOSH if (!joydefs_calibrating) show_cursor(); #endif mprintf ((0,"Set to true!\n")); while(!done) { #ifdef WINDOWS MSG msg; DoMessageStuff(&msg); if (_RedrawScreen) { _RedrawScreen = FALSE; if (!filename) { gr_free_bitmap(bg.saved); d_free( bg.background ); } else gr_free_bitmap(bg.background); dd_gr_free_sub_canvas( bg.menu_canvas ); grd_curcanv->cv_font = save_font; dd_grd_curcanv = save_canvas; goto RePaintNewmenu4; } DDGRRESTORE; #endif #ifdef MACINTOSH omouse_state = mouse_state; mouse_state = mouse_button_state(0); if (!joydefs_calibrating) show_cursor(); // possibly hidden #endif #ifdef WINDOWS omouse_state = mouse_state; if (!MenuReordering) mouse_state = mouse_button_state(0); //@@ mprintf ((0,"mouse state:%d\n",mouse_state)); #endif //see if redbook song needs to be restarted songs_check_redbook_repeat(); //network_listen(); k = key_inkey(); if (subfunction) (*subfunction)(nitems,item,&k,choice); #ifdef NETWORK if (!time_stopped) { // Save current menu box if (multi_menu_poll() == -1) k = -2; } #endif if ( k<-1 ) { dont_restore = (k == -3); //-3 means don't restore choice = k; k = -1; done = 1; } #ifndef WINDOWS if (check_button_press()) done = 1; #endif // if ( (nmenus<2) && (k>0) && (nothers==0) ) // done=1; old_choice = choice; switch( k ) { #ifdef NETWORK case KEY_I: if (SurfingNet && !already_showing_info) { show_extra_netgame_info(choice-2); } if (SurfingNet && already_showing_info) { done=1; choice=-1; } break; case KEY_U: if (SurfingNet && !already_showing_info) { network_request_player_names(choice-2); } if (SurfingNet && already_showing_info) { done=1; choice=-1; } break; #endif case KEY_PAUSE: if (Pauseable_menu) { Pauseable_menu=0; done=1; choice=-1; } break; case KEY_TAB + KEY_SHIFTED: case KEY_UP: case KEY_PAD8: if (all_text) break; do { choice--; if (IsScrollBox) { LastScrollCheck=-1; mprintf ((0,"Scrolling! Choice=%d\n",choice)); if (choice= nitems ) choice=0; if (choice < 0 ) choice=nitems-1; } } while ( item[choice].type==NM_TYPE_TEXT ); if ((item[choice].type==NM_TYPE_INPUT) && (choice!=old_choice)) item[choice].value = -1; if ((old_choice>-1) && (item[old_choice].type==NM_TYPE_INPUT_MENU) && (old_choice!=choice)) { item[old_choice].group=0; strcpy(item[old_choice].text, item[old_choice].saved_text ); item[old_choice].value = -1; } if (old_choice>-1) item[old_choice].redraw = 1; item[choice].redraw=1; break; case KEY_TAB: case KEY_DOWN: case KEY_PAD2: // ((0,"Pressing down! IsScrollBox=%d",IsScrollBox)); if (all_text) break; do { choice++; if (IsScrollBox) { LastScrollCheck=-1; mprintf ((0,"Scrolling! Choice=%d\n",choice)); if (choice==nitems) { choice--; break; } if (choice>=MaxOnMenu+ScrollOffset) { for (i=0;i= nitems ) choice=0; } } while ( item[choice].type==NM_TYPE_TEXT ); if ((item[choice].type==NM_TYPE_INPUT) && (choice!=old_choice)) item[choice].value = -1; if ( (old_choice>-1) && (item[old_choice].type==NM_TYPE_INPUT_MENU) && (old_choice!=choice)) { item[old_choice].group=0; strcpy(item[old_choice].text, item[old_choice].saved_text ); item[old_choice].value = -1; } if (old_choice>-1) item[old_choice].redraw=1; item[choice].redraw=1; break; case KEY_SPACEBAR: if ( choice > -1 ) { switch( item[choice].type ) { case NM_TYPE_MENU: case NM_TYPE_INPUT: case NM_TYPE_INPUT_MENU: break; case NM_TYPE_CHECK: if ( item[choice].value ) item[choice].value = 0; else item[choice].value = 1; mprintf ((0,"ISB=%d MDI=%d SO=%d choice=%d\n",IsScrollBox,MAXDISPLAYABLEITEMS,ScrollOffset,choice)); if (IsScrollBox) { if (choice==(MaxOnMenu+ScrollOffset-1) || choice==ScrollOffset) { mprintf ((0,"Special redraw!\n")); LastScrollCheck=-1; } } item[choice].redraw=1; break; case NM_TYPE_RADIO: for (i=0; i-1) && (item[choice].type==NM_TYPE_INPUT_MENU) && (item[choice].group==0)) { item[choice].group = 1; item[choice].redraw = 1; if ( !strnicmp( item[choice].saved_text, TXT_EMPTY, strlen(TXT_EMPTY) ) ) { item[choice].text[0] = 0; item[choice].value = -1; } else { strip_end_whitespace(item[choice].text); } } else done = 1; break; case KEY_ESC: if ( (choice>-1) && (item[choice].type==NM_TYPE_INPUT_MENU) && (item[choice].group==1)) { item[choice].group=0; strcpy(item[choice].text, item[choice].saved_text ); item[choice].redraw=1; item[choice].value = -1; } else { done = 1; choice = -1; } break; MAC(case KEY_COMMAND+KEY_SHIFTED+KEY_3:) case KEY_PRINT_SCREEN: MAC(hide_cursor()); save_screen_shot(0); PA_DFX (pa_set_frontbuffer_current()); PA_DFX (pa_set_front_to_read()); for (i=0;i-1) && (item[choice].type!=NM_TYPE_INPUT)&&(item[choice].type!=NM_TYPE_INPUT_MENU)) Int3(); break; #endif } #if defined(MACINTOSH) || defined(WINDOWS) // for mouse selection of menu's etc. WIN(Sleep(100)); if ( !done && mouse_state && !omouse_state && !all_text ) { mouse_get_pos(&mx, &my); for (i=0; icv_bitmap.bm_x + item[i].x - item[i].right_offset - 6; x2 = x1 + item[i].w; y1 = grd_curcanv->cv_bitmap.bm_y + item[i].y; y2 = y1 + item[i].h; if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2))) { if (i+ScrollOffset != choice) { if(Hack_DblClick_MenuMode) dblclick_flag = 0; } choice = i + ScrollOffset; switch( item[choice].type ) { case NM_TYPE_CHECK: if ( item[choice].value ) item[choice].value = 0; else item[choice].value = 1; item[choice].redraw=1; if (IsScrollBox) LastScrollCheck=-1; #if 0 if (IsScrollBox) { if (choice==(MaxOnMenu+ScrollOffset-1) || choice==ScrollOffset) { mprintf ((0,"Special redraw!\n")); LastScrollCheck=-1; } } #endif break; case NM_TYPE_RADIO: for (i=0; icv_bitmap.bm_x + item[ScrollOffset].x-(MenuHires?24:12); y1 = grd_curcanv->cv_bitmap.bm_y + item[ScrollOffset].y-((string_height+1)*ScrollOffset); x1 = x1 - arrow_width; y2 = y1 + arrow_height; if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { choice--; LastScrollCheck=-1; mprintf ((0,"Scrolling! Choice=%d\n",choice)); if (choicecv_bitmap.bm_x + item[ScrollOffset+MaxDisplayable-1].x-(MenuHires?24:12); y1 = grd_curcanv->cv_bitmap.bm_y + item[ScrollOffset+MaxDisplayable-1].y-((string_height+1)*ScrollOffset); x1 = x1 - arrow_width; y2 = y1 + arrow_height; if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { choice++; LastScrollCheck=-1; mprintf ((0,"Scrolling! Choice=%d\n",choice)); if (choice>=MaxOnMenu+ScrollOffset) { for (i=0;icv_bitmap.bm_x + item[i].x - item[i].right_offset - 6; x2 = x1 + item[i].w; y1 = grd_curcanv->cv_bitmap.bm_y + item[i].y; y2 = y1 + item[i].h; if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && (item[i].type != NM_TYPE_TEXT) ) { if (i+ScrollOffset != choice) { if(Hack_DblClick_MenuMode) dblclick_flag = 0; } choice = i + ScrollOffset; if ( item[choice].type == NM_TYPE_SLIDER ) { char slider_text[NM_MAX_TEXT_LEN+1], *p, *s1; int slider_width, height, aw, sleft_width, sright_width, smiddle_width; strcpy(slider_text, item[choice].saved_text); p = strchr(slider_text, '\t'); if (p) { *p = '\0'; s1 = p+1; } if (p) { gr_get_string_size(s1, &slider_width, &height, &aw); gr_get_string_size(SLIDER_LEFT, &sleft_width, &height, &aw); gr_get_string_size(SLIDER_RIGHT, &sright_width, &height, &aw); gr_get_string_size(SLIDER_MIDDLE, &smiddle_width, &height, &aw); x1 = grd_curcanv->cv_bitmap.bm_x + item[choice].x + item[choice].w - slider_width; x2 = x1 + slider_width + sright_width; if ( (mx > x1) && (mx < (x1 + sleft_width)) && (item[choice].value != item[choice].min_value) ) { item[choice].value = item[choice].min_value; item[choice].redraw = 2; } else if ( (mx < x2) && (mx > (x2 - sright_width)) && (item[choice].value != item[choice].max_value) ) { item[choice].value = item[choice].max_value; item[choice].redraw = 2; } else if ( (mx > (x1 + sleft_width)) && (mx < (x2 - sright_width)) ) { int num_values, value_width, new_value; num_values = item[choice].max_value - item[choice].min_value + 1; value_width = (slider_width - sleft_width - sright_width) / num_values; new_value = (mx - x1 - sleft_width) / value_width; if ( item[choice].value != new_value ) { item[choice].value = new_value; item[choice].redraw = 2; } } *p = '\t'; } } if (choice == old_choice) break; if ((item[choice].type==NM_TYPE_INPUT) && (choice!=old_choice)) item[choice].value = -1; if ((old_choice>-1) && (item[old_choice].type==NM_TYPE_INPUT_MENU) && (old_choice!=choice)) { item[old_choice].group=0; strcpy(item[old_choice].text, item[old_choice].saved_text ); item[old_choice].value = -1; } if (old_choice>-1) item[old_choice].redraw = 1; item[choice].redraw=1; break; } } } if ( !done && !mouse_state && omouse_state && !all_text && (choice != -1) && (item[choice].type == NM_TYPE_MENU) ) { mouse_get_pos(&mx, &my); x1 = grd_curcanv->cv_bitmap.bm_x + item[choice].x; x2 = x1 + item[choice].w; y1 = grd_curcanv->cv_bitmap.bm_y + item[choice].y; y2 = y1 + item[choice].h; if (((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2))) { if (Hack_DblClick_MenuMode) { if (dblclick_flag) done = 1; else dblclick_flag = 1; } else done = 1; } } if ( !done && !mouse_state && omouse_state && (choice>-1) && (item[choice].type==NM_TYPE_INPUT_MENU) && (item[choice].group==0)) { item[choice].group = 1; item[choice].redraw = 1; if ( !strnicmp( item[choice].saved_text, TXT_EMPTY, strlen(TXT_EMPTY) ) ) { item[choice].text[0] = 0; item[choice].value = -1; } else { strip_end_whitespace(item[choice].text); } } if ( !done && !mouse_state && omouse_state && close_box ) { mouse_get_pos(&mx, &my); x1 = grd_curcanv->cv_bitmap.bm_x + CLOSE_X; x2 = x1 + CLOSE_SIZE; y1 = grd_curcanv->cv_bitmap.bm_y + CLOSE_Y; y2 = y1 + CLOSE_SIZE; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { choice = -1; done = 1; } } // HACK! Don't redraw loadgame preview if (RestoringMenu) item[0].redraw = 0; #endif // ifdef MACINTOSH if ( choice > -1 ) { int ascii; if ( ((item[choice].type==NM_TYPE_INPUT)||((item[choice].type==NM_TYPE_INPUT_MENU)&&(item[choice].group==1)) )&& (old_choice==choice) ) { if ( k==KEY_LEFT || k==KEY_BACKSP || k==KEY_PAD4 ) { if (item[choice].value==-1) item[choice].value = strlen(item[choice].text); if (item[choice].value > 0) item[choice].value--; item[choice].text[item[choice].value] = 0; item[choice].redraw = 1; } else { ascii = key_to_ascii(k); if ((ascii < 255 ) && (item[choice].value < item[choice].text_len )) { int allowed; if (item[choice].value==-1) { item[choice].value = 0; } allowed = char_allowed(ascii); if (!allowed && ascii==' ' && char_allowed('_')) { ascii = '_'; allowed=1; } if (allowed) { item[choice].text[item[choice].value++] = ascii; item[choice].text[item[choice].value] = 0; item[choice].redraw=1; } } } } else if ((item[choice].type!=NM_TYPE_INPUT) && (item[choice].type!=NM_TYPE_INPUT_MENU) ) { ascii = key_to_ascii(k); if (ascii < 255 ) { int choice1 = choice; ascii = toupper(ascii); do { int i,ch; choice1++; if (choice1 >= nitems ) choice1=0; for (i=0;(ch=item[choice1].text[i])!=0 && ch==' ';i++); if ( ( (item[choice1].type==NM_TYPE_MENU) || (item[choice1].type==NM_TYPE_CHECK) || (item[choice1].type==NM_TYPE_RADIO) || (item[choice1].type==NM_TYPE_NUMBER) || (item[choice1].type==NM_TYPE_SLIDER) ) && (ascii==toupper(ch)) ) { k = 0; choice = choice1; if (old_choice>-1) item[old_choice].redraw=1; item[choice].redraw=1; } } while (choice1 != choice ); } } if ( (item[choice].type==NM_TYPE_NUMBER) || (item[choice].type==NM_TYPE_SLIDER)) { int ov=item[choice].value; switch( k ) { case KEY_PAD4: case KEY_LEFT: case KEY_MINUS: case KEY_MINUS+KEY_SHIFTED: case KEY_PADMINUS: item[choice].value -= 1; break; case KEY_RIGHT: case KEY_PAD6: case KEY_EQUAL: case KEY_EQUAL+KEY_SHIFTED: case KEY_PADPLUS: item[choice].value++; break; case KEY_PAGEUP: case KEY_PAD9: case KEY_SPACEBAR: item[choice].value += 10; break; case KEY_PAGEDOWN: case KEY_BACKSP: case KEY_PAD3: item[choice].value -= 10; break; } if (ov!=item[choice].value) item[choice].redraw=1; } } WINDOS ( dd_gr_set_current_canvas(bg.menu_canvas), gr_set_current_canvas(bg.menu_canvas)); // Redraw everything... for (i=ScrollOffset; icv_font = NORMAL_FONT; if (LastScrollCheck!=ScrollOffset) { LastScrollCheck=ScrollOffset; grd_curcanv->cv_font = SELECTED_FONT; sy=item[ScrollOffset].y-((string_height+1)*ScrollOffset); sx=item[ScrollOffset].x-(MenuHires?24:12); if (ScrollOffset!=0) nm_rstring( &bg, (MenuHires?20:10), sx, sy, UP_ARROW_MARKER ); else nm_rstring( &bg, (MenuHires?20:10), sx, sy, " " ); sy=item[ScrollOffset+MaxDisplayable-1].y-((string_height+1)*ScrollOffset); sx=item[ScrollOffset+MaxDisplayable-1].x-(MenuHires?24:12); if (ScrollOffset+MaxDisplayablecv_font = save_font; WINDOS (dd_gr_set_current_canvas(NULL), gr_set_current_canvas( save_canvas )); keyd_repeat = old_keyd_repeat; game_flush_inputs(); if (time_stopped) { start_time(); #ifdef TACTILE if (TactileStick) EnableForces(); #endif } if ( sound_stopped ) digi_resume_digi_sounds(); WIN(mouse_set_mode(1)); //re-enable centering mode return choice; } int nm_messagebox1( char *title, void (*subfunction)(int nitems,newmenu_item * items, int * last_key, int citem), int nchoices, ... ) { int i; char * format; va_list args; char *s; char nm_text[MESSAGEBOX_TEXT_SIZE]; newmenu_item nm_message_items[5]; va_start(args, nchoices ); Assert( nchoices <= 5 ); for (i=0; i 0 ) { for (i=incr; i=0 ) { if (strncmp(&list[j*14], &list[(j+incr)*14], 12) > 0) { memcpy( t, &list[j*14], FILENAME_LEN ); memcpy( &list[j*14], &list[(j+incr)*14], FILENAME_LEN ); memcpy( &list[(j+incr)*14], t, FILENAME_LEN ); j -= incr; } else break; } } incr = incr / 2; } } void delete_player_saved_games(char * name) { int i; char filename[16]; for (i=0;i<10; i++) { #ifndef MACINTOSH sprintf( filename, "%s.sg%d", name, i ); #else sprintf( filename, ":Players:%s.sg%d", name, i ); #endif unlink( filename ); } } #define MAX_FILES 300 int MakeNewPlayerFile(int allow_abort); int newmenu_get_filename( char * title, char * filespec, char * filename, int allow_abort_flag ) { int i; FILEFINDSTRUCT find; int NumFiles=0, key,done, citem, ocitem; char * filenames = NULL; int NumFiles_displayed = 8; int first_item = -1, ofirst_item; int old_keyd_repeat = keyd_repeat; int player_mode=0; int demo_mode=0; int demos_deleted=0; int initialized = 0; int exit_value = 0; int w_x, w_y, w_w, w_h, title_height; int box_x, box_y, box_w, box_h; bkg bg; // background under listbox #if defined(MACINTOSH) || defined(WINDOWS) int mx, my, x1, x2, y1, y2, mouse_state, omouse_state; int mouse2_state, omouse2_state; int dblclick_flag=0; int simukey=0; int show_up_arrow=0,show_down_arrow=0; #endif WIN(int win_redraw=0); w_x=w_y=w_w=w_h=title_height=0; box_x=box_y=box_w=box_h=0; filenames = d_malloc( MAX_FILES * 14 ); if (filenames==NULL) return 0; citem = 0; keyd_repeat = 1; WIN(mouse_set_mode(0)); //disable centering mode if (strstr( filespec, "*.plr" )) player_mode = 1; else if (strstr( filespec, "*.dem" )) demo_mode = 1; ReadFileNames: done = 0; NumFiles=0; #if !defined(APPLE_DEMO) // no new pilots for special apple oem version if (player_mode) { strncpy( &filenames[NumFiles*14], TXT_CREATE_NEW, FILENAME_LEN ); NumFiles++; } #endif if( !FileFindFirst( filespec, &find ) ) { do { if (NumFilescv_font = SUBTITLE_FONT; } WIN(DDGRUNLOCK(dd_grd_curcanv)); w_w = 0; w_h = 0; for (i=0; i w_w ) w_w = w; } if ( title ) { int w, h, aw; gr_get_string_size( title, &w, &h, &aw ); if ( w > w_w ) w_w = w; title_height = h + (grd_curfont->ft_h*2); // add a little space at the bottom of the title } box_w = w_w; box_h = ((grd_curfont->ft_h + 2) * NumFiles_displayed); w_w += (grd_curfont->ft_w * 4); w_h = title_height + box_h + (grd_curfont->ft_h * 2); // more space at bottom if ( w_w > grd_curcanv->cv_w ) w_w = grd_curcanv->cv_w; if ( w_h > grd_curcanv->cv_h ) w_h = grd_curcanv->cv_h; w_x = (grd_curcanv->cv_w-w_w)/2; w_y = (grd_curcanv->cv_h-w_h)/2; if ( w_x < 0 ) w_x = 0; if ( w_y < 0 ) w_y = 0; box_x = w_x + (grd_curfont->ft_w*2); // must be in sync with w_w!!! box_y = w_y + title_height; // save the screen behind the menu. bg.saved = NULL; #if !defined(WINDOWS) if ( (VR_offscreen_buffer->cv_w >= w_w) && (VR_offscreen_buffer->cv_h >= w_h) ) bg.background = &VR_offscreen_buffer->cv_bitmap; else #endif #if defined(POLY_ACC) bg.background = gr_create_bitmap2( w_w, w_h, grd_curcanv->cv_bitmap.bm_type, NULL ); #else bg.background = gr_create_bitmap( w_w, w_h ); #endif Assert( bg.background != NULL ); WIN(DDGRLOCK(dd_grd_curcanv)); gr_bm_bitblt(w_w, w_h, 0, 0, w_x, w_y, &grd_curcanv->cv_bitmap, bg.background ); WIN(DDGRUNLOCK(dd_grd_curcanv)); #if 0 WINDOS( dd_gr_blt_notrans(dd_grd_curcanv, 0, 0, _DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh, dd_VR_offscreen_buffer, 0, 0, _DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh), gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(grd_curcanv->cv_bitmap), &(VR_offscreen_buffer->cv_bitmap) ) ); #endif nm_draw_background( w_x,w_y,w_x+w_w-1,w_y+w_h-1 ); WIN(DDGRLOCK(dd_grd_curcanv)) { gr_string( 0x8000, w_y+10, title ); } WIN(DDGRUNLOCK(dd_grd_curcanv)); WIN(DDGRRESTORE); initialized = 1; } if ( !player_mode ) { newmenu_file_sort( NumFiles, filenames ); } else { #if defined(MACINTOSH) && defined(APPLE_DEMO) newmenu_file_sort( NumFiles, filenames ); #else newmenu_file_sort( NumFiles-1, &filenames[14] ); // Don't sort first one! #endif for ( i=0; icv_bitmap ) gr_free_bitmap(bg.background); win_redraw = 1; goto RePaintNewmenuFile; } DDGRRESTORE #endif ocitem = citem; ofirst_item = first_item; gr_update(); #if defined(MACINTOSH) || defined(WINDOWS) omouse_state = mouse_state; omouse2_state = mouse2_state; mouse_state = mouse_button_state(0); mouse2_state = mouse_button_state(1); #endif //see if redbook song needs to be restarted songs_check_redbook_repeat(); #ifdef WINDOWS if (!mouse2_state && omouse2_state) key = KEY_CTRLED+KEY_D; //fake ctrl-d else #endif //NOTE LINK TO ABOVE ELSE key = key_inkey(); #ifdef WINDOWS if (simukey==-1) key=KEY_UP; else if (simukey==1) key=KEY_DOWN; simukey=0; #endif switch(key) { MAC(case KEY_COMMAND+KEY_SHIFTED+KEY_3:) case KEY_PRINT_SCREEN: MAC(hide_cursor()); save_screen_shot(0); PA_DFX (pa_set_frontbuffer_current()); PA_DFX (pa_set_front_to_read()); MAC(show_cursor()); MAC(key_flush()); break; case KEY_CTRLED+KEY_D: #if defined(MACINTOSH) && defined(APPLE_DEMO) break; #endif if ( ((player_mode)&&(citem>0)) || ((demo_mode)&&(citem>=0)) ) { int x = 1; MAC(hide_cursor()); #ifdef WINDOWS mouse_set_mode(1); //re-enable centering mode HideCursorW(); #endif if (player_mode) x = nm_messagebox( NULL, 2, TXT_YES, TXT_NO, "%s %s?", TXT_DELETE_PILOT, &filenames[citem*14]+((player_mode && filenames[citem*14]=='$')?1:0) ); else if (demo_mode) x = nm_messagebox( NULL, 2, TXT_YES, TXT_NO, "%s %s?", TXT_DELETE_DEMO, &filenames[citem*14]+((demo_mode && filenames[citem*14]=='$')?1:0) ); MAC(show_cursor()); #ifdef WINDOWS mouse_set_mode(0); //disenable centering mode ShowCursorW(); #endif if (x==0) { char * p; int ret; char name[_MAX_PATH],dir[_MAX_DIR]; p = &filenames[(citem*14)+strlen(&filenames[citem*14])]; if (player_mode) *p = '.'; _splitpath(filespec,name,dir,NULL,NULL); strcat(name,dir); strcat(name,&filenames[citem*14]); #ifdef MACINTOSH { int i; char *p; if ( !strncmp(name, ".\\", 2) ) for (i = 0; i < strlen(name); i++) // don't subtract 1 from strlen to get the EOS marker name[i] = name[i+1]; while ( (p = strchr(name, '\\')) ) *p = ':'; } #endif ret = unlink( name ); if (player_mode) *p = 0; if ((!ret) && player_mode) { delete_player_saved_games( &filenames[citem*14] ); } if (ret) { if (player_mode) nm_messagebox( NULL, 1, TXT_OK, "%s %s %s", TXT_COULDNT, TXT_DELETE_PILOT, &filenames[citem*14]+((player_mode && filenames[citem*14]=='$')?1:0) ); else if (demo_mode) nm_messagebox( NULL, 1, TXT_OK, "%s %s %s", TXT_COULDNT, TXT_DELETE_DEMO, &filenames[citem*14]+((demo_mode && filenames[citem*14]=='$')?1:0) ); } else if (demo_mode) demos_deleted = 1; first_item = -1; goto ReadFileNames; } } break; case KEY_HOME: case KEY_PAD7: citem = 0; break; case KEY_END: case KEY_PAD1: citem = NumFiles-1; break; case KEY_UP: case KEY_PAD8: citem--; break; case KEY_DOWN: case KEY_PAD2: citem++; break; case KEY_PAGEDOWN: case KEY_PAD3: citem += NumFiles_displayed; break; case KEY_PAGEUP: case KEY_PAD9: citem -= NumFiles_displayed; break; case KEY_ESC: if (allow_abort_flag) { citem = -1; done = 1; } break; case KEY_ENTER: case KEY_PADENTER: done = 1; break; #ifdef MACINTOSH case KEY_COMMAND+KEY_Q: { extern void macintosh_quit(); if ( !(Game_mode & GM_MULTI) ) macintosh_quit(); show_cursor(); key_flush(); break; } #endif default: { int ascii = key_to_ascii(key); if ( ascii < 255 ) { int cc,cc1; cc=cc1=citem+1; if (cc1 < 0 ) cc1 = 0; if (cc1 >= NumFiles ) cc1 = 0; while(1) { if ( cc < 0 ) cc = 0; if ( cc >= NumFiles ) cc = 0; if ( citem == cc ) break; if ( toupper(filenames[cc*14]) == toupper(ascii) ) { citem = cc; break; } cc++; } } } } if ( done ) break; if (citem<0) citem=0; if (citem>=NumFiles) citem = NumFiles-1; if (citem< first_item) first_item = citem; if (citem>=( first_item+NumFiles_displayed)) { first_item = citem-NumFiles_displayed+1; } #ifdef WINDOWS if (NumFiles>first_item+NumFiles_displayed) show_down_arrow=1; else show_down_arrow=0; if (first_item>0) show_up_arrow=1; else show_up_arrow=0; #endif if (NumFiles <= NumFiles_displayed ) first_item = 0; if (first_item>NumFiles-NumFiles_displayed) { first_item = NumFiles-NumFiles_displayed; } if (first_item < 0 ) first_item = 0; #if defined(MACINTOSH) || defined(WINDOWS) WIN(Sleep(100)); if (mouse_state || mouse2_state) { int w, h, aw; mouse_get_pos(&mx, &my); for (i=first_item; ift_h + 2) + box_y; y2 = y1+h+1; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { if (i == citem && !mouse2_state) { break; } citem = i; dblclick_flag = 0; break; } } } if (!mouse_state && omouse_state) { int w, h, aw; gr_get_string_size(&filenames[citem*14], &w, &h, &aw ); mouse_get_pos(&mx, &my); x1 = box_x; x2 = box_x + box_w - 1; y1 = (citem-first_item)*(grd_curfont->ft_h + 2) + box_y; y2 = y1+h+1; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { if (dblclick_flag) done = 1; else dblclick_flag = 1; } } if ( !mouse_state && omouse_state ) { mouse_get_pos(&mx, &my); x1 = w_x + CLOSE_X + 2; x2 = x1 + CLOSE_SIZE - 2; y1 = w_y + CLOSE_Y + 2; y2 = y1 + CLOSE_SIZE - 2; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { citem = -1; done = 1; } #ifdef WINDOWS x1 = box_x-LHX(10); x2 = x1 + LHX(10); y1 = box_y; y2 = box_y+LHY(7); if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_up_arrow ) simukey = -1; y1 = box_y+box_h-LHY(7); y2 = box_y+box_h; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_down_arrow) simukey = 1; #endif } #endif WIN(DDGRLOCK(dd_grd_curcanv)); gr_setcolor( BM_XRGB(2,2,2)); //gr_rect( box_x - 1, box_y-2, box_x + box_w, box_y-2 ); gr_setcolor( BM_XRGB( 0,0,0) ); #ifdef WINDOWS if (ofirst_item != first_item || win_redraw) { win_redraw = 0; #else if (ofirst_item != first_item) { #endif MAC(hide_cursor()); WIN(HideCursorW()); gr_setcolor( BM_XRGB( 0,0,0) ); for (i=first_item; ift_h + 2) + box_y; if ( i >= NumFiles ) { gr_setcolor( BM_XRGB(5,5,5)); gr_rect( box_x + box_w, y-1, box_x + box_w, y + grd_curfont->ft_h + 1); //gr_rect( box_x, y + grd_curfont->ft_h + 2, box_x + box_w, y + grd_curfont->ft_h + 2); gr_setcolor( BM_XRGB(2,2,2)); gr_rect( box_x - 1, y - 1, box_x - 1, y + grd_curfont->ft_h + 2 ); gr_setcolor( BM_XRGB(0,0,0)); gr_rect( box_x, y - 1, box_x + box_w - 1, y + grd_curfont->ft_h + 1); } else { if ( i == citem ) grd_curcanv->cv_font = SELECTED_FONT; else grd_curcanv->cv_font = NORMAL_FONT; gr_get_string_size(&filenames[i*14], &w, &h, &aw ); gr_setcolor( BM_XRGB(5,5,5)); // gr_rect( box_x, y + h + 2, box_x + box_w, y + h + 2); gr_rect( box_x + box_w, y - 1, box_x + box_w, y + h + 1); gr_setcolor( BM_XRGB(2,2,2)); gr_rect( box_x - 1, y - 1, box_x - 1, y + h + 1); gr_setcolor( BM_XRGB(0,0,0)); gr_rect( box_x, y-1, box_x + box_w - 1, y + h + 1 ); gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0) ); } } WIN(ShowCursorW()); MAC(show_cursor()); } else if ( citem != ocitem ) { int w, h, aw, y; MAC(hide_cursor()); WIN(HideCursorW()); i = ocitem; if ( (i>=0) && (ift_h+2)+box_y; if ( i == citem ) grd_curcanv->cv_font = SELECTED_FONT; else grd_curcanv->cv_font = NORMAL_FONT; gr_get_string_size(&filenames[i*14], &w, &h, &aw ); gr_rect( box_x, y-1, box_x + box_w - 1, y + h + 1 ); gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0) ); } i = citem; if ( (i>=0) && (ift_h+2)+box_y; if ( i == citem ) grd_curcanv->cv_font = SELECTED_FONT; else grd_curcanv->cv_font = NORMAL_FONT; gr_get_string_size(&filenames[i*14], &w, &h, &aw ); gr_rect( box_x, y-1, box_x + box_x - 1, y + h + 1 ); gr_string( box_x + 5, y, (&filenames[i*14])+((player_mode && filenames[i*14]=='$')?1:0) ); } WIN(ShowCursorW()); MAC(show_cursor()); } #ifdef WINDOWS grd_curcanv->cv_font = NORMAL_FONT; if (show_up_arrow) gr_string( box_x-LHX(10), box_y ,UP_ARROW_MARKER ); else { No_darkening=1; nm_draw_background (box_x-LHX(10),box_y,box_x-2,box_y+LHY(7)); No_darkening=0; } if (show_down_arrow) gr_string( box_x-LHX(10), box_y+box_h-LHY(7) ,DOWN_ARROW_MARKER ); else { No_darkening=1; nm_draw_background (box_x-LHX(10),box_y+box_h-LHY(7),box_x-2,box_y+box_h); No_darkening=0; } #endif WIN(DDGRUNLOCK(dd_grd_curcanv)); } ExitFileMenuEarly: MAC(hide_cursor()); if ( citem > -1 ) { strncpy( filename, (&filenames[citem*14])+((player_mode && filenames[citem*14]=='$')?1:0), FILENAME_LEN ); exit_value = 1; } else { exit_value = 0; } ExitFileMenu: keyd_repeat = old_keyd_repeat; if ( initialized ) { if (Newdemo_state != ND_STATE_PLAYBACK) //horrible hack to prevent restore when screen has been cleared { WIN (DDGRLOCK(dd_grd_curcanv)); gr_bm_bitblt(w_w, w_h, w_x, w_y, 0, 0, bg.background, &grd_curcanv->cv_bitmap ); WIN (DDGRUNLOCK(dd_grd_curcanv)); } if ( bg.background != &VR_offscreen_buffer->cv_bitmap ) gr_free_bitmap(bg.background); #if 0 WINDOS( dd_gr_blt_notrans(dd_VR_offscreen_buffer, 0,0,_DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh, dd_grd_curcanv, 0,0,_DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh), gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(VR_offscreen_buffer->cv_bitmap), &(grd_curcanv->cv_bitmap) ) ); #endif WIN(DDGRRESTORE); } if ( filenames ) d_free(filenames); WIN(mouse_set_mode(1)); //re-enable centering mode WIN(HideCursorW()); return exit_value; } // Example listbox callback function... // int lb_callback( int * citem, int *nitems, char * items[], int *keypress ) // { // int i; // // if ( *keypress = KEY_CTRLED+KEY_D ) { // if ( *nitems > 1 ) { // unlink( items[*citem] ); // Delete the file // for (i=*citem; i<*nitems-1; i++ ) { // items[i] = items[i+1]; // } // *nitems = *nitems - 1; // d_free( items[*nitems] ); // items[*nitems] = NULL; // return 1; // redraw; // } // *keypress = 0; // } // return 0; // } #define LB_ITEMS_ON_SCREEN 8 int newmenu_listbox( char * title, int nitems, char * items[], int allow_abort_flag, int (*listbox_callback)( int * citem, int *nitems, char * items[], int *keypress ) ) { return newmenu_listbox1( title, nitems, items, allow_abort_flag, 0, listbox_callback ); } 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 ) ) { int i; int done, ocitem,citem, ofirst_item, first_item, key, redraw; int old_keyd_repeat = keyd_repeat; int width, height, wx, wy, title_height, border_size; int total_width,total_height; bkg bg; #if defined(MACINTOSH) || defined(WINDOWS) int mx, my, x1, x2, y1, y2, mouse_state, omouse_state; //, dblclick_flag; int close_x,close_y; int simukey=0,show_up_arrow=0,show_down_arrow=0; #endif WIN(int win_redraw=0); keyd_repeat = 1; PA_DFX (pa_set_frontbuffer_current()); PA_DFX (pa_set_front_to_read()); WIN(mouse_set_mode(0)); //disable centering mode // set_screen_mode(SCREEN_MENU); set_popup_screen(); #ifdef WINDOWS RePaintNewmenuListbox: dd_gr_set_current_canvas(NULL); #else gr_set_current_canvas(NULL); #endif grd_curcanv->cv_font = SUBTITLE_FONT; width = 0; for (i=0; i width ) width = w; } height = (grd_curfont->ft_h + 2) * LB_ITEMS_ON_SCREEN; { int w, h, aw; gr_get_string_size( title, &w, &h, &aw ); if ( w > width ) width = w; title_height = h + 5; } border_size = grd_curfont->ft_w; WIN (border_size=grd_curfont->ft_w*2); width += (grd_curfont->ft_w); if ( width > grd_curcanv->cv_w - (grd_curfont->ft_w * 3) ) width = grd_curcanv->cv_w - (grd_curfont->ft_w * 3); wx = (grd_curcanv->cv_bitmap.bm_w-width)/2; wy = (grd_curcanv->cv_bitmap.bm_h-(height+title_height))/2 + title_height; if ( wy < title_height ) wy = title_height; total_width = width+2*border_size; total_height = height+2*border_size+title_height; bg.saved = NULL; #if !defined(WINDOWS) if ( (VR_offscreen_buffer->cv_w >= total_width) && (VR_offscreen_buffer->cv_h >= total_height) ) bg.background = &VR_offscreen_buffer->cv_bitmap; else #endif //bg.background = gr_create_bitmap( width, (height + title_height) ); #if defined(POLY_ACC) bg.background = gr_create_bitmap2(total_width, total_height, grd_curcanv->cv_bitmap.bm_type, NULL); #else bg.background = gr_create_bitmap(total_width,total_height); #endif Assert( bg.background != NULL ); WIN (DDGRLOCK(dd_grd_curcanv)); //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 ); gr_bm_bitblt(total_width,total_height, 0, 0, wx-border_size, wy-title_height-border_size, &grd_curcanv->cv_bitmap, bg.background ); WIN (DDGRUNLOCK(dd_grd_curcanv)); #if 0 WINDOS( dd_gr_blt_notrans(dd_grd_curcanv, 0, 0, _DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh, dd_VR_offscreen_buffer, 0, 0, _DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh), gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(grd_curcanv->cv_bitmap), &(VR_offscreen_buffer->cv_bitmap) ) ); #endif nm_draw_background( wx-border_size,wy-title_height-border_size,wx+width+border_size-1,wy+height+border_size-1 ); WIN(DDGRLOCK(dd_grd_curcanv)); gr_string( 0x8000, wy - title_height, title ); WIN(DDGRUNLOCK(dd_grd_curcanv)); WIN(DDGRRESTORE); done = 0; citem = default_item; if ( citem < 0 ) citem = 0; if ( citem >= nitems ) citem = 0; first_item = -1; #if defined(MACINTOSH) || defined(WINDOWS) mouse_state = omouse_state = 0; //dblclick_flag = 0; close_x = wx-border_size; close_y = wy-title_height-border_size; draw_close_box(close_x,close_y); #ifdef MACINTOSH show_cursor(); #else ShowCursorW(); #endif #endif while(!done) { #ifdef WINDOWS MSG msg; DoMessageStuff(&msg); if (_RedrawScreen) { _RedrawScreen = FALSE; if ( bg.background != &VR_offscreen_buffer->cv_bitmap ) gr_free_bitmap(bg.background); win_redraw = 1; goto RePaintNewmenuListbox; } DDGRRESTORE; #endif ocitem = citem; ofirst_item = first_item; #if defined(MACINTOSH) || defined(WINDOWS) omouse_state = mouse_state; mouse_state = mouse_button_state(0); #endif //see if redbook song needs to be restarted songs_check_redbook_repeat(); key = key_inkey(); if ( listbox_callback ) redraw = (*listbox_callback)(&citem, &nitems, items, &key ); else redraw = 0; #ifdef WINDOWS if (win_redraw) { redraw = 1; win_redraw = 0; } #endif if ( key<-1 ) { citem = key; key = -1; done = 1; } #ifdef WINDOWS if (simukey==-1) key=KEY_UP; else if (simukey==1) key=KEY_DOWN; simukey=0; #endif switch(key) { MAC(case KEY_COMMAND+KEY_SHIFTED+KEY_3:) case KEY_PRINT_SCREEN: MAC(hide_cursor()); save_screen_shot(0); PA_DFX (pa_set_frontbuffer_current()); PA_DFX (pa_set_front_to_read()); MAC(show_cursor()); MAC(key_flush()); break; case KEY_HOME: case KEY_PAD7: citem = 0; break; case KEY_END: case KEY_PAD1: citem = nitems-1; break; case KEY_UP: case KEY_PAD8: citem--; break; case KEY_DOWN: case KEY_PAD2: citem++; break; case KEY_PAGEDOWN: case KEY_PAD3: citem += LB_ITEMS_ON_SCREEN; break; case KEY_PAGEUP: case KEY_PAD9: citem -= LB_ITEMS_ON_SCREEN; break; case KEY_ESC: if (allow_abort_flag) { citem = -1; done = 1; } break; case KEY_ENTER: case KEY_PADENTER: done = 1; break; #ifdef MACINTOSH case KEY_COMMAND+KEY_Q: { extern void macintosh_quit(); if ( !(Game_mode & GM_MULTI) ) macintosh_quit(); show_cursor(); key_flush(); break; } #endif default: if ( key > 0 ) { int ascii = key_to_ascii(key); if ( ascii < 255 ) { int cc,cc1; cc=cc1=citem+1; if (cc1 < 0 ) cc1 = 0; if (cc1 >= nitems ) cc1 = 0; while(1) { if ( cc < 0 ) cc = 0; if ( cc >= nitems ) cc = 0; if ( citem == cc ) break; if ( toupper( items[cc][0] ) == toupper(ascii) ) { citem = cc; break; } cc++; } } } } if ( done ) break; if (citem<0) citem=0; if (citem>=nitems) citem = nitems-1; if (citem< first_item) first_item = citem; if (citem>=( first_item+LB_ITEMS_ON_SCREEN)) first_item = citem-LB_ITEMS_ON_SCREEN+1; if (nitems <= LB_ITEMS_ON_SCREEN ) first_item = 0; if (first_item>nitems-LB_ITEMS_ON_SCREEN) first_item = nitems-LB_ITEMS_ON_SCREEN; if (first_item < 0 ) first_item = 0; #ifdef WINDOWS if (nitems>first_item+LB_ITEMS_ON_SCREEN) show_down_arrow=1; else show_down_arrow=0; if (first_item>0) show_up_arrow=1; else show_up_arrow=0; #endif #if defined(MACINTOSH) || defined(WINDOWS) WIN(Sleep(100)); if (mouse_state) { int w, h, aw; mouse_get_pos(&mx, &my); for (i=first_item; i nitems) break; gr_get_string_size(items[i], &w, &h, &aw ); x1 = wx; x2 = wx + width; y1 = (i-first_item)*(grd_curfont->ft_h+2)+wy; y2 = y1+h+1; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { //if (i == citem) { // break; //} //dblclick_flag= 0; citem = i; done = 1; break; } } } //no double-click stuff for listbox //@@if (!mouse_state && omouse_state) { //@@ int w, h, aw; //@@ //@@ gr_get_string_size(items[citem], &w, &h, &aw ); //@@ mouse_get_pos(&mx, &my); //@@ x1 = wx; //@@ x2 = wx + width; //@@ y1 = (citem-first_item)*(grd_curfont->ft_h+2)+wy; //@@ y2 = y1+h+1; //@@ if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { //@@ if (dblclick_flag) done = 1; //@@ } //@@} //check for close box clicked if ( !mouse_state && omouse_state ) { mouse_get_pos(&mx, &my); x1 = close_x + CLOSE_X + 2; x2 = x1 + CLOSE_SIZE - 2; y1 = close_y + CLOSE_Y + 2; y2 = y1 + CLOSE_SIZE - 2; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) ) { citem = -1; done = 1; } #ifdef WINDOWS x1 = wx-LHX(10); x2 = x1 + LHX(10); y1 = wy; y2 = wy+LHY(7); if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_up_arrow) simukey = -1; y1 = total_height-LHY(7); y2 = total_height; if ( ((mx > x1) && (mx < x2)) && ((my > y1) && (my < y2)) && show_down_arrow ) simukey = 1; #endif } #endif if ( (ofirst_item != first_item) || redraw) { MAC(hide_cursor()); WIN(HideCursorW()); WIN(DDGRLOCK(dd_grd_curcanv)); gr_setcolor( BM_XRGB( 0,0,0) ); for (i=first_item; ift_h+2)+wy; if ( i >= nitems ) { gr_setcolor( BM_XRGB(0,0,0)); gr_rect( wx, y-1, wx+width-1, y+grd_curfont->ft_h + 1 ); } else { if ( i == citem ) grd_curcanv->cv_font = SELECTED_FONT; else grd_curcanv->cv_font = NORMAL_FONT; gr_get_string_size(items[i], &w, &h, &aw ); gr_rect( wx, y-1, wx+width-1, y+h+1 ); gr_string( wx+5, y, items[i] ); } } // If Win95 port, draw up/down arrows on left side of menu #ifdef WINDOWS grd_curcanv->cv_font = NORMAL_FONT; if (show_up_arrow) gr_string( wx-LHX(10), wy ,UP_ARROW_MARKER ); else { No_darkening=1; nm_draw_background (wx-LHX(10),wy,wx-2,wy+LHY(7)); No_darkening=0; } if (show_down_arrow) gr_string( wx-LHX(10), wy+total_height-LHY(7) ,DOWN_ARROW_MARKER ); else { No_darkening=1; nm_draw_background (wx-LHX(10),wy+total_height-LHY(7),wx-2,wy+total_height); No_darkening=0; } #endif WIN(DDGRUNLOCK(dd_grd_curcanv)); WIN(ShowCursorW()); MAC(show_cursor()); gr_update(); } else if ( citem != ocitem ) { int w, h, aw, y; MAC(hide_cursor()); WIN(HideCursorW()); WIN(DDGRLOCK(dd_grd_curcanv)); i = ocitem; if ( (i>=0) && (ift_h+2)+wy; if ( i == citem ) grd_curcanv->cv_font = SELECTED_FONT; else grd_curcanv->cv_font = NORMAL_FONT; gr_get_string_size(items[i], &w, &h, &aw ); gr_rect( wx, y-1, wx+width-1, y+h+1 ); gr_string( wx+5, y, items[i] ); } i = citem; if ( (i>=0) && (ift_h+2)+wy; if ( i == citem ) grd_curcanv->cv_font = SELECTED_FONT; else grd_curcanv->cv_font = NORMAL_FONT; gr_get_string_size( items[i], &w, &h, &aw ); gr_rect( wx, y-1, wx+width-1, y+h ); gr_string( wx+5, y, items[i] ); } WIN(DDGRUNLOCK(dd_grd_curcanv)); WIN(ShowCursorW()); MAC(show_cursor()); gr_update(); } } MAC(hide_cursor()); WIN(HideCursorW()); keyd_repeat = old_keyd_repeat; WIN (DDGRLOCK(dd_grd_curcanv)); gr_bm_bitblt(total_width,total_height, wx-border_size, wy-title_height-border_size, 0, 0, bg.background, &grd_curcanv->cv_bitmap ); WIN (DDGRUNLOCK(dd_grd_curcanv)); if ( bg.background != &VR_offscreen_buffer->cv_bitmap ) gr_free_bitmap(bg.background); #if 0 WINDOS( dd_gr_blt_notrans(dd_VR_offscreen_buffer, 0,0,_DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh, dd_grd_curcanv, 0,0,_DDModeList[W95DisplayMode].rw, _DDModeList[W95DisplayMode].rh), gr_bm_bitblt(grd_curcanv->cv_w, grd_curcanv->cv_h, 0, 0, 0, 0, &(VR_offscreen_buffer->cv_bitmap), &(grd_curcanv->cv_bitmap) ) ); #endif WIN(DDGRRESTORE); WIN(mouse_set_mode(1)); //re-enable centering mode return citem; } int newmenu_filelist( char * title, char * filespec, char * filename ) { int i, NumFiles; char * Filenames[MAX_FILES]; char FilenameText[MAX_FILES][14]; FILEFINDSTRUCT find; NumFiles = 0; if( !FileFindFirst( filespec, &find ) ) { do { if (NumFiles -1 ) { strcpy( filename, Filenames[i] ); return 1; } return 0; } #ifdef NETWORK extern netgame_info Active_games[]; extern int NumActiveNetgames; void show_extra_netgame_info(int choice) { newmenu_item m[5]; char mtext[5][50]; int i,num=0; if (choice>=NumActiveNetgames) return; for (i=0;i<5;i++) { m[i].text=(char *)&mtext[i]; m[i].type=NM_TYPE_TEXT; } sprintf (mtext[num],"Game: %s",Active_games[choice].game_name); num++; sprintf (mtext[num],"Mission: %s",Active_games[choice].mission_title); num++; sprintf (mtext[num],"Current Level: %d",Active_games[choice].levelnum); num++; sprintf (mtext[num],"Difficulty: %s",MENU_DIFFICULTY_TEXT(Active_games[choice].difficulty)); num++; already_showing_info=1; newmenu_dotiny2( NULL, "Netgame Information", num, m, NULL); already_showing_info=0; } #endif // NETWORK /* Spiffy word wrap string formatting function */ void nm_wrap_text(char *dbuf, char *sbuf, int line_length) { int col; char *wordptr; char *tbuf; tbuf = (char *)d_malloc(strlen(sbuf)+1); strcpy(tbuf, sbuf); wordptr = strtok(tbuf, " "); if (!wordptr) return; col = 0; dbuf[0] = 0; while (wordptr) { col = col+strlen(wordptr)+1; if (col >=line_length) { col = 0; sprintf(dbuf, "%s\n%s ", dbuf, wordptr); } else { sprintf(dbuf, "%s%s ", dbuf, wordptr); } wordptr = strtok(NULL, " "); } d_free(tbuf); }