diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-25 19:21:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-25 19:21:08 +0300 |
commit | d1153fc8c1f226d802e82cba7d11c686998a1523 (patch) | |
tree | 35f1b33a01e1ad4b32c4e7857cb58fb42b7c5103 /src | |
parent | 7506dbed4cf9ae76058283f4abc799bdf4614b3d (diff) | |
download | ManaVerse-d1153fc8c1f226d802e82cba7d11c686998a1523.tar.gz ManaVerse-d1153fc8c1f226d802e82cba7d11c686998a1523.tar.bz2 ManaVerse-d1153fc8c1f226d802e82cba7d11c686998a1523.tar.xz ManaVerse-d1153fc8c1f226d802e82cba7d11c686998a1523.zip |
Add empty handlers for accelerometer events in Android version.
Diffstat (limited to 'src')
-rw-r--r-- | src/client.cpp | 7 | ||||
-rw-r--r-- | src/gui/sdlinput.cpp | 5 | ||||
-rw-r--r-- | src/inputmanager.cpp | 12 |
3 files changed, 24 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 871b5c873..17a846b86 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -981,6 +981,9 @@ int Client::gameExec() case SDL_KEYBOARDSHOW: updateScreenKeyboard(event.user.code); break; + + case SDL_ACCELEROMETER: + break; #endif default: @@ -2883,6 +2886,10 @@ void Client::logEvent(const SDL_Event &event) case SDL_USEREVENT: logger->log("event: SDL_USEREVENT"); break; +#ifdef ANDROID + case SDL_ACCELEROMETER: + logger->log("event: SDL_ACCELEROMETER"); +#endif default: logger->log("event: other: %d", event.type); break; diff --git a/src/gui/sdlinput.cpp b/src/gui/sdlinput.cpp index 4f5234e73..bf8bd040f 100644 --- a/src/gui/sdlinput.cpp +++ b/src/gui/sdlinput.cpp @@ -164,6 +164,11 @@ void SDLInput::pushInput(const SDL_Event &event) break; } +#ifdef ANDROID + case SDL_ACCELEROMETER: + break; +#endif + case SDL_MOUSEBUTTONDOWN: mMouseDown = true; mouseInput.setX(event.button.x); diff --git a/src/inputmanager.cpp b/src/inputmanager.cpp index 38a743822..cd72f0ad5 100644 --- a/src/inputmanager.cpp +++ b/src/inputmanager.cpp @@ -487,6 +487,12 @@ bool InputManager::handleEvent(const SDL_Event &event) // joystick.handleDeActicateButton(event); break; } +#ifdef ANDROID + case SDL_ACCELEROMETER: + { + break; + } +#endif default: break; } @@ -522,6 +528,12 @@ bool InputManager::handleEvent(const SDL_Event &event) return true; } break; +#ifdef ANDROID + case SDL_ACCELEROMETER: + { + break; + } +#endif default: break; } |