-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASSFile.cpp
283 lines (223 loc) · 5 KB
/
ASSFile.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
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
#include "ASSFile.h"
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <utility>
#define PREPROCESS_STOP_READ_LINE "Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text"
ASSFile::ASSFile()
{
}
ASSFile::ASSFile(std::string inFileName)
{
std::ifstream fin(inFileName);
if (!fin.good())
throw "Input file not found!";
this->title = convertUnderscoreToSpace(inFileName);
readPreprocessLines(fin);
processLyricLines(fin);
fin.close();
while (this->lines.rbegin()->getText() == "") this->lines.pop_back();
}
std::string ASSFile::convertUnderscoreToSpace(std::string input)
{
std::string result;
for (char c : input)
{
if (c == '_') result += ' ';
else result += c;
}
return result;
}
void ASSFile::readPreprocessLines(std::ifstream &fin)
{
this->preprocess.clear();
std::string currLine;
while (1)
{
getline(fin, currLine);
this->preprocess.push_back(currLine);
if (currLine == PREPROCESS_STOP_READ_LINE) break;
}
}
void ASSFile::readPreprocessLines(std::string inFileName)
{
std::ifstream fin(inFileName);
if (!fin.good())
throw "Cannot find style file!";
readPreprocessLines(fin);
}
void ASSFile::removeAllTags()
{
for (ASSLine line : this->lines)
line.removeAllTags();
}
void ASSFile::removeNonKaraokeTags()
{
for (ASSLine line : this->lines)
line.removeNonKaraokeTags();
}
void ASSFile::processLyricLines(std::ifstream &fin)
{
while (1)
{
std::string currLineString;
getline(fin, currLineString);
if (fin.eof()) break;
ASSLine currLine(currLineString);
this->lines.push_back(currLine);
}
}
void ASSFile::printASSFile(std::string outFileName)
{
std::ofstream fout(outFileName);
for (std::string line : this->preprocess)
fout << line << std::endl;
for (ASSLine line : this->lines)
fout << line.printASSLine();
}
int ASSFile::getNumLines()
{
return lines.size();
}
ASSTime ASSFile::getEndTime()
{
return lines.rbegin()->getEnd();
}
void ASSFile::insertLine(ASSLine toInsert)
{
this->lines.push_back(toInsert);
}
ASSFileWithSwitch::ASSFileWithSwitch() : ASSFile()
{
}
ASSFileWithSwitch::ASSFileWithSwitch(std::string inFileName)
{
std::ifstream fin(inFileName);
if (!fin.good())
throw "File not found!";
try
{
readPreprocessLines(fin);
processLyricLines(fin);
}
catch (const char* exception)
{
throw exception;
}
fin.close();
while (this->lines.rbegin()->getText() == "") this->lines.pop_back();
}
void ASSFileWithSwitch::operator=(ASSFileWithSwitch input)
{
this->lines = input.lines;
this->preprocess = input.preprocess;
this->title = input.title;
}
std::vector <ASSLineWithSwitch> ASSFileWithSwitch::getLines()
{
return this->lines;
}
ASSLineWithSwitch ASSFileWithSwitch::getLine(int index)
{
return this->lines[index];
}
void ASSFileWithSwitch::clearLines()
{
this->lines.clear();
}
void ASSFileWithSwitch::processLyricLines(std::ifstream &fin)
{
std::vector <ASSLine> currLines;
while (1)
{
std::string currLineString;
getline(fin, currLineString);
if (fin.eof())
{
try
{
ASSLineWithSwitch currLinesWithSwitch(currLines);
this->lines.push_back(currLinesWithSwitch);
}
catch (const char* exception)
{
for (ASSLine errorLine : currLines)
{
std::cerr << errorLine.printASSLine();
}
throw exception;
}
break;
}
ASSLine currLine(currLineString);
if (currLines.empty() || (currLines.rbegin()->getText() == currLine.getText() && currLine.getLayer() != currLines.rbegin()->getLayer()))
{
currLines.push_back(currLine);
}
else
{
try
{
ASSLineWithSwitch currLinesWithSwitch(currLines);
this->lines.push_back(currLinesWithSwitch);
currLines.clear();
currLines.push_back(currLine);
}
catch (const char* exception)
{
for (ASSLine errorLine : currLines)
{
std::cerr << errorLine.printASSLine();
}
throw exception;
}
}
}
}
void ASSFileWithSwitch::printASSFile(std::string outFileName)
{
std::ofstream fout(outFileName);
for (std::string line : this->preprocess)
fout << line << std::endl;
for (ASSLineWithSwitch line : this->lines)
fout << line.printASSLine();
}
int ASSFileWithSwitch::getNumLines()
{
return lines.size();
}
ASSTime ASSFileWithSwitch::getStartTime()
{
return lines.begin()->getStart();
}
ASSTime ASSFileWithSwitch::getEndTime()
{
return lines.rbegin()->getEnd();
}
void ASSFileWithSwitch::setLine(ASSLineWithSwitch toSet, int index)
{
this->lines[index] = toSet;
}
void ASSFileWithSwitch::insertLine(ASSLineWithSwitch toInsert)
{
this->lines.push_back(toInsert);
}
void ASSFileWithSwitch::deleteLine(int index)
{
this->lines.erase(this->lines.begin() + index);
}
void ASSFileWithSwitch::swapLines(int index1, int index2)
{
std::swap(lines[index1], lines[index2]);
}
void ASSFileWithSwitch::appendFile(ASSFileWithSwitch toAppend)
{
for (ASSLineWithSwitch currLine : toAppend.getLines())
this->lines.push_back(currLine);
}
void ASSFileWithSwitch::offsetFile(ASSTime offset)
{
for (ASSLineWithSwitch& currLine : this->lines)
currLine.offsetLine(offset);
}