Skip to content

Latest commit

 

History

History
2430 lines (2029 loc) · 87.9 KB

SDL_android.c

File metadata and controls

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