slouken@4964
|
1 |
/*
|
slouken@5535
|
2 |
Simple DirectMedia Layer
|
slouken@6138
|
3 |
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
|
slouken@4964
|
4 |
|
slouken@5535
|
5 |
This software is provided 'as-is', without any express or implied
|
slouken@5535
|
6 |
warranty. In no event will the authors be held liable for any damages
|
slouken@5535
|
7 |
arising from the use of this software.
|
slouken@4964
|
8 |
|
slouken@5535
|
9 |
Permission is granted to anyone to use this software for any purpose,
|
slouken@5535
|
10 |
including commercial applications, and to alter it and redistribute it
|
slouken@5535
|
11 |
freely, subject to the following restrictions:
|
slouken@4964
|
12 |
|
slouken@5535
|
13 |
1. The origin of this software must not be misrepresented; you must not
|
slouken@5535
|
14 |
claim that you wrote the original software. If you use this software
|
slouken@5535
|
15 |
in a product, an acknowledgment in the product documentation would be
|
slouken@5535
|
16 |
appreciated but is not required.
|
slouken@5535
|
17 |
2. Altered source versions must be plainly marked as such, and must not be
|
slouken@5535
|
18 |
misrepresented as being the original software.
|
slouken@5535
|
19 |
3. This notice may not be removed or altered from any source distribution.
|
slouken@4964
|
20 |
*/
|
slouken@4964
|
21 |
#include "SDL_config.h"
|
slouken@5222
|
22 |
#include "SDL_stdinc.h"
|
slouken@4964
|
23 |
|
slouken@6044
|
24 |
#ifdef __ANDROID__
|
slouken@6044
|
25 |
|
slouken@4989
|
26 |
#include "SDL_android.h"
|
slouken@4989
|
27 |
|
slouken@4980
|
28 |
extern "C" {
|
slouken@5092
|
29 |
#include "../../events/SDL_events_c.h"
|
slouken@5092
|
30 |
#include "../../video/android/SDL_androidkeyboard.h"
|
slouken@5092
|
31 |
#include "../../video/android/SDL_androidtouch.h"
|
slouken@5092
|
32 |
#include "../../video/android/SDL_androidvideo.h"
|
slouken@4995
|
33 |
|
icculus@5996
|
34 |
#include <android/log.h>
|
icculus@5996
|
35 |
#define LOG_TAG "SDL_android"
|
icculus@5996
|
36 |
//#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
|
icculus@5996
|
37 |
//#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
|
icculus@5996
|
38 |
#define LOGI(...) do {} while (false)
|
icculus@5996
|
39 |
#define LOGE(...) do {} while (false)
|
icculus@5996
|
40 |
|
icculus@5996
|
41 |
|
slouken@4995
|
42 |
/* Impelemented in audio/android/SDL_androidaudio.c */
|
slouken@4995
|
43 |
extern void Android_RunAudioThread();
|
slouken@4995
|
44 |
} // C
|
slouken@4980
|
45 |
|
slouken@4964
|
46 |
/*******************************************************************************
|
slouken@4964
|
47 |
This file links the Java side of Android with libsdl
|
slouken@4964
|
48 |
*******************************************************************************/
|
slouken@4964
|
49 |
#include <jni.h>
|
slouken@4964
|
50 |
#include <android/log.h>
|
slouken@4964
|
51 |
|
slouken@4964
|
52 |
|
slouken@4964
|
53 |
/*******************************************************************************
|
slouken@4964
|
54 |
Globals
|
slouken@4964
|
55 |
*******************************************************************************/
|
slouken@4995
|
56 |
static JNIEnv* mEnv = NULL;
|
slouken@4995
|
57 |
static JNIEnv* mAudioEnv = NULL;
|
icculus@5996
|
58 |
static JavaVM* mJavaVM;
|
slouken@4964
|
59 |
|
slouken@4995
|
60 |
// Main activity
|
slouken@4998
|
61 |
static jclass mActivityClass;
|
slouken@4964
|
62 |
|
slouken@4995
|
63 |
// method signatures
|
slouken@4995
|
64 |
static jmethodID midCreateGLContext;
|
slouken@4995
|
65 |
static jmethodID midFlipBuffers;
|
slouken@4995
|
66 |
static jmethodID midAudioInit;
|
slouken@4995
|
67 |
static jmethodID midAudioWriteShortBuffer;
|
slouken@4995
|
68 |
static jmethodID midAudioWriteByteBuffer;
|
slouken@4996
|
69 |
static jmethodID midAudioQuit;
|
slouken@4964
|
70 |
|
slouken@4995
|
71 |
// Accelerometer data storage
|
slouken@5000
|
72 |
static float fLastAccelerometer[3];
|
slouken@4964
|
73 |
|
slouken@4964
|
74 |
|
slouken@4964
|
75 |
/*******************************************************************************
|
slouken@4964
|
76 |
Functions called by JNI
|
slouken@4964
|
77 |
*******************************************************************************/
|
slouken@4964
|
78 |
|
slouken@4964
|
79 |
// Library init
|
slouken@4964
|
80 |
extern "C" jint JNI_OnLoad(JavaVM* vm, void* reserved)
|
slouken@4964
|
81 |
{
|
icculus@5996
|
82 |
JNIEnv *env;
|
icculus@5996
|
83 |
mJavaVM = vm;
|
icculus@5996
|
84 |
LOGI("JNI_OnLoad called");
|
icculus@5996
|
85 |
if (mJavaVM->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
|
icculus@5996
|
86 |
LOGE("Failed to get the environment using GetEnv()");
|
icculus@5996
|
87 |
return -1;
|
icculus@5996
|
88 |
}
|
icculus@5996
|
89 |
|
slouken@4964
|
90 |
return JNI_VERSION_1_4;
|
slouken@4964
|
91 |
}
|
slouken@4964
|
92 |
|
slouken@4964
|
93 |
// Called before SDL_main() to initialize JNI bindings
|
slouken@4998
|
94 |
extern "C" void SDL_Android_Init(JNIEnv* env, jclass cls)
|
slouken@4964
|
95 |
{
|
slouken@4964
|
96 |
__android_log_print(ANDROID_LOG_INFO, "SDL", "SDL_Android_Init()");
|
slouken@4964
|
97 |
|
slouken@4998
|
98 |
mEnv = env;
|
slouken@4998
|
99 |
mActivityClass = cls;
|
slouken@4998
|
100 |
|
slouken@4998
|
101 |
midCreateGLContext = mEnv->GetStaticMethodID(mActivityClass,
|
slouken@5222
|
102 |
"createGLContext","(II)Z");
|
slouken@4998
|
103 |
midFlipBuffers = mEnv->GetStaticMethodID(mActivityClass,
|
slouken@4998
|
104 |
"flipBuffers","()V");
|
slouken@4998
|
105 |
midAudioInit = mEnv->GetStaticMethodID(mActivityClass,
|
slouken@4998
|
106 |
"audioInit", "(IZZI)Ljava/lang/Object;");
|
slouken@4998
|
107 |
midAudioWriteShortBuffer = mEnv->GetStaticMethodID(mActivityClass,
|
slouken@4998
|
108 |
"audioWriteShortBuffer", "([S)V");
|
slouken@4998
|
109 |
midAudioWriteByteBuffer = mEnv->GetStaticMethodID(mActivityClass,
|
slouken@4998
|
110 |
"audioWriteByteBuffer", "([B)V");
|
slouken@4998
|
111 |
midAudioQuit = mEnv->GetStaticMethodID(mActivityClass,
|
slouken@4998
|
112 |
"audioQuit", "()V");
|
slouken@4964
|
113 |
|
slouken@4995
|
114 |
if(!midCreateGLContext || !midFlipBuffers || !midAudioInit ||
|
slouken@4996
|
115 |
!midAudioWriteShortBuffer || !midAudioWriteByteBuffer || !midAudioQuit) {
|
slouken@4996
|
116 |
__android_log_print(ANDROID_LOG_WARN, "SDL", "SDL: Couldn't locate Java callbacks, check that they're named and typed correctly");
|
slouken@4964
|
117 |
}
|
icculus@5996
|
118 |
__android_log_print(ANDROID_LOG_INFO, "SDL", "SDL_Android_Init() finished!");
|
slouken@4964
|
119 |
}
|
slouken@4964
|
120 |
|
slouken@4995
|
121 |
// Resize
|
slouken@4995
|
122 |
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeResize(
|
slouken@4998
|
123 |
JNIEnv* env, jclass jcls,
|
slouken@4995
|
124 |
jint width, jint height, jint format)
|
slouken@4964
|
125 |
{
|
slouken@4995
|
126 |
Android_SetScreenResolution(width, height, format);
|
slouken@4995
|
127 |
}
|
slouken@4995
|
128 |
|
slouken@4995
|
129 |
// Keydown
|
slouken@4995
|
130 |
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeKeyDown(
|
slouken@4998
|
131 |
JNIEnv* env, jclass jcls, jint keycode)
|
slouken@4995
|
132 |
{
|
slouken@4980
|
133 |
Android_OnKeyDown(keycode);
|
slouken@4964
|
134 |
}
|
slouken@4964
|
135 |
|
slouken@4964
|
136 |
// Keyup
|
slouken@4995
|
137 |
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeKeyUp(
|
slouken@4998
|
138 |
JNIEnv* env, jclass jcls, jint keycode)
|
slouken@4964
|
139 |
{
|
slouken@4980
|
140 |
Android_OnKeyUp(keycode);
|
slouken@4964
|
141 |
}
|
slouken@4964
|
142 |
|
slouken@4964
|
143 |
// Touch
|
slouken@4995
|
144 |
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeTouch(
|
slouken@4998
|
145 |
JNIEnv* env, jclass jcls,
|
icculus@5982
|
146 |
jint touch_device_id_in, jint pointer_finger_id_in,
|
slouken@4995
|
147 |
jint action, jfloat x, jfloat y, jfloat p)
|
slouken@4964
|
148 |
{
|
icculus@5982
|
149 |
Android_OnTouch(touch_device_id_in, pointer_finger_id_in, action, x, y, p);
|
slouken@4964
|
150 |
}
|
slouken@4964
|
151 |
|
slouken@4995
|
152 |
// Accelerometer
|
slouken@4964
|
153 |
extern "C" void Java_org_libsdl_app_SDLActivity_onNativeAccel(
|
slouken@4998
|
154 |
JNIEnv* env, jclass jcls,
|
slouken@4995
|
155 |
jfloat x, jfloat y, jfloat z)
|
slouken@4964
|
156 |
{
|
slouken@4964
|
157 |
fLastAccelerometer[0] = x;
|
slouken@4964
|
158 |
fLastAccelerometer[1] = y;
|
slouken@4964
|
159 |
fLastAccelerometer[2] = z;
|
slouken@4964
|
160 |
}
|
slouken@4964
|
161 |
|
slouken@4995
|
162 |
// Quit
|
slouken@4995
|
163 |
extern "C" void Java_org_libsdl_app_SDLActivity_nativeQuit(
|
slouken@4998
|
164 |
JNIEnv* env, jclass cls)
|
slouken@4995
|
165 |
{
|
slouken@4995
|
166 |
// Inject a SDL_QUIT event
|
slouken@4995
|
167 |
SDL_SendQuit();
|
slouken@4995
|
168 |
}
|
slouken@4995
|
169 |
|
slouken@4995
|
170 |
extern "C" void Java_org_libsdl_app_SDLActivity_nativeRunAudioThread(
|
slouken@4998
|
171 |
JNIEnv* env, jclass cls)
|
slouken@4995
|
172 |
{
|
slouken@4998
|
173 |
/* This is the audio thread, with a different environment */
|
slouken@4998
|
174 |
mAudioEnv = env;
|
slouken@4998
|
175 |
|
slouken@4996
|
176 |
Android_RunAudioThread();
|
slouken@4995
|
177 |
}
|
slouken@4964
|
178 |
|
slouken@4964
|
179 |
|
slouken@4964
|
180 |
/*******************************************************************************
|
slouken@4964
|
181 |
Functions called by SDL into Java
|
slouken@4964
|
182 |
*******************************************************************************/
|
slouken@5222
|
183 |
extern "C" SDL_bool Android_JNI_CreateContext(int majorVersion, int minorVersion)
|
slouken@4964
|
184 |
{
|
slouken@5222
|
185 |
if (mEnv->CallStaticBooleanMethod(mActivityClass, midCreateGLContext, majorVersion, minorVersion)) {
|
slouken@5222
|
186 |
return SDL_TRUE;
|
slouken@5222
|
187 |
} else {
|
slouken@5222
|
188 |
return SDL_FALSE;
|
slouken@5222
|
189 |
}
|
slouken@4964
|
190 |
}
|
slouken@4964
|
191 |
|
slouken@4989
|
192 |
extern "C" void Android_JNI_SwapWindow()
|
slouken@4964
|
193 |
{
|
slouken@4998
|
194 |
mEnv->CallStaticVoidMethod(mActivityClass, midFlipBuffers);
|
slouken@4998
|
195 |
}
|
slouken@4998
|
196 |
|
slouken@4998
|
197 |
extern "C" void Android_JNI_SetActivityTitle(const char *title)
|
slouken@4998
|
198 |
{
|
slouken@4998
|
199 |
jmethodID mid;
|
slouken@4998
|
200 |
|
slouken@4998
|
201 |
mid = mEnv->GetStaticMethodID(mActivityClass,"setActivityTitle","(Ljava/lang/String;)V");
|
slouken@4998
|
202 |
if (mid) {
|
slouken@4998
|
203 |
mEnv->CallStaticVoidMethod(mActivityClass, mid, mEnv->NewStringUTF(title));
|
slouken@4998
|
204 |
}
|
slouken@4964
|
205 |
}
|
slouken@4964
|
206 |
|
slouken@5000
|
207 |
extern "C" void Android_JNI_GetAccelerometerValues(float values[3])
|
slouken@5000
|
208 |
{
|
slouken@5000
|
209 |
int i;
|
slouken@5000
|
210 |
for (i = 0; i < 3; ++i) {
|
slouken@5000
|
211 |
values[i] = fLastAccelerometer[i];
|
slouken@5000
|
212 |
}
|
slouken@5000
|
213 |
}
|
slouken@5000
|
214 |
|
slouken@4995
|
215 |
//
|
slouken@4995
|
216 |
// Audio support
|
slouken@4995
|
217 |
//
|
slouken@4996
|
218 |
static jboolean audioBuffer16Bit = JNI_FALSE;
|
slouken@4996
|
219 |
static jboolean audioBufferStereo = JNI_FALSE;
|
slouken@4996
|
220 |
static jobject audioBuffer = NULL;
|
slouken@4996
|
221 |
static void* audioBufferPinned = NULL;
|
slouken@4995
|
222 |
|
slouken@4995
|
223 |
extern "C" int Android_JNI_OpenAudioDevice(int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames)
|
slouken@4995
|
224 |
{
|
slouken@4996
|
225 |
int audioBufferFrames;
|
slouken@4996
|
226 |
|
icculus@5996
|
227 |
int status;
|
icculus@5996
|
228 |
JNIEnv *env;
|
icculus@5996
|
229 |
static bool isAttached = false;
|
icculus@5996
|
230 |
status = mJavaVM->GetEnv((void **) &env, JNI_VERSION_1_4);
|
icculus@5996
|
231 |
if(status < 0) {
|
icculus@5996
|
232 |
LOGE("callback_handler: failed to get JNI environment, assuming native thread");
|
icculus@5996
|
233 |
status = mJavaVM->AttachCurrentThread(&env, NULL);
|
icculus@5996
|
234 |
if(status < 0) {
|
icculus@5996
|
235 |
LOGE("callback_handler: failed to attach current thread");
|
icculus@5996
|
236 |
return 0;
|
icculus@5996
|
237 |
}
|
icculus@5996
|
238 |
isAttached = true;
|
icculus@5996
|
239 |
}
|
icculus@5996
|
240 |
|
icculus@5996
|
241 |
|
slouken@4996
|
242 |
__android_log_print(ANDROID_LOG_VERBOSE, "SDL", "SDL audio: opening device");
|
slouken@4996
|
243 |
audioBuffer16Bit = is16Bit;
|
slouken@4996
|
244 |
audioBufferStereo = channelCount > 1;
|
slouken@4995
|
245 |
|
icculus@5996
|
246 |
audioBuffer = env->CallStaticObjectMethod(mActivityClass, midAudioInit, sampleRate, audioBuffer16Bit, audioBufferStereo, desiredBufferFrames);
|
slouken@4996
|
247 |
|
slouken@4996
|
248 |
if (audioBuffer == NULL) {
|
slouken@4996
|
249 |
__android_log_print(ANDROID_LOG_WARN, "SDL", "SDL audio: didn't get back a good audio buffer!");
|
slouken@4996
|
250 |
return 0;
|
slouken@4996
|
251 |
}
|
icculus@5996
|
252 |
audioBuffer = env->NewGlobalRef(audioBuffer);
|
slouken@4995
|
253 |
|
slouken@4996
|
254 |
jboolean isCopy = JNI_FALSE;
|
slouken@4996
|
255 |
if (audioBuffer16Bit) {
|
icculus@5996
|
256 |
audioBufferPinned = env->GetShortArrayElements((jshortArray)audioBuffer, &isCopy);
|
icculus@5996
|
257 |
audioBufferFrames = env->GetArrayLength((jshortArray)audioBuffer);
|
slouken@4996
|
258 |
} else {
|
icculus@5996
|
259 |
audioBufferPinned = env->GetByteArrayElements((jbyteArray)audioBuffer, &isCopy);
|
icculus@5996
|
260 |
audioBufferFrames = env->GetArrayLength((jbyteArray)audioBuffer);
|
slouken@4996
|
261 |
}
|
slouken@4996
|
262 |
if (audioBufferStereo) {
|
slouken@4996
|
263 |
audioBufferFrames /= 2;
|
slouken@4996
|
264 |
}
|
icculus@5996
|
265 |
|
icculus@5996
|
266 |
if (isAttached) {
|
icculus@5996
|
267 |
mJavaVM->DetachCurrentThread();
|
icculus@5996
|
268 |
}
|
slouken@4995
|
269 |
|
slouken@4996
|
270 |
return audioBufferFrames;
|
slouken@4995
|
271 |
}
|
slouken@4995
|
272 |
|
slouken@4996
|
273 |
extern "C" void * Android_JNI_GetAudioBuffer()
|
slouken@4964
|
274 |
{
|
slouken@4996
|
275 |
return audioBufferPinned;
|
slouken@4995
|
276 |
}
|
slouken@4964
|
277 |
|
slouken@4996
|
278 |
extern "C" void Android_JNI_WriteAudioBuffer()
|
slouken@4995
|
279 |
{
|
slouken@4996
|
280 |
if (audioBuffer16Bit) {
|
slouken@4996
|
281 |
mAudioEnv->ReleaseShortArrayElements((jshortArray)audioBuffer, (jshort *)audioBufferPinned, JNI_COMMIT);
|
slouken@4998
|
282 |
mAudioEnv->CallStaticVoidMethod(mActivityClass, midAudioWriteShortBuffer, (jshortArray)audioBuffer);
|
slouken@4996
|
283 |
} else {
|
slouken@4996
|
284 |
mAudioEnv->ReleaseByteArrayElements((jbyteArray)audioBuffer, (jbyte *)audioBufferPinned, JNI_COMMIT);
|
slouken@4998
|
285 |
mAudioEnv->CallStaticVoidMethod(mActivityClass, midAudioWriteByteBuffer, (jbyteArray)audioBuffer);
|
slouken@4996
|
286 |
}
|
slouken@4964
|
287 |
|
slouken@4996
|
288 |
/* JNI_COMMIT means the changes are committed to the VM but the buffer remains pinned */
|
slouken@4995
|
289 |
}
|
slouken@4995
|
290 |
|
slouken@4995
|
291 |
extern "C" void Android_JNI_CloseAudioDevice()
|
slouken@4995
|
292 |
{
|
icculus@5996
|
293 |
int status;
|
icculus@5996
|
294 |
JNIEnv *env;
|
icculus@5996
|
295 |
static bool isAttached = false;
|
icculus@5996
|
296 |
status = mJavaVM->GetEnv((void **) &env, JNI_VERSION_1_4);
|
icculus@5996
|
297 |
if(status < 0) {
|
icculus@5996
|
298 |
LOGE("callback_handler: failed to get JNI environment, assuming native thread");
|
icculus@5996
|
299 |
status = mJavaVM->AttachCurrentThread(&env, NULL);
|
icculus@5996
|
300 |
if(status < 0) {
|
icculus@5996
|
301 |
LOGE("callback_handler: failed to attach current thread");
|
icculus@5996
|
302 |
return;
|
icculus@5996
|
303 |
}
|
icculus@5996
|
304 |
isAttached = true;
|
icculus@5996
|
305 |
}
|
icculus@5996
|
306 |
|
icculus@5996
|
307 |
env->CallStaticVoidMethod(mActivityClass, midAudioQuit);
|
slouken@4964
|
308 |
|
slouken@4997
|
309 |
if (audioBuffer) {
|
icculus@5996
|
310 |
env->DeleteGlobalRef(audioBuffer);
|
slouken@4997
|
311 |
audioBuffer = NULL;
|
slouken@4997
|
312 |
audioBufferPinned = NULL;
|
slouken@4997
|
313 |
}
|
icculus@5996
|
314 |
|
icculus@5996
|
315 |
if (isAttached) {
|
icculus@5996
|
316 |
mJavaVM->DetachCurrentThread();
|
icculus@5996
|
317 |
}
|
slouken@4964
|
318 |
}
|
slouken@4981
|
319 |
|
tim@5650
|
320 |
// Test for an exception and call SDL_SetError with its detail if one occurs
|
tim@5650
|
321 |
static bool Android_JNI_ExceptionOccurred()
|
tim@5650
|
322 |
{
|
tim@5650
|
323 |
jthrowable exception = mEnv->ExceptionOccurred();
|
tim@5650
|
324 |
if (exception != NULL) {
|
tim@5650
|
325 |
jmethodID mid;
|
tim@5650
|
326 |
|
tim@5650
|
327 |
// Until this happens most JNI operations have undefined behaviour
|
tim@5650
|
328 |
mEnv->ExceptionClear();
|
tim@5650
|
329 |
|
tim@5650
|
330 |
jclass exceptionClass = mEnv->GetObjectClass(exception);
|
tim@5650
|
331 |
jclass classClass = mEnv->FindClass("java/lang/Class");
|
tim@5650
|
332 |
|
tim@5650
|
333 |
mid = mEnv->GetMethodID(classClass, "getName", "()Ljava/lang/String;");
|
tim@5650
|
334 |
jstring exceptionName = (jstring)mEnv->CallObjectMethod(exceptionClass, mid);
|
tim@5650
|
335 |
const char* exceptionNameUTF8 = mEnv->GetStringUTFChars(exceptionName, 0);
|
tim@5650
|
336 |
|
tim@5650
|
337 |
mid = mEnv->GetMethodID(exceptionClass, "getMessage", "()Ljava/lang/String;");
|
icculus@5860
|
338 |
jstring exceptionMessage = (jstring)mEnv->CallObjectMethod(exception, mid);
|
tim@5650
|
339 |
|
tim@5650
|
340 |
if (exceptionMessage != NULL) {
|
tim@5650
|
341 |
const char* exceptionMessageUTF8 = mEnv->GetStringUTFChars(
|
tim@5650
|
342 |
exceptionMessage, 0);
|
tim@5650
|
343 |
SDL_SetError("%s: %s", exceptionNameUTF8, exceptionMessageUTF8);
|
tim@5650
|
344 |
mEnv->ReleaseStringUTFChars(exceptionMessage, exceptionMessageUTF8);
|
tim@5650
|
345 |
mEnv->DeleteLocalRef(exceptionMessage);
|
tim@5650
|
346 |
} else {
|
tim@5650
|
347 |
SDL_SetError("%s", exceptionNameUTF8);
|
tim@5650
|
348 |
}
|
tim@5650
|
349 |
|
tim@5650
|
350 |
mEnv->ReleaseStringUTFChars(exceptionName, exceptionNameUTF8);
|
tim@5650
|
351 |
mEnv->DeleteLocalRef(exceptionName);
|
tim@5650
|
352 |
mEnv->DeleteLocalRef(classClass);
|
tim@5650
|
353 |
mEnv->DeleteLocalRef(exceptionClass);
|
tim@5650
|
354 |
mEnv->DeleteLocalRef(exception);
|
tim@5650
|
355 |
|
tim@5650
|
356 |
return true;
|
tim@5650
|
357 |
}
|
tim@5650
|
358 |
|
tim@5650
|
359 |
return false;
|
tim@5650
|
360 |
}
|
tim@5650
|
361 |
|
icculus@5582
|
362 |
static int Android_JNI_FileOpen(SDL_RWops* ctx)
|
icculus@5582
|
363 |
{
|
tim@5650
|
364 |
int result = 0;
|
tim@5650
|
365 |
|
tim@5650
|
366 |
jmethodID mid;
|
tim@5650
|
367 |
jobject context;
|
tim@5650
|
368 |
jobject assetManager;
|
tim@5650
|
369 |
jobject inputStream;
|
tim@5650
|
370 |
jclass channels;
|
tim@5650
|
371 |
jobject readableByteChannel;
|
tim@5650
|
372 |
jstring fileNameJString;
|
tim@5650
|
373 |
|
tim@5650
|
374 |
bool allocatedLocalFrame = false;
|
tim@5650
|
375 |
|
tim@5650
|
376 |
if (mEnv->PushLocalFrame(16) < 0) {
|
tim@5650
|
377 |
SDL_SetError("Failed to allocate enough JVM local references");
|
tim@5650
|
378 |
goto failure;
|
tim@5650
|
379 |
} else {
|
tim@5650
|
380 |
allocatedLocalFrame = true;
|
tim@5650
|
381 |
}
|
tim@5650
|
382 |
|
tim@5650
|
383 |
fileNameJString = (jstring)ctx->hidden.androidio.fileName;
|
icculus@5582
|
384 |
|
icculus@5582
|
385 |
// context = SDLActivity.getContext();
|
tim@5650
|
386 |
mid = mEnv->GetStaticMethodID(mActivityClass,
|
icculus@5582
|
387 |
"getContext","()Landroid/content/Context;");
|
tim@5650
|
388 |
context = mEnv->CallStaticObjectMethod(mActivityClass, mid);
|
icculus@5582
|
389 |
|
icculus@5582
|
390 |
// assetManager = context.getAssets();
|
icculus@5582
|
391 |
mid = mEnv->GetMethodID(mEnv->GetObjectClass(context),
|
tim@5650
|
392 |
"getAssets", "()Landroid/content/res/AssetManager;");
|
tim@5650
|
393 |
assetManager = mEnv->CallObjectMethod(context, mid);
|
icculus@5582
|
394 |
|
icculus@5582
|
395 |
// inputStream = assetManager.open(<filename>);
|
icculus@5582
|
396 |
mid = mEnv->GetMethodID(mEnv->GetObjectClass(assetManager),
|
icculus@5582
|
397 |
"open", "(Ljava/lang/String;)Ljava/io/InputStream;");
|
tim@5650
|
398 |
inputStream = mEnv->CallObjectMethod(assetManager, mid, fileNameJString);
|
tim@5650
|
399 |
if (Android_JNI_ExceptionOccurred()) {
|
tim@5650
|
400 |
goto failure;
|
icculus@5582
|
401 |
}
|
icculus@5582
|
402 |
|
tim@5650
|
403 |
ctx->hidden.androidio.inputStream = inputStream;
|
tim@5650
|
404 |
ctx->hidden.androidio.inputStreamRef = mEnv->NewGlobalRef(inputStream);
|
tim@5650
|
405 |
|
icculus@5582
|
406 |
// Despite all the visible documentation on [Asset]InputStream claiming
|
icculus@5582
|
407 |
// that the .available() method is not guaranteed to return the entire file
|
icculus@5582
|
408 |
// size, comments in <sdk>/samples/<ver>/ApiDemos/src/com/example/ ...
|
icculus@5582
|
409 |
// android/apis/content/ReadAsset.java imply that Android's
|
icculus@5582
|
410 |
// AssetInputStream.available() /will/ always return the total file size
|
icculus@5582
|
411 |
|
icculus@5582
|
412 |
// size = inputStream.available();
|
icculus@5582
|
413 |
mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream),
|
icculus@5582
|
414 |
"available", "()I");
|
icculus@5582
|
415 |
ctx->hidden.androidio.size = mEnv->CallIntMethod(inputStream, mid);
|
tim@5650
|
416 |
if (Android_JNI_ExceptionOccurred()) {
|
tim@5650
|
417 |
goto failure;
|
icculus@5582
|
418 |
}
|
icculus@5582
|
419 |
|
icculus@5582
|
420 |
// readableByteChannel = Channels.newChannel(inputStream);
|
tim@5650
|
421 |
channels = mEnv->FindClass("java/nio/channels/Channels");
|
icculus@5582
|
422 |
mid = mEnv->GetStaticMethodID(channels,
|
icculus@5582
|
423 |
"newChannel",
|
icculus@5582
|
424 |
"(Ljava/io/InputStream;)Ljava/nio/channels/ReadableByteChannel;");
|
tim@5650
|
425 |
readableByteChannel = mEnv->CallStaticObjectMethod(
|
icculus@5582
|
426 |
channels, mid, inputStream);
|
tim@5650
|
427 |
if (Android_JNI_ExceptionOccurred()) {
|
tim@5650
|
428 |
goto failure;
|
icculus@5582
|
429 |
}
|
icculus@5582
|
430 |
|
tim@5650
|
431 |
ctx->hidden.androidio.readableByteChannel = readableByteChannel;
|
tim@5650
|
432 |
ctx->hidden.androidio.readableByteChannelRef =
|
tim@5650
|
433 |
mEnv->NewGlobalRef(readableByteChannel);
|
tim@5650
|
434 |
|
icculus@5582
|
435 |
// Store .read id for reading purposes
|
icculus@5582
|
436 |
mid = mEnv->GetMethodID(mEnv->GetObjectClass(readableByteChannel),
|
icculus@5582
|
437 |
"read", "(Ljava/nio/ByteBuffer;)I");
|
icculus@5582
|
438 |
ctx->hidden.androidio.readMethod = mid;
|
icculus@5582
|
439 |
|
icculus@5582
|
440 |
ctx->hidden.androidio.position = 0;
|
icculus@5582
|
441 |
|
tim@5650
|
442 |
if (false) {
|
tim@5650
|
443 |
failure:
|
tim@5650
|
444 |
result = -1;
|
tim@5650
|
445 |
|
tim@5650
|
446 |
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef);
|
tim@5650
|
447 |
|
tim@5650
|
448 |
if(ctx->hidden.androidio.inputStreamRef != NULL) {
|
tim@5650
|
449 |
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef);
|
tim@5650
|
450 |
}
|
tim@5650
|
451 |
}
|
tim@5650
|
452 |
|
tim@5650
|
453 |
if (allocatedLocalFrame) {
|
tim@5650
|
454 |
mEnv->PopLocalFrame(NULL);
|
tim@5650
|
455 |
}
|
tim@5650
|
456 |
|
tim@5650
|
457 |
return result;
|
icculus@5582
|
458 |
}
|
icculus@5582
|
459 |
|
icculus@5582
|
460 |
extern "C" int Android_JNI_FileOpen(SDL_RWops* ctx,
|
icculus@5582
|
461 |
const char* fileName, const char*)
|
icculus@5582
|
462 |
{
|
icculus@5582
|
463 |
if (!ctx) {
|
icculus@5582
|
464 |
return -1;
|
icculus@5582
|
465 |
}
|
icculus@5582
|
466 |
|
icculus@5582
|
467 |
jstring fileNameJString = mEnv->NewStringUTF(fileName);
|
icculus@5582
|
468 |
ctx->hidden.androidio.fileName = fileNameJString;
|
icculus@5582
|
469 |
ctx->hidden.androidio.fileNameRef = mEnv->NewGlobalRef(fileNameJString);
|
tim@5650
|
470 |
ctx->hidden.androidio.inputStreamRef = NULL;
|
tim@5650
|
471 |
mEnv->DeleteLocalRef(fileNameJString);
|
icculus@5582
|
472 |
|
icculus@5582
|
473 |
return Android_JNI_FileOpen(ctx);
|
icculus@5582
|
474 |
}
|
icculus@5582
|
475 |
|
icculus@5582
|
476 |
extern "C" size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer,
|
icculus@5582
|
477 |
size_t size, size_t maxnum)
|
icculus@5582
|
478 |
{
|
icculus@5582
|
479 |
int bytesRemaining = size * maxnum;
|
icculus@5582
|
480 |
int bytesRead = 0;
|
icculus@5582
|
481 |
|
icculus@5582
|
482 |
jobject readableByteChannel = (jobject)ctx->hidden.androidio.readableByteChannel;
|
icculus@5582
|
483 |
jmethodID readMethod = (jmethodID)ctx->hidden.androidio.readMethod;
|
icculus@5582
|
484 |
jobject byteBuffer = mEnv->NewDirectByteBuffer(buffer, bytesRemaining);
|
icculus@5582
|
485 |
|
icculus@5582
|
486 |
while (bytesRemaining > 0) {
|
icculus@5582
|
487 |
// result = readableByteChannel.read(...);
|
icculus@5582
|
488 |
int result = mEnv->CallIntMethod(readableByteChannel, readMethod, byteBuffer);
|
icculus@5582
|
489 |
|
tim@5650
|
490 |
if (Android_JNI_ExceptionOccurred()) {
|
tim@5650
|
491 |
mEnv->DeleteLocalRef(byteBuffer);
|
icculus@5582
|
492 |
return 0;
|
icculus@5582
|
493 |
}
|
icculus@5582
|
494 |
|
icculus@5582
|
495 |
if (result < 0) {
|
icculus@5582
|
496 |
break;
|
icculus@5582
|
497 |
}
|
icculus@5582
|
498 |
|
icculus@5582
|
499 |
bytesRemaining -= result;
|
icculus@5582
|
500 |
bytesRead += result;
|
icculus@5582
|
501 |
ctx->hidden.androidio.position += result;
|
icculus@5582
|
502 |
}
|
icculus@5582
|
503 |
|
tim@5650
|
504 |
mEnv->DeleteLocalRef(byteBuffer);
|
tim@5650
|
505 |
|
icculus@5582
|
506 |
return bytesRead / size;
|
icculus@5582
|
507 |
}
|
icculus@5582
|
508 |
|
icculus@5582
|
509 |
extern "C" size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer,
|
icculus@5582
|
510 |
size_t size, size_t num)
|
icculus@5582
|
511 |
{
|
icculus@5582
|
512 |
SDL_SetError("Cannot write to Android package filesystem");
|
icculus@5582
|
513 |
return 0;
|
icculus@5582
|
514 |
}
|
icculus@5582
|
515 |
|
icculus@5582
|
516 |
static int Android_JNI_FileClose(SDL_RWops* ctx, bool release)
|
icculus@5582
|
517 |
{
|
icculus@5582
|
518 |
int result = 0;
|
icculus@5582
|
519 |
|
icculus@5582
|
520 |
if (ctx) {
|
icculus@5582
|
521 |
if (release) {
|
icculus@5582
|
522 |
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef);
|
icculus@5582
|
523 |
}
|
icculus@5582
|
524 |
|
icculus@5582
|
525 |
jobject inputStream = (jobject)ctx->hidden.androidio.inputStream;
|
icculus@5582
|
526 |
|
icculus@5582
|
527 |
// inputStream.close();
|
icculus@5582
|
528 |
jmethodID mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream),
|
icculus@5582
|
529 |
"close", "()V");
|
icculus@5582
|
530 |
mEnv->CallVoidMethod(inputStream, mid);
|
icculus@5582
|
531 |
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef);
|
icculus@5582
|
532 |
mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.readableByteChannelRef);
|
tim@5650
|
533 |
if (Android_JNI_ExceptionOccurred()) {
|
icculus@5582
|
534 |
result = -1;
|
icculus@5582
|
535 |
}
|
icculus@5582
|
536 |
|
icculus@5582
|
537 |
if (release) {
|
icculus@5582
|
538 |
SDL_FreeRW(ctx);
|
icculus@5582
|
539 |
}
|
icculus@5582
|
540 |
}
|
icculus@5582
|
541 |
|
icculus@5582
|
542 |
return result;
|
icculus@5582
|
543 |
}
|
icculus@5582
|
544 |
|
icculus@5582
|
545 |
|
icculus@5582
|
546 |
extern "C" long Android_JNI_FileSeek(SDL_RWops* ctx, long offset, int whence)
|
icculus@5582
|
547 |
{
|
icculus@5582
|
548 |
long newPosition;
|
icculus@5582
|
549 |
|
icculus@5582
|
550 |
switch (whence) {
|
icculus@5582
|
551 |
case RW_SEEK_SET:
|
icculus@5582
|
552 |
newPosition = offset;
|
icculus@5582
|
553 |
break;
|
icculus@5582
|
554 |
case RW_SEEK_CUR:
|
icculus@5582
|
555 |
newPosition = ctx->hidden.androidio.position + offset;
|
icculus@5582
|
556 |
break;
|
icculus@5582
|
557 |
case RW_SEEK_END:
|
icculus@5582
|
558 |
newPosition = ctx->hidden.androidio.size + offset;
|
icculus@5582
|
559 |
break;
|
icculus@5582
|
560 |
default:
|
icculus@5582
|
561 |
SDL_SetError("Unknown value for 'whence'");
|
icculus@5582
|
562 |
return -1;
|
icculus@5582
|
563 |
}
|
icculus@5582
|
564 |
if (newPosition < 0) {
|
icculus@5582
|
565 |
newPosition = 0;
|
icculus@5582
|
566 |
}
|
icculus@5582
|
567 |
if (newPosition > ctx->hidden.androidio.size) {
|
icculus@5582
|
568 |
newPosition = ctx->hidden.androidio.size;
|
icculus@5582
|
569 |
}
|
icculus@5582
|
570 |
|
icculus@5582
|
571 |
long movement = newPosition - ctx->hidden.androidio.position;
|
icculus@5582
|
572 |
jobject inputStream = (jobject)ctx->hidden.androidio.inputStream;
|
icculus@5582
|
573 |
|
icculus@5582
|
574 |
if (movement > 0) {
|
tim@5993
|
575 |
unsigned char buffer[1024];
|
tim@5993
|
576 |
|
icculus@5582
|
577 |
// The easy case where we're seeking forwards
|
icculus@5582
|
578 |
while (movement > 0) {
|
icculus@5994
|
579 |
long amount = (long) sizeof (buffer);
|
icculus@5994
|
580 |
if (amount > movement) {
|
icculus@5994
|
581 |
amount = movement;
|
icculus@5994
|
582 |
}
|
icculus@5994
|
583 |
size_t result = Android_JNI_FileRead(ctx, buffer, 1, amount);
|
tim@5993
|
584 |
|
tim@5993
|
585 |
if (result <= 0) {
|
tim@5993
|
586 |
// Failed to read/skip the required amount, so fail
|
icculus@5582
|
587 |
return -1;
|
icculus@5582
|
588 |
}
|
tim@5993
|
589 |
|
tim@5993
|
590 |
movement -= result;
|
icculus@5582
|
591 |
}
|
icculus@5582
|
592 |
} else if (movement < 0) {
|
icculus@5582
|
593 |
// We can't seek backwards so we have to reopen the file and seek
|
icculus@5582
|
594 |
// forwards which obviously isn't very efficient
|
icculus@5582
|
595 |
Android_JNI_FileClose(ctx, false);
|
icculus@5582
|
596 |
Android_JNI_FileOpen(ctx);
|
icculus@5582
|
597 |
Android_JNI_FileSeek(ctx, newPosition, RW_SEEK_SET);
|
icculus@5582
|
598 |
}
|
icculus@5582
|
599 |
|
icculus@5582
|
600 |
ctx->hidden.androidio.position = newPosition;
|
icculus@5582
|
601 |
|
icculus@5582
|
602 |
return ctx->hidden.androidio.position;
|
icculus@5582
|
603 |
}
|
icculus@5582
|
604 |
|
icculus@5582
|
605 |
extern "C" int Android_JNI_FileClose(SDL_RWops* ctx)
|
icculus@5582
|
606 |
{
|
icculus@5582
|
607 |
return Android_JNI_FileClose(ctx, true);
|
icculus@5582
|
608 |
}
|
icculus@5582
|
609 |
|
slouken@6044
|
610 |
#endif /* __ANDROID__ */
|
slouken@6044
|
611 |
|
slouken@4981
|
612 |
/* vi: set ts=4 sw=4 expandtab: */
|