mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
5aef81071e
* In process of moving changes over from old repo * Merged in changes * Finished import of padmgr changes from old repo * Adjusted some volatile * Improving padmgr volatile situation * Almost matched osReadMempak * Working on osMempakDataCRC * Explanations and equivalents but no matches for osMempakAddrCRC and osMempakDataCRC * OK after merge * Matched osMempakAddrCRC and osMempakDataCRC * Matched osReadMempak * Updated PadMgr function names to be less like original code * Changed variable names to make them further from original code * Changed names and it stopped matching * Undid clang-format steamrollering whitespace memes * Cleaned up Input names * More formatting changes * Moved padmgr to z64.h, deleted padmgr.h
67 lines
1.5 KiB
C
67 lines
1.5 KiB
C
#include <ultra64.h>
|
|
#include <global.h>
|
|
#include <vt.h>
|
|
|
|
u32 gCurrentRegion = 0;
|
|
LocaleCartInfo sCartInfo;
|
|
|
|
// temporary
|
|
extern PadMgr gPadMgr;
|
|
|
|
void Locale_Init() {
|
|
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", 0x76);
|
|
osSyncPrintf(VT_RST);
|
|
break;
|
|
}
|
|
|
|
osSyncPrintf("z_locale_init:日本用かアメリカ用か3コンで判断させる\n");
|
|
}
|
|
|
|
void Locale_ResetRegion() {
|
|
gCurrentRegion = REGION_NULL;
|
|
}
|
|
|
|
u32 func_80001F48() {
|
|
if (gCurrentRegion == REGION_NATIVE) {
|
|
return 0;
|
|
}
|
|
|
|
if (gPadMgr.validCtrlrsMask & 4) {
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
u32 func_80001F8C() {
|
|
if (gCurrentRegion == REGION_NATIVE) {
|
|
return 0;
|
|
}
|
|
|
|
if (gPadMgr.validCtrlrsMask & 4) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// This function appears to be unused?
|
|
u32 Locale_IsRegionNative() {
|
|
return gCurrentRegion == REGION_NATIVE;
|
|
}
|