blob: 5b6aa4e0da1c5cafe58e554e26f85d092dadcdeb (
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
|
#include "settings_json.hpp"
#include <fstream>
namespace mbgl {
Settings_JSON::Settings_JSON() { load(); }
void Settings_JSON::load() {
std::ifstream file("/tmp/mbgl-native.cfg");
if (file) {
file >> longitude;
file >> latitude;
file >> zoom;
file >> bearing;
file >> pitch;
file >> debug;
file >> online;
}
}
void Settings_JSON::save() {
std::ofstream file("/tmp/mbgl-native.cfg");
if (file) {
file << longitude << std::endl;
file << latitude << std::endl;
file << zoom << std::endl;
file << bearing << std::endl;
file << pitch << std::endl;
file << debug << std::endl;
file << online << std::endl;
}
}
void Settings_JSON::clear() {
longitude = 0;
latitude = 0;
zoom = 0;
bearing = 0;
pitch = 0;
debug = 0;
online = true;
}
} // namespace mbgl
|