mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-11 03:55:07 -05:00
64 lines
1.4 KiB
C
64 lines
1.4 KiB
C
|
#include "global.h"
|
||
|
#include "vt.h"
|
||
|
|
||
|
u32 gCurrentRegion = 0;
|
||
|
LocaleCartInfo sCartInfo;
|
||
|
|
||
|
void Locale_Init(void) {
|
||
|
osEPiReadIo(gCartHandle, 0x38, &sCartInfo.mediaFormat);
|
||
|
osEPiReadIo(gCartHandle, 0x3C, &sCartInfo.regionInfo);
|
||
|
|
||
|
switch (sCartInfo.countryCode) {
|
||
|
case 'J': // "NTSC-U (North America)"
|
||
|
gCurrentRegion = REGION_US;
|
||
|
break;
|
||
|
case 'E': // "NTSC-J (Japan)"
|
||
|
gCurrentRegion = REGION_JP;
|
||
|
break;
|
||
|
case 'P': // "PAL (Europe)"
|
||
|
gCurrentRegion = REGION_EU;
|
||
|
break;
|
||
|
default:
|
||
|
osSyncPrintf(VT_COL(RED, WHITE));
|
||
|
osSyncPrintf("z_locale_init: 日本用かアメリカ用か判別できません\n");
|
||
|
LogUtils_HungupThread("../z_locale.c", 118);
|
||
|
osSyncPrintf(VT_RST);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
osSyncPrintf("z_locale_init:日本用かアメリカ用か3コンで判断させる\n");
|
||
|
}
|
||
|
|
||
|
void Locale_ResetRegion(void) {
|
||
|
gCurrentRegion = REGION_NULL;
|
||
|
}
|
||
|
|
||
|
u32 func_80001F48(void) {
|
||
|
if (gCurrentRegion == REGION_NATIVE) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
if (gPadMgr.validCtrlrsMask & 4) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
u32 func_80001F8C(void) {
|
||
|
if (gCurrentRegion == REGION_NATIVE) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
if (gPadMgr.validCtrlrsMask & 4) {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
// This function appears to be unused?
|
||
|
u32 Locale_IsRegionNative(void) {
|
||
|
return gCurrentRegion == REGION_NATIVE;
|
||
|
}
|