folder operations, changed more instances of restart to exit, ...

...adjusted button mapping to include 2, probably something else
This commit is contained in:
Naim2000 2024-07-29 11:15:08 -05:00
parent c249247a1e
commit 3e8fb363e4
8 changed files with 646 additions and 592 deletions

View File

@ -180,7 +180,7 @@ void LaunchApp(void)
entry();
printf("--> Well.. this shouldn't happen\n");
Sys_LoadMenu();
exit(-1);
}
void SetIos(int ios)

View File

@ -5,16 +5,15 @@
#define CIOS_VERSION 249
#define ENTRIES_PER_PAGE 12
#define MAX_FILE_PATH_LEN 1024
#define MAX_DIR_LEVELS 10
#define WAD_DIRECTORY "/"
#define WAD_ROOT_DIRECTORY "/wad"
#define WAD_ROOT_DIRECTORY "/wad/"
#define MAX_PASSWORD_LENGTH 10
#define MAX_FAT_DEVICE_LENGTH 10
#define MAX_NAND_DEVICE_LENGTH 10
#define WM_CONFIG_FILE_PATH ":/wad/wm_config.txt"
#define WM_BACKGROUND_PATH ":/wad/background.png"
#define WM_CONFIG_FILE_PATH "/wad/wm_config.txt"
#define WM_BACKGROUND_PATH "/wad/background.png"
#define FAT_DEVICE_INDEX_INVALID -1
#define NAND_DEVICE_INDEX_INVALID -1

View File

