-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpceth2_sys.h
More file actions
50 lines (41 loc) · 1.81 KB
/
pceth2_sys.h
File metadata and controls
50 lines (41 loc) · 1.81 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
48
49
50
#ifndef __PCETH2_SYS_H_
#define __PCETH2_SYS_H_
#include "common.h"
#define FNAMELEN_SCP 13
#define FNAMELEN_EV 12
//=============================================================================
// スクリプト読み込み
//=============================================================================
void pceth2_loadScript(SCRIPT_DATA *s, const char *fName);
void pceth2_closeScript(SCRIPT_DATA *s);
//=============================================================================
// スクリプト
//=============================================================================
void pceth2_loadEVScript();
int pceth2_jumpScript(SCRIPT_DATA *s);
//=============================================================================
// ラベルジャンプ
//=============================================================================
int pceth2_memoryLabel(SCRIPT_DATA *s);
int pceth2_jumpLabel(SCRIPT_DATA *s);
int pceth2_branchLabel(SCRIPT_DATA *s);
//=============================================================================
// フラグ・レジスタ操作
//=============================================================================
int pceth2_loadFlag(SCRIPT_DATA *s);
int pceth2_saveFlag(SCRIPT_DATA *s);
int pceth2_setReg(SCRIPT_DATA *s);
int pceth2_incReg(SCRIPT_DATA *s);
int pceth2_decReg(SCRIPT_DATA *s);
//=============================================================================
// その他
//=============================================================================
int pceth2_wait(SCRIPT_DATA *s);
int pceth2_startOpening(SCRIPT_DATA *s);
int pceth2_goEpilogue(SCRIPT_DATA *s);
int pceth2_backTitle(SCRIPT_DATA *s);
//=============================================================================
// 数値計算
//=============================================================================
int pceth2_calcExpression(SCRIPT_DATA *s);
#endif