-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.cpp
123 lines (112 loc) · 1.91 KB
/
script.cpp
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
#include "script.h"
#include "crmfile.h"
#include "config.h"
#include <iostream>
Script::Script()
{
CrmFile file;
if (!file.Load(Config::GetScriptName().c_str()))
{
std::cout << "Could not load script!\n";
return;
}
lines.clear();
numlines = 0;
std::string tempstring = "";
for (uint32_t i = 0; i < file.size; i++)
{
char c = file.data[i];
if (c != 0xa)
{
tempstring += c;
}
else
{
lines.push_back(tempstring);
numlines++;
tempstring = "";
}
}
if (tempstring.length())
{
lines.push_back(tempstring);
numlines++;
}
}
Script::ScriptOp Script::NextLine(std::string& name)
{
if (line == lines.size())
{
line = 0;
return SOP_END;
}
while ((lines[line].length() == 0) ||(lines[line][0] == ';'))
{
line++;
if (line == lines.size())
{
line = 0;
return SOP_END;
}
}
if (lines[line].substr(0, 5) == "pict_")
{
name = lines[line].substr(5, std::string::npos);
line++;
return SOP_SETPICT;
}
if (lines[line].substr(0, 5) == "tile_")
{
name = lines[line].substr(5, std::string::npos);
line++;
return SOP_LOADFLAT;
}
if (lines[line].substr(0, 5) == "play_")
{
name = lines[line].substr(5, std::string::npos);
line++;
return SOP_PLAY;
}
if (lines[line].substr(0, 5) == "draw_")
{
line++;
return SOP_DRAW;
}
if (lines[line].substr(0, 5) == "wait_")
{
line++;
return SOP_WAIT;
}
if (lines[line].substr(0, 5) == "text_")
{
name = lines[line].substr(5, std::string::npos);
line++;
return SOP_TEXT;
}
if (lines[line].substr(0, 5) == "song_")
{
name = lines[line].substr(5, std::string::npos);
line++;
return SOP_SONG;
}
line++;
if (line == lines.size())
{
line = 0;
return SOP_END;
}
return SOP_NOP;
}
void Script::GetLevelNames(std::vector<std::string>& names)
{
for (auto& s : lines)
{
if (s.length() > 5)
{
if (s.substr(0, 5) == "text_")
{
names.push_back(s.substr(5, std::string::npos));
}
}
}
}