-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmls.cpp
229 lines (210 loc) · 5.91 KB
/
mls.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
/* MLS - Mod Loader`s Settings */
/* A functionality to store game/mods settings in a better way */
/* (for those who doesn`t like 1000 config files) */
#include <mod/amlmod.h>
#include <mod/logger.h>
#include <mod/listitem.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include "mls.h"
extern bool g_bMLSOnlyManualSaves;
class MLSKeychain;
struct MLSStorage
{
char szKey[MAX_KEY_LEN];
char szValue[MAX_VAL_LEN];
};
MLSKeychain* listSets = NULL;
LIST_START(MLSKeychain)
LIST_INITSTART(MLSKeychain)
memset(storage.szKey, 0, sizeof(storage.szKey));
memset(storage.szValue, 0, sizeof(storage.szValue));
LIST_INITEND()
MLSStorage storage;
LIST_END()
void MLS::LoadFile()
{
char path[256];
snprintf(path, sizeof(path), "%s/gamesave.mls", aml->GetAndroidDataPath());
FILE* f = fopen(path, "rb");
if(!f)
{
logger->Error("An error (%d) opening MLS file!", errno, strerror(errno));
return;
}
logger->Info("MLS file is opened, reading sets...");
MLSKeychain* item;
while(true)
{
item = new MLSKeychain;
fread(&item->storage, sizeof(MLSStorage), 1, f);
if(!feof(f))
{
item->Push(&listSets);
}
else
{
fclose(f);
logger->Info("MLS file has been readed. Sets: %d", item->Count());
return;
}
}
}
void MLS::SaveFile()
{
char path[256];
snprintf(path, sizeof(path), "%s/gamesave.mls", aml->GetAndroidDataPath());
FILE* f = fopen(path, "wb");
if(!f) return;
LIST_FOR_FAST(listSets)
{
fwrite(&item->storage, sizeof(MLSStorage), 1, f);
}
fclose(f);
}
bool MLS::HasValue(const char* key)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key)) return true;
}
return false;
}
void MLS::DeleteValue(const char* key)
{
LIST_FOR(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
item->Remove(&listSets);
delete item;
if(!g_bMLSOnlyManualSaves) SaveFile();
}
}
}
void MLS::SetInt(const char* key, int32_t val)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
memset(item->storage.szValue, 0, sizeof(MLSStorage::szValue));
snprintf(item->storage.szValue, sizeof(MLSStorage::szValue), "%d", val);
if(!g_bMLSOnlyManualSaves) SaveFile();
return;
}
}
MLSKeychain* newitem = new MLSKeychain;
snprintf(newitem->storage.szKey, sizeof(MLSStorage::szKey), "%s", key);
snprintf(newitem->storage.szValue, sizeof(MLSStorage::szValue), "%d", val);
newitem->Push(&listSets);
if(!g_bMLSOnlyManualSaves) SaveFile();
}
void MLS::SetFloat(const char* key, float val)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
memset(item->storage.szValue, 0, sizeof(MLSStorage::szValue));
snprintf(item->storage.szValue, sizeof(MLSStorage::szValue), "%8.6f", val);
if(!g_bMLSOnlyManualSaves) SaveFile();
return;
}
}
MLSKeychain* newitem = new MLSKeychain;
snprintf(newitem->storage.szKey, sizeof(MLSStorage::szKey), "%s", key);
snprintf(newitem->storage.szValue, sizeof(MLSStorage::szValue), "%8.6f", val);
newitem->Push(&listSets);
if(!g_bMLSOnlyManualSaves) SaveFile();
}
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wformat" // dumb ass clang cries about "ld needs to be lld" and "lld needs to be ld" at the SAME TIME
void MLS::SetInt64(const char* key, int64_t val)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
memset(item->storage.szValue, 0, sizeof(MLSStorage::szValue));
snprintf(item->storage.szValue, sizeof(MLSStorage::szValue), "%lld", val);
if(!g_bMLSOnlyManualSaves) SaveFile();
return;
}
}
MLSKeychain* newitem = new MLSKeychain;
snprintf(newitem->storage.szKey, sizeof(MLSStorage::szKey), "%s", key);
snprintf(newitem->storage.szValue, sizeof(MLSStorage::szValue), "%lld", val);
newitem->Push(&listSets);
if(!g_bMLSOnlyManualSaves) SaveFile();
}
#pragma clang diagnostic pop
void MLS::SetStr(const char* key, const char *val)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
memset(item->storage.szValue, 0, sizeof(MLSStorage::szValue));
snprintf(item->storage.szValue, sizeof(MLSStorage::szValue), "%s", val);
if(!g_bMLSOnlyManualSaves) SaveFile();
return;
}
}
MLSKeychain* newitem = new MLSKeychain;
snprintf(newitem->storage.szKey, sizeof(MLSStorage::szKey), "%s", key);
snprintf(newitem->storage.szValue, sizeof(MLSStorage::szValue), "%s", val);
newitem->Push(&listSets);
if(!g_bMLSOnlyManualSaves) SaveFile();
}
bool MLS::GetInt(const char* key, int32_t *val)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
*val = atoi(item->storage.szValue);
return true;
}
}
return false;
}
bool MLS::GetFloat(const char* key, float *val)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
*val = atof(item->storage.szValue);
return true;
}
}
return false;
}
bool MLS::GetInt64(const char* key, int64_t *val)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
*val = atoll(item->storage.szValue);
return true;
}
}
return false;
}
bool MLS::GetStr(const char* key, char *val, size_t len)
{
LIST_FOR_FAST(listSets)
{
if(!strcmp(item->storage.szKey, key))
{
memset(val, 0, len);
snprintf(val, len, "%s", item->storage.szValue);
return true;
}
}
return false;
}