Allow inserting disks (actually works)

This commit is contained in:
simon.kagstrom 2009-05-10 08:12:16 +00:00
parent 0091a32d28
commit 06325b4a43
2 changed files with 30 additions and 18 deletions

View File

@ -11,10 +11,28 @@
#include "options.h" #include "options.h"
#include "gui.h" #include "gui.h"
#include "uae.h"
#include "menu.h" #include "menu.h"
extern SDL_Surface *screen; extern SDL_Surface *screen;
static const char *main_menu_messages[] = {
/*00*/ "Floppy",
/*01*/ "^|df0|df1|df2|df3",
/*02*/ "States",
/*03*/ "^|Load|Save|Delete",
/*04*/ "Keyboard",
/*05*/ "^|Type|Macro|Bind",
/*06*/ "#1-------------------------------------",
/*07*/ "Reset UAE",
/*08*/ "Networking",
/*09*/ "Options",
/*10*/ "Advanced Options",
/*11*/ "Help",
/*12*/ "Quit",
NULL
};
void gui_init (int argc, char **argv) void gui_init (int argc, char **argv)
{ {
@ -92,23 +110,13 @@ void gui_handle_events (void)
{ {
} }
static const char *main_menu_messages[] = { static void insert_floppy(int which)
/*00*/ "Floppy", {
/*01*/ "^|df0|df1|df2|df3", const char *name = menu_select_file(prefs_get_attr("floppy_path"));
/*02*/ "States",
/*03*/ "^|Load|Save|Delete",
/*04*/ "Keyboard",
/*05*/ "^|Type|Macro|Bind",
/*06*/ "#1-------------------------------------",
/*07*/ "Reset UAE",
/*08*/ "Networking",
/*09*/ "Options",
/*10*/ "Advanced Options",
/*11*/ "Help",
/*12*/ "Quit",
NULL
};
if (name != NULL)
strcpy (changed_prefs.df[which], name);
}
void gui_display(int shortcut) void gui_display(int shortcut)
{ {
@ -116,6 +124,7 @@ void gui_display(int shortcut)
int submenus[3]; int submenus[3];
int opt; int opt;
memset(submenus, 0, sizeof(submenus));
printf("Initing gui with %d\n", shortcut); printf("Initing gui with %d\n", shortcut);
printf("Al-mibb: Gui is display!\n"); printf("Al-mibb: Gui is display!\n");
@ -127,6 +136,10 @@ void gui_display(int shortcut)
opt = menu_select_title("Main menu", main_menu_messages, submenus); opt = menu_select_title("Main menu", main_menu_messages, submenus);
switch(opt) switch(opt)
{ {
case 0:
/* Insert floppy */
insert_floppy(submenus[0]);
break;
case 7: case 7:
uae_reset(1); uae_reset(1);
break; break;

View File

@ -263,8 +263,7 @@ static const char **get_file_list(const char *base_dir)
de = readdir(d)) de = readdir(d))
{ {
char buf[255]; char buf[255];
const char *exts[] = {".d64", ".D64", ".prg", ".PRG", const char *exts[] = {".adf", ".ADF", ".adz", ".ADZ",
".p00", ".P00", ".s00", ".S00",
".t64", ".T64", ".sav", ".SAV", NULL}; ".t64", ".T64", ".sav", ".SAV", NULL};
struct stat st; struct stat st;