forked from nbcraft-org/nbcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppPlatform.cpp
More file actions
294 lines (215 loc) · 4.36 KB
/
AppPlatform.cpp
File metadata and controls
294 lines (215 loc) · 4.36 KB
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/********************************************************************
Minecraft: Pocket Edition - Decompilation Project
Copyright (C) 2023 iProgramInCpp
The following code is licensed under the BSD 1 clause license.
SPDX-License-Identifier: BSD-1-Clause
********************************************************************/
#include <fstream>
#include "AppPlatform.hpp"
#include "common/Utils.hpp"
AppPlatform* AppPlatform::m_singleton = nullptr;
AppPlatform* const AppPlatform::singleton()
{
return m_singleton;
}
AppPlatform::AppPlatform()
{
m_singleton = this;
}
AppPlatform::~AppPlatform()
{
}
void AppPlatform::_tick()
{
}
void AppPlatform::buyGame()
{
}
int AppPlatform::checkLicense()
{
return 0; // assume no license
}
void AppPlatform::createUserInput()
{
}
void AppPlatform::finish()
{
}
std::string AppPlatform::getDateString(int time)
{
return "";
}
// ??? AppPlatform::getOptionStrings()
// To whoever is confused about the above, we moved it to Options::getOptionStrings()
int AppPlatform::getScreenWidth() const
{
return C_DEFAULT_SCREEN_WIDTH; // default rez of the XPERIA PLAY?
}
int AppPlatform::getScreenHeight() const
{
return C_DEFAULT_SCREEN_HEIGHT;
}
std::vector<std::string> AppPlatform::getUserInput()
{
return std::vector<std::string>();
}
int AppPlatform::getUserInputStatus()
{
return 0;
}
bool AppPlatform::hasBuyButtonWhenInvalidLicense()
{
return false;
}
// void AppPlatform::loadTexture(const std::string&, bool);
void AppPlatform::saveScreenshot(const std::string&, int, int)
{
}
void AppPlatform::showDialog(eDialogType type)
{
}
void AppPlatform::uploadPlatformDependentData(int, void*)
{
}
Texture AppPlatform::loadTexture(const std::string&, bool bIsRequired)
{
return Texture(0, 0, nullptr, 1, 0);
}
#ifndef ORIGINAL_CODE
bool AppPlatform::doesTextureExist(const std::string& path) const
{
return false;
}
bool AppPlatform::isTouchscreen() const
{
return true;
}
bool AppPlatform::hasGamepad() const
{
return false;
}
void AppPlatform::recenterMouse()
{
}
void AppPlatform::setMouseGrabbed(bool b)
{
}
void AppPlatform::getMouseDiff(int& x, int& y)
{
x = y = 0;
}
void AppPlatform::clearDiff()
{
}
void AppPlatform::updateFocused(bool focused)
{
}
bool AppPlatform::shiftPressed()
{
return false;
}
void AppPlatform::showKeyboard(int x, int y, int w, int h)
{
showKeyboard();
}
void AppPlatform::showKeyboard()
{
}
void AppPlatform::showKeyboard(bool bShown)
{
if (bShown)
showKeyboard();
else
hideKeyboard();
}
void AppPlatform::hideKeyboard()
{
}
void AppPlatform::onHideKeyboard()
{
}
#ifdef USE_NATIVE_ANDROID
int AppPlatform::getKeyboardUpOffset()
{
return 0;
}
#endif
void AppPlatform::vibrate(int milliSeconds)
{
}
void AppPlatform::_fireLowMemory()
{
}
void AppPlatform::_fireAppSuspended()
{
}
void AppPlatform::_fireAppResumed()
{
}
void AppPlatform::_fireAppFocusLost()
{
}
void AppPlatform::_fireAppFocusGained()
{
}
void AppPlatform::_fireAppTerminated()
{
}
bool AppPlatform::hasFileSystemAccess()
{
return false;
}
std::string AppPlatform::getPatchData()
{
const AssetFile file = readAssetFile("patches/patch_data.txt", false);
std::string out = std::string(file.data, file.data + file.size);
delete file.data;
return out;
}
AssetFile AppPlatform::readAssetFile(const std::string& path, bool quiet) const
{
std::string realPath = getAssetPath(path);
std::ifstream ifs(realPath.c_str());
// Open File
if (!ifs.is_open())
{
if (!quiet) LOG_W("Couldn't find asset file: %s", realPath.c_str());
return AssetFile();
}
std::filebuf* pbuf = ifs.rdbuf();
// Get File Size
std::streamoff size = pbuf->pubseekoff(0, ifs.end, ifs.in);
pbuf->pubseekpos(0, ifs.in);
if (size < 0)
{
if (!quiet) LOG_E("Error determining the size of the asset file!");
ifs.close();
return AssetFile();
}
// Read Data
char *buf = new char[size];
pbuf->sgetn(buf, (std::streamsize)size);
// Close File
ifs.close();
// Return
return AssetFile((int64_t)size, (unsigned char*)buf);
}
void AppPlatform::initSoundSystem()
{
}
SoundSystem* const AppPlatform::getSoundSystem() const
{
return nullptr;
}
#endif
std::string AppPlatform::getAssetPath(const std::string &path) const
{
std::string realPath = path;
if (realPath.size() && realPath[0] == '/')
{
// trim it off
realPath = realPath.substr(1);
}
realPath = "assets/" + realPath;
return realPath;
}