-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrbrse.cpp
73 lines (63 loc) · 2.45 KB
/
rbrse.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
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <algorithm>
int main(int argc, char *argv[])
{
std::ifstream repfile;
std::ofstream setfile;
std::streampos size;
std::vector<char> buffer;
std::ptrdiff_t start_pos;
std::ptrdiff_t end_pos;
std::string repname;
std::string setname;
std::vector<char> wanted_start{'(', '(', '\"'};
std::vector<char> wanted_end{')', '\n', ' ', ')', ')'};
std::cout << "RBR Setup Extractor \n";
std::cout << "https://github.com/wbsth/rbr-setup-extractor\n";
// check for proper number of args
if(argc != 2){
std::cout << "Error - proper usage: extractor.exe <replay_file_path>\n";
}
else{
// get the file names
repname = argv[1];
setname = repname.substr(0, repname.find_last_of("."));
// open replay file (binary mode, pos to end of file)
repfile.open(repname, std::ios::binary | std::ios::ate);
if (repfile.is_open())
{
std::cout << "Replay loaded\n";
// get replay file size
size = repfile.tellg();
// move pos back to 0
repfile.seekg(0, std::ios::beg);
// resize buffer according to the size of the rep, loading data into buffer
buffer.resize(size);
repfile.read(buffer.data(), size);
// look for start and end of the setup
auto set_beg = std::search(buffer.begin(), buffer.end(), wanted_start.begin(), wanted_start.end());
auto set_end = std::search(buffer.begin(), buffer.end(), wanted_end.begin(), wanted_end.end());
// if start and end of the setup were found
if (set_beg != buffer.end() && set_end != buffer.end())
{
// calculate vector indexes of the begging and end of the setup
start_pos = std::distance(buffer.begin(), set_beg);
end_pos = std::distance(buffer.begin(), set_end) + wanted_end.size();
// open output file and write setup to it
setfile.open(setname + ".lsp");
setfile.write(&buffer[start_pos], end_pos - start_pos);
std::cout << "Setup extracted as " << setname << ".lsp" << std::endl;
setfile.close();
}
repfile.close();
}
else{
std::cout << "Error during loading replay file\n";
}
}
system("pause");
return 0;
}