Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
1145 lines (937 loc) · 36.5 KB

SDL_android.cpp

File metadata and controls

1145 lines (937 loc) · 36.5 KB
 
Oct 12, 2011
Oct 12, 2011
1
2
/*
Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
Oct 12, 2011
Oct 12, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_config.h"
#include "SDL_stdinc.h"
Feb 13, 2012
Feb 13, 2012
23
#include "SDL_assert.h"
Nov 4, 2012
Nov 4, 2012
24
#include "SDL_log.h"
Oct 12, 2011
Oct 12, 2011
25
Oct 31, 2011
Oct 31, 2011
26
27
#ifdef __ANDROID__
Nov 2, 2012
Nov 2, 2012
28
#include "SDL_system.h"
Oct 12, 2011
Oct 12, 2011
29
30
31
32
33
34
35
36
#include "SDL_android.h"
extern "C" {
#include "../../events/SDL_events_c.h"
#include "../../video/android/SDL_androidkeyboard.h"
#include "../../video/android/SDL_androidtouch.h"
#include "../../video/android/SDL_androidvideo.h"
Oct 16, 2011
Oct 16, 2011
37
#include <android/log.h>
Jul 9, 2012
Jul 9, 2012
38
#include <pthread.h>
Oct 16, 2011
Oct 16, 2011
39
40
41
42
43
44
#define LOG_TAG "SDL_android"
//#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 (false)
#define LOGE(...) do {} while (false)
Nov 4, 2012
Nov 4, 2012
45
46
/* Uncomment this to log messages entering and exiting methods in this file */
//#define DEBUG_JNI
Oct 16, 2011
Oct 16, 2011
47
Jan 8, 2012
Jan 8, 2012
48
/* Implemented in audio/android/SDL_androidaudio.c */
Oct 12, 2011
Oct 12, 2011
49
50
51
52
53
54
55
56
57
58
59
60
61
extern void Android_RunAudioThread();
} // C
/*******************************************************************************
This file links the Java side of Android with libsdl
*******************************************************************************/
#include <jni.h>
#include <android/log.h>
/*******************************************************************************
Globals
*******************************************************************************/
Jul 9, 2012
Jul 9, 2012
62
static pthread_key_t mThreadKey;
Oct 16, 2011
Oct 16, 2011
63
static JavaVM* mJavaVM;
Oct 12, 2011
Oct 12, 2011
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Main activity
static jclass mActivityClass;
// method signatures
static jmethodID midCreateGLContext;
static jmethodID midFlipBuffers;
static jmethodID midAudioInit;
static jmethodID midAudioWriteShortBuffer;
static jmethodID midAudioWriteByteBuffer;
static jmethodID midAudioQuit;
// Accelerometer data storage
static float fLastAccelerometer[3];
Jan 14, 2012
Jan 14, 2012
78
static bool bHasNewData;
Oct 12, 2011
Oct 12, 2011
79
80
81
82
83
84
85
86
/*******************************************************************************
Functions called by JNI
*******************************************************************************/
// Library init
extern "C" jint JNI_OnLoad(JavaVM* vm, void* reserved)
{
Oct 16, 2011
Oct 16, 2011
87
88
89
90
91
92
93
JNIEnv *env;
mJavaVM = vm;
LOGI("JNI_OnLoad called");
if (mJavaVM->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
LOGE("Failed to get the environment using GetEnv()");
return -1;
}
Jul 9, 2012
Jul 9, 2012
94
95
96
97
98
99
100
101
102
103
/*
* 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)) {
__android_log_print(ANDROID_LOG_ERROR, "SDL", "Error initializing pthread key");
}
else {
Android_JNI_SetupThread();
}
Oct 16, 2011
Oct 16, 2011
104
Oct 12, 2011
Oct 12, 2011
105
106
107
108
return JNI_VERSION_1_4;
}
// Called before SDL_main() to initialize JNI bindings
Jul 9, 2012
Jul 9, 2012
109
extern "C" void SDL_Android_Init(JNIEnv* mEnv, jclass cls)
Oct 12, 2011
Oct 12, 2011
110
111
112
{
__android_log_print(ANDROID_LOG_INFO, "SDL", "SDL_Android_Init()");
Jul 9, 2012
Jul 9, 2012
113
114
115
Android_JNI_SetupThread();
mActivityClass = (jclass)mEnv->NewGlobalRef(cls);
Oct 12, 2011
Oct 12, 2011
116
117
118
119
120
121
122
123
124
125
126
127
128
129
midCreateGLContext = mEnv->GetStaticMethodID(mActivityClass,
"createGLContext","(II)Z");
midFlipBuffers = mEnv->GetStaticMethodID(mActivityClass,
"flipBuffers","()V");
midAudioInit = mEnv->GetStaticMethodID(mActivityClass,
"audioInit", "(IZZI)Ljava/lang/Object;");
midAudioWriteShortBuffer = mEnv->GetStaticMethodID(mActivityClass,
"audioWriteShortBuffer", "([S)V");
midAudioWriteByteBuffer = mEnv->GetStaticMethodID(mActivityClass,
"audioWriteByteBuffer", "([B)V");
midAudioQuit = mEnv->GetStaticMethodID(mActivityClass,
"audioQuit", "()V");
Jan 14, 2012
Jan 14, 2012
130
131
bHasNewData = false;
Oct 12, 2011
Oct 12, 2011
132
133
134
135
if(!midCreateGLContext || !midFlipBuffers || !midAudioInit ||
!midAudioWriteShortBuffer || !midAudioWriteByteBuffer || !midAudioQuit) {
__android_log_print(ANDROID_LOG_WARN, "SDL", "SDL: Couldn't locate Java callbacks, check that they're named and typed correctly");
}
Oct 16, 2011
Oct 16, 2011
136
__android_log_print(ANDROID_LOG_INFO, "SDL", "SDL_Android_Init() finished!");
Oct 12, 2011
Oct 12, 2011
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
}
// Resize
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeResize(
JNIEnv* env, jclass jcls,
jint width, jint height, jint format)
{
Android_SetScreenResolution(width, height, format);
}
// Keydown
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeKeyDown(
JNIEnv* env, jclass jcls, jint keycode)
{
Android_OnKeyDown(keycode);
}
// Keyup
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeKeyUp(
JNIEnv* env, jclass jcls, jint keycode)
{
Android_OnKeyUp(keycode);
}
// Touch
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeTouch(
JNIEnv* env, jclass jcls,
Oct 13, 2011
Oct 13, 2011
164
jint touch_device_id_in, jint pointer_finger_id_in,
Oct 12, 2011
Oct 12, 2011
165
166
jint action, jfloat x, jfloat y, jfloat p)
{
Oct 13, 2011
Oct 13, 2011
167
Android_OnTouch(touch_device_id_in, pointer_finger_id_in, action, x, y, p);
Oct 12, 2011
Oct 12, 2011
168
169
170
171
172
173
174
175
176
}
// Accelerometer
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeAccel(
JNIEnv* env, jclass jcls,
jfloat x, jfloat y, jfloat z)
{
fLastAccelerometer[0] = x;
fLastAccelerometer[1] = y;
Jan 14, 2012
Jan 14, 2012
177
178
fLastAccelerometer[2] = z;
bHasNewData = true;
Oct 12, 2011
Oct 12, 2011
179
180
181
182
183
184
185
186
187
188
}
// Quit
extern "C" void Java_org_libsdl_app_SDLActivity_nativeQuit(
JNIEnv* env, jclass cls)
{
// Inject a SDL_QUIT event
SDL_SendQuit();
}
Jan 8, 2012
Jan 8, 2012
189
190
191
192
193
// Pause
extern "C" void Java_org_libsdl_app_SDLActivity_nativePause(
JNIEnv* env, jclass cls)
{
if (Android_Window) {
Jun 19, 2012
Jun 19, 2012
194
195
/* Signal the pause semaphore so the event loop knows to pause and (optionally) block itself */
if (!SDL_SemValue(Android_PauseSem)) SDL_SemPost(Android_PauseSem);
Jan 8, 2012
Jan 8, 2012
196
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_FOCUS_LOST, 0, 0);
Jan 8, 2012
Jan 8, 2012
197
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
Jan 8, 2012
Jan 8, 2012
198
199
200
201
202
203
204
205
}
}
// Resume
extern "C" void Java_org_libsdl_app_SDLActivity_nativeResume(
JNIEnv* env, jclass cls)
{
if (Android_Window) {
Jun 19, 2012
Jun 19, 2012
206
207
208
209
210
/* 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);
Jan 8, 2012
Jan 8, 2012
211
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_FOCUS_GAINED, 0, 0);
Jan 8, 2012
Jan 8, 2012
212
SDL_SendWindowEvent(Android_Window, SDL_WINDOWEVENT_RESTORED, 0, 0);
Jan 8, 2012
Jan 8, 2012
213
214
215
}
}
Oct 12, 2011
Oct 12, 2011
216
217
218
219
extern "C" void Java_org_libsdl_app_SDLActivity_nativeRunAudioThread(
JNIEnv* env, jclass cls)
{
/* This is the audio thread, with a different environment */
Jul 9, 2012
Jul 9, 2012
220
Android_JNI_SetupThread();
Oct 12, 2011
Oct 12, 2011
221
222
223
224
Android_RunAudioThread();
}
Oct 4, 2012
Oct 4, 2012
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
extern "C" void Java_org_libsdl_app_SDLInputConnection_nativeCommitText(
JNIEnv* env, jclass cls,
jstring text, jint newCursorPosition)
{
const char *utftext = env->GetStringUTFChars(text, NULL);
SDL_SendKeyboardText(utftext);
env->ReleaseStringUTFChars(text, utftext);
}
extern "C" void Java_org_libsdl_app_SDLInputConnection_nativeSetComposingText(
JNIEnv* env, jclass cls,
jstring text, jint newCursorPosition)
{
const char *utftext = env->GetStringUTFChars(text, NULL);
SDL_SendEditingText(utftext, 0, 0);
env->ReleaseStringUTFChars(text, utftext);
}
Oct 12, 2011
Oct 12, 2011
249
250
251
/*******************************************************************************
Functions called by SDL into Java
*******************************************************************************/
Feb 13, 2012
Feb 13, 2012
252
253
254
255
256
257
258
259
260
261
262
263
class LocalReferenceHolder
{
private:
static int s_active;
public:
static bool IsActive() {
return s_active > 0;
}
public:
Nov 4, 2012
Nov 4, 2012
264
265
266
267
268
LocalReferenceHolder(const char *func) : m_env(NULL), m_func(func) {
#ifdef DEBUG_JNI
SDL_Log("Entering function %s", m_func);
#endif
}
Feb 13, 2012
Feb 13, 2012
269
~LocalReferenceHolder() {
Nov 4, 2012
Nov 4, 2012
270
271
272
#ifdef DEBUG_JNI
SDL_Log("Leaving function %s", m_func);
#endif
Feb 13, 2012
Feb 13, 2012
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
if (m_env) {
m_env->PopLocalFrame(NULL);
--s_active;
}
}
bool init(JNIEnv *env, jint capacity = 16) {
if (env->PushLocalFrame(capacity) < 0) {
SDL_SetError("Failed to allocate enough JVM local references");
return false;
}
++s_active;
m_env = env;
return true;
}
protected:
JNIEnv *m_env;
Nov 4, 2012
Nov 4, 2012
291
const char *m_func;
Feb 13, 2012
Feb 13, 2012
292
293
294
};
int LocalReferenceHolder::s_active;
Oct 12, 2011
Oct 12, 2011
295
296
extern "C" SDL_bool Android_JNI_CreateContext(int majorVersion, int minorVersion)
{
Jul 9, 2012
Jul 9, 2012
297
JNIEnv *mEnv = Android_JNI_GetEnv();
Oct 12, 2011
Oct 12, 2011
298
299
300
301
302
303
304
305
306
if (mEnv->CallStaticBooleanMethod(mActivityClass, midCreateGLContext, majorVersion, minorVersion)) {
return SDL_TRUE;
} else {
return SDL_FALSE;
}
}
extern "C" void Android_JNI_SwapWindow()
{
Jul 9, 2012
Jul 9, 2012
307
JNIEnv *mEnv = Android_JNI_GetEnv();
Oct 12, 2011
Oct 12, 2011
308
309
310
311
312
313
mEnv->CallStaticVoidMethod(mActivityClass, midFlipBuffers);
}
extern "C" void Android_JNI_SetActivityTitle(const char *title)
{
jmethodID mid;
Jul 9, 2012
Jul 9, 2012
314
JNIEnv *mEnv = Android_JNI_GetEnv();
Oct 12, 2011
Oct 12, 2011
315
316
mid = mEnv->GetStaticMethodID(mActivityClass,"setActivityTitle","(Ljava/lang/String;)V");
if (mid) {
May 25, 2012
May 25, 2012
317
318
319
jstring jtitle = reinterpret_cast<jstring>(mEnv->NewStringUTF(title));
mEnv->CallStaticVoidMethod(mActivityClass, mid, jtitle);
mEnv->DeleteLocalRef(jtitle);
Oct 12, 2011
Oct 12, 2011
320
321
322
}
}
Jan 14, 2012
Jan 14, 2012
323
extern "C" SDL_bool Android_JNI_GetAccelerometerValues(float values[3])
Oct 12, 2011
Oct 12, 2011
324
325
{
int i;
Jan 14, 2012
Jan 14, 2012
326
327
328
329
330
331
332
333
SDL_bool retval = SDL_FALSE;
if (bHasNewData) {
for (i = 0; i < 3; ++i) {
values[i] = fLastAccelerometer[i];
}
bHasNewData = false;
retval = SDL_TRUE;
Oct 12, 2011
Oct 12, 2011
334
}
Jan 14, 2012
Jan 14, 2012
335
336
return retval;
Oct 12, 2011
Oct 12, 2011
337
338
}
Jul 9, 2012
Jul 9, 2012
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
378
379
380
381
382
383
384
385
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();
pthread_setspecific(mThreadKey, NULL);
}
}
JNIEnv* Android_JNI_GetEnv(void) {
/* 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
*/
JNIEnv *env;
int status = mJavaVM->AttachCurrentThread(&env, NULL);
if(status < 0) {
LOGE("failed to attach current thread");
return 0;
}
return env;
}
int Android_JNI_SetupThread(void) {
/* 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)
*/
JNIEnv *env = Android_JNI_GetEnv();
pthread_setspecific(mThreadKey, (void*) env);
return 1;
}
Oct 12, 2011
Oct 12, 2011
386
387
388
389
390
391
392
393
394
395
396
397
//
// Audio support
//
static jboolean audioBuffer16Bit = JNI_FALSE;
static jboolean audioBufferStereo = JNI_FALSE;
static jobject audioBuffer = NULL;
static void* audioBufferPinned = NULL;
extern "C" int Android_JNI_OpenAudioDevice(int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames)
{
int audioBufferFrames;
Oct 16, 2011
Oct 16, 2011
398
int status;
Jul 9, 2012
Jul 9, 2012
399
400
401
402
JNIEnv *env = Android_JNI_GetEnv();
if (!env) {
LOGE("callback_handler: failed to attach current thread");
Oct 16, 2011
Oct 16, 2011
403
}
Jul 9, 2012
Jul 9, 2012
404
Android_JNI_SetupThread();
Oct 16, 2011
Oct 16, 2011
405
406
Oct 12, 2011
Oct 12, 2011
407
408
409
410
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "SDL audio: opening device");
audioBuffer16Bit = is16Bit;
audioBufferStereo = channelCount > 1;
Oct 16, 2011
Oct 16, 2011
411
audioBuffer = env->CallStaticObjectMethod(mActivityClass, midAudioInit, sampleRate, audioBuffer16Bit, audioBufferStereo, desiredBufferFrames);
Oct 12, 2011
Oct 12, 2011
412
413
414
415
416
if (audioBuffer == NULL) {
__android_log_print(ANDROID_LOG_WARN, "SDL", "SDL audio: didn't get back a good audio buffer!");
return 0;
}
Oct 16, 2011
Oct 16, 2011
417
audioBuffer = env->NewGlobalRef(audioBuffer);
Oct 12, 2011
Oct 12, 2011
418
419
420
jboolean isCopy = JNI_FALSE;
if (audioBuffer16Bit) {
Oct 16, 2011
Oct 16, 2011
421
422
audioBufferPinned = env->GetShortArrayElements((jshortArray)audioBuffer, &isCopy);
audioBufferFrames = env->GetArrayLength((jshortArray)audioBuffer);
Oct 12, 2011
Oct 12, 2011
423
} else {
Oct 16, 2011
Oct 16, 2011
424
425
audioBufferPinned = env->GetByteArrayElements((jbyteArray)audioBuffer, &isCopy);
audioBufferFrames = env->GetArrayLength((jbyteArray)audioBuffer);
Oct 12, 2011
Oct 12, 2011
426
427
428
429
}
if (audioBufferStereo) {
audioBufferFrames /= 2;
}
Oct 16, 2011
Oct 16, 2011
430
Oct 12, 2011
Oct 12, 2011
431
432
433
434
435
436
437
438
439
440
return audioBufferFrames;
}
extern "C" void * Android_JNI_GetAudioBuffer()
{
return audioBufferPinned;
}
extern "C" void Android_JNI_WriteAudioBuffer()
{
Jul 9, 2012
Jul 9, 2012
441
442
JNIEnv *mAudioEnv = Android_JNI_GetEnv();
Oct 12, 2011
Oct 12, 2011
443
444
445
446
447
448
449
450
451
452
453
454
455
if (audioBuffer16Bit) {
mAudioEnv->ReleaseShortArrayElements((jshortArray)audioBuffer, (jshort *)audioBufferPinned, JNI_COMMIT);
mAudioEnv->CallStaticVoidMethod(mActivityClass, midAudioWriteShortBuffer, (jshortArray)audioBuffer);
} else {
mAudioEnv->ReleaseByteArrayElements((jbyteArray)audioBuffer, (jbyte *)audioBufferPinned, JNI_COMMIT);
mAudioEnv->CallStaticVoidMethod(mActivityClass, midAudioWriteByteBuffer, (jbyteArray)audioBuffer);
}
/* JNI_COMMIT means the changes are committed to the VM but the buffer remains pinned */
}
extern "C" void Android_JNI_CloseAudioDevice()
{
Oct 16, 2011
Oct 16, 2011
456
int status;
Jul 9, 2012
Jul 9, 2012
457
JNIEnv *env = Android_JNI_GetEnv();
Oct 16, 2011
Oct 16, 2011
458
459
env->CallStaticVoidMethod(mActivityClass, midAudioQuit);
Oct 12, 2011
Oct 12, 2011
460
461
if (audioBuffer) {
Oct 16, 2011
Oct 16, 2011
462
env->DeleteGlobalRef(audioBuffer);
Oct 12, 2011
Oct 12, 2011
463
464
465
466
467
468
469
470
audioBuffer = NULL;
audioBufferPinned = NULL;
}
}
// Test for an exception and call SDL_SetError with its detail if one occurs
static bool Android_JNI_ExceptionOccurred()
{
Feb 13, 2012
Feb 13, 2012
471
SDL_assert(LocalReferenceHolder::IsActive());
Jul 9, 2012
Jul 9, 2012
472
JNIEnv *mEnv = Android_JNI_GetEnv();
Feb 13, 2012
Feb 13, 2012
473
Oct 12, 2011
Oct 12, 2011
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
jthrowable exception = mEnv->ExceptionOccurred();
if (exception != NULL) {
jmethodID mid;
// Until this happens most JNI operations have undefined behaviour
mEnv->ExceptionClear();
jclass exceptionClass = mEnv->GetObjectClass(exception);
jclass classClass = mEnv->FindClass("java/lang/Class");
mid = mEnv->GetMethodID(classClass, "getName", "()Ljava/lang/String;");
jstring exceptionName = (jstring)mEnv->CallObjectMethod(exceptionClass, mid);
const char* exceptionNameUTF8 = mEnv->GetStringUTFChars(exceptionName, 0);
mid = mEnv->GetMethodID(exceptionClass, "getMessage", "()Ljava/lang/String;");
jstring exceptionMessage = (jstring)mEnv->CallObjectMethod(exception, mid);
if (exceptionMessage != NULL) {
const char* exceptionMessageUTF8 = mEnv->GetStringUTFChars(
exceptionMessage, 0);
SDL_SetError("%s: %s", exceptionNameUTF8, exceptionMessageUTF8);
mEnv->ReleaseStringUTFChars(exceptionMessage, exceptionMessageUTF8);
} else {
SDL_SetError("%s", exceptionNameUTF8);
}
mEnv->ReleaseStringUTFChars(exceptionName, exceptionNameUTF8);
return true;
}
return false;
}
static int Android_JNI_FileOpen(SDL_RWops* ctx)
{
Nov 4, 2012
Nov 4, 2012
510
LocalReferenceHolder refs(__FUNCTION__);
Oct 12, 2011
Oct 12, 2011
511
512
513
514
515
516
517
518
519
520
int result = 0;
jmethodID mid;
jobject context;
jobject assetManager;
jobject inputStream;
jclass channels;
jobject readableByteChannel;
jstring fileNameJString;
Jul 9, 2012
Jul 9, 2012
521
JNIEnv *mEnv = Android_JNI_GetEnv();
Feb 13, 2012
Feb 13, 2012
522
if (!refs.init(mEnv)) {
Oct 12, 2011
Oct 12, 2011
523
524
525
goto failure;
}
May 25, 2012
May 25, 2012
526
fileNameJString = (jstring)ctx->hidden.androidio.fileNameRef;
Oct 12, 2011
Oct 12, 2011
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
// context = SDLActivity.getContext();
mid = mEnv->GetStaticMethodID(mActivityClass,
"getContext","()Landroid/content/Context;");
context = mEnv->CallStaticObjectMethod(mActivityClass, mid);
// assetManager = context.getAssets();
mid = mEnv->GetMethodID(mEnv->GetObjectClass(context),
"getAssets", "()Landroid/content/res/AssetManager;");
assetManager = mEnv->CallObjectMethod(context, mid);
// inputStream = assetManager.open(<filename>);
mid = mEnv->GetMethodID(mEnv->GetObjectClass(assetManager),
"open", "(Ljava/lang/String;)Ljava/io/InputStream;");
inputStream = mEnv->CallObjectMethod(assetManager, mid, fileNameJString);
if (Android_JNI_ExceptionOccurred()) {
goto failure;
}
ctx->hidden.androidio.inputStreamRef = mEnv->NewGlobalRef(inputStream);
// Despite all the visible documentation on [Asset]InputStream claiming
// that the .available() method is not guaranteed to return the entire file
// size, comments in <sdk>/samples/<ver>/ApiDemos/src/com/example/ ...
// android/apis/content/ReadAsset.java imply that Android's
// AssetInputStream.available() /will/ always return the total file size
// size = inputStream.available();
mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream),
"available", "()I");
ctx->hidden.androidio.size = mEnv->CallIntMethod(inputStream, mid);
if (Android_JNI_ExceptionOccurred()) {
goto failure;
}
// readableByteChannel = Channels.newChannel(inputStream);
channels = mEnv->FindClass("java/nio/channels/Channels");
mid = mEnv->GetStaticMethodID(channels,
"newChannel",
"(Ljava/io/InputStream;)Ljava/nio/channels/ReadableByteChannel;");
readableByteChannel = mEnv->CallStaticObjectMethod(
channels, mid, inputStream);
if (Android_JNI_ExceptionOccurred()) {
goto failure;
}
ctx->hidden.androidio.readableByteChannelRef =
mEnv->NewGlobalRef(readableByteChannel);
// Store .read id for reading purposes
mid = mEnv->GetMethodID(mEnv->GetObjectClass(readableByteChannel),
"read", "(Ljava/nio/ByteBuffer;)I");
ctx->hidden.androidio.readMethod = mid;
ctx->hidden.androidio.position = 0;
if (false) {
failure:
result = -1;
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef);
if(ctx->hidden.androidio.inputStreamRef != NULL) {
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef);
}
May 25, 2012
May 25, 2012
592
593
594
595
596
if(ctx->hidden.androidio.readableByteChannelRef != NULL) {
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.readableByteChannelRef);
}
Oct 12, 2011
Oct 12, 2011
597
598
599
600
601
602
603
604
}
return result;
}
extern "C" int Android_JNI_FileOpen(SDL_RWops* ctx,
const char* fileName, const char*)
{
Nov 4, 2012
Nov 4, 2012
605
LocalReferenceHolder refs(__FUNCTION__);
Jul 9, 2012
Jul 9, 2012
606
JNIEnv *mEnv = Android_JNI_GetEnv();
Feb 13, 2012
Feb 13, 2012
607
608
609
610
611
if (!refs.init(mEnv)) {
return -1;
}
Oct 12, 2011
Oct 12, 2011
612
613
614
615
616
617
618
if (!ctx) {
return -1;
}
jstring fileNameJString = mEnv->NewStringUTF(fileName);
ctx->hidden.androidio.fileNameRef = mEnv->NewGlobalRef(fileNameJString);
ctx->hidden.androidio.inputStreamRef = NULL;
Jun 20, 2012
Jun 20, 2012
619
620
ctx->hidden.androidio.readableByteChannelRef = NULL;
ctx->hidden.androidio.readMethod = NULL;
Oct 12, 2011
Oct 12, 2011
621
622
623
624
625
626
627
return Android_JNI_FileOpen(ctx);
}
extern "C" size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer,
size_t size, size_t maxnum)
{
Nov 4, 2012
Nov 4, 2012
628
LocalReferenceHolder refs(__FUNCTION__);
Jul 20, 2012
Jul 20, 2012
629
630
jlong bytesRemaining = (jlong) (size * maxnum);
jlong bytesMax = (jlong) (ctx->hidden.androidio.size - ctx->hidden.androidio.position);
Oct 12, 2011
Oct 12, 2011
631
632
int bytesRead = 0;
Jul 20, 2012
Jul 20, 2012
633
634
635
/* Don't read more bytes than those that remain in the file, otherwise we get an exception */
if (bytesRemaining > bytesMax) bytesRemaining = bytesMax;
Jul 9, 2012
Jul 9, 2012
636
JNIEnv *mEnv = Android_JNI_GetEnv();
Feb 13, 2012
Feb 13, 2012
637
638
639
640
if (!refs.init(mEnv)) {
return -1;
}
May 25, 2012
May 25, 2012
641
jobject readableByteChannel = (jobject)ctx->hidden.androidio.readableByteChannelRef;
Oct 12, 2011
Oct 12, 2011
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
jmethodID readMethod = (jmethodID)ctx->hidden.androidio.readMethod;
jobject byteBuffer = mEnv->NewDirectByteBuffer(buffer, bytesRemaining);
while (bytesRemaining > 0) {
// result = readableByteChannel.read(...);
int result = mEnv->CallIntMethod(readableByteChannel, readMethod, byteBuffer);
if (Android_JNI_ExceptionOccurred()) {
return 0;
}
if (result < 0) {
break;
}
bytesRemaining -= result;
bytesRead += result;
ctx->hidden.androidio.position += result;
}
return bytesRead / size;
}
extern "C" size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer,
size_t size, size_t num)
{
SDL_SetError("Cannot write to Android package filesystem");
return 0;
}
static int Android_JNI_FileClose(SDL_RWops* ctx, bool release)
{
Nov 4, 2012
Nov 4, 2012
674
LocalReferenceHolder refs(__FUNCTION__);
Oct 12, 2011
Oct 12, 2011
675
int result = 0;
Jul 9, 2012
Jul 9, 2012
676
JNIEnv *mEnv = Android_JNI_GetEnv();
Oct 12, 2011
Oct 12, 2011
677
Feb 13, 2012
Feb 13, 2012
678
679
680
681
682
if (!refs.init(mEnv)) {
SDL_SetError("Failed to allocate enough JVM local references");
return -1;
}
Oct 12, 2011
Oct 12, 2011
683
684
685
686
687
if (ctx) {
if (release) {
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef);
}
May 25, 2012
May 25, 2012
688
jobject inputStream = (jobject)ctx->hidden.androidio.inputStreamRef;
Oct 12, 2011
Oct 12, 2011
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
// inputStream.close();
jmethodID mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream),
"close", "()V");
mEnv->CallVoidMethod(inputStream, mid);
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef);
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.readableByteChannelRef);
if (Android_JNI_ExceptionOccurred()) {
result = -1;
}
if (release) {
SDL_FreeRW(ctx);
}
}
return result;
}
Nov 4, 2012
Nov 4, 2012
709
extern "C" Sint64 Android_JNI_FileSize(SDL_RWops* ctx)
Oct 12, 2011
Oct 12, 2011
710
{
Nov 4, 2012
Nov 4, 2012
711
712
713
714
715
716
return ctx->hidden.androidio.size;
}
extern "C" Sint64 Android_JNI_FileSeek(SDL_RWops* ctx, Sint64 offset, int whence)
{
Sint64 newPosition;
Oct 12, 2011
Oct 12, 2011
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
switch (whence) {
case RW_SEEK_SET:
newPosition = offset;
break;
case RW_SEEK_CUR:
newPosition = ctx->hidden.androidio.position + offset;
break;
case RW_SEEK_END:
newPosition = ctx->hidden.androidio.size + offset;
break;
default:
SDL_SetError("Unknown value for 'whence'");
return -1;
}
Nov 4, 2012
Nov 4, 2012
732
733
/* Validate the new position */
Oct 12, 2011
Oct 12, 2011
734
if (newPosition < 0) {
Nov 4, 2012
Nov 4, 2012
735
736
SDL_Error(SDL_EFSEEK);
return -1;
Oct 12, 2011
Oct 12, 2011
737
738
739
740
741
}
if (newPosition > ctx->hidden.androidio.size) {
newPosition = ctx->hidden.androidio.size;
}
Nov 4, 2012
Nov 4, 2012
742
Sint64 movement = newPosition - ctx->hidden.androidio.position;
Oct 12, 2011
Oct 12, 2011
743
if (movement > 0) {
Nov 4, 2012
Nov 4, 2012
744
unsigned char buffer[4096];
Oct 14, 2011
Oct 14, 2011
745
Oct 12, 2011
Oct 12, 2011
746
747
// The easy case where we're seeking forwards
while (movement > 0) {
Nov 4, 2012
Nov 4, 2012
748
Sint64 amount = sizeof (buffer);
Oct 15, 2011
Oct 15, 2011
749
750
751
752
if (amount > movement) {
amount = movement;
}
size_t result = Android_JNI_FileRead(ctx, buffer, 1, amount);
Oct 14, 2011
Oct 14, 2011
753
754
if (result <= 0) {
// Failed to read/skip the required amount, so fail
Oct 12, 2011
Oct 12, 2011
755
756
return -1;
}
Oct 14, 2011
Oct 14, 2011
757
758
movement -= result;
Oct 12, 2011
Oct 12, 2011
759
}
Nov 4, 2012
Nov 4, 2012
760
Oct 12, 2011
Oct 12, 2011
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
} else if (movement < 0) {
// We can't seek backwards so we have to reopen the file and seek
// forwards which obviously isn't very efficient
Android_JNI_FileClose(ctx, false);
Android_JNI_FileOpen(ctx);
Android_JNI_FileSeek(ctx, newPosition, RW_SEEK_SET);
}
return ctx->hidden.androidio.position;
}
extern "C" int Android_JNI_FileClose(SDL_RWops* ctx)
{
return Android_JNI_FileClose(ctx, true);
}
Sep 27, 2012
Sep 27, 2012
777
778
779
// returns a new global reference which needs to be released later
static jobject Android_JNI_GetSystemServiceObject(const char* name)
{
Nov 4, 2012
Nov 4, 2012
780
LocalReferenceHolder refs(__FUNCTION__);
Sep 27, 2012
Sep 27, 2012
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
JNIEnv* env = Android_JNI_GetEnv();
if (!refs.init(env)) {
return NULL;
}
jstring service = env->NewStringUTF(name);
jmethodID mid;
mid = env->GetStaticMethodID(mActivityClass, "getContext", "()Landroid/content/Context;");
jobject context = env->CallStaticObjectMethod(mActivityClass, mid);
mid = env->GetMethodID(mActivityClass, "getSystemService", "(Ljava/lang/String;)Ljava/lang/Object;");
jobject manager = env->CallObjectMethod(context, mid, service);
env->DeleteLocalRef(service);
return manager ? env->NewGlobalRef(manager) : NULL;
}
#define SETUP_CLIPBOARD(error) \
Nov 4, 2012
Nov 4, 2012
802
LocalReferenceHolder refs(__FUNCTION__); \
Sep 27, 2012
Sep 27, 2012
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
JNIEnv* env = Android_JNI_GetEnv(); \
if (!refs.init(env)) { \
return error; \
} \
jobject clipboard = Android_JNI_GetSystemServiceObject("clipboard"); \
if (!clipboard) { \
return error; \
}
extern "C" int Android_JNI_SetClipboardText(const char* text)
{
SETUP_CLIPBOARD(-1)
jmethodID mid = env->GetMethodID(env->GetObjectClass(clipboard), "setText", "(Ljava/lang/CharSequence;)V");
jstring string = env->NewStringUTF(text);
env->CallVoidMethod(clipboard, mid, string);
env->DeleteGlobalRef(clipboard);
env->DeleteLocalRef(string);
return 0;
}
extern "C" char* Android_JNI_GetClipboardText()
{
SETUP_CLIPBOARD(SDL_strdup(""))
jmethodID mid = env->GetMethodID(env->GetObjectClass(clipboard), "getText", "()Ljava/lang/CharSequence;");
jobject sequence = env->CallObjectMethod(clipboard, mid);
env->DeleteGlobalRef(clipboard);
if (sequence) {
mid = env->GetMethodID(env->GetObjectClass(sequence), "toString", "()Ljava/lang/String;");
jstring string = reinterpret_cast<jstring>(env->CallObjectMethod(sequence, mid));
const char* utf = env->GetStringUTFChars(string, 0);
if (utf) {
char* text = SDL_strdup(utf);
env->ReleaseStringUTFChars(string, utf);
return text;
}
}
return SDL_strdup("");
}
extern "C" SDL_bool Android_JNI_HasClipboardText()
{
SETUP_CLIPBOARD(SDL_FALSE)
jmethodID mid = env->GetMethodID(env->GetObjectClass(clipboard), "hasText", "()Z");
jboolean has = env->CallBooleanMethod(clipboard, mid);
env->DeleteGlobalRef(clipboard);
return has ? SDL_TRUE : SDL_FALSE;
}
Sep 23, 2012
Sep 23, 2012
855
856
857
858
859
// returns 0 on success or -1 on error (others undefined then)
// returns truthy or falsy value in plugged, charged and battery
// returns the value in seconds and percent or -1 if not available
extern "C" int Android_JNI_GetPowerInfo(int* plugged, int* charged, int* battery, int* seconds, int* percent)
{
Nov 4, 2012
Nov 4, 2012
860
LocalReferenceHolder refs(__FUNCTION__);
Sep 23, 2012
Sep 23, 2012
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
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
JNIEnv* env = Android_JNI_GetEnv();
if (!refs.init(env)) {
return -1;
}
jmethodID mid;
mid = env->GetStaticMethodID(mActivityClass, "getContext", "()Landroid/content/Context;");
jobject context = env->CallStaticObjectMethod(mActivityClass, mid);
jstring action = env->NewStringUTF("android.intent.action.BATTERY_CHANGED");
jclass cls = env->FindClass("android/content/IntentFilter");
mid = env->GetMethodID(cls, "<init>", "(Ljava/lang/String;)V");
jobject filter = env->NewObject(cls, mid, action);
env->DeleteLocalRef(action);
mid = env->GetMethodID(mActivityClass, "registerReceiver", "(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;)Landroid/content/Intent;");
jobject intent = env->CallObjectMethod(context, mid, NULL, filter);
env->DeleteLocalRef(filter);
cls = env->GetObjectClass(intent);
jstring iname;
jmethodID imid = env->GetMethodID(cls, "getIntExtra", "(Ljava/lang/String;I)I");
#define GET_INT_EXTRA(var, key) \
iname = env->NewStringUTF(key); \
int var = env->CallIntMethod(intent, imid, iname, -1); \
env->DeleteLocalRef(iname);
jstring bname;
jmethodID bmid = env->GetMethodID(cls, "getBooleanExtra", "(Ljava/lang/String;Z)Z");
#define GET_BOOL_EXTRA(var, key) \
bname = env->NewStringUTF(key); \
int var = env->CallBooleanMethod(intent, bmid, bname, JNI_FALSE); \
env->DeleteLocalRef(bname);
if (plugged) {
GET_INT_EXTRA(plug, "plugged") // == BatteryManager.EXTRA_PLUGGED (API 5)
if (plug == -1) {
return -1;
}
// 1 == BatteryManager.BATTERY_PLUGGED_AC
// 2 == BatteryManager.BATTERY_PLUGGED_USB
*plugged = (0 < plug) ? 1 : 0;
}
if (charged) {
GET_INT_EXTRA(status, "status") // == BatteryManager.EXTRA_STATUS (API 5)
if (status == -1) {
return -1;
}
// 5 == BatteryManager.BATTERY_STATUS_FULL
*charged = (status == 5) ? 1 : 0;
}
if (battery) {
GET_BOOL_EXTRA(present, "present") // == BatteryManager.EXTRA_PRESENT (API 5)
*battery = present ? 1 : 0;
}
if (seconds) {
*seconds = -1; // not possible
}
if (percent) {
GET_INT_EXTRA(level, "level") // == BatteryManager.EXTRA_LEVEL (API 5)
GET_INT_EXTRA(scale, "scale") // == BatteryManager.EXTRA_SCALE (API 5)
if ((level == -1) || (scale == -1)) {
return -1;
}
*percent = level * 100 / scale;
}
env->DeleteLocalRef(intent);
return 0;
}
Aug 11, 2012
Aug 11, 2012
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
// sends message to be handled on the UI event dispatch thread
extern "C" int Android_JNI_SendMessage(int command, int param)
{
JNIEnv *env = Android_JNI_GetEnv();
if (!env) {
return -1;
}
jmethodID mid = env->GetStaticMethodID(mActivityClass, "sendMessage", "(II)V");
if (!mid) {
return -1;
}
env->CallStaticVoidMethod(mActivityClass, mid, command, param);
return 0;
}
Oct 4, 2012
Oct 4, 2012
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
extern "C" int Android_JNI_ShowTextInput(SDL_Rect *inputRect)
{
JNIEnv *env = Android_JNI_GetEnv();
if (!env) {
return -1;
}
jmethodID mid = env->GetStaticMethodID(mActivityClass, "showTextInput", "(IIII)V");
if (!mid) {
return -1;
}
env->CallStaticVoidMethod( mActivityClass, mid,
inputRect->x,
inputRect->y,
inputRect->w,
inputRect->h );
return 0;
}
/*extern "C" int Android_JNI_HideTextInput()
{
JNIEnv *env = Android_JNI_GetEnv();
if (!env) {
return -1;
}
jmethodID mid = env->GetStaticMethodID(mActivityClass, "hideTextInput", "()V");
if (!mid) {
return -1;
}
env->CallStaticVoidMethod(mActivityClass, mid);
return 0;
}*/
Nov 2, 2012
Nov 2, 2012
994
995
996
997
998
999
1000
//////////////////////////////////////////////////////////////////////////////
//
// Functions exposed to SDL applications in SDL_system.h
//
extern "C" void *SDL_AndroidGetJNIEnv()
{