mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-01 15:59:45 -04:00
4df8ccc871
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
121 lines
2.8 KiB
C
121 lines
2.8 KiB
C
#include <dolphin/dolphin.h>
|
|
#include <dolphin/os.h>
|
|
|
|
#include "__os.h"
|
|
|
|
static OSResetCallback ResetCallback;
|
|
static BOOL Down;
|
|
static BOOL LastState;
|
|
static OSTime HoldUp;
|
|
static OSTime HoldDown;
|
|
|
|
void __OSResetSWInterruptHandler(s16 exception, OSContext* context) {
|
|
OSResetCallback callback;
|
|
|
|
HoldDown = __OSGetSystemTime();
|
|
while (__OSGetSystemTime() - HoldDown < OSMicrosecondsToTicks(100) &&
|
|
!(__PIRegs[0] & 0x00010000)) {
|
|
;
|
|
}
|
|
if (!(__PIRegs[0] & 0x00010000)) {
|
|
LastState = Down = TRUE;
|
|
__OSMaskInterrupts(OS_INTERRUPTMASK_PI_RSW);
|
|
if (ResetCallback) {
|
|
callback = ResetCallback;
|
|
ResetCallback = NULL;
|
|
callback();
|
|
}
|
|
}
|
|
__PIRegs[0] = 2;
|
|
}
|
|
|
|
OSResetCallback OSSetResetCallback(OSResetCallback callback) {
|
|
BOOL enabled;
|
|
OSResetCallback prevCallback;
|
|
|
|
enabled = OSDisableInterrupts();
|
|
prevCallback = ResetCallback;
|
|
ResetCallback = callback;
|
|
|
|
if (callback) {
|
|
__PIRegs[0] = 2;
|
|
__OSUnmaskInterrupts(0x200);
|
|
} else {
|
|
__OSMaskInterrupts(0x200);
|
|
}
|
|
OSRestoreInterrupts(enabled);
|
|
return prevCallback;
|
|
}
|
|
|
|
BOOL OSGetResetButtonState(void) {
|
|
BOOL enabled = OSDisableInterrupts();
|
|
int state;
|
|
u32 reg;
|
|
OSTime now;
|
|
|
|
now = __OSGetSystemTime();
|
|
ASSERTLINE(158, 0 <= now);
|
|
ASSERTLINE(159, HoldUp == 0 || HoldUp < now);
|
|
ASSERTLINE(160, HoldDown == 0 || HoldDown < now);
|
|
|
|
reg = __PIRegs[0];
|
|
if (!(reg & 0x00010000)) {
|
|
if (!Down) {
|
|
Down = TRUE;
|
|
state = HoldUp ? TRUE : FALSE;
|
|
HoldDown = now;
|
|
} else {
|
|
state = HoldUp || (OSMicrosecondsToTicks(100) < now - HoldDown)
|
|
? TRUE
|
|
: FALSE;
|
|
}
|
|
} else if (Down) {
|
|
Down = FALSE;
|
|
state = LastState;
|
|
if (state) {
|
|
HoldUp = now;
|
|
} else {
|
|
HoldUp = 0;
|
|
}
|
|
} else if (HoldUp && (now - HoldUp < OSMillisecondsToTicks(40))) {
|
|
state = TRUE;
|
|
} else {
|
|
state = FALSE;
|
|
HoldUp = 0;
|
|
}
|
|
|
|
LastState = state;
|
|
|
|
if (__gUnknown800030E3 & 0x1F) {
|
|
OSTime fire = (__gUnknown800030E3 & 0x1F) * 60;
|
|
fire = __OSStartTime + OSSecondsToTicks(fire);
|
|
if (fire < now) {
|
|
now -= fire;
|
|
now = OSTicksToSeconds(now) / 2;
|
|
if ((now & 1) == 0) {
|
|
state = TRUE;
|
|
} else {
|
|
state = FALSE;
|
|
}
|
|
}
|
|
}
|
|
|
|
OSRestoreInterrupts(enabled);
|
|
return state;
|
|
}
|
|
|
|
int OSGetResetSwitchState(void) {
|
|
return OSGetResetButtonState();
|
|
}
|
|
|
|
void __OSSetResetButtonTimer(u8 min) {
|
|
BOOL enabled = OSDisableInterrupts();
|
|
if (min > 0x1F) {
|
|
min = 0x1F;
|
|
}
|
|
|
|
__gUnknown800030E3 &= ~0x1F;
|
|
__gUnknown800030E3 |= min;
|
|
OSRestoreInterrupts(enabled);
|
|
}
|