mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-15 14:05:06 -05:00
39cc86c260
subrepo: subdir: "soh" merged: "ba904bbd0" upstream: origin: "https://github.com/HarbourMasters/soh.git" branch: "master" commit: "ba904bbd0" git-subrepo: version: "0.4.1" origin: "???" commit: "???"
46 lines
965 B
C
46 lines
965 B
C
#include "global.h"
|
|
|
|
s32 osSetTimer(OSTimer* timer, OSTime countdown, OSTime interval, OSMesgQueue* mq, OSMesg msg) {
|
|
OSTime time;
|
|
OSTimer* next;
|
|
u32 count;
|
|
u32 value;
|
|
u32 prevInt;
|
|
|
|
timer->next = NULL;
|
|
timer->prev = NULL;
|
|
timer->interval = interval;
|
|
|
|
if (countdown != 0) {
|
|
timer->value = countdown;
|
|
} else {
|
|
timer->value = interval;
|
|
}
|
|
timer->mq = mq;
|
|
timer->msg = msg;
|
|
|
|
prevInt = __osDisableInt();
|
|
if (__osTimerList->next != __osTimerList) {
|
|
if (1) {}
|
|
|
|
next = __osTimerList->next;
|
|
count = osGetCount();
|
|
value = count - __osTimerCounter;
|
|
|
|
if (value < next->value) {
|
|
next->value -= value;
|
|
} else {
|
|
next->value = 1;
|
|
}
|
|
}
|
|
|
|
time = __osInsertTimer(timer);
|
|
__osSetTimerIntr(__osTimerList->next->value);
|
|
|
|
__osRestoreInt(prevInt);
|
|
|
|
if (time) {} // suppresses set but unused warning
|
|
|
|
return 0;
|
|
}
|