2009-10-01 01:10:58 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
|
|
|
|
#include "language/gettext.h"
|
2010-09-25 08:54:27 +02:00
|
|
|
#include "FileOperations/fileops.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "cfg.h"
|
2009-10-14 23:59:13 +02:00
|
|
|
#define isspace2(c) (c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == '\v')
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
u8 ocarinaChoice = 0;
|
|
|
|
u8 videoChoice = 0;
|
|
|
|
u8 faveChoice = no;
|
|
|
|
u8 languageChoice = 0;
|
|
|
|
u8 viChoice = 0;
|
2009-11-17 23:57:41 +01:00
|
|
|
u8 iosChoice = 0;
|
2009-10-01 01:10:58 +02:00
|
|
|
u8 parentalcontrolChoice = 0;
|
|
|
|
u8 fix002 = 0;
|
|
|
|
u8 reloadblock = 0;
|
|
|
|
u8 countrystrings = 0;
|
|
|
|
u8 alternatedol = 0;
|
|
|
|
u32 alternatedoloffset = 0;
|
|
|
|
u8 xflip = 0;
|
|
|
|
u8 sort = 0;
|
|
|
|
u8 fave = 0;
|
|
|
|
u8 qboot = 0;
|
|
|
|
u8 wsprompt = 0;
|
|
|
|
u8 keyset = 0;
|
|
|
|
u8 listDisplay = 0;
|
2009-11-15 20:52:58 +01:00
|
|
|
u8 partition = -1;
|
2009-10-01 01:10:58 +02:00
|
|
|
char alternatedname[40];
|
2010-09-19 12:53:24 +02:00
|
|
|
u8 returnToLoaderGV = 1; //global variable used for returnToLoaderShit. defaults to "yes, patch return to loader"
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
struct ID_Title
|
|
|
|
{
|
2010-01-07 19:20:26 +01:00
|
|
|
char id[6];
|
2010-01-18 00:59:59 +01:00
|
|
|
char * title;
|
2009-10-01 01:10:58 +02:00
|
|
|
};
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
struct ID_Control
|
|
|
|
{
|
2010-01-07 19:20:26 +01:00
|
|
|
char id[6];
|
2009-10-01 01:10:58 +02:00
|
|
|
u8 block;
|
|
|
|
};
|
|
|
|
// renamed titles
|
|
|
|
int num_title = 0; //number of titles
|
|
|
|
struct ID_Title *cfg_title = NULL;
|
|
|
|
|
|
|
|
int num_control = 0;
|
|
|
|
struct ID_Control *cfg_control = NULL;
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
char *cfg_get_title(u8 *id)
|
2010-02-09 11:59:55 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!id) return NULL;
|
2010-01-07 00:07:35 +01:00
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
int i;
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < num_title; i++)
|
2010-02-09 11:59:55 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (strncmp((char*) id, cfg_title[i].id, 6) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
return cfg_title[i].title;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
char *get_title(struct discHdr *header)
|
2010-02-09 11:59:55 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!header) return NULL;
|
2010-01-07 19:20:26 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
char *title = cfg_get_title(header->id);
|
|
|
|
if (title) return title;
|
2009-10-01 01:10:58 +02:00
|
|
|
return header->title;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void title_set(char *id, char *title)
|
2010-02-09 11:59:55 +01:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!id || !title) return;
|
2010-01-18 00:59:59 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!cfg_title) cfg_title = (struct ID_Title *) malloc(sizeof(struct ID_Title));
|
2010-01-18 00:59:59 +01:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
char *idt = cfg_get_title((u8*) id);
|
|
|
|
if (idt)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
// replace
|
2010-09-24 02:48:03 +02:00
|
|
|
free(idt);
|
|
|
|
idt = strdup(title);
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
struct ID_Title * tmpStruct = (struct ID_Title *) realloc(cfg_title, (num_title + 1) * sizeof(struct ID_Title));
|
|
|
|
if (!tmpStruct)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
// error
|
2010-01-18 00:59:59 +01:00
|
|
|
CFG_Cleanup();
|
2009-10-01 01:10:58 +02:00
|
|
|
num_title = 0;
|
|
|
|
return;
|
|
|
|
}
|
2010-01-18 00:59:59 +01:00
|
|
|
|
|
|
|
cfg_title = tmpStruct;
|
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
// add
|
2010-09-24 02:48:03 +02:00
|
|
|
strncpy(cfg_title[num_title].id, id, 6);
|
|
|
|
cfg_title[num_title].title = strdup(title);
|
2009-10-01 01:10:58 +02:00
|
|
|
num_title++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
void titles_default()
|
|
|
|
{
|
|
|
|
int i;
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < num_title; i++)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
memset(cfg_title[i].id, 0, 6);
|
|
|
|
free(cfg_title[i].title);
|
2010-01-18 00:59:59 +01:00
|
|
|
cfg_title[i].title = NULL;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
u8 cfg_get_block(u8 *id)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
int i;
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < num_control; i++)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (memcmp(id, cfg_control[i].id, 6) == 0)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
return cfg_control[i].block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
u8 get_block(struct discHdr *header)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
return cfg_get_block(header->id);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
s8 get_pegi_block(struct discHdr *header)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
switch (get_block(header))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
case 1:
|
|
|
|
return 7;
|
|
|
|
case 2:
|
|
|
|
return 12;
|
|
|
|
case 3:
|
|
|
|
return 16;
|
|
|
|
case 4:
|
|
|
|
return 18;
|
|
|
|
default:
|
|
|
|
return -1;
|
2010-09-19 01:16:05 +02:00
|
|
|
}
|
2009-12-10 21:27:36 +01:00
|
|
|
}
|
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
// trim leading and trailing whitespace
|
|
|
|
// copy at max n or at max size-1
|
2010-09-24 02:48:03 +02:00
|
|
|
char* trim_n_copy(char *dest, char *src, int n, int size)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
int len;
|
|
|
|
// trim leading white space
|
2010-09-24 02:48:03 +02:00
|
|
|
while (isspace2( *src ))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
src++;
|
|
|
|
n--;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
len = strlen(src);
|
|
|
|
if (len > n) len = n;
|
2009-10-01 01:10:58 +02:00
|
|
|
// trim trailing white space
|
2010-09-24 02:48:03 +02:00
|
|
|
while (len > 0 && isspace2( src[len-1] ))
|
|
|
|
len--;
|
|
|
|
if (len >= size) len = size - 1;
|
|
|
|
strlcpy(dest, src, len + 1);
|
2009-10-01 01:10:58 +02:00
|
|
|
//printf("trim_copy: '%s' %d\n", dest, len); //sleep(1);
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
char* trimcopy(char *dest, char *src, int size)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
int len;
|
2010-09-24 02:48:03 +02:00
|
|
|
while (*src == ' ')
|
|
|
|
src++;
|
|
|
|
len = strlen(src);
|
2009-10-01 01:10:58 +02:00
|
|
|
// trim trailing " \r\n"
|
2010-09-24 02:48:03 +02:00
|
|
|
while (len > 0 && strchr(" \r\n", src[len - 1]))
|
|
|
|
len--;
|
|
|
|
if (len >= size) len = size - 1;
|
|
|
|
strlcpy(dest, src, len + 1);
|
2009-10-01 01:10:58 +02:00
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// split line to part1 delimiter part2
|
2010-09-24 02:48:03 +02:00
|
|
|
bool trimsplit(char *line, char *part1, char *part2, char delim, int size)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
char *eq = strchr(line, delim);
|
|
|
|
if (!eq) return false;
|
|
|
|
trim_n_copy(part1, line, eq - line, size);
|
|
|
|
trimcopy(part2, eq + 1, size);
|
2009-10-01 01:10:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
void cfg_parseline(char *line, void(*set_func)(char*, char*))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
// split name = value
|
|
|
|
char tmp[300], name[200], val[200];
|
2010-09-24 02:48:03 +02:00
|
|
|
strlcpy(tmp, line, sizeof(tmp));
|
|
|
|
char *eq = strchr(tmp, '=');
|
|
|
|
if (!eq) return;
|
2009-10-01 01:10:58 +02:00
|
|
|
*eq = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
trimcopy(name, tmp, sizeof(name));
|
|
|
|
trimcopy(val, eq + 1, sizeof(val));
|
2009-10-01 01:10:58 +02:00
|
|
|
//printf("CFG: %s = %s\n", name, val);
|
2010-09-24 02:48:03 +02:00
|
|
|
set_func(name, val);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void cfg_parsetitleline(char *line, void(*set_func)(char*, char*, u8))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
// split name = value
|
|
|
|
char tmp[200], name[200], val[200];
|
|
|
|
int block = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
strlcpy(tmp, line, sizeof(tmp));
|
|
|
|
char *eq = strchr(tmp, '=');
|
|
|
|
if (!eq) return;
|
2009-10-01 01:10:58 +02:00
|
|
|
*eq = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
trimcopy(name, tmp, sizeof(name));
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
char *blockpos = strrchr(eq + 1, '=');
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
if (!blockpos)
|
|
|
|
trimcopy(val, eq + 1, sizeof(val));
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
else
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
*blockpos = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
trimcopy(val, eq + 1, sizeof(val));
|
|
|
|
if (sscanf(blockpos + 1, "%d", &block) != 1)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
block = 0;
|
|
|
|
}
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
set_func(name, val, block);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bool cfg_parsefile(char *fname, void(*set_func)(char*, char*))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
FILE *f;
|
|
|
|
char line[300];
|
|
|
|
|
|
|
|
//printf("opening(%s)\n", fname);
|
2010-09-24 02:48:03 +02:00
|
|
|
f = fopen(fname, "r");
|
|
|
|
if (!f)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
//printf("error opening(%s)\n", fname);
|
|
|
|
return false;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
while (fgets(line, sizeof(line), f))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
// lines starting with # are comments
|
2010-09-24 02:48:03 +02:00
|
|
|
if (line[0] == '#') continue;
|
|
|
|
cfg_parseline(line, set_func);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
fclose(f);
|
2009-10-01 01:10:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
bool cfg_parsetitlefile(char *fname, void(*set_func)(char*, char*, u8))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
FILE *f;
|
|
|
|
char line[200];
|
|
|
|
|
|
|
|
//printf("opening(%s)\n", fname);
|
2010-09-24 02:48:03 +02:00
|
|
|
f = fopen(fname, "r");
|
|
|
|
if (!f)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
//printf("error opening(%s)\n", fname);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
while (fgets(line, sizeof(line), f))
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
// lines starting with # are comments
|
2010-09-24 02:48:03 +02:00
|
|
|
if (line[0] == '#') continue;
|
|
|
|
cfg_parsetitleline(line, set_func);
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
fclose(f);
|
2009-10-01 01:10:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void CFG_Cleanup(void)
|
2010-02-09 11:59:55 +01:00
|
|
|
{
|
2010-01-18 00:59:59 +01:00
|
|
|
int i = 0;
|
2010-09-24 02:48:03 +02:00
|
|
|
for (i = 0; i < num_title; i++)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
if (cfg_title[i].title) free(cfg_title[i].title);
|
2010-09-19 01:16:05 +02:00
|
|
|
cfg_title[i].title = NULL;
|
|
|
|
}
|
2010-09-24 02:48:03 +02:00
|
|
|
if (cfg_title)
|
2010-09-19 01:16:05 +02:00
|
|
|
{
|
2010-09-24 02:48:03 +02:00
|
|
|
free(cfg_title);
|
2009-10-01 01:10:58 +02:00
|
|
|
cfg_title = NULL;
|
|
|
|
}
|
2010-09-19 01:16:05 +02:00
|
|
|
num_title = 0;
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|