blob: fb9834dfa1712e2e03b98d978dae403c69e1e967 (
plain)
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
|
#include <brice.hpp>
#include <unordered_map>
#include <string>
#include <fstream>
#include <istream>
#include <common.hpp>
static std::unordered_map<std::string, std::string> brice;
namespace game {
bool canJump;
bool canSprint;
std::string getValue(const std::string& id) {
auto item = brice.find(id);
if (item == std::end(brice))
return "";
return item->second;
}
bool setValue(const std::string& id, const std::string& value) {
auto item = brice.find(id);
if (item == std::end(brice)) {
brice.emplace(std::make_pair(id, value));
return false;
} else {
item->second = value;
return true;
}
}
void briceSave(void) {
std::ofstream out ("brice.dat", std::ios::out | std::ios::binary);
std::string data = std::to_string(brice.size()) + '\n';
if (!out.is_open())
UserError("Cannot open brice data file");
for (const auto& i : brice) {
data.append(i.first + '\n');
data.append(i.second + '\n');
}
out.write(data.data(), data.size());
out.close();
}
void briceLoad(void) {
const char *data = readFile("brice.dat");
auto datas = StringTokenizer(data, '\n');
if (datas.size() != 0) {
const unsigned int count = datas[0][0] - '0';
for (unsigned int i = 1; i <= count; i += 2) {
std::cout << datas[i] << ' ' << datas[i + 1] << '\n';
brice.emplace(std::make_pair(datas[i], datas[i + 1]));
}
}
delete[] data;
}
void briceUpdate(void) {
auto getIntValue = [&](const std::string& id) {
int val;
try {
val = std::stoi(getValue(id));
} catch (const std::invalid_argument &e) {
val = 0;
}
return val;
};
// set default values
canJump = false;
canSprint = false;
// attempt to load actual values
canJump = getIntValue("canJump");
canSprint = getIntValue("canSprint");
// re-save values
setValue("canJump", std::to_string(canJump));
setValue("canSprint", std::to_string(canSprint));
}
}
|