forked from r-type/xmil-libretro
-
Notifications
You must be signed in to change notification settings - Fork 12
/
nevent.h
103 lines (79 loc) · 1.79 KB
/
nevent.h
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/**
* @file nevent.h
* @brief Interface of the event
*/
#pragma once
enum
{
NEVENT_MAXCLOCK = 0x400000
};
/**
* NEvent ID
*/
enum tagNEventId
{
NEVENT_FRAMES = 0,
NEVENT_RTC = 1,
NEVENT_FDC = 2,
NEVENT_CTC0 = 3,
NEVENT_CTC1 = 4,
NEVENT_CTC2 = 5,
NEVENT_SUBCPU = 6,
/* ---- */
NEVENT_MAXEVENTS = 8
};
typedef enum tagNEventId NEVENTID;
/**
* event position
*/
enum tagNEventPosition
{
NEVENT_RELATIVE = 0, /*!< relative */
NEVENT_ABSOLUTE = 1 /*!< absolute */
};
typedef enum tagNEventPosition NEVENTPOSITION; /*!< the defines of position */
struct _neventitem;
typedef struct _neventitem _NEVENTITEM;
typedef struct _neventitem *NEVENTITEM;
typedef void (*NEVENTCB)(NEVENTID id);
#define NEVENTITEM_NONE ((NEVENTITEM)-1)
#define NEVENTITEM_TERM ((NEVENTITEM)0)
struct _neventitem {
NEVENTITEM next;
SINT32 clock;
SINT32 baseclock;
NEVENTCB proc;
};
typedef struct {
_NEVENTITEM item[NEVENT_MAXEVENTS];
NEVENTITEM first;
} _NEVENT, *NEVENT;
#ifdef __cplusplus
extern "C" {
#endif
extern _NEVENT nevent;
/* 初期化 */
void nevent_allreset(void);
/* 最短イベントのセット */
void nevent_get1stevent(void);
/* 時間を進める */
void nevent_progress(void);
/* イベントの実行 */
void nevent_execule(void);
/* イベントの追加 */
void nevent_set(NEVENTID id, SINT32 eventclock, NEVENTCB proc, NEVENTPOSITION absolute);
void nevent_repeat(NEVENTID id);
void nevent_setbyms(NEVENTID id, SINT32 ms, NEVENTCB proc, NEVENTPOSITION absolute);
/* イベントの削除 */
void nevent_reset(NEVENTID id);
/* イベントの動作状態取得 */
BOOL nevent_iswork(NEVENTID id);
/* 実行したクロック数の取得 */
SINT32 nevent_getwork(NEVENTID id);
/* イベント実行までのクロック数の取得 */
SINT32 nevent_getremain(NEVENTID id);
/* NEVENTの強制脱出 */
void nevent_forceexit(void);
#ifdef __cplusplus
}
#endif