SDL  2.0
SDL_android.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "../../SDL_internal.h"
22 
23 /* Set up for C function definitions, even when using C++ */
24 #ifdef __cplusplus
25 /* *INDENT-OFF* */
26 extern "C" {
27 /* *INDENT-ON* */
28 #endif
29 
30 #include <EGL/eglplatform.h>
31 #include <android/native_window_jni.h>
32 
33 #include "SDL_rect.h"
34 
35 /* Interface from the SDL library into the Android Java activity */
36 extern void Android_JNI_SetActivityTitle(const char *title);
38 extern void Android_JNI_ShowTextInput(SDL_Rect *inputRect);
39 extern void Android_JNI_HideTextInput(void);
40 extern ANativeWindow* Android_JNI_GetNativeWindow(void);
41 
42 /* Audio support */
43 extern int Android_JNI_OpenAudioDevice(int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames);
44 extern void* Android_JNI_GetAudioBuffer(void);
45 extern void Android_JNI_WriteAudioBuffer(void);
46 extern void Android_JNI_CloseAudioDevice(void);
47 
48 #include "SDL_rwops.h"
49 
50 int Android_JNI_FileOpen(SDL_RWops* ctx, const char* fileName, const char* mode);
53 size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, size_t size, size_t maxnum);
54 size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer, size_t size, size_t num);
56 
57 /* Clipboard support */
58 int Android_JNI_SetClipboardText(const char* text);
61 
62 /* Power support */
63 int Android_JNI_GetPowerInfo(int* plugged, int* charged, int* battery, int* seconds, int* percent);
64 
65 /* Joystick support */
67 
68 /* Video */
70 
71 /* Touch support */
73 
74 /* Threads */
75 #include <jni.h>
76 JNIEnv *Android_JNI_GetEnv(void);
77 int Android_JNI_SetupThread(void);
78 jclass Android_JNI_GetActivityClass(void);
79 
80 /* Generic messages */
81 int Android_JNI_SendMessage(int command, int param);
82 
83 /* Ends C function definitions when using C++ */
84 #ifdef __cplusplus
85 /* *INDENT-OFF* */
86 }
87 /* *INDENT-ON* */
88 #endif
89 
90 /* vi: set ts=4 sw=4 expandtab: */
GLuint * ids
int Android_JNI_FileClose(SDL_RWops *ctx)
GLuint num
void Android_JNI_CloseAudioDevice(void)
int Android_JNI_SendMessage(int command, int param)
void Android_JNI_ShowTextInput(SDL_Rect *inputRect)
void Android_JNI_WriteAudioBuffer(void)
SDL_bool Android_JNI_GetAccelerometerValues(float values[3])
void Android_JNI_SetActivityTitle(const char *title)
char * Android_JNI_GetClipboardText(void)
GLsizeiptr size
int Android_JNI_FileOpen(SDL_RWops *ctx, const char *fileName, const char *mode)
GLfloat param
SDL_bool
Definition: SDL_stdinc.h:126
int Android_JNI_SetupThread(void)
SDL_bool Android_JNI_HasClipboardText(void)
int Android_JNI_GetPowerInfo(int *plugged, int *charged, int *battery, int *seconds, int *percent)
size_t Android_JNI_FileWrite(SDL_RWops *ctx, const void *buffer, size_t size, size_t num)
GLenum mode
void * Android_JNI_GetAudioBuffer(void)
GLenum GLsizei GLsizei GLint * values
void Android_JNI_SuspendScreenSaver(SDL_bool suspend)
GLintptr offset
ANativeWindow * Android_JNI_GetNativeWindow(void)
jclass Android_JNI_GetActivityClass(void)
static char text[MAX_TEXT_LENGTH]
Definition: testime.c:34
void Android_JNI_HideTextInput(void)
size_t Android_JNI_FileRead(SDL_RWops *ctx, void *buffer, size_t size, size_t maxnum)
GLuint buffer
int Android_JNI_SetClipboardText(const char *text)
int Android_JNI_OpenAudioDevice(int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames)
void Android_JNI_PollInputDevices(void)
int64_t Sint64
A signed 64-bit integer type.
Definition: SDL_stdinc.h:160
int Android_JNI_GetTouchDeviceIds(int **ids)
JNIEnv * Android_JNI_GetEnv(void)
Sint64 Android_JNI_FileSeek(SDL_RWops *ctx, Sint64 offset, int whence)
A rectangle, with the origin at the upper left.
Definition: SDL_rect.h:64
Sint64 Android_JNI_FileSize(SDL_RWops *ctx)