Skip to content

Latest commit

 

History

History
2524 lines (2096 loc) · 90.8 KB

SDL_android.c

File metadata and controls

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