@ -25,7 +25,7 @@ s32 __Gui_DrawPng(void *img, u32 x, u32 y)
for (i = 0; i < FatGetDeviceCount(); i++)
{
snprintf(path, sizeof(path), "%s:/wad/background.png", FatGetDevicePrefix(i));
snprintf(path, sizeof(path), "%s:%s", FatGetDevicePrefix(i), WM_BACKGROUND_PATH);
if (FSOPFileExists(path))
{
ctx = PNGU_SelectImageFromDevice(path);

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdlib.h>
#include <ogcsys.h>
#include "restart.h"
@ -28,5 +29,5 @@ void Restart(void)
Nand_Disable();
/* Load system menu */
Sys_LoadMenu();
exit(0);
}

View File

@ -31,7 +31,7 @@ extern void __exception_setreload(int t);
extern u32 WaitButtons (void);
void CheckPassword (void);
void SetDefaultConfig (void);
int ReadConfigFile (char *configFilePath);
int ReadConfigFile (void);
int GetIntParam (char *inputStr);
int GetStartupPath (char *startupPath, char *inputStr);
int GetStringParam (char *outParam, char *inputStr, int maxChars);
@ -51,7 +51,7 @@ void CheckPassword (void)
printf("[+] [Enter Password to Continue]:\n\n");
printf(">> Press A to continue.\n");
printf(">> Press B button to restart your Wii.\n");
printf(">> Press B button to cancel.\n");
/* Wait for user answer */
for (;;)
@ -74,7 +74,7 @@ void CheckPassword (void)
printf(">> Incorrect Password. Try again...\n");
printf("[+] [Enter Password to Continue]:\n\n");
printf(">> Press A to continue.\n");
printf(">> Press B button to restart your Wii.\n");
printf(">> Press B button to cancel.\n");
count = 0;
}
}
@ -132,7 +132,7 @@ void Disclaimer(void)
printf(" WII CONSOLE BECAUSE OF A IMPROPER USAGE OF THIS SOFTWARE.\n\n");
printf(">> If you agree, press A button to continue.\n");
printf(">> Otherwise, press B button to restart your Wii.\n");
printf(">> Otherwise, press B button to exit.\n");
/* Wait for user answer */
for (;;) {
@ -154,13 +154,18 @@ int main(int argc, char **argv)
__exception_setreload(10);
ES_GetBoot2Version(&boot2version);
if(!AHBPROT_DISABLED)
if (!AHBPROT_DISABLED)
/*
We should just enable it tbh.
Like, look at https://github.com/WiiLink24/wfc-patcher-wii/blob/main/launcher/source/IOS.cpp
Awesome stuff.
*/
{
if(boot2version < 5)
if (boot2version < 5)
{
if(!loadIOS(202)) if(!loadIOS(222)) if(!loadIOS(223)) if(!loadIOS(224)) if(!loadIOS(249)) loadIOS(36);
}else{
if(!loadIOS(249)) loadIOS(36);
if (!loadIOS(202)) if (!loadIOS(222)) if (!loadIOS(223)) if (!loadIOS(224)) if (!loadIOS(249)) loadIOS(36);
} else {
if (!loadIOS(249)) loadIOS(36);
}
}
@ -195,7 +200,7 @@ int main(int argc, char **argv)
SetDefaultConfig ();
// Read the config file
ReadConfigFile(WM_CONFIG_FILE_PATH);
ReadConfigFile();
// Check password
CheckPassword();
@ -211,22 +216,17 @@ int main(int argc, char **argv)
return 0;
}
int ReadConfigFile(char* configFilePath)
int ReadConfigFile()
{
int retval = 0;
FILE* fptr;
char* tmpStr = malloc(MAX_FILE_PATH_LEN);
char tmpStr[MAX_FILE_PATH_LEN];
char tmpOutStr[40], path[128];
s32 i;
bool found = false;
if (tmpStr == NULL)
return (-1);
for (i = 0; i < FatGetDeviceCount(); i++)
{
snprintf(path, sizeof(path), "%s%s", FatGetDevicePrefix(i), configFilePath);
snprintf(path, sizeof(path), "%s:%s", FatGetDevicePrefix(i), WM_CONFIG_FILE_PATH);
if (FSOPFileExists(path))
{
found = true;
@ -235,22 +235,22 @@ int ReadConfigFile(char* configFilePath)
}
if (!found)
{
retval = -1;
}
else
{
// Read the file
fptr = fopen (path, "rb");
if (fptr != NULL)
{
// Read the options
char done = 0;
return -1;
while (!done)
// Read the file
// fptr = fopen(path, "rb"); // umm, why are we opening with mode rb and then using fgets?
fptr = fopen(path, "r");
if (!fptr) {
// perror(path);
return -1;
}
// Read the options
while (true)
{
if (fgets (tmpStr, MAX_FILE_PATH_LEN, fptr) == NULL)
done = 1;
if (!fgets(tmpStr, MAX_FILE_PATH_LEN, fptr))
break;
else if (isalpha((int)tmpStr[0]))
{
// Get the password
@ -264,7 +264,7 @@ int ReadConfigFile(char* configFilePath)
if (strlen (gConfig.password) > 10)
{
gConfig.password [0] = 0;
printf ("Password longer than 10 characters; will be ignored. Press a button...\n");
puts("Password longer than 10 characters; will be ignored. Press a button...");
WaitButtons ();
}
}
@ -280,7 +280,7 @@ int ReadConfigFile(char* configFilePath)
else if (strncmp (tmpStr, "cIOSVersion", 11) == 0)
{
// Get cIOSVersion
gConfig.cIOSVersion = (u8)GetIntParam (tmpStr);
gConfig.cIOSVersion = GetIntParam(tmpStr);
}
// FatDevice
@ -315,20 +315,8 @@ int ReadConfigFile(char* configFilePath)
// Close the config file
fclose (fptr);
}
else
{
// If the wm_config.txt file is not found, just take the default config params
//printf ("Config file is not found\n"); // This is for testing only
//WaitButtons();
}
//Fat_Unmount(fdev);
}
// Free memory
free(tmpStr);
return (retval);
return 0;
} // ReadConfig

View File

@ -603,6 +603,31 @@ bool __Wad_VerifyHeader(wadHeader* header)
&& header->padding == 0x00;
}
const char* wad_strerror(int ec)
{
switch (ec)
{
case 0: return "Success";
case -106: return "Not found";
case -996: return "Read error";
case -998: return "Skipped";
case -999: return "BRICK BLOCKED";
case -1010: return "Wii System memory full!";
case -1022: return "Content hash mismatch";
case -1035: return "Newer version already installed";
case -1036: return "Needed IOS missing!";
case -2011: return "No trucha bug?";
/*
* from libogc.
* This rarely happens unless the WAD had an invalid ticket/tmd size
* (certs were not stripped after downloading from NUS maybe?)
*/
case ES_EINVAL: return "Invalid WAD?"; break;
default: return "unknown error";
}
}
// Some of the safety checks can block region changing
// Entering the Konami code turns this true, so it will
// skip the problematic checks for region changing.

View File

@ -4,6 +4,8 @@
/* Prototypes */
s32 Wad_Install(FILE* fp);
s32 Wad_Uninstall(FILE* fp);
const char* wad_strerror(int ec);
s32 GetSysMenuRegion(u16* version, char* region);
bool VersionIsOriginal(u16 version);
const char* GetSysMenuRegionString(const char region);