Skip to content

Latest commit

 

History

History
2550 lines (2120 loc) · 91.2 KB

SDL_android.c

File metadata and controls

2550 lines (2120 loc) · 91.2 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 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"
27
28
29
30
31
32
#ifdef __ANDROID__
#include "SDL_system.h"
#include "SDL_android.h"
Oct 26, 2017
Oct 26, 2017
33
34
#include "keyinfotable.h"
35
36
37
38
39
40
41
#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
42
#include "../../haptic/android/SDL_syshaptic_c.h"
43
44
45
46
47
#include <android/log.h>
#include <pthread.h>
#include <sys/types.h>
#include <unistd.h>
Aug 28, 2017
Aug 28, 2017
48
#include <dlfcn.h>
Dec 2, 2016
Dec 2, 2016
49
50
51
52
53
#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
54
55
#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
56
57
#define SDL_JAVA_INTERFACE_INPUT_CONNECTION(function) CONCAT1(SDL_JAVA_PREFIX, SDLInputConnection, function)
Oct 10, 2018
Oct 10, 2018
58
59
60
61
/* Audio encoding definitions */
#define ENCODING_PCM_8BIT 3
#define ENCODING_PCM_16BIT 2
#define ENCODING_PCM_FLOAT 4
Dec 2, 2016
Dec 2, 2016
62
63
/* Java class SDLActivity */
Aug 28, 2017
Aug 28, 2017
64
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetupJNI)(
Jan 11, 2019
Jan 11, 2019
65
JNIEnv *env, jclass cls);
Aug 28, 2017
Aug 28, 2017
66
67
JNIEXPORT int JNICALL SDL_JAVA_INTERFACE(nativeRunMain)(
Jan 3, 2019
Jan 3, 2019
68
JNIEnv *env, jclass cls,
Aug 28, 2017
Aug 28, 2017
69
70
jstring library, jstring function, jobject array);
Dec 2, 2016
Dec 2, 2016
71
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeDropFile)(
Jan 3, 2019
Jan 3, 2019
72
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
73
74
75
jstring filename);
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeResize)(
Jan 3, 2019
Jan 3, 2019
76
JNIEnv *env, jclass jcls,
Jun 8, 2018
Jun 8, 2018
77
jint surfaceWidth, jint surfaceHeight,
Sep 24, 2018
Sep 24, 2018
78
jint deviceWidth, jint deviceHeight, jint format, jfloat rate);
Dec 2, 2016
Dec 2, 2016
79
Jan 9, 2019
Jan 9, 2019
80
81
82
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceCreated)(
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
83
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceChanged)(
Jan 3, 2019
Jan 3, 2019
84
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
85
86
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceDestroyed)(
Jan 3, 2019
Jan 3, 2019
87
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
88
89
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyDown)(
Jan 3, 2019
Jan 3, 2019
90
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
91
92
93
jint keycode);
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyUp)(
Jan 3, 2019
Jan 3, 2019
94
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
95
96
97
jint keycode);
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyboardFocusLost)(
Jan 3, 2019
Jan 3, 2019
98
JNIEnv *env, jclass jcls);
Dec 2, 2016
Dec 2, 2016
99
100
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeTouch)(
Jan 3, 2019
Jan 3, 2019
101
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
102
103
104
105
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
106
JNIEnv *env, jclass jcls,
Jun 5, 2018
Jun 5, 2018
107
jint button, jint action, jfloat x, jfloat y, jboolean relative);
Dec 2, 2016
Dec 2, 2016
108
109
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeAccel)(
Jan 3, 2019
Jan 3, 2019
110
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
111
112
jfloat x, jfloat y, jfloat z);
Aug 28, 2017
Aug 28, 2017
113
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeClipboardChanged)(
Jan 3, 2019
Jan 3, 2019
114
JNIEnv *env, jclass jcls);
Aug 28, 2017
Aug 28, 2017
115
Dec 2, 2016
Dec 2, 2016
116
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeLowMemory)(
Jan 3, 2019
Jan 3, 2019
117
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
118
Jan 10, 2019
Jan 10, 2019
119
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSendQuit)(
Jan 3, 2019
Jan 3, 2019
120
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
121
Jan 10, 2019
Jan 10, 2019
122
123
124
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeQuit)(
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
125
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativePause)(
Jan 3, 2019
Jan 3, 2019
126
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
127
128
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeResume)(
Jan 3, 2019
Jan 3, 2019
129
JNIEnv *env, jclass cls);
Dec 2, 2016
Dec 2, 2016
130
131
JNIEXPORT jstring JNICALL SDL_JAVA_INTERFACE(nativeGetHint)(
Jan 3, 2019
Jan 3, 2019
132
JNIEnv *env, jclass cls,
Dec 2, 2016
Dec 2, 2016
133
134
jstring name);
Nov 4, 2017
Nov 4, 2017
135
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetenv)(
Jan 3, 2019
Jan 3, 2019
136
JNIEnv *env, jclass cls,
Nov 4, 2017
Nov 4, 2017
137
138
139
jstring name, jstring value);
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeEnvironmentVariablesSet)(
Jan 3, 2019
Jan 3, 2019
140
JNIEnv *env, jclass cls);
Nov 4, 2017
Nov 4, 2017
141
Aug 23, 2018
Aug 23, 2018
142
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeOrientationChanged)(
Jan 3, 2019
Jan 3, 2019
143
JNIEnv *env, jclass cls,
Aug 23, 2018
Aug 23, 2018
144
145
jint orientation);
Jan 10, 2019
Jan 10, 2019
146
147
148
149
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeAddTouch)(
JNIEnv* env, jclass cls,
jint touchId, jstring name);
Dec 2, 2016
Dec 2, 2016
150
151
/* Java class SDLInputConnection */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeCommitText)(
Jan 3, 2019
Jan 3, 2019
152
JNIEnv *env, jclass cls,
Dec 2, 2016
Dec 2, 2016
153
154
jstring text, jint newCursorPosition);
Sep 27, 2018
Sep 27, 2018
155
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeGenerateScancodeForUnichar)(
Jan 3, 2019
Jan 3, 2019
156
JNIEnv *env, jclass cls,
Sep 27, 2018
Sep 27, 2018
157
158
jchar chUnicode);
Dec 2, 2016
Dec 2, 2016
159
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE_INPUT_CONNECTION(nativeSetComposingText)(
Jan 3, 2019
Jan 3, 2019
160
JNIEnv *env, jclass cls,
Dec 2, 2016
Dec 2, 2016
161
162
jstring text, jint newCursorPosition);
Sep 22, 2017
Sep 22, 2017
163
164
165
166
167
168
169
170
171
/* Java class SDLAudioManager */
JNIEXPORT void JNICALL SDL_JAVA_AUDIO_INTERFACE(nativeSetupJNI)(
JNIEnv *env, jclass jcls);
/* 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
172
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
173
174
175
jint device_id, jint keycode);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativePadUp)(
Jan 3, 2019
Jan 3, 2019
176
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
177
178
179
jint device_id, jint keycode);
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeJoy)(
Jan 3, 2019
Jan 3, 2019
180
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
181
182
183
jint device_id, jint axis, jfloat value);
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeHat)(
Jan 3, 2019
Jan 3, 2019
184
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
185
186
187
jint device_id, jint hat_id, jint x, jint y);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddJoystick)(
Jan 3, 2019
Jan 3, 2019
188
JNIEnv *env, jclass jcls,
Mar 6, 2018
Mar 6, 2018
189
190
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
191
192
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveJoystick)(
Jan 3, 2019
Jan 3, 2019
193
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
194
195
196
jint device_id);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddHaptic)(
Jan 3, 2019
Jan 3, 2019
197
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
198
199
200
jint device_id, jstring device_name);
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveHaptic)(
Jan 3, 2019
Jan 3, 2019
201
JNIEnv *env, jclass jcls,
Sep 22, 2017
Sep 22, 2017
202
203
204
jint device_id);
Dec 2, 2016
Dec 2, 2016
205
206
207
208
/* Uncomment this to log messages entering and exiting methods in this file */
/* #define DEBUG_JNI */
Sep 27, 2018
Sep 27, 2018
209
static void checkJNIReady(void);
210
211
212
213
214
215
216
217
218
219
220
/*******************************************************************************
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
221
222
static pthread_once_t key_once = PTHREAD_ONCE_INIT;
static JavaVM *mJavaVM = NULL;
223
224
225
226
227
228
/* Main activity */
static jclass mActivityClass;
/* method signatures */
static jmethodID midGetNativeSurface;
Jan 2, 2019
Jan 2, 2019
229
static jmethodID midSetSurfaceViewFormat;
Aug 14, 2017
Aug 14, 2017
230
static jmethodID midSetActivityTitle;
Feb 12, 2018
Feb 12, 2018
231
static jmethodID midSetWindowStyle;
Aug 14, 2017
Aug 14, 2017
232
233
static jmethodID midSetOrientation;
static jmethodID midGetContext;
Aug 22, 2018
Aug 22, 2018
234
static jmethodID midIsTablet;
Feb 6, 2018
Feb 6, 2018
235
static jmethodID midIsAndroidTV;
Jun 5, 2018
Jun 5, 2018
236
static jmethodID midIsChromebook;
Jun 18, 2018
Jun 18, 2018
237
static jmethodID midIsDeXMode;
Jul 12, 2018
Jul 12, 2018
238
static jmethodID midManualBackButton;
Jan 10, 2019
Jan 10, 2019
239
static jmethodID midInitTouch;
Aug 14, 2017
Aug 14, 2017
240
241
242
static jmethodID midSendMessage;
static jmethodID midShowTextInput;
static jmethodID midIsScreenKeyboardShown;
Aug 28, 2017
Aug 28, 2017
243
244
245
static jmethodID midClipboardSetText;
static jmethodID midClipboardGetText;
static jmethodID midClipboardHasText;
Sep 22, 2017
Sep 22, 2017
246
static jmethodID midOpenAPKExpansionInputStream;
Nov 4, 2017
Nov 4, 2017
247
static jmethodID midGetManifestEnvironmentVariables;
Oct 31, 2017
Oct 31, 2017
248
static jmethodID midGetDisplayDPI;
Mar 16, 2018
Mar 16, 2018
249
250
251
static jmethodID midCreateCustomCursor;
static jmethodID midSetCustomCursor;
static jmethodID midSetSystemCursor;
Jun 5, 2018
Jun 5, 2018
252
253
static jmethodID midSupportsRelativeMouse;
static jmethodID midSetRelativeMouseEnabled;
Aug 28, 2017
Aug 28, 2017
254
Sep 22, 2017
Sep 22, 2017
255
256
257
258
259
260
/* audio manager */
static jclass mAudioManagerClass;
/* method signatures */
static jmethodID midAudioOpen;
static jmethodID midAudioWriteByteBuffer;
Oct 10, 2018
Oct 10, 2018
261
262
static jmethodID midAudioWriteShortBuffer;
static jmethodID midAudioWriteFloatBuffer;
Sep 22, 2017
Sep 22, 2017
263
264
265
static jmethodID midAudioClose;
static jmethodID midCaptureOpen;
static jmethodID midCaptureReadByteBuffer;
Oct 10, 2018
Oct 10, 2018
266
267
static jmethodID midCaptureReadShortBuffer;
static jmethodID midCaptureReadFloatBuffer;
Sep 22, 2017
Sep 22, 2017
268
static jmethodID midCaptureClose;
Jan 10, 2019
Jan 10, 2019
269
static jmethodID midAudioSetThreadPriority;
Sep 22, 2017
Sep 22, 2017
270
271
272
273
274
275
276
277
/* controller manager */
static jclass mControllerManagerClass;
/* method signatures */
static jmethodID midPollInputDevices;
static jmethodID midPollHapticDevices;
static jmethodID midHapticRun;
Aug 24, 2018
Aug 24, 2018
278
static jmethodID midHapticStop;
Aug 12, 2017
Aug 12, 2017
280
281
282
/* static fields */
static jfieldID fidSeparateMouseAndTouch;
283
284
285
286
/* Accelerometer data storage */
static float fLastAccelerometer[3];
static SDL_bool bHasNewData;
Nov 5, 2017
Nov 5, 2017
287
static SDL_bool bHasEnvironmentVariables = SDL_FALSE;
Nov 4, 2017
Nov 4, 2017
288
289
290
291
292
/*******************************************************************************
Functions called by JNI
*******************************************************************************/
Jan 11, 2019
Jan 11, 2019
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
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
/* 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) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "JNIEnv is NULL. Call Android_JNI_SetupThread() first.");
}
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
378
379
380
381
382
383
384
385
386
static void
Android_JNI_CreateKey()
{
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
387
static void
Jan 11, 2019
Jan 11, 2019
388
389
390
391
392
393
394
395
Android_JNI_CreateKey_once()
{
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);
}
}
Jan 3, 2019
Jan 3, 2019
397
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved)
398
399
400
401
402
{
mJavaVM = vm;
return JNI_VERSION_1_4;
}
Sep 22, 2017
Sep 22, 2017
403
404
405
void checkJNIReady()
{
if (!mActivityClass || !mAudioManagerClass || !mControllerManagerClass) {
Dec 30, 2018
Dec 30, 2018
406
/* We aren't fully initialized, let's just return. */
Sep 22, 2017
Sep 22, 2017
407
408
409
return;
}
Dec 30, 2018
Dec 30, 2018
410
SDL_SetMainReady();
Sep 22, 2017
Sep 22, 2017
411
412
413
}
/* Activity initialization -- called before SDL_main() to initialize JNI bindings */
Jan 11, 2019
Jan 11, 2019
414
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetupJNI)(JNIEnv *env, jclass cls)
Aug 28, 2017
Aug 28, 2017
416
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "nativeSetupJNI()");
Jan 11, 2019
Jan 11, 2019
418
419
420
421
422
423
424
425
426
427
428
429
430
/*
* 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
431
/* Use a mutex to prevent concurrency issues between Java Activity and Native thread code, when using 'Android_Window'.
Jan 3, 2019
Jan 3, 2019
432
433
* (Eg. Java sending Touch events, while native code is destroying the main SDL_Window. )
*/
Jan 3, 2019
Jan 3, 2019
434
435
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
436
437
}
Jan 3, 2019
Jan 3, 2019
438
if (Android_ActivityMutex == NULL) {
Jan 11, 2019
Jan 11, 2019
439
__android_log_print(ANDROID_LOG_ERROR, "SDL", "failed to create Android_ActivityMutex mutex");
Jan 3, 2019
Jan 3, 2019
440
441
}
Jan 11, 2019
Jan 11, 2019
442
mActivityClass = (jclass)((*env)->NewGlobalRef(env, cls));
Jan 11, 2019
Jan 11, 2019
444
midGetNativeSurface = (*env)->GetStaticMethodID(env, mActivityClass,
445
"getNativeSurface","()Landroid/view/Surface;");
Jan 11, 2019
Jan 11, 2019
446
midSetSurfaceViewFormat = (*env)->GetStaticMethodID(env, mActivityClass,
Jan 2, 2019
Jan 2, 2019
447
"setSurfaceViewFormat","(I)V");
Jan 11, 2019
Jan 11, 2019
448
midSetActivityTitle = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
449
"setActivityTitle","(Ljava/lang/String;)Z");
Jan 11, 2019
Jan 11, 2019
450
midSetWindowStyle = (*env)->GetStaticMethodID(env, mActivityClass,
Feb 12, 2018
Feb 12, 2018
451
"setWindowStyle","(Z)V");
Jan 11, 2019
Jan 11, 2019
452
midSetOrientation = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
453
"setOrientation","(IIZLjava/lang/String;)V");
Jan 11, 2019
Jan 11, 2019
454
midGetContext = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
455
"getContext","()Landroid/content/Context;");
Jan 11, 2019
Jan 11, 2019
456
midIsTablet = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 22, 2018
Aug 22, 2018
457
"isTablet", "()Z");
Jan 11, 2019
Jan 11, 2019
458
midIsAndroidTV = (*env)->GetStaticMethodID(env, mActivityClass,
Feb 6, 2018
Feb 6, 2018
459
"isAndroidTV","()Z");
Jan 11, 2019
Jan 11, 2019
460
midIsChromebook = (*env)->GetStaticMethodID(env, mActivityClass,
Jun 5, 2018
Jun 5, 2018
461
"isChromebook", "()Z");
Jan 11, 2019
Jan 11, 2019
462
midIsDeXMode = (*env)->GetStaticMethodID(env, mActivityClass,
Jun 18, 2018
Jun 18, 2018
463
"isDeXMode", "()Z");
Jan 11, 2019
Jan 11, 2019
464
midManualBackButton = (*env)->GetStaticMethodID(env, mActivityClass,
Jul 12, 2018
Jul 12, 2018
465
"manualBackButton", "()V");
Jan 11, 2019
Jan 11, 2019
466
midInitTouch = (*env)->GetStaticMethodID(env, mActivityClass,
Jan 10, 2019
Jan 10, 2019
467
"initTouch", "()V");
Jan 11, 2019
Jan 11, 2019
468
midSendMessage = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
469
"sendMessage", "(II)Z");
Jan 11, 2019
Jan 11, 2019
470
midShowTextInput = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
471
"showTextInput", "(IIII)Z");
Jan 11, 2019
Jan 11, 2019
472
midIsScreenKeyboardShown = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 14, 2017
Aug 14, 2017
473
"isScreenKeyboardShown","()Z");
Jan 11, 2019
Jan 11, 2019
474
midClipboardSetText = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 28, 2017
Aug 28, 2017
475
"clipboardSetText", "(Ljava/lang/String;)V");
Jan 11, 2019
Jan 11, 2019
476
midClipboardGetText = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 28, 2017
Aug 28, 2017
477
"clipboardGetText", "()Ljava/lang/String;");
Jan 11, 2019
Jan 11, 2019
478
midClipboardHasText = (*env)->GetStaticMethodID(env, mActivityClass,
Aug 28, 2017
Aug 28, 2017
479
"clipboardHasText", "()Z");
Jan 11, 2019
Jan 11, 2019
480
midOpenAPKExpansionInputStream = (*env)->GetStaticMethodID(env, mActivityClass,
Sep 22, 2017
Sep 22, 2017
481
"openAPKExpansionInputStream", "(Ljava/lang/String;)Ljava/io/InputStream;");
Jan 11, 2019
Jan 11, 2019
483
midGetManifestEnvironmentVariables = (*env)->GetStaticMethodID(env, mActivityClass,
Nov 5, 2017
Nov 5, 2017
484
"getManifestEnvironmentVariables", "()Z");
Oct 24, 2017
Oct 24, 2017
485
Jan 11, 2019
Jan 11, 2019
486
487
488
489
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
490
Jan 11, 2019
Jan 11, 2019
491
492
midSupportsRelativeMouse = (*env)->GetStaticMethodID(env, mActivityClass, "supportsRelativeMouse", "()Z");
midSetRelativeMouseEnabled = (*env)->GetStaticMethodID(env, mActivityClass, "setRelativeMouseEnabled", "(Z)Z");
Jun 5, 2018
Jun 5, 2018
493
Aug 21, 2018
Aug 21, 2018
494
Jan 2, 2019
Jan 2, 2019
495
if (!midGetNativeSurface || !midSetSurfaceViewFormat ||
Jan 10, 2019
Jan 10, 2019
496
!midSetActivityTitle || !midSetWindowStyle || !midSetOrientation || !midGetContext || !midIsTablet || !midIsAndroidTV || !midInitTouch ||
Nov 4, 2017
Nov 4, 2017
497
!midSendMessage || !midShowTextInput || !midIsScreenKeyboardShown ||
Sep 22, 2017
Sep 22, 2017
498
!midClipboardSetText || !midClipboardGetText || !midClipboardHasText ||
Mar 16, 2018
Mar 16, 2018
499
!midOpenAPKExpansionInputStream || !midGetManifestEnvironmentVariables || !midGetDisplayDPI ||
Jun 5, 2018
Jun 5, 2018
500
!midCreateCustomCursor || !midSetCustomCursor || !midSetSystemCursor || !midSupportsRelativeMouse || !midSetRelativeMouseEnabled ||
Aug 22, 2018
Aug 22, 2018
501
!midIsChromebook || !midIsDeXMode || !midManualBackButton) {
Aug 28, 2017
Aug 28, 2017
502
__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
504
Jan 11, 2019
Jan 11, 2019
505
fidSeparateMouseAndTouch = (*env)->GetStaticFieldID(env, mActivityClass, "mSeparateMouseAndTouch", "Z");
Aug 14, 2017
Aug 14, 2017
506
Aug 12, 2017
Aug 12, 2017
507
if (!fidSeparateMouseAndTouch) {
Aug 28, 2017
Aug 28, 2017
508
509
510
__android_log_print(ANDROID_LOG_WARN, "SDL", "Missing some Java static fields, do you have the latest version of SDLActivity.java?");
}
Sep 22, 2017
Sep 22, 2017
511
512
513
514
checkJNIReady();
}
/* Audio initialization -- called before SDL_main() to initialize JNI bindings */
Jan 11, 2019
Jan 11, 2019
515
JNIEXPORT void JNICALL SDL_JAVA_AUDIO_INTERFACE(nativeSetupJNI)(JNIEnv *env, jclass cls)
Sep 22, 2017
Sep 22, 2017
516
517
518
{
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "AUDIO nativeSetupJNI()");
Jan 11, 2019
Jan 11, 2019
519
mAudioManagerClass = (jclass)((*env)->NewGlobalRef(env, cls));
Sep 22, 2017
Sep 22, 2017
520
Jan 11, 2019
Jan 11, 2019
521
midAudioOpen = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
522
"audioOpen", "(IIII)[I");
Jan 11, 2019
Jan 11, 2019
523
midAudioWriteByteBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
524
"audioWriteByteBuffer", "([B)V");
Jan 11, 2019
Jan 11, 2019
525
midAudioWriteShortBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
526
"audioWriteShortBuffer", "([S)V");
Jan 11, 2019
Jan 11, 2019
527
midAudioWriteFloatBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
528
"audioWriteFloatBuffer", "([F)V");
Jan 11, 2019
Jan 11, 2019
529
midAudioClose = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
530
"audioClose", "()V");
Jan 11, 2019
Jan 11, 2019
531
midCaptureOpen = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
532
"captureOpen", "(IIII)[I");
Jan 11, 2019
Jan 11, 2019
533
midCaptureReadByteBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
534
"captureReadByteBuffer", "([BZ)I");
Jan 11, 2019
Jan 11, 2019
535
midCaptureReadShortBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
536
"captureReadShortBuffer", "([SZ)I");
Jan 11, 2019
Jan 11, 2019
537
midCaptureReadFloatBuffer = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Oct 10, 2018
Oct 10, 2018
538
"captureReadFloatBuffer", "([FZ)I");
Jan 11, 2019
Jan 11, 2019
539
midCaptureClose = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Sep 22, 2017
Sep 22, 2017
540
"captureClose", "()V");
Jan 11, 2019
Jan 11, 2019
541
midAudioSetThreadPriority = (*env)->GetStaticMethodID(env, mAudioManagerClass,
Jan 10, 2019
Jan 10, 2019
542
"audioSetThreadPriority", "(ZI)V");
Sep 22, 2017
Sep 22, 2017
543
Oct 10, 2018
Oct 10, 2018
544
if (!midAudioOpen || !midAudioWriteByteBuffer || !midAudioWriteShortBuffer || !midAudioWriteFloatBuffer || !midAudioClose ||
Jan 10, 2019
Jan 10, 2019
545
!midCaptureOpen || !midCaptureReadByteBuffer || !midCaptureReadShortBuffer || !midCaptureReadFloatBuffer || !midCaptureClose || !midAudioSetThreadPriority) {
Sep 22, 2017
Sep 22, 2017
546
547
548
549
550
551
552
__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
553
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeSetupJNI)(JNIEnv *env, jclass cls)
Sep 22, 2017
Sep 22, 2017
554
555
556
{
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "CONTROLLER nativeSetupJNI()");
Jan 11, 2019
Jan 11, 2019
557
mControllerManagerClass = (jclass)((*env)->NewGlobalRef(env, cls));
Sep 22, 2017
Sep 22, 2017
558
Jan 11, 2019
Jan 11, 2019
559
midPollInputDevices = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Sep 22, 2017
Sep 22, 2017
560
"pollInputDevices", "()V");
Jan 11, 2019
Jan 11, 2019
561
midPollHapticDevices = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Sep 22, 2017
Sep 22, 2017
562
"pollHapticDevices", "()V");
Jan 11, 2019
Jan 11, 2019
563
midHapticRun = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Oct 16, 2018
Oct 16, 2018
564
"hapticRun", "(IFI)V");
Jan 11, 2019
Jan 11, 2019
565
midHapticStop = (*env)->GetStaticMethodID(env, mControllerManagerClass,
Aug 24, 2018
Aug 24, 2018
566
"hapticStop", "(I)V");
Sep 22, 2017
Sep 22, 2017
567
Aug 24, 2018
Aug 24, 2018
568
if (!midPollInputDevices || !midPollHapticDevices || !midHapticRun || !midHapticStop) {
Sep 22, 2017
Sep 22, 2017
569
570
571
572
__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
573
574
575
576
577
578
}
/* SDL main function prototype */
typedef int (*SDL_main_func)(int argc, char *argv[]);
/* Start up the SDL app */
Jan 3, 2019
Jan 3, 2019
579
JNIEXPORT int JNICALL SDL_JAVA_INTERFACE(nativeRunMain)(JNIEnv *env, jclass cls, jstring library, jstring function, jobject array)
Aug 28, 2017
Aug 28, 2017
580
581
582
583
584
{
int status = -1;
const char *library_file;
void *library_handle;
Aug 28, 2017
Aug 28, 2017
585
586
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "nativeRunMain()");
Jan 11, 2019
Jan 11, 2019
587
588
589
/* Save JNIEnv of SDLThread */
Android_JNI_SetEnv(env);
Aug 28, 2017
Aug 28, 2017
590
591
592
593
594
595
596
597
598
599
600
601
602
library_file = (*env)->GetStringUTFChars(env, library, NULL);
library_handle = dlopen(library_file, RTLD_GLOBAL);
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
603
SDL_bool isstack;
Aug 28, 2017
Aug 28, 2017
604
605
606
/* Prepare the arguments. */
len = (*env)->GetArrayLength(env, array);
Jan 3, 2019
Jan 3, 2019
607
argv = SDL_small_alloc(char *, 1 + len + 1, &isstack); /* !!! FIXME: check for NULL */
Aug 28, 2017
Aug 28, 2017
608
609
610
611
612
613
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
614
615
const char *utf;
char *arg = NULL;
Aug 28, 2017
Aug 28, 2017
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
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
640
SDL_small_free(argv, isstack);
Aug 28, 2017
Aug 28, 2017
641
642
643
644
645
646
647
648
649
650
} 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
651
}
Aug 28, 2017
Aug 28, 2017
652
653
(*env)->ReleaseStringUTFChars(env, library, library_file);
Jan 11, 2019
Jan 11, 2019
654
/* This is a Java thread, it doesn't need to be Detached from the JVM.
Jan 11, 2019
Jan 11, 2019
655
656
657
* 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
658
659
/* 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
660
Aug 28, 2017
Aug 28, 2017
661
return status;
662
663
664
}
/* Drop file */
Dec 2, 2016
Dec 2, 2016
665
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeDropFile)(
Jan 3, 2019
Jan 3, 2019
666
JNIEnv *env, jclass jcls,
667
668
669
jstring filename)
{
const char *path = (*env)->GetStringUTFChars(env, filename, NULL);
Jan 5, 2016
Jan 5, 2016
670
SDL_SendDropFile(NULL, path);
671
(*env)->ReleaseStringUTFChars(env, filename, path);
Jan 5, 2016
Jan 5, 2016
672
SDL_SendDropComplete(NULL);
673
674
675
}
/* Resize */
Dec 2, 2016
Dec 2, 2016
676
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeResize)(
Jan 3, 2019
Jan 3, 2019
677
JNIEnv *env, jclass jcls,
Jun 8, 2018
Jun 8, 2018
678
jint surfaceWidth, jint surfaceHeight,
Sep 24, 2018
Sep 24, 2018
679
jint deviceWidth, jint deviceHeight, jint format, jfloat rate)
Jan 3, 2019
Jan 3, 2019
681
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
682
Jan 3, 2019
Jan 3, 2019
683
Android_SetScreenResolution(Android_Window, surfaceWidth, surfaceHeight, deviceWidth, deviceHeight, format, rate);
Jan 3, 2019
Jan 3, 2019
684
Jan 3, 2019
Jan 3, 2019
685
SDL_UnlockMutex(Android_ActivityMutex);
Aug 23, 2018
Aug 23, 2018
688
689
690
691
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeOrientationChanged)(
JNIEnv *env, jclass jcls,
jint orientation)
{
Jan 9, 2019
Jan 9, 2019
692
693
694
695
696
SDL_VideoDevice *_this = SDL_GetVideoDevice();
if (_this) {
SDL_VideoDisplay *display = SDL_GetDisplay(0);
SDL_SendDisplayEvent(display, SDL_DISPLAYEVENT_ORIENTATION, orientation);
}
Aug 23, 2018
Aug 23, 2018
697
698
}
Jan 10, 2019
Jan 10, 2019
699
700
701
702
703
704
705
706
707
708
709
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
711
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativePadDown)(
Jan 3, 2019
Jan 3, 2019
712
JNIEnv *env, jclass jcls,
713
714
715
716
717
718
jint device_id, jint keycode)
{
return Android_OnPadDown(device_id, keycode);
}
/* Padup */
Sep 22, 2017
Sep 22, 2017
719
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativePadUp)(
Jan 3, 2019
Jan 3, 2019
720
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
721
jint device_id, jint keycode)
722
723
724
725
726
{
return Android_OnPadUp(device_id, keycode);
}
/* Joy */
Sep 22, 2017
Sep 22, 2017
727
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeJoy)(
Jan 3, 2019
Jan 3, 2019
728
JNIEnv *env, jclass jcls,
729
730
731
732
733
734
jint device_id, jint axis, jfloat value)
{
Android_OnJoy(device_id, axis, value);
}
/* POV Hat */
Sep 22, 2017
Sep 22, 2017
735
JNIEXPORT void JNICALL SDL_JAVA_CONTROLLER_INTERFACE(onNativeHat)(
Jan 3, 2019
Jan 3, 2019
736
JNIEnv *env, jclass jcls,
737
738
739
740
741
742
jint device_id, jint hat_id, jint x, jint y)
{
Android_OnHat(device_id, hat_id, x, y);
}
Sep 22, 2017
Sep 22, 2017
743
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddJoystick)(
Jan 3, 2019
Jan 3, 2019
744
JNIEnv *env, jclass jcls,
Mar 6, 2018
Mar 6, 2018
745
746
747
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)
748
749
750
{
int retval;
const char *name = (*env)->GetStringUTFChars(env, device_name, NULL);
Aug 28, 2017
Aug 28, 2017
751
const char *desc = (*env)->GetStringUTFChars(env, device_desc, NULL);
Mar 6, 2018
Mar 6, 2018
753
retval = Android_AddJoystick(device_id, name, desc, vendor_id, product_id, is_accelerometer ? SDL_TRUE : SDL_FALSE, button_mask, naxes, nhats, nballs);
754
755
(*env)->ReleaseStringUTFChars(env, device_name, name);
Aug 28, 2017
Aug 28, 2017
756
(*env)->ReleaseStringUTFChars(env, device_desc, desc);
Aug 14, 2017
Aug 14, 2017
757
758
759
760
return retval;
}
Sep 22, 2017
Sep 22, 2017
761
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveJoystick)(
Jan 3, 2019
Jan 3, 2019
762
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
763
jint device_id)
764
765
766
767
{
return Android_RemoveJoystick(device_id);
}
Sep 22, 2017
Sep 22, 2017
768
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeAddHaptic)(
Jan 3, 2019
Jan 3, 2019
769
JNIEnv *env, jclass jcls, jint device_id, jstring device_name)
Aug 12, 2017
Aug 12, 2017
770
771
772
773
774
775
776
777
778
779
780
{
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
781
JNIEXPORT jint JNICALL SDL_JAVA_CONTROLLER_INTERFACE(nativeRemoveHaptic)(
Jan 3, 2019
Jan 3, 2019
782
JNIEnv *env, jclass jcls, jint device_id)
Aug 12, 2017
Aug 12, 2017
783
784
785
786
{
return Android_RemoveHaptic(device_id);
}
Jan 9, 2019
Jan 9, 2019
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
/* Called from surfaceCreated() */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceCreated)(JNIEnv *env, jclass jcls)
{
SDL_LockMutex(Android_ActivityMutex);
if (Android_Window && Android_Window->driverdata)
{
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
805
/* Called from surfaceChanged() */
Jan 3, 2019
Jan 3, 2019
806
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceChanged)(JNIEnv *env, jclass jcls)
Jan 3, 2019
Jan 3, 2019
808
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
809
Jan 3, 2019
Jan 3, 2019
810
811
812
813
if (Android_Window && Android_Window->driverdata)
{
SDL_VideoDevice *_this = SDL_GetVideoDevice();
SDL_WindowData *data = (SDL_WindowData *) Android_Window->driverdata;
Jan 3, 2019
Jan 3, 2019
815
816
817
/* 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
819
Jan 3, 2019
Jan 3, 2019
820
821
/* GL Context handling is done in the event loop because this function is run from the Java thread */
}
Jan 3, 2019
Jan 3, 2019
822
Jan 3, 2019
Jan 3, 2019
823
SDL_UnlockMutex(Android_ActivityMutex);
Jan 9, 2019
Jan 9, 2019
826
/* Called from surfaceDestroyed() */
Jan 3, 2019
Jan 3, 2019
827
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeSurfaceDestroyed)(JNIEnv *env, jclass jcls)
Jan 3, 2019
Jan 3, 2019
829
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
830
Jan 3, 2019
Jan 3, 2019
831
832
833
834
if (Android_Window && Android_Window->driverdata)
{
SDL_VideoDevice *_this = SDL_GetVideoDevice();
SDL_WindowData *data = (SDL_WindowData *) Android_Window->driverdata;
Aug 14, 2017
Aug 14, 2017
835
Jan 3, 2019
Jan 3, 2019
836
837
838
839
/* We have to clear the current context and destroy the egl surface here
* Otherwise there's BAD_NATIVE_WINDOW errors coming from eglCreateWindowSurface on resume
* Ref: http://stackoverflow.com/questions/8762589/eglcreatewindowsurface-on-ics-and-switching-from-2d-to-3d
*/
Aug 14, 2017
Aug 14, 2017
840
Jan 3, 2019
Jan 3, 2019
841
842
843
844
845
if (data->egl_surface != EGL_NO_SURFACE) {
SDL_EGL_MakeCurrent(_this, NULL, NULL);
SDL_EGL_DestroySurface(_this, data->egl_surface);
data->egl_surface = EGL_NO_SURFACE;
}
Aug 14, 2017
Aug 14, 2017
846
Jan 9, 2019
Jan 9, 2019
847
848
849
850
851
if (data->native_window) {
ANativeWindow_release(data->native_window);
}
data->native_window = NULL;
Jan 3, 2019
Jan 3, 2019
852
/* GL Context handling is done in the event loop because this function is run from the Java thread */
Jan 3, 2019
Jan 3, 2019
854
Jan 3, 2019
Jan 3, 2019
855
SDL_UnlockMutex(Android_ActivityMutex);
856
857
858
}
/* Keydown */
Dec 2, 2016
Dec 2, 2016
859
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyDown)(
Jan 3, 2019
Jan 3, 2019
860
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
861
jint keycode)
862
863
864
865
866
{
Android_OnKeyDown(keycode);
}
/* Keyup */
Dec 2, 2016
Dec 2, 2016
867
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyUp)(
Jan 3, 2019
Jan 3, 2019
868
JNIEnv *env, jclass jcls,
Dec 2, 2016
Dec 2, 2016
869
jint keycode)
870
871
872
873
874
{
Android_OnKeyUp(keycode);
}
/* Keyboard Focus Lost */
Dec 2, 2016
Dec 2, 2016
875
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeKeyboardFocusLost)(
Jan 3, 2019
Jan 3, 2019
876
JNIEnv *env, jclass jcls)
877
878
879
880
881
882
883
{
/* Calling SDL_StopTextInput will take care of hiding the keyboard and cleaning up the DummyText widget */
SDL_StopTextInput();
}
/* Touch */
Dec 2, 2016
Dec 2, 2016
884
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeTouch)(
Jan 3, 2019
Jan 3, 2019
885
JNIEnv *env, jclass jcls,
886
887
888
jint touch_device_id_in, jint pointer_finger_id_in,
jint action, jfloat x, jfloat y, jfloat p)
{
Jan 3, 2019
Jan 3, 2019
889
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
890
Jan 3, 2019
Jan 3, 2019
891
Android_OnTouch(Android_Window, touch_device_id_in, pointer_finger_id_in, action, x, y, p);
Jan 3, 2019
Jan 3, 2019
892
Jan 3, 2019
Jan 3, 2019
893
SDL_UnlockMutex(Android_ActivityMutex);
Dec 2, 2016
Dec 2, 2016
897
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeMouse)(
Jan 3, 2019
Jan 3, 2019
898
JNIEnv *env, jclass jcls,
Jun 5, 2018
Jun 5, 2018
899
jint button, jint action, jfloat x, jfloat y, jboolean relative)
Jan 3, 2019
Jan 3, 2019
901
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
902
Jan 3, 2019
Jan 3, 2019
903
Android_OnMouse(Android_Window, button, action, x, y, relative);
Jan 3, 2019
Jan 3, 2019
904
Jan 3, 2019
Jan 3, 2019
905
SDL_UnlockMutex(Android_ActivityMutex);
906
907
908
}
/* Accelerometer */
Dec 2, 2016
Dec 2, 2016
909
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeAccel)(
Jan 3, 2019
Jan 3, 2019
910
JNIEnv *env, jclass jcls,
911
912
913
914
915
916
917
918
jfloat x, jfloat y, jfloat z)
{
fLastAccelerometer[0] = x;
fLastAccelerometer[1] = y;
fLastAccelerometer[2] = z;
bHasNewData = SDL_TRUE;
}
Aug 28, 2017
Aug 28, 2017
919
920
/* Clipboard */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(onNativeClipboardChanged)(
Jan 3, 2019
Jan 3, 2019
921
JNIEnv *env, jclass jcls)
Aug 28, 2017
Aug 28, 2017
922
923
924
925
{
SDL_SendClipboardUpdate();
}
Dec 2, 2016
Dec 2, 2016
927
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeLowMemory)(
Jan 3, 2019
Jan 3, 2019
928
JNIEnv *env, jclass cls)
929
930
931
932
{
SDL_SendAppEvent(SDL_APP_LOWMEMORY);
}
Jan 10, 2019
Jan 10, 2019
933
934
/* Send Quit event to "SDLThread" thread */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSendQuit)(
Jan 3, 2019
Jan 3, 2019
935
JNIEnv *env, jclass cls)
936
937
{
/* Discard previous events. The user should have handled state storage
Jan 10, 2019
Jan 10, 2019
938
* in SDL_APP_WILLENTERBACKGROUND. After nativeSendQuit() is called, no
939
940
941
942
943
* events other than SDL_QUIT and SDL_APP_TERMINATING should fire */
SDL_FlushEvents(SDL_FIRSTEVENT, SDL_LASTEVENT);
/* Inject a SDL_QUIT event */
SDL_SendQuit();
SDL_SendAppEvent(SDL_APP_TERMINATING);
Jan 7, 2019
Jan 7, 2019
944
945
946
947
/* Robustness: clear any pending Pause */
while (SDL_SemTryWait(Android_PauseSem) == 0) {
/* empty */
}
948
949
/* Resume the event loop so that the app can catch SDL_QUIT which
* should now be the top event in the event queue. */
Jan 6, 2019
Jan 6, 2019
950
SDL_SemPost(Android_ResumeSem);
Jan 10, 2019
Jan 10, 2019
953
954
955
956
957
958
959
960
961
962
963
964
965
/* Activity ends */
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeQuit)(
JNIEnv *env, jclass cls)
{
const char *str;
if (Android_ActivityMutex) {
SDL_DestroyMutex(Android_ActivityMutex);
Android_ActivityMutex = NULL;
}
str = SDL_GetError();
if (str && str[0]) {
Jan 11, 2019
Jan 11, 2019
966
__android_log_print(ANDROID_LOG_ERROR, "SDL", "SDLActivity thread ends (error=%s)", str);
Jan 10, 2019
Jan 10, 2019
967
968
969
970
971
} else {
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "SDLActivity thread ends");
}
}
Dec 2, 2016
Dec 2, 2016
973
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativePause)(
Jan 3, 2019
Jan 3, 2019
974
JNIEnv *env, jclass cls)
Jan 3, 2019
Jan 3, 2019
976
SDL_LockMutex(Android_ActivityMutex);
Jan 3, 2019
Jan 3, 2019
977
978
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "nativePause()");
Aug 28, 2017
Aug 28, 2017
979
980
981
982
983
984
if (Android_Window) {
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_FOCUS_LOST, 0, 0);
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
SDL_SendAppEvent(SDL_APP_WILLENTERBACKGROUND);
SDL_SendAppEvent(SDL_APP_DIDENTERBACKGROUND);
Aug 14, 2017
Aug 14, 2017
985
986
/* *After* sending the relevant events, signal the pause semaphore
Jan 5, 2019
Jan 5, 2019
987
988
989
990
* so the event loop knows to pause and (optionally) block itself.
* Sometimes 2 pauses can be queued (eg pause/resume/pause), so it's
* always increased. */
SDL_SemPost(Android_PauseSem);
Jan 3, 2019
Jan 3, 2019
992
Jan 3, 2019
Jan 3, 2019
993
SDL_UnlockMutex(Android_ActivityMutex);
994
995
996
}
/* Resume */
Dec 2, 2016
Dec 2, 2016
997
JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeResume)(
Jan 3, 2019
Jan 3, 2019
998
JNIEnv *env, jclass cls)
Jan 3, 2019
Jan 3, 2019
1000
SDL_LockMutex(Android_ActivityMutex);