aboutsummaryrefslogtreecommitdiffstats
path: root/src/brice.cpp
blob: ad4ea9549c4d9c23ebcbc00a04faf3b0059d158c (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
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
#include <brice.hpp>

#include <unordered_map>
#include <string>
#include <fstream>
#include <istream>
#include <sstream>

#include <common.hpp>
#include <error.hpp>
#include <fileio.hpp>

static std::unordered_map<std::string, std::string> brice;

std::vector<std::string> StringTokenizer(const std::string& str, char delim);

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 briceClear(void) {
		std::ofstream out ("brice.dat", std::ios::out);
		const std::string defaultt = "1\nSlow\n1\n";
		out.write(defaultt.data(), defaultt.size());
		out.close();
		briceLoad();
	}

	void briceSave(void) {
		std::ofstream out ("brice.dat", std::ios::out | std::ios::binary);
		std::string data = std::to_string(brice.size()) + '\n';

		UserAssert(out.is_open(), "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) {
		if (!fileExists("brice.dat"))
			briceClear();
		auto data = readFile("brice.dat");

		if (data.empty()) {
			briceClear();
			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 * 2; i += 2) {
				brice.emplace(std::make_pair(datas[i], datas[i + 1]));
			}
		}
	}

	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));
	}
}

std::vector<std::string> StringTokenizer(const std::string& str, char delim)
{
	std::vector<std::string> tokens;
	std::istringstream is (str);
	std::string token;

	while (getline(is, token, delim))
		tokens.emplace_back(token);

	return tokens;
}