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

Commit

Permalink
Changed signatures of methods in Java file to return boolean, adapted…
Browse files Browse the repository at this point in the history
… C++ file.

This way more checking for errors is possible which is currently not done here.
  • Loading branch information
philippwiesemann committed May 5, 2013
1 parent 7fc70b1 commit f599646
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -170,11 +170,11 @@ public void handleMessage(Message msg) {
Handler commandHandler = new SDLCommandHandler();

// Send a message from the SDLMain thread
void sendCommand(int command, Object data) {
boolean sendCommand(int command, Object data) {
Message msg = commandHandler.obtainMessage();
msg.arg1 = command;
msg.obj = data;
commandHandler.sendMessage(msg);
return commandHandler.sendMessage(msg);
}

// C functions we call
Expand Down Expand Up @@ -202,13 +202,13 @@ public static void flipBuffers() {
flipEGL();
}

public static void setActivityTitle(String title) {
public static boolean setActivityTitle(String title) {
// Called from SDLMain() thread and can't directly affect the view
mSingleton.sendCommand(COMMAND_CHANGE_TITLE, title);
return mSingleton.sendCommand(COMMAND_CHANGE_TITLE, title);
}

public static void sendMessage(int command, int param) {
mSingleton.sendCommand(command, Integer.valueOf(param));
public static boolean sendMessage(int command, int param) {
return mSingleton.sendCommand(command, Integer.valueOf(param));
}

public static Context getContext() {
Expand Down Expand Up @@ -271,9 +271,9 @@ public void run() {
}
}

public static void showTextInput(int x, int y, int w, int h) {
public static boolean showTextInput(int x, int y, int w, int h) {
// Transfer the task to the main thread as a Runnable
mSingleton.commandHandler.post(new ShowTextInputTask(x, y, w, h));
return mSingleton.commandHandler.post(new ShowTextInputTask(x, y, w, h));
}


Expand Down
14 changes: 7 additions & 7 deletions src/core/android/SDL_android.cpp
Expand Up @@ -339,10 +339,10 @@ extern "C" void Android_JNI_SetActivityTitle(const char *title)
{
jmethodID mid;
JNIEnv *mEnv = Android_JNI_GetEnv();
mid = mEnv->GetStaticMethodID(mActivityClass,"setActivityTitle","(Ljava/lang/String;)V");
mid = mEnv->GetStaticMethodID(mActivityClass,"setActivityTitle","(Ljava/lang/String;)Z");
if (mid) {
jstring jtitle = reinterpret_cast<jstring>(mEnv->NewStringUTF(title));
mEnv->CallStaticVoidMethod(mActivityClass, mid, jtitle);
mEnv->CallStaticBooleanMethod(mActivityClass, mid, jtitle);
mEnv->DeleteLocalRef(jtitle);
}
}
Expand Down Expand Up @@ -1085,12 +1085,12 @@ extern "C" int Android_JNI_SendMessage(int command, int param)
if (!env) {
return -1;
}
jmethodID mid = env->GetStaticMethodID(mActivityClass, "sendMessage", "(II)V");
jmethodID mid = env->GetStaticMethodID(mActivityClass, "sendMessage", "(II)Z");
if (!mid) {
return -1;
}
env->CallStaticVoidMethod(mActivityClass, mid, command, param);
return 0;
jboolean success = env->CallStaticBooleanMethod(mActivityClass, mid, command, param);
return success ? 0 : -1;
}

extern "C" void Android_JNI_ShowTextInput(SDL_Rect *inputRect)
Expand All @@ -1100,11 +1100,11 @@ extern "C" void Android_JNI_ShowTextInput(SDL_Rect *inputRect)
return;
}

jmethodID mid = env->GetStaticMethodID(mActivityClass, "showTextInput", "(IIII)V");
jmethodID mid = env->GetStaticMethodID(mActivityClass, "showTextInput", "(IIII)Z");
if (!mid) {
return;
}
env->CallStaticVoidMethod( mActivityClass, mid,
env->CallStaticBooleanMethod( mActivityClass, mid,
inputRect->x,
inputRect->y,
inputRect->w,
Expand Down

0 comments on commit f599646

Please sign in to comment.