-
Notifications
You must be signed in to change notification settings - Fork 0
/
nevent.c
415 lines (376 loc) · 8.01 KB
/
nevent.c
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/**
* @file nevent.c
* @brief Implementation of the event
*/
#include "compiler.h"
#include "nevent.h"
#include "cpucore.h"
#include "pccore.h"
_NEVENT g_nevent;
#if defined(SUPPORT_MULTITHREAD)
static int nevent_cs_initialized = 0;
static CRITICAL_SECTION nevent_cs;
static BOOL nevent_tryenter_criticalsection(void){
if(!nevent_cs_initialized) return TRUE;
return TryEnterCriticalSection(&nevent_cs);
}
static void nevent_enter_criticalsection(void){
if(!nevent_cs_initialized) return;
EnterCriticalSection(&nevent_cs);
}
static void nevent_leave_criticalsection(void){
if(!nevent_cs_initialized) return;
LeaveCriticalSection(&nevent_cs);
}
void nevent_initialize(void)
{
/* クリティカルセクション準備 */
if(!nevent_cs_initialized){
memset(&nevent_cs, 0, sizeof(nevent_cs));
InitializeCriticalSection(&nevent_cs);
nevent_cs_initialized = 1;
}
}
void nevent_shutdown(void)
{
/* クリティカルセクション破棄 */
if(nevent_cs_initialized){
memset(&nevent_cs, 0, sizeof(nevent_cs));
DeleteCriticalSection(&nevent_cs);
nevent_cs_initialized = 0;
}
}
#endif
void nevent_allreset(void)
{
/* すべてをリセット */
memset(&g_nevent, 0, sizeof(g_nevent));
}
void nevent_get1stevent(void)
{
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
/* 最短のイベントのクロック数をセット */
if (g_nevent.readyevents)
{
CPU_BASECLOCK = g_nevent.item[g_nevent.level[0]].clock;
}
else
{
/* イベントがない場合のクロック数をセット */
CPU_BASECLOCK = NEVENT_MAXCLOCK;
}
/* カウンタへセット */
CPU_REMCLOCK = CPU_BASECLOCK;
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}
static void nevent_execute(void)
{
UINT nEvents;
UINT i;
NEVENTID id;
NEVENTITEM item;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
nEvents = 0;
for (i = 0; i < g_nevent.waitevents; i++)
{
id = g_nevent.waitevent[i];
item = &g_nevent.item[id];
/* コールバックの実行 */
if (item->proc != NULL)
{
item->proc(item);
/* 次回に持ち越しのイベントのチェック */
if (item->flag & NEVENT_WAIT)
{
g_nevent.waitevent[nEvents++] = id;
}
}
else {
item->flag &= ~(NEVENT_WAIT);
}
item->flag &= ~(NEVENT_SETEVENT);
}
g_nevent.waitevents = nEvents;
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}
void nevent_progress(void)
{
UINT nEvents;
SINT32 nextbase;
UINT i;
NEVENTID id;
NEVENTITEM item;
UINT8 fevtchk = 0;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
CPU_CLOCK += CPU_BASECLOCK;
nEvents = 0;
nextbase = NEVENT_MAXCLOCK;
for (i = 0; i < g_nevent.readyevents; i++)
{
id = g_nevent.level[i];
item = &g_nevent.item[id];
item->clock -= CPU_BASECLOCK;
if (item->clock > 0)
{
/* イベント待ち中 */
g_nevent.level[nEvents++] = id;
if (nextbase >= item->clock)
{
nextbase = item->clock;
}
}
else
{
/* イベント発生 */
if (!(item->flag & (NEVENT_SETEVENT | NEVENT_WAIT)))
{
g_nevent.waitevent[g_nevent.waitevents++] = id;
}
item->flag |= NEVENT_SETEVENT;
item->flag &= ~(NEVENT_ENABLE);
// TRACEOUT(("event = %x", id));
}
fevtchk |= (id==NEVENT_FLAMES ? 1 : 0);
}
g_nevent.readyevents = nEvents;
CPU_BASECLOCK = nextbase;
CPU_REMCLOCK += nextbase;
nevent_execute();
// NEVENT_FLAMESが消える問題に暫定対処
if(!fevtchk){
//printf("NEVENT_FLAMES is missing!!\n");
pcstat.screendispflag = 0;
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
// TRACEOUT(("nextbase = %d (%d)", nextbase, CPU_REMCLOCK));
}
void nevent_changeclock(UINT32 oldclock, UINT32 newclock)
{
UINT i;
NEVENTID id;
NEVENTITEM item;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
newclock /= pccore.baseclock;
oldclock /= pccore.baseclock;
if(oldclock > 0){
for (i = 0; i < g_nevent.readyevents; i++)
{
id = g_nevent.level[i];
item = &g_nevent.item[id];
if(item->clock > 0){
item->clock = item->clock * newclock / oldclock;
}
}
CPU_BASECLOCK = CPU_BASECLOCK * newclock / oldclock;
CPU_REMCLOCK = CPU_REMCLOCK * newclock / oldclock;
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}
void nevent_reset(NEVENTID id)
{
UINT i;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
/* 現在進行してるイベントを検索 */
for (i = 0; i < g_nevent.readyevents; i++)
{
if (g_nevent.level[i] == id)
{
break;
}
}
/* イベントは存在した? */
if (i < g_nevent.readyevents)
{
/* 存在していたら削る */
g_nevent.readyevents--;
for (; i < g_nevent.readyevents; i++)
{
g_nevent.level[i] = g_nevent.level[i + 1];
}
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}
void nevent_waitreset(NEVENTID id)
{
UINT i;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
/* 現在進行してるイベントを検索 */
for (i = 0; i < g_nevent.waitevents; i++)
{
if (g_nevent.waitevent[i] == id)
{
break;
}
}
/* イベントは存在した? */
if (i < g_nevent.waitevents)
{
/* 存在していたら削る */
g_nevent.waitevents--;
for (; i < g_nevent.waitevents; i++)
{
g_nevent.waitevent[i] = g_nevent.waitevent[i + 1];
}
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}
void nevent_set(NEVENTID id, SINT32 eventclock, NEVENTCB proc, NEVENTPOSITION absolute)
{
SINT32 clk;
NEVENTITEM item;
UINT eventId;
UINT i;
// TRACEOUT(("event %d - %xclocks", id, eventclock));
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
clk = CPU_BASECLOCK - CPU_REMCLOCK;
item = &g_nevent.item[id];
item->proc = proc;
item->flag = 0;
if (absolute)
{
item->clock = eventclock + clk;
}
else
{
item->clock += eventclock;
}
#if 0
if (item->clock < clk)
{
item->clock = clk;
}
#endif
/* イベントの削除 */
nevent_reset(id);
/* イベントの挿入位置の検索 */
for (eventId = 0; eventId < g_nevent.readyevents; eventId++)
{
if (item->clock < g_nevent.item[g_nevent.level[eventId]].clock)
{
break;
}
}
/* イベントの挿入 */
for (i = g_nevent.readyevents; i > eventId; i--)
{
g_nevent.level[i] = g_nevent.level[i - 1];
}
g_nevent.level[eventId] = id;
g_nevent.readyevents++;
/* もし最短イベントだったら... */
if (eventId == 0)
{
clk = CPU_BASECLOCK - item->clock;
CPU_BASECLOCK -= clk;
CPU_REMCLOCK -= clk;
// TRACEOUT(("reset nextbase -%d (%d)", clock, CPU_REMCLOCK));
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}
void nevent_setbyms(NEVENTID id, SINT32 ms, NEVENTCB proc, NEVENTPOSITION absolute)
{
nevent_set(id, (pccore.realclock / 1000) * ms, proc, absolute);
}
BOOL nevent_iswork(NEVENTID id)
{
UINT i;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
/* 現在進行してるイベントを検索 */
for (i = 0; i < g_nevent.readyevents; i++)
{
if (g_nevent.level[i] == id)
{
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
return TRUE;
}
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
return FALSE;
}
void nevent_forceexecute(NEVENTID id)
{
NEVENTITEM item;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
item = &g_nevent.item[id];
/* コールバックの実行 */
if (item->proc != NULL)
{
item->proc(item);
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}
SINT32 nevent_getremain(NEVENTID id)
{
UINT i;
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
/* 現在進行してるイベントを検索 */
for (i = 0; i < g_nevent.readyevents; i++)
{
if (g_nevent.level[i] == id)
{
SINT32 result = (g_nevent.item[id].clock - (CPU_BASECLOCK - CPU_REMCLOCK));
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
return result;
}
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
return -1;
}
void nevent_forceexit(void)
{
#if defined(SUPPORT_MULTITHREAD)
nevent_enter_criticalsection();
#endif
if (CPU_REMCLOCK > 0)
{
CPU_BASECLOCK -= CPU_REMCLOCK;
CPU_REMCLOCK = 0;
}
#if defined(SUPPORT_MULTITHREAD)
nevent_leave_criticalsection();
#endif
}