mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-07 14:28:18 +01:00
menu improvements
This commit is contained in:
parent
66de3b0b6d
commit
15ebd5ff8c
@ -800,11 +800,13 @@ class GuiOptionBrowser : public GuiElement
|
|||||||
void ResetState();
|
void ResetState();
|
||||||
void SetFocus(int f);
|
void SetFocus(int f);
|
||||||
void Draw();
|
void Draw();
|
||||||
|
void TriggerUpdate();
|
||||||
void Update(GuiTrigger * t);
|
void Update(GuiTrigger * t);
|
||||||
GuiText * optionVal[PAGESIZE];
|
GuiText * optionVal[PAGESIZE];
|
||||||
protected:
|
protected:
|
||||||
int selectedItem;
|
int selectedItem;
|
||||||
int listOffset;
|
int listOffset;
|
||||||
|
bool listChanged;
|
||||||
|
|
||||||
OptionList * options;
|
OptionList * options;
|
||||||
int optionIndex[PAGESIZE];
|
int optionIndex[PAGESIZE];
|
||||||
|
@ -20,6 +20,7 @@ GuiOptionBrowser::GuiOptionBrowser(int w, int h, OptionList * l)
|
|||||||
options = l;
|
options = l;
|
||||||
selectable = true;
|
selectable = true;
|
||||||
listOffset = this->FindMenuItem(-1, 1);
|
listOffset = this->FindMenuItem(-1, 1);
|
||||||
|
listChanged = true; // trigger an initial list update
|
||||||
selectedItem = 0;
|
selectedItem = 0;
|
||||||
focus = 0; // allow focus
|
focus = 0; // allow focus
|
||||||
|
|
||||||
@ -76,7 +77,7 @@ GuiOptionBrowser::GuiOptionBrowser(int w, int h, OptionList * l)
|
|||||||
|
|
||||||
for(int i=0; i<PAGESIZE; i++)
|
for(int i=0; i<PAGESIZE; i++)
|
||||||
{
|
{
|
||||||
optionTxt[i] = new GuiText(options->name[i], 22, (GXColor){0, 0, 0, 0xff});
|
optionTxt[i] = new GuiText(NULL, 22, (GXColor){0, 0, 0, 0xff});
|
||||||
optionTxt[i]->SetAlignment(ALIGN_LEFT, ALIGN_MIDDLE);
|
optionTxt[i]->SetAlignment(ALIGN_LEFT, ALIGN_MIDDLE);
|
||||||
optionTxt[i]->SetPosition(8,0);
|
optionTxt[i]->SetPosition(8,0);
|
||||||
|
|
||||||
@ -228,6 +229,11 @@ void GuiOptionBrowser::Draw()
|
|||||||
this->UpdateEffects();
|
this->UpdateEffects();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GuiOptionBrowser::TriggerUpdate()
|
||||||
|
{
|
||||||
|
listChanged = true;
|
||||||
|
}
|
||||||
|
|
||||||
void GuiOptionBrowser::Update(GuiTrigger * t)
|
void GuiOptionBrowser::Update(GuiTrigger * t)
|
||||||
{
|
{
|
||||||
if(state == STATE_DISABLED || !t)
|
if(state == STATE_DISABLED || !t)
|
||||||
@ -239,28 +245,35 @@ void GuiOptionBrowser::Update(GuiTrigger * t)
|
|||||||
arrowDownBtn->Update(t);
|
arrowDownBtn->Update(t);
|
||||||
|
|
||||||
next = listOffset;
|
next = listOffset;
|
||||||
|
|
||||||
|
if(listChanged)
|
||||||
|
{
|
||||||
|
listChanged = false;
|
||||||
|
for(int i=0; i<PAGESIZE; i++)
|
||||||
|
{
|
||||||
|
if(next >= 0)
|
||||||
|
{
|
||||||
|
if(optionBtn[i]->GetState() == STATE_DISABLED)
|
||||||
|
{
|
||||||
|
optionBtn[i]->SetVisible(true);
|
||||||
|
optionBtn[i]->SetState(STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
|
||||||
|
optionTxt[i]->SetText(options->name[next]);
|
||||||
|
optionVal[i]->SetText(options->value[next]);
|
||||||
|
optionIndex[i] = next;
|
||||||
|
next = this->FindMenuItem(next, 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
optionBtn[i]->SetVisible(false);
|
||||||
|
optionBtn[i]->SetState(STATE_DISABLED);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for(int i=0; i<PAGESIZE; i++)
|
for(int i=0; i<PAGESIZE; i++)
|
||||||
{
|
{
|
||||||
if(next >= 0)
|
|
||||||
{
|
|
||||||
if(optionBtn[i]->GetState() == STATE_DISABLED)
|
|
||||||
{
|
|
||||||
optionBtn[i]->SetVisible(true);
|
|
||||||
optionBtn[i]->SetState(STATE_DEFAULT);
|
|
||||||
}
|
|
||||||
|
|
||||||
optionTxt[i]->SetText(options->name[next]);
|
|
||||||
optionVal[i]->SetText(options->value[next]);
|
|
||||||
optionIndex[i] = next;
|
|
||||||
next = this->FindMenuItem(next, 1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
optionBtn[i]->SetVisible(false);
|
|
||||||
optionBtn[i]->SetState(STATE_DISABLED);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(i != selectedItem && optionBtn[i]->GetState() == STATE_SELECTED)
|
if(i != selectedItem && optionBtn[i]->GetState() == STATE_SELECTED)
|
||||||
optionBtn[i]->ResetState();
|
optionBtn[i]->ResetState();
|
||||||
else if(focus && i == selectedItem && optionBtn[i]->GetState() == STATE_DEFAULT)
|
else if(focus && i == selectedItem && optionBtn[i]->GetState() == STATE_DEFAULT)
|
||||||
@ -292,6 +305,7 @@ void GuiOptionBrowser::Update(GuiTrigger * t)
|
|||||||
{
|
{
|
||||||
// move list down by 1
|
// move list down by 1
|
||||||
listOffset = this->FindMenuItem(listOffset, 1);
|
listOffset = this->FindMenuItem(listOffset, 1);
|
||||||
|
listChanged = true;
|
||||||
}
|
}
|
||||||
else if(optionBtn[selectedItem+1]->IsVisible())
|
else if(optionBtn[selectedItem+1]->IsVisible())
|
||||||
{
|
{
|
||||||
@ -312,6 +326,7 @@ void GuiOptionBrowser::Update(GuiTrigger * t)
|
|||||||
{
|
{
|
||||||
// move list up by 1
|
// move list up by 1
|
||||||
listOffset = prev;
|
listOffset = prev;
|
||||||
|
listChanged = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -205,8 +205,11 @@ WindowPrompt(const char *title, const char *msg, const char *btn1Label, const ch
|
|||||||
mainWindow->SetState(STATE_DISABLED);
|
mainWindow->SetState(STATE_DISABLED);
|
||||||
mainWindow->Append(&promptWindow);
|
mainWindow->Append(&promptWindow);
|
||||||
mainWindow->ChangeFocus(&promptWindow);
|
mainWindow->ChangeFocus(&promptWindow);
|
||||||
btn1.ResetState();
|
if(btn2Label)
|
||||||
btn2.SetState(STATE_SELECTED);
|
{
|
||||||
|
btn1.ResetState();
|
||||||
|
btn2.SetState(STATE_SELECTED);
|
||||||
|
}
|
||||||
ResumeGui();
|
ResumeGui();
|
||||||
|
|
||||||
while(choice == -1)
|
while(choice == -1)
|
||||||
@ -2079,6 +2082,7 @@ static int MenuGameCheats()
|
|||||||
{
|
{
|
||||||
FCEUI_ToggleCheat(ret);
|
FCEUI_ToggleCheat(ret);
|
||||||
sprintf (options.value[ret], "%s", options.value[ret][1] == 'f' ? "On" : "Off");
|
sprintf (options.value[ret], "%s", options.value[ret][1] == 'f' ? "On" : "Off");
|
||||||
|
optionBrowser.TriggerUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(backBtn.GetState() == STATE_CLICKED)
|
if(backBtn.GetState() == STATE_CLICKED)
|
||||||
@ -2507,6 +2511,7 @@ static int MenuSettingsMappingsMap()
|
|||||||
int menu = MENU_NONE;
|
int menu = MENU_NONE;
|
||||||
int ret,i,j;
|
int ret,i,j;
|
||||||
OptionList options;
|
OptionList options;
|
||||||
|
bool firstRun = true;
|
||||||
|
|
||||||
char menuTitle[100];
|
char menuTitle[100];
|
||||||
char menuSubtitle[100];
|
char menuSubtitle[100];
|
||||||
@ -2609,32 +2614,6 @@ static int MenuSettingsMappingsMap()
|
|||||||
{
|
{
|
||||||
usleep(THREAD_SLEEP);
|
usleep(THREAD_SLEEP);
|
||||||
|
|
||||||
for(i=0; i < options.length; i++)
|
|
||||||
{
|
|
||||||
for(j=0; j < ctrlr_def[mapMenuCtrl].num_btns; j++)
|
|
||||||
{
|
|
||||||
if(btnmap[mapMenuCtrlNES][mapMenuCtrl][i] == 0)
|
|
||||||
{
|
|
||||||
options.value[i][0] = 0;
|
|
||||||
}
|
|
||||||
else if(btnmap[mapMenuCtrlNES][mapMenuCtrl][i] ==
|
|
||||||
ctrlr_def[mapMenuCtrl].map[j].btn)
|
|
||||||
{
|
|
||||||
if(strcmp(options.value[i], ctrlr_def[mapMenuCtrl].map[j].name) != 0)
|
|
||||||
sprintf(options.value[i], ctrlr_def[mapMenuCtrl].map[j].name);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = optionBrowser.GetClickedOption();
|
|
||||||
|
|
||||||
if(ret >= 0)
|
|
||||||
{
|
|
||||||
// get a button selection from user
|
|
||||||
btnmap[mapMenuCtrlNES][mapMenuCtrl][ret] = ButtonMappingWindow();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(backBtn.GetState() == STATE_CLICKED)
|
if(backBtn.GetState() == STATE_CLICKED)
|
||||||
{
|
{
|
||||||
menu = MENU_GAMESETTINGS_MAPPINGS_CTRL;
|
menu = MENU_GAMESETTINGS_MAPPINGS_CTRL;
|
||||||
@ -2650,7 +2629,42 @@ static int MenuSettingsMappingsMap()
|
|||||||
"No");
|
"No");
|
||||||
|
|
||||||
if(choice == 1)
|
if(choice == 1)
|
||||||
|
{
|
||||||
ResetControls(mapMenuCtrlNES, mapMenuCtrl);
|
ResetControls(mapMenuCtrlNES, mapMenuCtrl);
|
||||||
|
firstRun = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = optionBrowser.GetClickedOption();
|
||||||
|
|
||||||
|
if(ret >= 0)
|
||||||
|
{
|
||||||
|
// get a button selection from user
|
||||||
|
btnmap[mapMenuCtrlNES][mapMenuCtrl][ret] = ButtonMappingWindow();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(ret >= 0 || firstRun)
|
||||||
|
{
|
||||||
|
firstRun = false;
|
||||||
|
|
||||||
|
for(i=0; i < options.length; i++)
|
||||||
|
{
|
||||||
|
for(j=0; j < ctrlr_def[mapMenuCtrl].num_btns; j++)
|
||||||
|
{
|
||||||
|
if(btnmap[mapMenuCtrlNES][mapMenuCtrl][i] == 0)
|
||||||
|
{
|
||||||
|
options.value[i][0] = 0;
|
||||||
|
}
|
||||||
|
else if(btnmap[mapMenuCtrlNES][mapMenuCtrl][i] ==
|
||||||
|
ctrlr_def[mapMenuCtrl].map[j].btn)
|
||||||
|
{
|
||||||
|
if(strcmp(options.value[i], ctrlr_def[mapMenuCtrl].map[j].name) != 0)
|
||||||
|
sprintf(options.value[i], ctrlr_def[mapMenuCtrl].map[j].name);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
optionBrowser.TriggerUpdate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
HaltGui();
|
HaltGui();
|
||||||
@ -2873,6 +2887,7 @@ static int MenuSettingsVideo()
|
|||||||
int ret;
|
int ret;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
OptionList options;
|
OptionList options;
|
||||||
|
bool firstRun = true;
|
||||||
|
|
||||||
sprintf(options.name[i++], "Rendering");
|
sprintf(options.name[i++], "Rendering");
|
||||||
sprintf(options.name[i++], "Scaling");
|
sprintf(options.name[i++], "Scaling");
|
||||||
@ -2938,55 +2953,6 @@ static int MenuSettingsVideo()
|
|||||||
{
|
{
|
||||||
usleep(THREAD_SLEEP);
|
usleep(THREAD_SLEEP);
|
||||||
|
|
||||||
// don't allow original render mode if progressive video mode detected
|
|
||||||
if (GCSettings.render==0 && progressive)
|
|
||||||
GCSettings.render++;
|
|
||||||
|
|
||||||
if (GCSettings.render == 0)
|
|
||||||
sprintf (options.value[0], "Original");
|
|
||||||
else if (GCSettings.render == 1)
|
|
||||||
sprintf (options.value[0], "Filtered");
|
|
||||||
else if (GCSettings.render == 2)
|
|
||||||
sprintf (options.value[0], "Unfiltered");
|
|
||||||
|
|
||||||
if(GCSettings.widescreen)
|
|
||||||
sprintf (options.value[1], "16:9 Correction");
|
|
||||||
else
|
|
||||||
sprintf (options.value[1], "Default");
|
|
||||||
|
|
||||||
sprintf (options.value[2], "%s", GetFilterName((RenderFilter)GCSettings.FilterMethod));
|
|
||||||
|
|
||||||
switch(GCSettings.hideoverscan)
|
|
||||||
{
|
|
||||||
case 0: sprintf (options.value[3], "Off"); break;
|
|
||||||
case 1: sprintf (options.value[3], "Vertical"); break;
|
|
||||||
case 2: sprintf (options.value[3], "Horizontal"); break;
|
|
||||||
case 3: sprintf (options.value[3], "Both"); break;
|
|
||||||
}
|
|
||||||
|
|
||||||
sprintf (options.value[4], "%s",
|
|
||||||
GCSettings.currpal ? palettes[GCSettings.currpal-1].name : "Default");
|
|
||||||
|
|
||||||
sprintf (options.value[5], "%s", GCSettings.timing == 1 ? "PAL" : "NTSC");
|
|
||||||
sprintf (options.value[6], "%.2f%%", GCSettings.ZoomLevel*100);
|
|
||||||
sprintf (options.value[7], "%d, %d", GCSettings.xshift, GCSettings.yshift);
|
|
||||||
sprintf (options.value[8], "%s", GCSettings.crosshair == 1 ? "On" : "Off");
|
|
||||||
sprintf (options.value[9], "%s", GCSettings.spritelimit == 1 ? "On" : "Off");
|
|
||||||
|
|
||||||
switch(GCSettings.videomode)
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
sprintf (options.value[10], "Automatic (Recommended)"); break;
|
|
||||||
case 1:
|
|
||||||
sprintf (options.value[10], "NTSC (480i)"); break;
|
|
||||||
case 2:
|
|
||||||
sprintf (options.value[10], "Progressive (480p)"); break;
|
|
||||||
case 3:
|
|
||||||
sprintf (options.value[10], "PAL (50Hz)"); break;
|
|
||||||
case 4:
|
|
||||||
sprintf (options.value[10], "PAL (60Hz)"); break;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = optionBrowser.GetClickedOption();
|
ret = optionBrowser.GetClickedOption();
|
||||||
|
|
||||||
switch (ret)
|
switch (ret)
|
||||||
@ -3045,6 +3011,61 @@ static int MenuSettingsVideo()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ret >= 0 || firstRun)
|
||||||
|
{
|
||||||
|
firstRun = false;
|
||||||
|
|
||||||
|
// don't allow original render mode if progressive video mode detected
|
||||||
|
if (GCSettings.render==0 && progressive)
|
||||||
|
GCSettings.render++;
|
||||||
|
|
||||||
|
if (GCSettings.render == 0)
|
||||||
|
sprintf (options.value[0], "Original");
|
||||||
|
else if (GCSettings.render == 1)
|
||||||
|
sprintf (options.value[0], "Filtered");
|
||||||
|
else if (GCSettings.render == 2)
|
||||||
|
sprintf (options.value[0], "Unfiltered");
|
||||||
|
|
||||||
|
if(GCSettings.widescreen)
|
||||||
|
sprintf (options.value[1], "16:9 Correction");
|
||||||
|
else
|
||||||
|
sprintf (options.value[1], "Default");
|
||||||
|
|
||||||
|
sprintf (options.value[2], "%s", GetFilterName((RenderFilter)GCSettings.FilterMethod));
|
||||||
|
|
||||||
|
switch(GCSettings.hideoverscan)
|
||||||
|
{
|
||||||
|
case 0: sprintf (options.value[3], "Off"); break;
|
||||||
|
case 1: sprintf (options.value[3], "Vertical"); break;
|
||||||
|
case 2: sprintf (options.value[3], "Horizontal"); break;
|
||||||
|
case 3: sprintf (options.value[3], "Both"); break;
|
||||||
|
}
|
||||||
|
|
||||||
|
sprintf (options.value[4], "%s",
|
||||||
|
GCSettings.currpal ? palettes[GCSettings.currpal-1].name : "Default");
|
||||||
|
|
||||||
|
sprintf (options.value[5], "%s", GCSettings.timing == 1 ? "PAL" : "NTSC");
|
||||||
|
sprintf (options.value[6], "%.2f%%", GCSettings.ZoomLevel*100);
|
||||||
|
sprintf (options.value[7], "%d, %d", GCSettings.xshift, GCSettings.yshift);
|
||||||
|
sprintf (options.value[8], "%s", GCSettings.crosshair == 1 ? "On" : "Off");
|
||||||
|
sprintf (options.value[9], "%s", GCSettings.spritelimit == 1 ? "On" : "Off");
|
||||||
|
|
||||||
|
switch(GCSettings.videomode)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
sprintf (options.value[10], "Automatic (Recommended)"); break;
|
||||||
|
case 1:
|
||||||
|
sprintf (options.value[10], "NTSC (480i)"); break;
|
||||||
|
case 2:
|
||||||
|
sprintf (options.value[10], "Progressive (480p)"); break;
|
||||||
|
case 3:
|
||||||
|
sprintf (options.value[10], "PAL (50Hz)"); break;
|
||||||
|
case 4:
|
||||||
|
sprintf (options.value[10], "PAL (60Hz)"); break;
|
||||||
|
}
|
||||||
|
optionBrowser.TriggerUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
if(backBtn.GetState() == STATE_CLICKED)
|
if(backBtn.GetState() == STATE_CLICKED)
|
||||||
{
|
{
|
||||||
menu = MENU_GAMESETTINGS;
|
menu = MENU_GAMESETTINGS;
|
||||||
@ -3234,6 +3255,7 @@ static int MenuSettingsFile()
|
|||||||
int menu = MENU_NONE;
|
int menu = MENU_NONE;
|
||||||
int ret;
|
int ret;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
bool firstRun = true;
|
||||||
OptionList options;
|
OptionList options;
|
||||||
sprintf(options.name[i++], "Load Device");
|
sprintf(options.name[i++], "Load Device");
|
||||||
sprintf(options.name[i++], "Save Device");
|
sprintf(options.name[i++], "Save Device");
|
||||||
@ -3244,7 +3266,6 @@ static int MenuSettingsFile()
|
|||||||
sprintf(options.name[i++], "Auto Save");
|
sprintf(options.name[i++], "Auto Save");
|
||||||
sprintf(options.name[i++], "Verify MC Saves");
|
sprintf(options.name[i++], "Verify MC Saves");
|
||||||
options.length = i;
|
options.length = i;
|
||||||
options.name[4][0] = 0; // hide cheats folder (not implemented)
|
|
||||||
|
|
||||||
for(i=0; i < options.length; i++)
|
for(i=0; i < options.length; i++)
|
||||||
options.value[i][0] = 0;
|
options.value[i][0] = 0;
|
||||||
@ -3295,72 +3316,6 @@ static int MenuSettingsFile()
|
|||||||
{
|
{
|
||||||
usleep(THREAD_SLEEP);
|
usleep(THREAD_SLEEP);
|
||||||
|
|
||||||
// some load/save methods are not implemented - here's where we skip them
|
|
||||||
// they need to be skipped in the order they were enumerated in snes9xGX.h
|
|
||||||
|
|
||||||
// no USB ports on GameCube
|
|
||||||
#ifdef HW_DOL
|
|
||||||
if(GCSettings.LoadMethod == METHOD_USB)
|
|
||||||
GCSettings.LoadMethod++;
|
|
||||||
if(GCSettings.SaveMethod == METHOD_USB)
|
|
||||||
GCSettings.SaveMethod++;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// saving to DVD is impossible
|
|
||||||
if(GCSettings.SaveMethod == METHOD_DVD)
|
|
||||||
GCSettings.SaveMethod++;
|
|
||||||
|
|
||||||
// disable SMB in GC mode (stalls out)
|
|
||||||
#ifdef HW_DOL
|
|
||||||
if(GCSettings.LoadMethod == METHOD_SMB)
|
|
||||||
GCSettings.LoadMethod++;
|
|
||||||
if(GCSettings.SaveMethod == METHOD_SMB)
|
|
||||||
GCSettings.SaveMethod++;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// disable MC saving in Wii mode - does not work for some reason!
|
|
||||||
#ifdef HW_RVL
|
|
||||||
if(GCSettings.SaveMethod == METHOD_MC_SLOTA)
|
|
||||||
GCSettings.SaveMethod++;
|
|
||||||
if(GCSettings.SaveMethod == METHOD_MC_SLOTB)
|
|
||||||
GCSettings.SaveMethod++;
|
|
||||||
options.name[7][0] = 0;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// correct load/save methods out of bounds
|
|
||||||
if(GCSettings.LoadMethod > 4)
|
|
||||||
GCSettings.LoadMethod = 0;
|
|
||||||
if(GCSettings.SaveMethod > 6)
|
|
||||||
GCSettings.SaveMethod = 0;
|
|
||||||
|
|
||||||
if (GCSettings.LoadMethod == METHOD_AUTO) sprintf (options.value[0],"Auto Detect");
|
|
||||||
else if (GCSettings.LoadMethod == METHOD_SD) sprintf (options.value[0],"SD");
|
|
||||||
else if (GCSettings.LoadMethod == METHOD_USB) sprintf (options.value[0],"USB");
|
|
||||||
else if (GCSettings.LoadMethod == METHOD_DVD) sprintf (options.value[0],"DVD");
|
|
||||||
else if (GCSettings.LoadMethod == METHOD_SMB) sprintf (options.value[0],"Network");
|
|
||||||
|
|
||||||
if (GCSettings.SaveMethod == METHOD_AUTO) sprintf (options.value[1],"Auto Detect");
|
|
||||||
else if (GCSettings.SaveMethod == METHOD_SD) sprintf (options.value[1],"SD");
|
|
||||||
else if (GCSettings.SaveMethod == METHOD_USB) sprintf (options.value[1],"USB");
|
|
||||||
else if (GCSettings.SaveMethod == METHOD_SMB) sprintf (options.value[1],"Network");
|
|
||||||
else if (GCSettings.SaveMethod == METHOD_MC_SLOTA) sprintf (options.value[1],"MC Slot A");
|
|
||||||
else if (GCSettings.SaveMethod == METHOD_MC_SLOTB) sprintf (options.value[1],"MC Slot B");
|
|
||||||
|
|
||||||
snprintf (options.value[2], 30, "%s", GCSettings.LoadFolder);
|
|
||||||
snprintf (options.value[3], 30, "%s", GCSettings.SaveFolder);
|
|
||||||
//snprintf (options.value[4], 30, "%s", GCSettings.CheatFolder);
|
|
||||||
|
|
||||||
if (GCSettings.AutoLoad == 0) sprintf (options.value[5],"Off");
|
|
||||||
else if (GCSettings.AutoLoad == 1) sprintf (options.value[5],"RAM");
|
|
||||||
else if (GCSettings.AutoLoad == 2) sprintf (options.value[5],"State");
|
|
||||||
|
|
||||||
if (GCSettings.AutoSave == 0) sprintf (options.value[6],"Off");
|
|
||||||
else if (GCSettings.AutoSave == 1) sprintf (options.value[6],"RAM");
|
|
||||||
else if (GCSettings.AutoSave == 2) sprintf (options.value[6],"State");
|
|
||||||
else if (GCSettings.AutoSave == 3) sprintf (options.value[6],"Both");
|
|
||||||
|
|
||||||
sprintf (options.value[7], "%s", GCSettings.VerifySaves == true ? "On" : "Off");
|
|
||||||
|
|
||||||
ret = optionBrowser.GetClickedOption();
|
ret = optionBrowser.GetClickedOption();
|
||||||
|
|
||||||
switch (ret)
|
switch (ret)
|
||||||
@ -3402,6 +3357,79 @@ static int MenuSettingsFile()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ret >= 0 || firstRun)
|
||||||
|
{
|
||||||
|
firstRun = false;
|
||||||
|
|
||||||
|
// some load/save methods are not implemented - here's where we skip them
|
||||||
|
// they need to be skipped in the order they were enumerated in snes9xGX.h
|
||||||
|
|
||||||
|
// no USB ports on GameCube
|
||||||
|
#ifdef HW_DOL
|
||||||
|
if(GCSettings.LoadMethod == METHOD_USB)
|
||||||
|
GCSettings.LoadMethod++;
|
||||||
|
if(GCSettings.SaveMethod == METHOD_USB)
|
||||||
|
GCSettings.SaveMethod++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// saving to DVD is impossible
|
||||||
|
if(GCSettings.SaveMethod == METHOD_DVD)
|
||||||
|
GCSettings.SaveMethod++;
|
||||||
|
|
||||||
|
// disable SMB in GC mode (stalls out)
|
||||||
|
#ifdef HW_DOL
|
||||||
|
if(GCSettings.LoadMethod == METHOD_SMB)
|
||||||
|
GCSettings.LoadMethod++;
|
||||||
|
if(GCSettings.SaveMethod == METHOD_SMB)
|
||||||
|
GCSettings.SaveMethod++;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// disable MC saving in Wii mode - does not work for some reason!
|
||||||
|
#ifdef HW_RVL
|
||||||
|
if(GCSettings.SaveMethod == METHOD_MC_SLOTA)
|
||||||
|
GCSettings.SaveMethod++;
|
||||||
|
if(GCSettings.SaveMethod == METHOD_MC_SLOTB)
|
||||||
|
GCSettings.SaveMethod++;
|
||||||
|
options.name[7][0] = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// correct load/save methods out of bounds
|
||||||
|
if(GCSettings.LoadMethod > 4)
|
||||||
|
GCSettings.LoadMethod = 0;
|
||||||
|
if(GCSettings.SaveMethod > 6)
|
||||||
|
GCSettings.SaveMethod = 0;
|
||||||
|
|
||||||
|
if (GCSettings.LoadMethod == METHOD_AUTO) sprintf (options.value[0],"Auto Detect");
|
||||||
|
else if (GCSettings.LoadMethod == METHOD_SD) sprintf (options.value[0],"SD");
|
||||||
|
else if (GCSettings.LoadMethod == METHOD_USB) sprintf (options.value[0],"USB");
|
||||||
|
else if (GCSettings.LoadMethod == METHOD_DVD) sprintf (options.value[0],"DVD");
|
||||||
|
else if (GCSettings.LoadMethod == METHOD_SMB) sprintf (options.value[0],"Network");
|
||||||
|
|
||||||
|
if (GCSettings.SaveMethod == METHOD_AUTO) sprintf (options.value[1],"Auto Detect");
|
||||||
|
else if (GCSettings.SaveMethod == METHOD_SD) sprintf (options.value[1],"SD");
|
||||||
|
else if (GCSettings.SaveMethod == METHOD_USB) sprintf (options.value[1],"USB");
|
||||||
|
else if (GCSettings.SaveMethod == METHOD_SMB) sprintf (options.value[1],"Network");
|
||||||
|
else if (GCSettings.SaveMethod == METHOD_MC_SLOTA) sprintf (options.value[1],"MC Slot A");
|
||||||
|
else if (GCSettings.SaveMethod == METHOD_MC_SLOTB) sprintf (options.value[1],"MC Slot B");
|
||||||
|
|
||||||
|
snprintf (options.value[2], 30, "%s", GCSettings.LoadFolder);
|
||||||
|
snprintf (options.value[3], 30, "%s", GCSettings.SaveFolder);
|
||||||
|
snprintf (options.value[4], 30, "%s", GCSettings.CheatFolder);
|
||||||
|
|
||||||
|
if (GCSettings.AutoLoad == 0) sprintf (options.value[5],"Off");
|
||||||
|
else if (GCSettings.AutoLoad == 1) sprintf (options.value[5],"RAM");
|
||||||
|
else if (GCSettings.AutoLoad == 2) sprintf (options.value[5],"State");
|
||||||
|
|
||||||
|
if (GCSettings.AutoSave == 0) sprintf (options.value[6],"Off");
|
||||||
|
else if (GCSettings.AutoSave == 1) sprintf (options.value[6],"RAM");
|
||||||
|
else if (GCSettings.AutoSave == 2) sprintf (options.value[6],"State");
|
||||||
|
else if (GCSettings.AutoSave == 3) sprintf (options.value[6],"Both");
|
||||||
|
|
||||||
|
sprintf (options.value[7], "%s", GCSettings.VerifySaves == true ? "On" : "Off");
|
||||||
|
|
||||||
|
optionBrowser.TriggerUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
if(backBtn.GetState() == STATE_CLICKED)
|
if(backBtn.GetState() == STATE_CLICKED)
|
||||||
{
|
{
|
||||||
menu = MENU_SETTINGS;
|
menu = MENU_SETTINGS;
|
||||||
@ -3423,6 +3451,7 @@ static int MenuSettingsMenu()
|
|||||||
int menu = MENU_NONE;
|
int menu = MENU_NONE;
|
||||||
int ret;
|
int ret;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
bool firstRun = true;
|
||||||
OptionList options;
|
OptionList options;
|
||||||
|
|
||||||
sprintf(options.name[i++], "Exit Action");
|
sprintf(options.name[i++], "Exit Action");
|
||||||
@ -3480,49 +3509,6 @@ static int MenuSettingsMenu()
|
|||||||
{
|
{
|
||||||
usleep(THREAD_SLEEP);
|
usleep(THREAD_SLEEP);
|
||||||
|
|
||||||
#ifdef HW_RVL
|
|
||||||
if (GCSettings.ExitAction == 1)
|
|
||||||
sprintf (options.value[0], "Return to Wii Menu");
|
|
||||||
else if (GCSettings.ExitAction == 2)
|
|
||||||
sprintf (options.value[0], "Power off Wii");
|
|
||||||
else if (GCSettings.ExitAction == 3)
|
|
||||||
sprintf (options.value[0], "Return to Loader");
|
|
||||||
else
|
|
||||||
sprintf (options.value[0], "Auto");
|
|
||||||
#else // GameCube
|
|
||||||
if(GCSettings.ExitAction > 1)
|
|
||||||
GCSettings.ExitAction = 0;
|
|
||||||
if (GCSettings.ExitAction == 0)
|
|
||||||
sprintf (options.value[0], "Return to Loader");
|
|
||||||
else
|
|
||||||
sprintf (options.value[0], "Reboot");
|
|
||||||
|
|
||||||
options.name[1][0] = 0; // Wiimote
|
|
||||||
options.name[2][0] = 0; // Music
|
|
||||||
options.name[3][0] = 0; // Sound Effects
|
|
||||||
options.name[4][0] = 0; // Rumble
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (GCSettings.WiimoteOrientation == 0)
|
|
||||||
sprintf (options.value[1], "Vertical");
|
|
||||||
else if (GCSettings.WiimoteOrientation == 1)
|
|
||||||
sprintf (options.value[1], "Horizontal");
|
|
||||||
|
|
||||||
if(GCSettings.MusicVolume > 0)
|
|
||||||
sprintf(options.value[2], "%d%%", GCSettings.MusicVolume);
|
|
||||||
else
|
|
||||||
sprintf(options.value[2], "Mute");
|
|
||||||
|
|
||||||
if(GCSettings.SFXVolume > 0)
|
|
||||||
sprintf(options.value[3], "%d%%", GCSettings.SFXVolume);
|
|
||||||
else
|
|
||||||
sprintf(options.value[3], "Mute");
|
|
||||||
|
|
||||||
if (GCSettings.Rumble == 1)
|
|
||||||
sprintf (options.value[4], "Enabled");
|
|
||||||
else
|
|
||||||
sprintf (options.value[4], "Disabled");
|
|
||||||
|
|
||||||
ret = optionBrowser.GetClickedOption();
|
ret = optionBrowser.GetClickedOption();
|
||||||
|
|
||||||
switch (ret)
|
switch (ret)
|
||||||
@ -3551,6 +3537,56 @@ static int MenuSettingsMenu()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ret >= 0 || firstRun)
|
||||||
|
{
|
||||||
|
firstRun = false;
|
||||||
|
|
||||||
|
#ifdef HW_RVL
|
||||||
|
if (GCSettings.ExitAction == 1)
|
||||||
|
sprintf (options.value[0], "Return to Wii Menu");
|
||||||
|
else if (GCSettings.ExitAction == 2)
|
||||||
|
sprintf (options.value[0], "Power off Wii");
|
||||||
|
else if (GCSettings.ExitAction == 3)
|
||||||
|
sprintf (options.value[0], "Return to Loader");
|
||||||
|
else
|
||||||
|
sprintf (options.value[0], "Auto");
|
||||||
|
#else // GameCube
|
||||||
|
if(GCSettings.ExitAction > 1)
|
||||||
|
GCSettings.ExitAction = 0;
|
||||||
|
if (GCSettings.ExitAction == 0)
|
||||||
|
sprintf (options.value[0], "Return to Loader");
|
||||||
|
else
|
||||||
|
sprintf (options.value[0], "Reboot");
|
||||||
|
|
||||||
|
options.name[1][0] = 0; // Wiimote
|
||||||
|
options.name[2][0] = 0; // Music
|
||||||
|
options.name[3][0] = 0; // Sound Effects
|
||||||
|
options.name[4][0] = 0; // Rumble
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (GCSettings.WiimoteOrientation == 0)
|
||||||
|
sprintf (options.value[1], "Vertical");
|
||||||
|
else if (GCSettings.WiimoteOrientation == 1)
|
||||||
|
sprintf (options.value[1], "Horizontal");
|
||||||
|
|
||||||
|
if(GCSettings.MusicVolume > 0)
|
||||||
|
sprintf(options.value[2], "%d%%", GCSettings.MusicVolume);
|
||||||
|
else
|
||||||
|
sprintf(options.value[2], "Mute");
|
||||||
|
|
||||||
|
if(GCSettings.SFXVolume > 0)
|
||||||
|
sprintf(options.value[3], "%d%%", GCSettings.SFXVolume);
|
||||||
|
else
|
||||||
|
sprintf(options.value[3], "Mute");
|
||||||
|
|
||||||
|
if (GCSettings.Rumble == 1)
|
||||||
|
sprintf (options.value[4], "Enabled");
|
||||||
|
else
|
||||||
|
sprintf (options.value[4], "Disabled");
|
||||||
|
|
||||||
|
optionBrowser.TriggerUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
if(backBtn.GetState() == STATE_CLICKED)
|
if(backBtn.GetState() == STATE_CLICKED)
|
||||||
{
|
{
|
||||||
menu = MENU_SETTINGS;
|
menu = MENU_SETTINGS;
|
||||||
@ -3573,6 +3609,7 @@ static int MenuSettingsNetwork()
|
|||||||
#ifdef HW_RVL
|
#ifdef HW_RVL
|
||||||
int ret;
|
int ret;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
bool firstRun = true;
|
||||||
OptionList options;
|
OptionList options;
|
||||||
sprintf(options.name[i++], "SMB Share IP");
|
sprintf(options.name[i++], "SMB Share IP");
|
||||||
sprintf(options.name[i++], "SMB Share Name");
|
sprintf(options.name[i++], "SMB Share Name");
|
||||||
@ -3628,11 +3665,6 @@ static int MenuSettingsNetwork()
|
|||||||
{
|
{
|
||||||
usleep(THREAD_SLEEP);
|
usleep(THREAD_SLEEP);
|
||||||
|
|
||||||
strncpy (options.value[0], GCSettings.smbip, 15);
|
|
||||||
strncpy (options.value[1], GCSettings.smbshare, 19);
|
|
||||||
strncpy (options.value[2], GCSettings.smbuser, 19);
|
|
||||||
strncpy (options.value[3], GCSettings.smbpwd, 19);
|
|
||||||
|
|
||||||
ret = optionBrowser.GetClickedOption();
|
ret = optionBrowser.GetClickedOption();
|
||||||
|
|
||||||
switch (ret)
|
switch (ret)
|
||||||
@ -3654,6 +3686,18 @@ static int MenuSettingsNetwork()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ret >= 0 || firstRun)
|
||||||
|
{
|
||||||
|
firstRun = false;
|
||||||
|
|
||||||
|
strncpy (options.value[0], GCSettings.smbip, 15);
|
||||||
|
strncpy (options.value[1], GCSettings.smbshare, 19);
|
||||||
|
strncpy (options.value[2], GCSettings.smbuser, 19);
|
||||||
|
strncpy (options.value[3], GCSettings.smbpwd, 19);
|
||||||
|
|
||||||
|
optionBrowser.TriggerUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
if(backBtn.GetState() == STATE_CLICKED)
|
if(backBtn.GetState() == STATE_CLICKED)
|
||||||
{
|
{
|
||||||
menu = MENU_SETTINGS;
|
menu = MENU_SETTINGS;
|
||||||
|
Loading…
Reference in New Issue
Block a user