forked from cyxx/rawgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.h
117 lines (95 loc) · 2.37 KB
/
script.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
* Another World engine rewrite
* Copyright (C) 2004-2005 Gregory Montoir ([email protected])
*/
#ifndef SCRIPT_H__
#define SCRIPT_H__
#include "intern.h"
struct Mixer;
struct Resource;
struct SfxPlayer;
struct SystemStub;
struct Video;
enum Difficulty {
DIFFICULTY_EASY = 0,
DIFFICULTY_NORMAL = 1,
DIFFICULTY_HARD = 2
};
struct Script {
typedef void (Script::*OpcodeStub)();
enum ScriptVars {
VAR_RANDOM_SEED = 0x3C,
VAR_SCREEN_NUM = 0x67,
VAR_LAST_KEYCHAR = 0xDA,
VAR_HERO_POS_UP_DOWN = 0xE5,
VAR_MUSIC_SYNC = 0xF4,
VAR_SCROLL_Y = 0xF9,
VAR_HERO_ACTION = 0xFA,
VAR_HERO_POS_JUMP_DOWN = 0xFB,
VAR_HERO_POS_LEFT_RIGHT = 0xFC,
VAR_HERO_POS_MASK = 0xFD,
VAR_HERO_ACTION_POS_MASK = 0xFE,
VAR_PAUSE_SLICES = 0xFF
};
static const OpcodeStub _opTable[];
static const uint16_t _periodTable[];
static Difficulty _difficulty;
static bool _useRemasteredAudio;
Mixer *_mix;
Resource *_res;
SfxPlayer *_ply;
Video *_vid;
SystemStub *_stub;
int16_t _scriptVars[256];
uint16_t _scriptStackCalls[64];
uint16_t _scriptTasks[2][64];
uint8_t _scriptStates[2][64];
Ptr _scriptPtr;
uint8_t _stackPtr;
bool _scriptPaused;
bool _fastMode;
int _screenNum;
bool _is3DO;
uint32_t _startTime, _timeStamp;
Script(Mixer *mix, Resource *res, SfxPlayer *ply, Video *vid);
void init();
void op_movConst();
void op_mov();
void op_add();
void op_addConst();
void op_call();
void op_ret();
void op_yieldTask();
void op_jmp();
void op_installTask();
void op_jmpIfVar();
void op_condJmp();
void op_setPalette();
void op_changeTasksState();
void op_selectPage();
void op_fillPage();
void op_copyPage();
void op_updateDisplay();
void op_removeTask();
void op_drawString();
void op_sub();
void op_and();
void op_or();
void op_shl();
void op_shr();
void op_playSound();
void op_updateResources();
void op_playMusic();
void restartAt(int part, int pos = -1);
void setupPart(int num);
void setupTasks();
void runTasks();
void executeTask();
void updateInput();
void inp_handleSpecialKeys();
void snd_playSound(uint16_t resNum, uint8_t freq, uint8_t vol, uint8_t channel);
void snd_playMusic(uint16_t resNum, uint16_t delay, uint8_t pos);
void snd_preloadSound(uint16_t resNum, const uint8_t *data);
void fixUpPalette_changeScreen(int part, int screen);
};
#endif