Skip to content

Latest commit

 

History

History
2755 lines (2293 loc) · 99.8 KB

SDL_android.c

File metadata and controls

2755 lines (2293 loc) · 99.8 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 17, 2020
Jan 17, 2020
3
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"
#include "SDL_stdinc.h"
#include "SDL_assert.h"
#include "SDL_hints.h"
#include "SDL_log.h"
Aug 28, 2017
Aug 28, 2017
26
#include "SDL_main.h"
Jun 28, 2019
Jun 28, 2019
27
#include "SDL_timer.h"
28
29
30
31
32
33
#ifdef __ANDROID__
#include "SDL_system.h"
#include "SDL_android.h"
Oct 26, 2017
Oct 26, 2017
34
35
#include "keyinfotable.h"
36
37
38
39
40
41
42
#include "../../events/SDL_events_c.h"
#include "../../video/android/SDL_androidkeyboard.h"
#include "../../video/android/SDL_androidmouse.h"
#include "../../video/android/SDL_androidtouch.h"
#include "../../video/android/SDL_androidvideo.h"
#include "../../video/android/SDL_androidwindow.h"
#include "../../joystick/android/SDL_sysjoystick_c.h"
Aug 12, 2017
Aug 12, 2017
43
#include "../../haptic/android/SDL_syshaptic_c.h"
44
45
#include <android/log.h>
May 23, 2019
May 23, 2019
46
#include <sys/system_properties.h>
47
48
49
#include <pthread.h>
#include <sys/types.h>
#include <unistd.h>
Aug 28, 2017
Aug 28, 2017
50
#include <dlfcn.h>
Dec 2, 2016
Dec 2, 2016
51
52
53
54
55
#define SDL_JAVA_PREFIX org_libsdl_app
#define CONCAT1(prefix, class, function) CONCAT2(prefix, class, function)
#define CONCAT2(prefix, class, function) Java_ ## prefix ## _ ## class ## _ ## function
#define SDL_JAVA_INTERFACE(function) CONCAT1(SDL_JAVA_PREFIX, SDLActivity, function)
Sep 22, 2017
Sep 22, 2017
56
57
#define SDL_JAVA_AUDIO_INTERFACE(function) CONCAT1(SDL_JAVA_PREFIX, SDLAudioManager, function)
#define SDL_JAVA_CONTROLLER_INTERFACE(function) CONCAT1(SDL_JAVA_PREFIX, SDLControllerManager, function)
Dec 2, 2016
Dec 2, 2016
58
59
#define SDL_JAVA_INTERFACE_INPUT_CONNECTION(function) CONCAT1(SDL_JAVA_PREFIX, SDLInputConnection, function)
Oct 10, 2018
Oct 10, 2018
60
61
62
63
/* Audio encoding definitions */
#define ENCODING_PCM_8BIT 3
#define ENCODING_PCM_16BIT 2
#define ENCODING_PCM_FLOAT 4
Dec 2, 2016
Dec 2, 2016
64
65
/* Java class SDLActivity */
Aug 28, 2017
Aug 28, 2017
66
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetupJNI)(
Jan 11, 2019
Jan 11, 2019
67
JNIEnv *env, jclass cls);
Aug 28, 2017
Aug 28, 2017
68
69
JNIEXPORT int JNICALL SDL_JAVA_INTERFACE(nativeRunMain)(
Jan 3, 2019
Jan 3, 2019
70
JNIEnv *env, jclass cls,
Aug 28, 2017
Aug 28, 2017
71
72
jstring library, jstring function, jobject array);
Dec 2, 2016
Dec 2, 2016
73
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeDropFile)(
Jan 3, 2019
Jan 3, 2019
74
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
75
76
jstring filename);
Jan 17, 2019
Jan 17, 2019
77
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetScreenResolution)(
Jan 3, 2019
Jan 3, 2019
78
JNIEnv *env, jclass jcls,
Jun 8, 2018
Jun 8, 2018
79
jint surfaceWidth, jint surfaceHeight,
Sep 24, 2018
Sep 24, 2018
80
jint deviceWidth, jint deviceHeight, jint format, jfloat rate);
Dec 2, 2016
Dec 2, 2016
81
Jan 17, 2019
Jan 17, 2019
82
83
84
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeResize)(
JNIEnv *env, jclass cls);
Jan 9, 2019
Jan 9, 2019
85
86
87
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceCreated)(
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
88
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceChanged)(
Jan 3, 2019
Jan 3, 2019
89
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
90
91
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceDestroyed)(
Jan 3, 2019
Jan 3, 2019
92
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
93
94
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyDown)(
Jan 3, 2019
Jan 3, 2019
95
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
96
97
98
jint keycode);
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyUp)(
Jan 3, 2019
Jan 3, 2019
99
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
100
101
jint keycode);
May 23, 2019
May 23, 2019
102
103
104
JNIEXPORT jboolean JNICALL SDL_JAVA_INTERFACE(onNativeSoftReturnKey)(
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
105
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyboardFocusLost)(
Jan 3, 2019
Jan 3, 2019
106
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
107
108
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeTouch)(
Jan 3, 2019
Jan 3, 2019
109
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
110
111
112
113
jint touch_device_id_in, jint pointer_finger_id_in,
jint action, jfloat x, jfloat y, jfloat p);
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeMouse)(
Jan 3, 2019
Jan 3, 2019
114
JNIEnv *env, jclass jcls,
Jun 5, 2018
Jun 5, 2018
115
jint button, jint action, jfloat x, jfloat y, jboolean relative);
Dec 2, 2016
Dec 2, 2016
116
117
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeAccel)(
Jan 3, 2019
Jan 3, 2019
118
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
119
120
jfloat x, jfloat y, jfloat z);
Aug 28, 2017
Aug 28, 2017
121
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeClipboardChanged)(
Jan 3, 2019
Jan 3, 2019
122
JNIEnv *env, jclass jcls);
Aug 28, 2017
Aug 28, 2017
123
Dec 2, 2016
Dec 2, 2016
124
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeLowMemory)(
Jan 3, 2019
Jan 3, 2019
125
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
126
Jan 10, 2019
Jan 10, 2019
127
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSendQuit)(
Jan 3, 2019
Jan 3, 2019
128
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
129
Jan 10, 2019
Jan 10, 2019
130
131
132
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeQuit)(
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
133
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativePause)(
Jan 3, 2019
Jan 3, 2019
134
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
135
136
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeResume)(
Jan 3, 2019
Jan 3, 2019
137
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
138
Apr 22, 2019
Apr 22, 2019
139
140
141
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeFocusChanged)(
JNIEnv *env, jclass cls, jboolean hasFocus);
Dec 2, 2016
Dec 2, 2016
142
JNIEXPORT jstring JNICALL SDL_JAVA_INTERFACE(nativeGetHint)(
Jan 3, 2019
Jan 3, 2019
143
JNIEnv *env, jclass cls,
Dec 2, 2016
Dec 2, 2016
144
145
jstring name);
Nov 4, 2017
Nov 4, 2017
146
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetenv)(
Jan 3, 2019
Jan 3, 2019
147
JNIEnv *env, jclass cls,
Nov 4, 2017
Nov 4, 2017
148
149
jstring name, jstring value);
Aug 23, 2018
Aug 23, 2018
150
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeOrientationChanged)(
Jan 3, 2019
Jan 3, 2019
151
JNIEnv *env, jclass cls,
Aug 23, 2018
Aug 23, 2018
152
153
jint orientation);
Jan 10, 2019
Jan 10, 2019
154
155
156
157
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeAddTouch)(
JNIEnv* env, jclass cls,
jint touchId, jstring name);
Dec 12, 2019
Dec 12, 2019
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
static JNINativeMethod SDLActivity_tab[] = {
{ "nativeSetupJNI", "()I", SDL_JAVA_INTERFACE(nativeSetupJNI) },
{ "nativeRunMain", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)I", SDL_JAVA_INTERFACE(nativeRunMain) },
{ "onNativeDropFile", "(Ljava/lang/String;)V", SDL_JAVA_INTERFACE(onNativeDropFile) },
{ "nativeSetScreenResolution", "(IIIIIF)V", SDL_JAVA_INTERFACE(nativeSetScreenResolution) },
{ "onNativeResize", "()V", SDL_JAVA_INTERFACE(onNativeResize) },
{ "onNativeSurfaceCreated", "()V", SDL_JAVA_INTERFACE(onNativeSurfaceCreated) },
{ "onNativeSurfaceChanged", "()V", SDL_JAVA_INTERFACE(onNativeSurfaceChanged) },
{ "onNativeSurfaceDestroyed", "()V", SDL_JAVA_INTERFACE(onNativeSurfaceDestroyed) },
{ "onNativeKeyDown", "(I)V", SDL_JAVA_INTERFACE(onNativeKeyDown) },
{ "onNativeKeyUp", "(I)V", SDL_JAVA_INTERFACE(onNativeKeyUp) },
{ "onNativeSoftReturnKey", "()Z", SDL_JAVA_INTERFACE(onNativeSoftReturnKey) },
{ "onNativeKeyboardFocusLost", "()V", SDL_JAVA_INTERFACE(onNativeKeyboardFocusLost) },
{ "onNativeTouch", "(IIIFFF)V", SDL_JAVA_INTERFACE(onNativeTouch) },
{ "onNativeMouse", "(IIFFZ)V", SDL_JAVA_INTERFACE(onNativeMouse) },
{ "onNativeAccel", "(FFF)V", SDL_JAVA_INTERFACE(onNativeAccel) },
{ "onNativeClipboardChanged", "()V", SDL_JAVA_INTERFACE(onNativeClipboardChanged) },
{ "nativeLowMemory", "()V", SDL_JAVA_INTERFACE(nativeLowMemory) },
{ "nativeSendQuit", "()V", SDL_JAVA_INTERFACE(nativeSendQuit) },
{ "nativeQuit", "()V", SDL_JAVA_INTERFACE(nativeQuit) },
{ "nativePause", "()V", SDL_JAVA_INTERFACE(nativePause) },
{ "nativeResume", "()V", SDL_JAVA_INTERFACE(nativeResume) },
{ "nativeFocusChanged", "(Z)V", SDL_JAVA_INTERFACE(nativeFocusChanged) },
{ "nativeGetHint", "(Ljava/lang/String;)Ljava/lang/String;", SDL_JAVA_INTERFACE(nativeGetHint) },
{ "nativeSetenv", "(Ljava/lang/String;Ljava/lang/String;)V", SDL_JAVA_INTERFACE(nativeSetenv) },
{ "onNativeOrientationChanged", "(I)V", SDL_JAVA_INTERFACE(onNativeOrientationChanged) },
{ "nativeAddTouch", "(ILjava/lang/String;)V", SDL_JAVA_INTERFACE(nativeAddTouch) }
};
Dec 2, 2016
Dec 2, 2016
187
188
/* Java class SDLInputConnection */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeCommitText)(
Jan 3, 2019
Jan 3, 2019
189
JNIEnv *env, jclass cls,
Dec 2, 2016
Dec 2, 2016
190
191
jstring text, jint newCursorPosition);
Sep 27, 2018
Sep 27, 2018
192
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeGenerateScancodeForUnichar)(
Jan 3, 2019
Jan 3, 2019
193
JNIEnv *env, jclass cls,
Sep 27, 2018
Sep 27, 2018
194
195
jchar chUnicode);
Dec 2, 2016
Dec 2, 2016
196
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeSetComposingText)(
Jan 3, 2019
Jan 3, 2019
197
JNIEnv *env, jclass cls,
Dec 2, 2016
Dec 2, 2016
198
199
jstring text, jint newCursorPosition);
Dec 12, 2019
Dec 12, 2019
200
201
202
203
204
205
static JNINativeMethod SDLInputConnection_tab[] = {
{ "nativeCommitText", "(Ljava/lang/String;I)V", SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeCommitText) },
{ "nativeGenerateScancodeForUnichar", "(C)V", SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeGenerateScancodeForUnichar) },
{ "nativeSetComposingText", "(Ljava/lang/String;I)V", SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeSetComposingText) }
};
Sep 22, 2017
Sep 22, 2017
206
207
208
209
/* Java class SDLAudioManager */
JNIEXPORT void JNICALL SDL_JAVA_AUDIO_INTERFACE(nativeSetupJNI)(
JNIEnv *env, jclass jcls);
Dec 12, 2019
Dec 12, 2019
210
211
212
213
static JNINativeMethod SDLAudioManager_tab[] = {
{ "nativeSetupJNI", "()I", SDL_JAVA_AUDIO_INTERFACE(nativeSetupJNI) }
};
Sep 22, 2017
Sep 22, 2017
214
215
216
217
218
/* Java class SDLControllerManager */
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeSetupJNI)(
JNIEnv *env, jclass jcls);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativePadDown)(
Jan 3, 2019
Jan 3, 2019
219
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
220
221
222
jint device_id, jint keycode);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativePadUp)(
Jan 3, 2019
Jan 3, 2019
223
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
224
225
226
jint device_id, jint keycode);
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeJoy)(
Jan 3, 2019
Jan 3, 2019
227
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
228
229
230
jint device_id, jint axis, jfloat value);
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeHat)(
Jan 3, 2019
Jan 3, 2019
231
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
232
233
234
jint device_id, jint hat_id, jint x, jint y);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddJoystick)(
Jan 3, 2019
Jan 3, 2019
235
JNIEnv *env, jclass jcls,
Mar 6, 2018
Mar 6, 2018
236
237
jint device_id, jstring device_name, jstring device_desc, jint vendor_id, jint product_id,
jboolean is_accelerometer, jint button_mask, jint naxes, jint nhats, jint nballs);
Sep 22, 2017
Sep 22, 2017
238
239
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveJoystick)(
Jan 3, 2019
Jan 3, 2019
240
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
241
242
243
jint device_id);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddHaptic)(
Jan 3, 2019
Jan 3, 2019
244
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
245
246
247
jint device_id, jstring device_name);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveHaptic)(
Jan 3, 2019
Jan 3, 2019
248
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
249
250
jint device_id);
Dec 12, 2019
Dec 12, 2019
251
252
253
254
255
256
257
258
259
260
261
static JNINativeMethod SDLControllerManager_tab[] = {
{ "nativeSetupJNI", "()I", SDL_JAVA_CONTROLLER_INTERFACE(nativeSetupJNI) },
{ "onNativePadDown", "(II)I", SDL_JAVA_CONTROLLER_INTERFACE(onNativePadDown) },
{ "onNativePadUp", "(II)I", SDL_JAVA_CONTROLLER_INTERFACE(onNativePadUp) },
{ "onNativeJoy", "(IIF)V", SDL_JAVA_CONTROLLER_INTERFACE(onNativeJoy) },
{ "onNativeHat", "(IIII)V", SDL_JAVA_CONTROLLER_INTERFACE(onNativeHat) },
{ "nativeAddJoystick", "(ILjava/lang/String;Ljava/lang/String;IIZIIII)I", SDL_JAVA_CONTROLLER_INTERFACE(nativeAddJoystick) },
{ "nativeRemoveJoystick", "(I)I", SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveJoystick) },
{ "nativeAddHaptic", "(ILjava/lang/String;)I", SDL_JAVA_CONTROLLER_INTERFACE(nativeAddHaptic) },
{ "nativeRemoveHaptic", "(I)I", SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveHaptic) }
};
Sep 22, 2017
Sep 22, 2017
262
Dec 2, 2016
Dec 2, 2016
263
264
265
266
/* Uncomment this to log messages entering and exiting methods in this file */
/* #define DEBUG_JNI */
Sep 27, 2018
Sep 27, 2018
267
static void checkJNIReady(void);
268
269
270
271
272
273
274
275
276
277
278
/*******************************************************************************
This file links the Java side of Android with libsdl
*******************************************************************************/
#include <jni.h>
/*******************************************************************************
Globals
*******************************************************************************/
static pthread_key_t mThreadKey;
Jan 11, 2019
Jan 11, 2019
279
280
static pthread_once_t key_once = PTHREAD_ONCE_INIT;
static JavaVM *mJavaVM = NULL;
281
282
283
284
285
286
/* Main activity */
static jclass mActivityClass;
/* method signatures */
static jmethodID midGetNativeSurface;
Jan 2, 2019
Jan 2, 2019
287
static jmethodID midSetSurfaceViewFormat;
Aug 14, 2017
Aug 14, 2017
288
static jmethodID midSetActivityTitle;
Feb 12, 2018
Feb 12, 2018
289
static jmethodID midSetWindowStyle;
Aug 14, 2017
Aug 14, 2017
290
static jmethodID midSetOrientation;
Jun 10, 2019
Jun 10, 2019
291
292
static jmethodID midMinimizeWindow;
static jmethodID midShouldMinimizeOnFocusLoss;
Aug 14, 2017
Aug 14, 2017
293
static jmethodID midGetContext;
Aug 22, 2018
Aug 22, 2018
294
static jmethodID midIsTablet;
Feb 6, 2018
Feb 6, 2018
295
static jmethodID midIsAndroidTV;
Jun 5, 2018
Jun 5, 2018
296
static jmethodID midIsChromebook;
Jun 18, 2018
Jun 18, 2018
297
static jmethodID midIsDeXMode;
Jul 12, 2018
Jul 12, 2018
298
static jmethodID midManualBackButton;
Jan 10, 2019
Jan 10, 2019
299
static jmethodID midInitTouch;
Aug 14, 2017
Aug 14, 2017
300
301
302
static jmethodID midSendMessage;
static jmethodID midShowTextInput;
static jmethodID midIsScreenKeyboardShown;
Aug 28, 2017
Aug 28, 2017
303
304
305
static jmethodID midClipboardSetText;
static jmethodID midClipboardGetText;
static jmethodID midClipboardHasText;
Sep 22, 2017
Sep 22, 2017
306
static jmethodID midOpenAPKExpansionInputStream;
Nov 4, 2017
Nov 4, 2017
307
static jmethodID midGetManifestEnvironmentVariables;
Oct 31, 2017
Oct 31, 2017
308
static jmethodID midGetDisplayDPI;
Mar 16, 2018
Mar 16, 2018
309
310
311
static jmethodID midCreateCustomCursor;
static jmethodID midSetCustomCursor;
static jmethodID midSetSystemCursor;
Jun 5, 2018
Jun 5, 2018
312
313
static jmethodID midSupportsRelativeMouse;
static jmethodID midSetRelativeMouseEnabled;
Aug 28, 2017
Aug 28, 2017
314
Sep 22, 2017
Sep 22, 2017
315
316
317
318
319
320
/* audio manager */
static jclass mAudioManagerClass;
/* method signatures */
static jmethodID midAudioOpen;
static jmethodID midAudioWriteByteBuffer;
Oct 10, 2018
Oct 10, 2018
321
322
static jmethodID midAudioWriteShortBuffer;
static jmethodID midAudioWriteFloatBuffer;
Sep 22, 2017
Sep 22, 2017
323
324
325
static jmethodID midAudioClose;
static jmethodID midCaptureOpen;
static jmethodID midCaptureReadByteBuffer;
Oct 10, 2018
Oct 10, 2018
326
327
static jmethodID midCaptureReadShortBuffer;
static jmethodID midCaptureReadFloatBuffer;
Sep 22, 2017
Sep 22, 2017
328
static jmethodID midCaptureClose;
Jan 10, 2019
Jan 10, 2019
329
static jmethodID midAudioSetThreadPriority;
Sep 22, 2017
Sep 22, 2017
330
331
332
333
334
335
336
337
/* controller manager */
static jclass mControllerManagerClass;
/* method signatures */
static jmethodID midPollInputDevices;
static jmethodID midPollHapticDevices;
static jmethodID midHapticRun;
Aug 24, 2018
Aug 24, 2018
338
static jmethodID midHapticStop;
339
340
/* Accelerometer data storage */
Mar 12, 2019
Mar 12, 2019
341
static SDL_DisplayOrientation displayOrientation;
342
343
344
static float fLastAccelerometer[3];
static SDL_bool bHasNewData;
Nov 5, 2017
Nov 5, 2017
345
static SDL_bool bHasEnvironmentVariables = SDL_FALSE;
Nov 4, 2017
Nov 4, 2017
346
347
348
349
350
/*******************************************************************************
Functions called by JNI
*******************************************************************************/
Jan 11, 2019
Jan 11, 2019
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/* From http://developer.android.com/guide/practices/jni.html
* All threads are Linux threads, scheduled by the kernel.
* They're usually started from managed code (using Thread.start), but they can also be created elsewhere and then
* attached to the JavaVM. For example, a thread started with pthread_create can be attached with the
* JNI AttachCurrentThread or AttachCurrentThreadAsDaemon functions. Until a thread is attached, it has no JNIEnv,
* and cannot make JNI calls.
* Attaching a natively-created thread causes a java.lang.Thread object to be constructed and added to the "main"
* ThreadGroup, making it visible to the debugger. Calling AttachCurrentThread on an already-attached thread
* is a no-op.
* Note: You can call this function any number of times for the same thread, there's no harm in it
*/
/* From http://developer.android.com/guide/practices/jni.html
* Threads attached through JNI must call DetachCurrentThread before they exit. If coding this directly is awkward,
* in Android 2.0 (Eclair) and higher you can use pthread_key_create to define a destructor function that will be
* called before the thread exits, and call DetachCurrentThread from there. (Use that key with pthread_setspecific
* to store the JNIEnv in thread-local-storage; that way it'll be passed into your destructor as the argument.)
* Note: The destructor is not called unless the stored value is != NULL
* Note: You can call this function any number of times for the same thread, there's no harm in it
* (except for some lost CPU cycles)
*/
/* Set local storage value */
static int
Android_JNI_SetEnv(JNIEnv *env) {
int status = pthread_setspecific(mThreadKey, env);
if (status < 0) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Failed pthread_setspecific() in Android_JNI_SetEnv() (err=%d)", status);
}
return status;
}
/* Get local storage value */
JNIEnv* Android_JNI_GetEnv(void)
{
/* Get JNIEnv from the Thread local storage */
JNIEnv *env = pthread_getspecific(mThreadKey);
if (env == NULL) {
Jan 20, 2019
Jan 20, 2019
389
/* If it fails, try to attach ! (e.g the thread isn't created with SDL_CreateThread() */
Jan 20, 2019
Jan 20, 2019
390
391
392
393
394
int status;
/* There should be a JVM */
if (mJavaVM == NULL) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Failed, there is no JavaVM");
Jan 20, 2019
Jan 20, 2019
395
return NULL;
Jan 20, 2019
Jan 20, 2019
396
397
398
399
400
401
402
403
404
405
406
407
408
409
}
/* Attach the current thread to the JVM and get a JNIEnv.
* It will be detached by pthread_create destructor 'Android_JNI_ThreadDestroyed' */
status = (*mJavaVM)->AttachCurrentThread(mJavaVM, &env, NULL);
if (status < 0) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Failed to attach current thread (err=%d)", status);
return NULL;
}
/* Save JNIEnv into the Thread local storage */
if (Android_JNI_SetEnv(env) < 0) {
return NULL;
}
Jan 11, 2019
Jan 11, 2019
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
}
return env;
}
/* Set up an external thread for using JNI with Android_JNI_GetEnv() */
int Android_JNI_SetupThread(void)
{
JNIEnv *env;
int status;
/* There should be a JVM */
if (mJavaVM == NULL) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Failed, there is no JavaVM");
return 0;
}
/* Attach the current thread to the JVM and get a JNIEnv.
* It will be detached by pthread_create destructor 'Android_JNI_ThreadDestroyed' */
status = (*mJavaVM)->AttachCurrentThread(mJavaVM, &env, NULL);
if (status < 0) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Failed to attach current thread (err=%d)", status);
return 0;
}
/* Save JNIEnv into the Thread local storage */
if (Android_JNI_SetEnv(env) < 0) {
return 0;
}
return 1;
}
/* Destructor called for each thread where mThreadKey is not NULL */
static void
Android_JNI_ThreadDestroyed(void *value)
{
/* The thread is being destroyed, detach it from the Java VM and set the mThreadKey value to NULL as required */
JNIEnv *env = (JNIEnv *) value;
if (env != NULL) {
(*mJavaVM)->DetachCurrentThread(mJavaVM);
Android_JNI_SetEnv(NULL);
}
}
/* Creation of local storage mThreadKey */
Jan 11, 2019
Jan 11, 2019
456
static void
Mar 12, 2019
Mar 12, 2019
457
Android_JNI_CreateKey(void)
Jan 11, 2019
Jan 11, 2019
458
459
460
461
462
463
464
{
int status = pthread_key_create(&mThreadKey, Android_JNI_ThreadDestroyed);
if (status < 0) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Error initializing mThreadKey with pthread_key_create() (err=%d)", status);
}
}
Jan 11, 2019
Jan 11, 2019
465
static void
Mar 12, 2019
Mar 12, 2019
466
Android_JNI_CreateKey_once(void)
Jan 11, 2019
Jan 11, 2019
467
468
469
470
471
472
473
{
int status = pthread_once(&key_once, Android_JNI_CreateKey);
if (status < 0) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Error initializing mThreadKey with pthread_once() (err=%d)", status);
}
}
Dec 12, 2019
Dec 12, 2019
474
475
476
477
478
479
480
481
482
483
static void
register_methods(JNIEnv *env, const char *classname, JNINativeMethod *methods, int nb)
{
jclass clazz = (*env)->FindClass(env, classname);
if (clazz == NULL || (*env)->RegisterNatives(env, clazz, methods, nb) < 0) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Failed to register methods of %s", classname);
return;
}
}
Jan 3, 2019
Jan 3, 2019
485
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved)
Dec 12, 2019
Dec 12, 2019
488
489
490
491
492
493
494
JNIEnv *env = NULL;
if ((*mJavaVM)->GetEnv(mJavaVM, (void **)&env, JNI_VERSION_1_4) != JNI_OK) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Failed to get JNI Env");
return JNI_VERSION_1_4;
}
Dec 12, 2019
Dec 12, 2019
495
496
497
498
register_methods(env, "org/libsdl/app/SDLActivity", SDLActivity_tab, SDL_arraysize(SDLActivity_tab));
register_methods(env, "org/libsdl/app/SDLInputConnection", SDLInputConnection_tab, SDL_arraysize(SDLInputConnection_tab));
register_methods(env, "org/libsdl/app/SDLAudioManager", SDLAudioManager_tab, SDL_arraysize(SDLAudioManager_tab));
register_methods(env, "org/libsdl/app/SDLControllerManager", SDLControllerManager_tab, SDL_arraysize(SDLControllerManager_tab));
Dec 12, 2019
Dec 12, 2019
499
500
501
502
return JNI_VERSION_1_4;
}
Mar 12, 2019
Mar 12, 2019
503
void checkJNIReady(void)
Sep 22, 2017
Sep 22, 2017
504
505
{
if (!mActivityClass || !mAudioManagerClass || !mControllerManagerClass) {
Dec 30, 2018
Dec 30, 2018
506
/* We aren't fully initialized, let's just return. */
Sep 22, 2017
Sep 22, 2017
507
508
509
return;
}
Dec 30, 2018
Dec 30, 2018
510
SDL_SetMainReady();
Sep 22, 2017
Sep 22, 2017
511
512
513
}
/* Activity initialization -- called before SDL_main() to initialize JNI bindings */
Jan 11, 2019
Jan 11, 2019
514
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetupJNI)(JNIEnv *env, jclass cls)
Aug 28, 2017
Aug 28, 2017
516
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "nativeSetupJNI()");
Jan 11, 2019
Jan 11, 2019
518
519
520
521
522
523
524
525
526
527
528
529
530
/*
* Create mThreadKey so we can keep track of the JNIEnv assigned to each thread
* Refer to http://developer.android.com/guide/practices/design/jni.html for the rationale behind this
*/
Android_JNI_CreateKey_once();
/* Save JNIEnv of SDLActivity */
Android_JNI_SetEnv(env);
if (mJavaVM == NULL) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "failed to found a JavaVM");
}
Jan 3, 2019
Jan 3, 2019
531
/* Use a mutex to prevent concurrency issues between Java Activity and Native thread code, when using 'Android_Window'.
Jan 3, 2019
Jan 3, 2019
532
533
* (Eg. Java sending Touch events, while native code is destroying the main SDL_Window. )
*/
Jan 3, 2019
Jan 3, 2019
534
535
if (Android_ActivityMutex == NULL) {
Android_ActivityMutex = SDL_CreateMutex(); /* Could this be created twice if onCreate() is called a second time ? */
Jan 3, 2019
Jan 3, 2019
536
537
}
Jan 3, 2019
Jan 3, 2019
538
if (Android_ActivityMutex == NULL) {
Jan 11, 2019
Jan 11, 2019
539
__android_log_print(ANDROID_LOG_ERROR, "SDL", "failed to create Android_ActivityMutex mutex");
Jan 3, 2019
Jan 3, 2019
540
541
}
Jan 14, 2019
Jan 14, 2019
542
543
544
545
546
547
548
549
550
551
552
Android_PauseSem = SDL_CreateSemaphore(0);
if (Android_PauseSem == NULL) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "failed to create Android_PauseSem semaphore");
}
Android_ResumeSem = SDL_CreateSemaphore(0);
if (Android_ResumeSem == NULL) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "failed to create Android_ResumeSem semaphore");
}
Jan 11, 2019
Jan 11, 2019
553
mActivityClass = (jclass)((*env)->NewGlobalRef(env, cls));
Jan 11, 2019
Jan 11, 2019
555
midGetNativeSurface = (*env)->GetStaticMethodID(env, mActivityClass,
556
"getNativeSurface","()Landroid/view/Surface;");
Jan 11, 2019
Jan 11, 2019
557
midSetSurfaceViewFormat = (*env)->GetStaticMethodID(env, mActivityClass,
Jan 2, 2019
Jan 2, 2019
558
"setSurfaceViewFormat","(I)V");
Jan 11, 2019
Jan 11, 2019
559
midSetActivityTitle = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
560
"setActivityTitle","(Ljava/lang/String;)Z");
Jan 11, 2019
Jan 11, 2019
561
midSetWindowStyle = (*env)->GetStaticMethodID(env, mActivityClass,
Feb 12, 2018
Feb 12, 2018
562
"setWindowStyle","(Z)V");
Jan 11, 2019
Jan 11, 2019
563
midSetOrientation = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
564
"setOrientation","(IIZLjava/lang/String;)V");
Jun 10, 2019
Jun 10, 2019
565
566
567
568
midMinimizeWindow = (*env)->GetStaticMethodID(env, mActivityClass,
"minimizeWindow","()V");
midShouldMinimizeOnFocusLoss = (*env)->GetStaticMethodID(env, mActivityClass,
"shouldMinimizeOnFocusLoss","()Z");
Jan 11, 2019
Jan 11, 2019
569
midGetContext = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
570
"getContext","()Landroid/content/Context;");
Jan 11, 2019
Jan 11, 2019
571
midIsTablet = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 22, 2018
Aug 22, 2018
572
"isTablet", "()Z");
Jan 11, 2019
Jan 11, 2019
573
midIsAndroidTV = (*env)->GetStaticMethodID(env, mActivityClass,
Feb 6, 2018
Feb 6, 2018
574
"isAndroidTV","()Z");
Jan 11, 2019
Jan 11, 2019
575
midIsChromebook = (*env)->GetStaticMethodID(env, mActivityClass,
Jun 5, 2018
Jun 5, 2018
576
"isChromebook", "()Z");
Jan 11, 2019
Jan 11, 2019
577
midIsDeXMode = (*env)->GetStaticMethodID(env, mActivityClass,
Jun 18, 2018
Jun 18, 2018
578
"isDeXMode", "()Z");
Jan 11, 2019
Jan 11, 2019
579
midManualBackButton = (*env)->GetStaticMethodID(env, mActivityClass,
Jul 12, 2018
Jul 12, 2018
580
"manualBackButton", "()V");
Jan 11, 2019
Jan 11, 2019
581
midInitTouch = (*env)->GetStaticMethodID(env, mActivityClass,
Jan 10, 2019
Jan 10, 2019
582
"initTouch", "()V");
Jan 11, 2019
Jan 11, 2019
583
midSendMessage = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
584
"sendMessage", "(II)Z");
Jan 11, 2019
Jan 11, 2019
585
midShowTextInput = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
586
"showTextInput", "(IIII)Z");
Jan 11, 2019
Jan 11, 2019
587
midIsScreenKeyboardShown = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
588
"isScreenKeyboardShown","()Z");
Jan 11, 2019
Jan 11, 2019
589
midClipboardSetText = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 28, 2017
Aug 28, 2017
590
"clipboardSetText", "(Ljava/lang/String;)V");
Jan 11, 2019
Jan 11, 2019
591
midClipboardGetText = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 28, 2017
Aug 28, 2017
592
"clipboardGetText", "()Ljava/lang/String;");
Jan 11, 2019
Jan 11, 2019
593
midClipboardHasText = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 28, 2017
Aug 28, 2017
594
"clipboardHasText", "()Z");
Jan 11, 2019
Jan 11, 2019
595
midOpenAPKExpansionInputStream = (*env)->GetStaticMethodID(env, mActivityClass,
Sep 22, 2017
Sep 22, 2017
596
"openAPKExpansionInputStream", "(Ljava/lang/String;)Ljava/io/InputStream;");
Jan 11, 2019
Jan 11, 2019
598
midGetManifestEnvironmentVariables = (*env)->GetStaticMethodID(env, mActivityClass,
Nov 5, 2017
Nov 5, 2017
599
"getManifestEnvironmentVariables", "()Z");
Oct 24, 2017
Oct 24, 2017
600
Jan 11, 2019
Jan 11, 2019
601
602
603
604
midGetDisplayDPI = (*env)->GetStaticMethodID(env, mActivityClass, "getDisplayDPI", "()Landroid/util/DisplayMetrics;");
midCreateCustomCursor = (*env)->GetStaticMethodID(env, mActivityClass, "createCustomCursor", "([IIIII)I");
midSetCustomCursor = (*env)->GetStaticMethodID(env, mActivityClass, "setCustomCursor", "(I)Z");
midSetSystemCursor = (*env)->GetStaticMethodID(env, mActivityClass, "setSystemCursor", "(I)Z");
Oct 31, 2017
Oct 31, 2017
605
Jan 11, 2019
Jan 11, 2019
606
607
midSupportsRelativeMouse = (*env)->GetStaticMethodID(env, mActivityClass, "supportsRelativeMouse", "()Z");
midSetRelativeMouseEnabled = (*env)->GetStaticMethodID(env, mActivityClass, "setRelativeMouseEnabled", "(Z)Z");
Jun 5, 2018
Jun 5, 2018
608
Aug 21, 2018
Aug 21, 2018
609
Jan 2, 2019
Jan 2, 2019
610
if (!midGetNativeSurface || !midSetSurfaceViewFormat ||
Jun 10, 2019
Jun 10, 2019
611
!midSetActivityTitle || !midSetWindowStyle || !midSetOrientation || !midMinimizeWindow || !midShouldMinimizeOnFocusLoss || !midGetContext || !midIsTablet || !midIsAndroidTV || !midInitTouch ||
Nov 4, 2017
Nov 4, 2017
612
!midSendMessage || !midShowTextInput || !midIsScreenKeyboardShown ||
Sep 22, 2017
Sep 22, 2017
613
!midClipboardSetText || !midClipboardGetText || !midClipboardHasText ||
Mar 16, 2018
Mar 16, 2018
614
!midOpenAPKExpansionInputStream || !midGetManifestEnvironmentVariables || !midGetDisplayDPI ||
Jun 5, 2018
Jun 5, 2018
615
!midCreateCustomCursor || !midSetCustomCursor || !midSetSystemCursor || !midSupportsRelativeMouse || !midSetRelativeMouseEnabled ||
Aug 22, 2018
Aug 22, 2018
616
!midIsChromebook || !midIsDeXMode || !midManualBackButton) {
Aug 28, 2017
Aug 28, 2017
617
__android_log_print(ANDROID_LOG_WARN, "SDL", "Missing some Java callbacks, do you have the latest version of SDLActivity.java?");
Aug 12, 2017
Aug 12, 2017
619
Sep 22, 2017
Sep 22, 2017
620
621
622
623
checkJNIReady();
}
/* Audio initialization -- called before SDL_main() to initialize JNI bindings */
Jan 11, 2019
Jan 11, 2019
624
JNIEXPORT void JNICALL SDL_JAVA_AUDIO_INTERFACE(nativeSetupJNI)(JNIEnv *env, jclass cls)
Sep 22, 2017
Sep 22, 2017
625
626
627
{
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "AUDIO nativeSetupJNI()");
Jan 11, 2019
Jan 11, 2019
628
mAudioManagerClass = (jclass)((*env)->NewGlobalRef(env, cls));
Sep 22, 2017
Sep 22, 2017
629
Jan 11, 2019
Jan 11, 2019
630
midAudioOpen = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
631
"audioOpen", "(IIII)[I");
Jan 11, 2019
Jan 11, 2019
632
midAudioWriteByteBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
633
"audioWriteByteBuffer", "([B)V");
Jan 11, 2019
Jan 11, 2019
634
midAudioWriteShortBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
635
"audioWriteShortBuffer", "([S)V");
Jan 11, 2019
Jan 11, 2019
636
midAudioWriteFloatBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
637
"audioWriteFloatBuffer", "([F)V");
Jan 11, 2019
Jan 11, 2019
638
midAudioClose = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
639
"audioClose", "()V");
Jan 11, 2019
Jan 11, 2019
640
midCaptureOpen = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
641
"captureOpen", "(IIII)[I");
Jan 11, 2019
Jan 11, 2019
642
midCaptureReadByteBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
643
"captureReadByteBuffer", "([BZ)I");
Jan 11, 2019
Jan 11, 2019
644
midCaptureReadShortBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
645
"captureReadShortBuffer", "([SZ)I");
Jan 11, 2019
Jan 11, 2019
646
midCaptureReadFloatBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
647
"captureReadFloatBuffer", "([FZ)I");
Jan 11, 2019
Jan 11, 2019
648
midCaptureClose = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
649
"captureClose", "()V");
Jan 11, 2019
Jan 11, 2019
650
midAudioSetThreadPriority = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Jan 10, 2019
Jan 10, 2019
651
"audioSetThreadPriority", "(ZI)V");
Sep 22, 2017
Sep 22, 2017
652
Oct 10, 2018
Oct 10, 2018
653
if (!midAudioOpen || !midAudioWriteByteBuffer || !midAudioWriteShortBuffer || !midAudioWriteFloatBuffer || !midAudioClose ||
Jan 10, 2019
Jan 10, 2019
654
!midCaptureOpen || !midCaptureReadByteBuffer || !midCaptureReadShortBuffer || !midCaptureReadFloatBuffer || !midCaptureClose || !midAudioSetThreadPriority) {
Sep 22, 2017
Sep 22, 2017
655
656
657
658
659
660
661
__android_log_print(ANDROID_LOG_WARN, "SDL", "Missing some Java callbacks, do you have the latest version of SDLAudioManager.java?");
}
checkJNIReady();
}
/* Controller initialization -- called before SDL_main() to initialize JNI bindings */
Jan 11, 2019
Jan 11, 2019
662
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeSetupJNI)(JNIEnv *env, jclass cls)
Sep 22, 2017
Sep 22, 2017
663
664
665
{
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "CONTROLLER nativeSetupJNI()");
Jan 11, 2019
Jan 11, 2019
666
mControllerManagerClass = (jclass)((*env)->NewGlobalRef(env, cls));
Sep 22, 2017
Sep 22, 2017
667
Jan 11, 2019
Jan 11, 2019
668
midPollInputDevices = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Sep 22, 2017
Sep 22, 2017
669
"pollInputDevices", "()V");
Jan 11, 2019
Jan 11, 2019
670
midPollHapticDevices = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Sep 22, 2017
Sep 22, 2017
671
"pollHapticDevices", "()V");
Jan 11, 2019
Jan 11, 2019
672
midHapticRun = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Oct 16, 2018
Oct 16, 2018
673
"hapticRun", "(IFI)V");
Jan 11, 2019
Jan 11, 2019
674
midHapticStop = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Aug 24, 2018
Aug 24, 2018
675
"hapticStop", "(I)V");
Sep 22, 2017
Sep 22, 2017
676
Aug 24, 2018
Aug 24, 2018
677
if (!midPollInputDevices || !midPollHapticDevices || !midHapticRun || !midHapticStop) {
Sep 22, 2017
Sep 22, 2017
678
679
680
681
__android_log_print(ANDROID_LOG_WARN, "SDL", "Missing some Java callbacks, do you have the latest version of SDLControllerManager.java?");
}
checkJNIReady();
Aug 28, 2017
Aug 28, 2017
682
683
684
685
686
687
}
/* SDL main function prototype */
typedef int (*SDL_main_func)(int argc, char *argv[]);
/* Start up the SDL app */
Jan 3, 2019
Jan 3, 2019
688
JNIEXPORT int JNICALL SDL_JAVA_INTERFACE(nativeRunMain)(JNIEnv *env, jclass cls, jstring library, jstring function, jobject array)
Aug 28, 2017
Aug 28, 2017
689
690
691
692
693
{
int status = -1;
const char *library_file;
void *library_handle;
Aug 28, 2017
Aug 28, 2017
694
695
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "nativeRunMain()");
Jan 11, 2019
Jan 11, 2019
696
697
698
/* Save JNIEnv of SDLThread */
Android_JNI_SetEnv(env);
Aug 28, 2017
Aug 28, 2017
699
700
library_file = (*env)->GetStringUTFChars(env, library, NULL);
library_handle = dlopen(library_file, RTLD_GLOBAL);
Jul 27, 2019
Jul 27, 2019
701
702
703
704
705
706
707
708
709
710
711
if (!library_handle) {
/* When deploying android app bundle format uncompressed native libs may not extract from apk to filesystem.
In this case we should use lib name without path. https://bugzilla.libsdl.org/show_bug.cgi?id=4739 */
const char *library_name = SDL_strrchr(library_file, '/');
if (library_name && *library_name) {
library_name += 1;
library_handle = dlopen(library_name, RTLD_GLOBAL);
}
}
Aug 28, 2017
Aug 28, 2017
712
713
714
715
716
717
718
719
720
721
722
if (library_handle) {
const char *function_name;
SDL_main_func SDL_main;
function_name = (*env)->GetStringUTFChars(env, function, NULL);
SDL_main = (SDL_main_func)dlsym(library_handle, function_name);
if (SDL_main) {
int i;
int argc;
int len;
char **argv;
Oct 23, 2018
Oct 23, 2018
723
SDL_bool isstack;
Aug 28, 2017
Aug 28, 2017
724
725
726
/* Prepare the arguments. */
len = (*env)->GetArrayLength(env, array);
Jan 3, 2019
Jan 3, 2019
727
argv = SDL_small_alloc(char *, 1 + len + 1, &isstack); /* !!! FIXME: check for NULL */
Aug 28, 2017
Aug 28, 2017
728
729
730
731
732
733
argc = 0;
/* Use the name "app_process" so PHYSFS_platformCalcBaseDir() works.
https://bitbucket.org/MartinFelis/love-android-sdl2/issue/23/release-build-crash-on-start
*/
argv[argc++] = SDL_strdup("app_process");
for (i = 0; i < len; ++i) {
Jan 3, 2019
Jan 3, 2019
734
735
const char *utf;
char *arg = NULL;
Aug 28, 2017
Aug 28, 2017
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
jstring string = (*env)->GetObjectArrayElement(env, array, i);
if (string) {
utf = (*env)->GetStringUTFChars(env, string, 0);
if (utf) {
arg = SDL_strdup(utf);
(*env)->ReleaseStringUTFChars(env, string, utf);
}
(*env)->DeleteLocalRef(env, string);
}
if (!arg) {
arg = SDL_strdup("");
}
argv[argc++] = arg;
}
argv[argc] = NULL;
/* Run the application. */
status = SDL_main(argc, argv);
/* Release the arguments. */
for (i = 0; i < argc; ++i) {
SDL_free(argv[i]);
}
Oct 23, 2018
Oct 23, 2018
760
SDL_small_free(argv, isstack);
Aug 28, 2017
Aug 28, 2017
761
762
763
764
765
766
767
768
769
770
} else {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "nativeRunMain(): Couldn't find function %s in library %s", function_name, library_file);
}
(*env)->ReleaseStringUTFChars(env, function, function_name);
dlclose(library_handle);
} else {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "nativeRunMain(): Couldn't load library %s", library_file);
Aug 12, 2017
Aug 12, 2017
771
}
Aug 28, 2017
Aug 28, 2017
772
773
(*env)->ReleaseStringUTFChars(env, library, library_file);
Jan 11, 2019
Jan 11, 2019
774
/* This is a Java thread, it doesn't need to be Detached from the JVM.
Jan 11, 2019
Jan 11, 2019
775
776
777
* Set to mThreadKey value to NULL not to call pthread_create destructor 'Android_JNI_ThreadDestroyed' */
Android_JNI_SetEnv(NULL);
Aug 28, 2017
Aug 28, 2017
778
779
/* Do not issue an exit or the whole application will terminate instead of just the SDL thread */
/* exit(status); */
Aug 12, 2017
Aug 12, 2017
780
Aug 28, 2017
Aug 28, 2017
781
return status;
782
783
784
}
/* Drop file */
Dec 2, 2016
Dec 2, 2016
785
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeDropFile)(
Jan 3, 2019
Jan 3, 2019
786
JNIEnv *env, jclass jcls,
787
788
789
jstring filename)
{
const char *path = (*env)->GetStringUTFChars(env, filename, NULL);
Jan 5, 2016
Jan 5, 2016
790
SDL_SendDropFile(NULL, path);
791
(*env)->ReleaseStringUTFChars(env, filename, path);
Jan 5, 2016
Jan 5, 2016
792
SDL_SendDropComplete(NULL);
Jun 24, 2019
Jun 24, 2019
795
796
797
798
799
800
801
802
803
/* Lock / Unlock Mutex */
void Android_ActivityMutex_Lock() {
SDL_LockMutex(Android_ActivityMutex);
}
void Android_ActivityMutex_Unlock() {
SDL_UnlockMutex(Android_ActivityMutex);
}
Jun 28, 2019
Jun 28, 2019
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
/* Lock the Mutex when the Activity is in its 'Running' state */
void Android_ActivityMutex_Lock_Running() {
int pauseSignaled = 0;
int resumeSignaled = 0;
retry:
SDL_LockMutex(Android_ActivityMutex);
pauseSignaled = SDL_SemValue(Android_PauseSem);
resumeSignaled = SDL_SemValue(Android_ResumeSem);
if (pauseSignaled > resumeSignaled) {
SDL_UnlockMutex(Android_ActivityMutex);
SDL_Delay(50);
goto retry;
}
}
Jan 17, 2019
Jan 17, 2019
823
824
/* Set screen resolution */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetScreenResolution)(
Jan 3, 2019
Jan 3, 2019
825
JNIEnv *env, jclass jcls,
Jun 8, 2018
Jun 8, 2018
826
jint surfaceWidth, jint surfaceHeight,
Sep 24, 2018
Sep 24, 2018
827
jint deviceWidth, jint deviceHeight, jint format, jfloat rate)
Jan 3, 2019
Jan 3, 2019
829
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
830
Jan 17, 2019
Jan 17, 2019
831
832
833
834
835
836
837
838
839
840
841
842
843
Android_SetScreenResolution(surfaceWidth, surfaceHeight, deviceWidth, deviceHeight, format, rate);
SDL_UnlockMutex(Android_ActivityMutex);
}
/* Resize */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeResize)(
JNIEnv *env, jclass jcls)
{
SDL_LockMutex(Android_ActivityMutex);
if (Android_Window)
{
Jun 18, 2019
Jun 18, 2019
844
Android_SendResize(Android_Window);
Jan 17, 2019
Jan 17, 2019
845
}
Jan 3, 2019
Jan 3, 2019
846
Jan 3, 2019
Jan 3, 2019
847
SDL_UnlockMutex(Android_ActivityMutex);
Aug 23, 2018
Aug 23, 2018
850
851
852
853
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeOrientationChanged)(
JNIEnv *env, jclass jcls,
jint orientation)
{
Jan 16, 2019
Jan 16, 2019
854
855
SDL_LockMutex(Android_ActivityMutex);
Mar 12, 2019
Mar 12, 2019
856
displayOrientation = (SDL_DisplayOrientation)orientation;
Mar 13, 2019
Mar 13, 2019
857
858
859
860
861
862
if (Android_Window)
{
SDL_VideoDisplay *display = SDL_GetDisplay(0);
SDL_SendDisplayEvent(display, SDL_DISPLAYEVENT_ORIENTATION, orientation);
}
Jan 16, 2019
Jan 16, 2019
863
864
SDL_UnlockMutex(Android_ActivityMutex);
Aug 23, 2018
Aug 23, 2018
865
866
}
Jan 10, 2019
Jan 10, 2019
867
868
869
870
871
872
873
874
875
876
877
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeAddTouch)(
JNIEnv* env, jclass cls,
jint touchId, jstring name)
{
const char *utfname = (*env)->GetStringUTFChars(env, name, NULL);
SDL_AddTouch((SDL_TouchID) touchId, SDL_TOUCH_DEVICE_DIRECT, utfname);
(*env)->ReleaseStringUTFChars(env, name, utfname);
}
Sep 22, 2017
Sep 22, 2017
879
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativePadDown)(
Jan 3, 2019
Jan 3, 2019
880
JNIEnv *env, jclass jcls,
881
882
883
884
885
886
jint device_id, jint keycode)
{
return Android_OnPadDown(device_id, keycode);
}
/* Padup */
Sep 22, 2017
Sep 22, 2017
887
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativePadUp)(
Jan 3, 2019
Jan 3, 2019
888
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
889
jint device_id, jint keycode)
890
891
892
893
894
{
return Android_OnPadUp(device_id, keycode);
}
/* Joy */
Sep 22, 2017
Sep 22, 2017
895
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeJoy)(
Jan 3, 2019
Jan 3, 2019
896
JNIEnv *env, jclass jcls,
897
898
899
900
901
902
jint device_id, jint axis, jfloat value)
{
Android_OnJoy(device_id, axis, value);
}
/* POV Hat */
Sep 22, 2017
Sep 22, 2017
903
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeHat)(
Jan 3, 2019
Jan 3, 2019
904
JNIEnv *env, jclass jcls,
905
906
907
908
909
910
jint device_id, jint hat_id, jint x, jint y)
{
Android_OnHat(device_id, hat_id, x, y);
}
Sep 22, 2017
Sep 22, 2017
911
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddJoystick)(
Jan 3, 2019
Jan 3, 2019
912
JNIEnv *env, jclass jcls,
Mar 6, 2018
Mar 6, 2018
913
914
915
jint device_id, jstring device_name, jstring device_desc,
jint vendor_id, jint product_id, jboolean is_accelerometer,
jint button_mask, jint naxes, jint nhats, jint nballs)
916
917
918
{
int retval;
const char *name = (*env)->GetStringUTFChars(env, device_name, NULL);
Aug 28, 2017
Aug 28, 2017
919
const char *desc = (*env)->GetStringUTFChars(env, device_desc, NULL);
Mar 6, 2018
Mar 6, 2018
921
retval = Android_AddJoystick(device_id, name, desc, vendor_id, product_id, is_accelerometer ? SDL_TRUE : SDL_FALSE, button_mask, naxes, nhats, nballs);
922
923
(*env)->ReleaseStringUTFChars(env, device_name, name);
Aug 28, 2017
Aug 28, 2017
924
(*env)->ReleaseStringUTFChars(env, device_desc, desc);
Aug 14, 2017
Aug 14, 2017
925
926
927
928
return retval;
}
Sep 22, 2017
Sep 22, 2017
929
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveJoystick)(
Jan 3, 2019
Jan 3, 2019
930
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
931
jint device_id)
932
933
934
935
{
return Android_RemoveJoystick(device_id);
}
Sep 22, 2017
Sep 22, 2017
936
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddHaptic)(
Jan 3, 2019
Jan 3, 2019
937
JNIEnv *env, jclass jcls, jint device_id, jstring device_name)
Aug 12, 2017
Aug 12, 2017
938
939
940
941
942
943
944
945
946
947
948
{
int retval;
const char *name = (*env)->GetStringUTFChars(env, device_name, NULL);
retval = Android_AddHaptic(device_id, name);
(*env)->ReleaseStringUTFChars(env, device_name, name);
return retval;
}
Sep 22, 2017
Sep 22, 2017
949
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveHaptic)(
Jan 3, 2019
Jan 3, 2019
950
JNIEnv *env, jclass jcls, jint device_id)
Aug 12, 2017
Aug 12, 2017
951
952
953
954
{
return Android_RemoveHaptic(device_id);
}
Jan 9, 2019
Jan 9, 2019
955
956
957
958
959
/* Called from surfaceCreated() */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceCreated)(JNIEnv *env, jclass jcls)
{
SDL_LockMutex(Android_ActivityMutex);
Jan 16, 2019
Jan 16, 2019
960
if (Android_Window)
Jan 9, 2019
Jan 9, 2019
961
962
963
964
965
966
967
968
969
970
971
{
SDL_WindowData *data = (SDL_WindowData *) Android_Window->driverdata;
data->native_window = Android_JNI_GetNativeWindow();
if (data->native_window == NULL) {
SDL_SetError("Could not fetch native window from UI thread");
}
}
SDL_UnlockMutex(Android_ActivityMutex);
}
Jan 9, 2019
Jan 9, 2019
973
/* Called from surfaceChanged() */
Jan 3, 2019
Jan 3, 2019
974
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceChanged)(JNIEnv *env, jclass jcls)
Jan 3, 2019
Jan 3, 2019
976
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
977
Jan 16, 2019
Jan 16, 2019
978
if (Android_Window)
Jan 3, 2019
Jan 3, 2019
979
980
981
{
SDL_VideoDevice *_this = SDL_GetVideoDevice();
SDL_WindowData *data = (SDL_WindowData *) Android_Window->driverdata;
Jan 3, 2019
Jan 3, 2019
983
984
985
/* If the surface has been previously destroyed by onNativeSurfaceDestroyed, recreate it here */
if (data->egl_surface == EGL_NO_SURFACE) {
data->egl_surface = SDL_EGL_CreateSurface(_this, (NativeWindowType) data->native_window);
Aug 14, 2017
Aug 14, 2017
987
Jan 3, 2019
Jan 3, 2019
988
989
/* GL Context handling is done in the event loop because this function is run from the Java thread */
}
Jan 3, 2019
Jan 3, 2019
990
Jan 3, 2019
Jan 3, 2019
991
SDL_UnlockMutex(Android_ActivityMutex);
Jan 9, 2019
Jan 9, 2019
994
/* Called from surfaceDestroyed() */
Jan 3, 2019
Jan 3, 2019
995
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceDestroyed)(JNIEnv *env, jclass jcls)
Jan 3, 2019
Jan 3, 2019
997
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
998
Jan 16, 2019
Jan 16, 2019
999
if (Android_Window)
Jan 3, 2019
Jan 3, 2019
1000
{