-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpceth2_grp.h
More file actions
48 lines (37 loc) · 1.37 KB
/
pceth2_grp.h
File metadata and controls
48 lines (37 loc) · 1.37 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
#ifndef __PCETH2_GRP_H_
#define __PCETH2_GRP_H_
#include "common.h"
#define FNAMELEN_BG 11
#define FNAMELEN_CH 13
#define FNAMELEN_CLOCK 11
#define NUMLEN_CH 3
#define GRP_L 0
#define GRP_C 1
#define GRP_R 2
#define GRP_BG 3
#define GRP_AUTO 5
#define BG_TIME (play.bgopt[0])
#define BG_WEATHER (play.bgopt[1])
#define BG_WEATHER_FLAG 5
//=============================================================================
// 画像描画
//=============================================================================
void pceth2_DrawGraphic();
//=============================================================================
// 画像ファイル読み込み
//=============================================================================
void pceth2_loadGraphic(const char *fName, int pos);
void pceth2_clearGraphic(int pos);
//=============================================================================
// 画像表示・消去
//=============================================================================
int pceth2_setBGOption(SCRIPT_DATA *s);
int pceth2_loadBG(SCRIPT_DATA *s);
int pceth2_loadChara(SCRIPT_DATA *s);
int pceth2_clearChara(SCRIPT_DATA *s);
//=============================================================================
// 立ち絵スライド
//=============================================================================
void pceth2_slideChara();
int pceth2_isCalenderMode();
#endif