action.c
1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*---------------------------------------------------------------------*
Copyright (C) 1998, Nintendo.
File action.c
Coded by Tetsuyuki Ootsuka. July, 1998.
$Id: action.c,v 1.1.1.1 2002/05/02 03:27:40 blythe Exp $
*---------------------------------------------------------------------*/
#include <ultra64.h>
#include "action.h"
#include "nu64sys.h"
/*-- Action 構造体 --*/
Action Ac;
/*-- Action 構造体の初期化 --*/
void actionInit(void)
{
int i;
for (i = 0; i < MAXCONTROLLERS; i ++){
Ac.pad[i].c = contPad + i;
Ac.pad[i].button = Ac.pad[i].push = Ac.pad[i].release = 0;
}
return;
}
/*-- Action 構造体のメンバを更新する --*/
void actionUpdate(void)
{
int i;
u16 button, change;
/*-- コントローラのトリガの計算 --*/
for (i = 0; i < MAXCONTROLLERS; i ++){
button = Ac.pad[i].c->button;
change = Ac.pad[i].button ^ button;
Ac.pad[i].release = (Ac.pad[i].push = change & button) ^ change;
Ac.pad[i].button = button;
}
return;
}
/*======== End of action.c ========*/