SDL  2.0
SDL_android.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2018 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);
37 extern void Android_JNI_SetWindowStyle(SDL_bool fullscreen);
38 extern void Android_JNI_SetOrientation(int w, int h, int resizable, const char *hint);
39 
41 extern void Android_JNI_ShowTextInput(SDL_Rect *inputRect);
42 extern void Android_JNI_HideTextInput(void);
44 extern ANativeWindow* Android_JNI_GetNativeWindow(void);
45 
46 extern int Android_JNI_GetDisplayDPI(float *ddpi, float *xdpi, float *ydpi);
47 
48 /* Audio support */
49 extern int Android_JNI_OpenAudioDevice(int iscapture, int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames);
50 extern void* Android_JNI_GetAudioBuffer(void);
51 extern void Android_JNI_WriteAudioBuffer(void);
52 extern int Android_JNI_CaptureAudioBuffer(void *buffer, int buflen);
53 extern void Android_JNI_FlushCapturedAudio(void);
54 extern void Android_JNI_CloseAudioDevice(const int iscapture);
55 
56 #include "SDL_rwops.h"
57 
58 int Android_JNI_FileOpen(SDL_RWops* ctx, const char* fileName, const char* mode);
61 size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, size_t size, size_t maxnum);
62 size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer, size_t size, size_t num);
64 
65 /* Environment support */
67 
68 /* Clipboard support */
69 int Android_JNI_SetClipboardText(const char* text);
72 
73 /* Power support */
74 int Android_JNI_GetPowerInfo(int* plugged, int* charged, int* battery, int* seconds, int* percent);
75 
76 /* Joystick support */
78 
79 /* Haptic support */
81 void Android_JNI_HapticRun(int device_id, int length);
82 
83 /* Video */
85 
86 /* Touch support */
89 
90 /* Threads */
91 #include <jni.h>
92 JNIEnv *Android_JNI_GetEnv(void);
93 int Android_JNI_SetupThread(void);
94 
95 /* Generic messages */
96 int Android_JNI_SendMessage(int command, int param);
97 
98 /* Init */
99 JNIEXPORT void JNICALL SDL_Android_Init(JNIEnv* mEnv, jclass cls);
100 
101 /* MessageBox */
102 #include "SDL_messagebox.h"
103 int Android_JNI_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
104 
105 /* Ends C function definitions when using C++ */
106 #ifdef __cplusplus
107 /* *INDENT-OFF* */
108 }
109 /* *INDENT-ON* */
110 #endif
111 
112 /* vi: set ts=4 sw=4 expandtab: */
GLuint * ids
int Android_JNI_CaptureAudioBuffer(void *buffer, int buflen)
int Android_JNI_GetDisplayDPI(float *ddpi, float *xdpi, float *ydpi)
int Android_JNI_FileClose(SDL_RWops *ctx)
void Android_JNI_SetOrientation(int w, int h, int resizable, const char *hint)
GLuint num
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])
GLfloat GLfloat GLfloat GLfloat h
void Android_JNI_SetActivityTitle(const char *title)
char * Android_JNI_GetClipboardText(void)
int Android_JNI_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid)
void Android_JNI_SetSeparateMouseAndTouch(SDL_bool new_value)
GLintptr offset
int Android_JNI_FileOpen(SDL_RWops *ctx, const char *fileName, const char *mode)
int Android_JNI_OpenAudioDevice(int iscapture, int sampleRate, int is16Bit, int channelCount, int desiredBufferFrames)
int Android_JNI_SetupThread(void)
GLenum GLsizei GLsizei GLint * values
void Android_JNI_FlushCapturedAudio(void)
void Android_JNI_CloseAudioDevice(const int iscapture)
SDL_bool Android_JNI_HasClipboardText(void)
JNIEXPORT void JNICALL SDL_Android_Init(JNIEnv *mEnv, jclass cls)
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
GLubyte GLubyte GLubyte GLubyte w
void * Android_JNI_GetAudioBuffer(void)
void Android_JNI_SuspendScreenSaver(SDL_bool suspend)
void Android_JNI_PollHapticDevices(void)
MessageBox structure containing title, text, window, etc.
GLsizeiptr size
SDL_bool
Definition: SDL_stdinc.h:139
GLuint buffer
ANativeWindow * Android_JNI_GetNativeWindow(void)
void Android_JNI_GetManifestEnvironmentVariables(void)
static char text[MAX_TEXT_LENGTH]
Definition: testime.c:47
void Android_JNI_HideTextInput(void)
size_t Android_JNI_FileRead(SDL_RWops *ctx, void *buffer, size_t size, size_t maxnum)
int Android_JNI_SetClipboardText(const char *text)
SDL_bool Android_JNI_IsScreenKeyboardShown(void)
void Android_JNI_SetWindowStyle(SDL_bool fullscreen)
void Android_JNI_PollInputDevices(void)
int64_t Sint64
Definition: SDL_stdinc.h:188
int Android_JNI_GetTouchDeviceIds(int **ids)
GLuint GLsizei GLsizei * length
GLfloat param
JNIEnv * Android_JNI_GetEnv(void)
void Android_JNI_HapticRun(int device_id, int length)
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)
EGLContext ctx
Definition: eglext.h:208