| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485 |
- //
- // Copyright (c) 2008-2014 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "Precompiled.h"
- #include "Context.h"
- #include "CoreEvents.h"
- #include "FileSystem.h"
- #include "Graphics.h"
- #include "GraphicsEvents.h"
- #include "GraphicsImpl.h"
- #include "Input.h"
- #include "Log.h"
- #include "Mutex.h"
- #include "ProcessUtils.h"
- #include "Profiler.h"
- #include "ResourceCache.h"
- #include "RWOpsWrapper.h"
- #include "StringUtils.h"
- #include "Text.h"
- #include "UI.h"
- #include <cstring>
- #include <SDL.h>
- #include "DebugNew.h"
- // Require a click inside window before re-hiding mouse cursor on OSX, otherwise dragging the window
- // can be incorrectly interpreted as mouse movement inside the window
- #if defined(__APPLE__) && !defined(IOS)
- #define REQUIRE_CLICK_TO_FOCUS
- #endif
- namespace Urho3D
- {
- const int SCREEN_JOYSTICK_START_INDEX = 1000;
- const ShortStringHash VAR_BUTTON_KEY_BINDING("VAR_BUTTON_KEY_BINDING");
- const ShortStringHash VAR_LAST_KEYSYM("VAR_LAST_KEYSYM");
- const ShortStringHash VAR_SCREEN_JOYSTICK_INDEX("VAR_SCREEN_JOYSTICK_INDEX");
- /// Convert SDL keycode if necessary.
- int ConvertSDLKeyCode(int keySym, int scanCode)
- {
- if (scanCode == SCANCODE_AC_BACK)
- return KEY_ESC;
- else
- return SDL_toupper(keySym);
- }
- Input::Input(Context* context) :
- Object(context),
- mouseButtonDown_(0),
- mouseButtonPress_(0),
- mouseMoveWheel_(0),
- windowID_(0),
- toggleFullscreen_(true),
- mouseVisible_(false),
- inputFocus_(false),
- minimized_(false),
- focusedThisFrame_(false),
- suppressNextMouseMove_(false),
- initialized_(false)
- {
- SubscribeToEvent(E_SCREENMODE, HANDLER(Input, HandleScreenMode));
- // Try to initialize right now, but skip if screen mode is not yet set
- Initialize();
- }
- Input::~Input()
- {
- }
- void Input::Update()
- {
- assert(initialized_);
- PROFILE(UpdateInput);
- // Reset input accumulation for this frame
- keyPress_.Clear();
- scancodePress_.Clear();
- mouseButtonPress_ = 0;
- mouseMove_ = IntVector2::ZERO;
- mouseMoveWheel_ = 0;
- for (Vector<JoystickState>::Iterator i = joysticks_.Begin(); i != joysticks_.End(); ++i)
- {
- for (unsigned j = 0; j < i->buttonPress_.Size(); ++j)
- i->buttonPress_[j] = false;
- }
- // Reset touch delta movement
- for (HashMap<int, TouchState>::Iterator i = touches_.Begin(); i != touches_.End(); ++i)
- {
- TouchState& state = i->second_;
- state.lastPosition_ = state.position_;
- state.delta_ = IntVector2::ZERO;
- }
- // Check and handle SDL events
- SDL_PumpEvents();
- SDL_Event evt;
- while (SDL_PeepEvents(&evt, 1, SDL_GETEVENT, SDL_FIRSTEVENT, SDL_LASTEVENT) > 0)
- HandleSDLEvent(&evt);
- // Check for activation and inactivation from SDL window flags. Must nullcheck the window pointer because it may have
- // been closed due to input events
- SDL_Window* window = graphics_->GetImpl()->GetWindow();
- unsigned flags = window ? SDL_GetWindowFlags(window) & (SDL_WINDOW_INPUT_FOCUS | SDL_WINDOW_MOUSE_FOCUS) : 0;
- if (window)
- {
- #ifdef REQUIRE_CLICK_TO_FOCUS
- if (!inputFocus_ && (graphics_->GetFullscreen() || mouseVisible_) && flags == (SDL_WINDOW_INPUT_FOCUS |
- SDL_WINDOW_MOUSE_FOCUS))
- #else
- if (!inputFocus_ && (flags & SDL_WINDOW_INPUT_FOCUS))
- #endif
- focusedThisFrame_ = true;
- if (focusedThisFrame_)
- GainFocus();
- if (inputFocus_ && (flags & SDL_WINDOW_INPUT_FOCUS) == 0)
- LoseFocus();
- }
- else
- return;
- // Check for relative mode mouse move
- if (graphics_->GetExternalWindow() || (!mouseVisible_ && inputFocus_ && (flags & SDL_WINDOW_MOUSE_FOCUS)))
- {
- IntVector2 mousePosition = GetMousePosition();
- mouseMove_ = mousePosition - lastMousePosition_;
- if (graphics_->GetExternalWindow())
- lastMousePosition_ = mousePosition;
- else
- {
- // Recenter the mouse cursor manually after move
- IntVector2 center(graphics_->GetWidth() / 2, graphics_->GetHeight() / 2);
- if (mousePosition != center)
- {
- SetMousePosition(center);
- lastMousePosition_ = center;
- }
- }
- // Send mouse move event if necessary
- if (mouseMove_ != IntVector2::ZERO)
- {
- if (suppressNextMouseMove_)
- {
- mouseMove_ = IntVector2::ZERO;
- suppressNextMouseMove_ = false;
- }
- else
- {
- using namespace MouseMove;
- VariantMap& eventData = GetEventDataMap();
- if (mouseVisible_)
- {
- eventData[P_X] = mousePosition.x_;
- eventData[P_Y] = mousePosition.y_;
- }
- eventData[P_DX] = mouseMove_.x_;
- eventData[P_DY] = mouseMove_.y_;
- eventData[P_BUTTONS] = mouseButtonDown_;
- eventData[P_QUALIFIERS] = GetQualifiers();
- SendEvent(E_MOUSEMOVE, eventData);
- }
- }
- }
- }
- void Input::SetMouseVisible(bool enable)
- {
- // SDL Raspberry Pi "video driver" does not have proper OS mouse support yet, so no-op for now
- #ifndef RASPI
- if (enable != mouseVisible_)
- {
- mouseVisible_ = enable;
- if (initialized_)
- {
- // External windows can only support visible mouse cursor
- if (graphics_->GetExternalWindow())
- {
- mouseVisible_ = true;
- return;
- }
- if (!mouseVisible_ && inputFocus_)
- {
- SDL_ShowCursor(SDL_FALSE);
- // Recenter the mouse cursor manually when hiding it to avoid erratic mouse move for one frame
- IntVector2 center(graphics_->GetWidth() / 2, graphics_->GetHeight() / 2);
- SetMousePosition(center);
- lastMousePosition_ = center;
- }
- else
- SDL_ShowCursor(SDL_TRUE);
- }
- using namespace MouseVisibleChanged;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_VISIBLE] = mouseVisible_;
- SendEvent(E_MOUSEVISIBLECHANGED, eventData);
- }
- #endif
- }
- void Input::SetToggleFullscreen(bool enable)
- {
- toggleFullscreen_ = enable;
- }
- bool Input::DetectJoysticks()
- {
- SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
- SDL_InitSubSystem(SDL_INIT_JOYSTICK);
- ResetJoysticks();
- return true;
- }
- static void PopulateKeyBindingMap(HashMap<String, int> keyBindingMap)
- {
- if (keyBindingMap.Empty())
- {
- keyBindingMap.Insert(MakePair<String, int>("SPACE", KEY_SPACE));
- keyBindingMap.Insert(MakePair<String, int>("LCTRL", KEY_LCTRL));
- keyBindingMap.Insert(MakePair<String, int>("RCTRL", KEY_RCTRL));
- keyBindingMap.Insert(MakePair<String, int>("LSHIFT", KEY_LSHIFT));
- keyBindingMap.Insert(MakePair<String, int>("RSHIFT", KEY_RSHIFT));
- keyBindingMap.Insert(MakePair<String, int>("LALT", KEY_LALT));
- keyBindingMap.Insert(MakePair<String, int>("RALT", KEY_RALT));
- keyBindingMap.Insert(MakePair<String, int>("LGUI", KEY_LGUI));
- keyBindingMap.Insert(MakePair<String, int>("RGUI", KEY_RGUI));
- keyBindingMap.Insert(MakePair<String, int>("TAB", KEY_TAB));
- keyBindingMap.Insert(MakePair<String, int>("RETURN", KEY_RETURN));
- keyBindingMap.Insert(MakePair<String, int>("RETURN2", KEY_RETURN2));
- keyBindingMap.Insert(MakePair<String, int>("ENTER", KEY_KP_ENTER));
- keyBindingMap.Insert(MakePair<String, int>("SELECT", KEY_SELECT));
- keyBindingMap.Insert(MakePair<String, int>("LEFT", KEY_LEFT));
- keyBindingMap.Insert(MakePair<String, int>("RIGHT", KEY_RIGHT));
- keyBindingMap.Insert(MakePair<String, int>("UP", KEY_UP));
- keyBindingMap.Insert(MakePair<String, int>("DOWN", KEY_DOWN));
- keyBindingMap.Insert(MakePair<String, int>("F1", KEY_F1));
- keyBindingMap.Insert(MakePair<String, int>("F2", KEY_F2));
- keyBindingMap.Insert(MakePair<String, int>("F3", KEY_F3));
- keyBindingMap.Insert(MakePair<String, int>("F4", KEY_F4));
- keyBindingMap.Insert(MakePair<String, int>("F5", KEY_F5));
- keyBindingMap.Insert(MakePair<String, int>("F6", KEY_F6));
- keyBindingMap.Insert(MakePair<String, int>("F7", KEY_F7));
- keyBindingMap.Insert(MakePair<String, int>("F8", KEY_F8));
- keyBindingMap.Insert(MakePair<String, int>("F9", KEY_F9));
- keyBindingMap.Insert(MakePair<String, int>("F10", KEY_F10));
- keyBindingMap.Insert(MakePair<String, int>("F11", KEY_F11));
- keyBindingMap.Insert(MakePair<String, int>("F12", KEY_F12));
- }
- }
- unsigned Input::AddScreenJoystick(XMLFile* layoutFile, XMLFile* styleFile)
- {
- static HashMap<String, int> keyBindingMap;
- if (!graphics_)
- {
- LOGWARNING("Cannot add screen joystick in headless mode");
- return M_MAX_UNSIGNED;
- }
- // If layout file is not given, use the default screen joystick layout
- if (!layoutFile)
- {
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- layoutFile = cache->GetResource<XMLFile>("UI/ScreenJoystick.xml");
- if (!layoutFile) // Error is already logged
- return M_MAX_UNSIGNED;
- }
- UI* ui = GetSubsystem<UI>();
- SharedPtr<UIElement> screenJoystick = ui->LoadLayout(layoutFile, styleFile);
- if (!screenJoystick) // Error is already logged
- return M_MAX_UNSIGNED;
- screenJoystick->SetSize(ui->GetRoot()->GetSize());
- screenJoystick->SetVisible(false); // Set to visible when it is opened later
- ui->GetRoot()->AddChild(screenJoystick);
- unsigned index = joysticks_.Size();
- joysticks_.Resize(index + 1);
- JoystickState& state = joysticks_[index];
- joystickIDMap_[SCREEN_JOYSTICK_START_INDEX + index] = index;
- state.name_ = screenJoystick->GetName();
- state.screenJoystick_ = screenJoystick;
- unsigned numButtons = 0;
- unsigned numAxes = 0;
- unsigned numHats = 0;
- const Vector<SharedPtr<UIElement> >& children = state.screenJoystick_->GetChildren();
- for (Vector<SharedPtr<UIElement> >::ConstIterator iter = children.Begin(); iter != children.End(); ++iter)
- {
- UIElement* element = iter->Get();
- String name = element->GetName();
- if (name.StartsWith("Button"))
- {
- ++numButtons;
- // Check whether the button has key binding
- Text* text = dynamic_cast<Text*>(element->GetChild("KeyBinding", false));
- if (text)
- {
- text->SetVisible(false);
- const String& key = text->GetText();
- int keyBinding;
- if (key.Length() == 1)
- keyBinding = key[0];
- else
- {
- PopulateKeyBindingMap(keyBindingMap);
- HashMap<String, int>::Iterator i = keyBindingMap.Find(key);
- if (i != keyBindingMap.End())
- keyBinding = i->second_;
- else
- {
- LOGERRORF("Unsupported key binding: %s", key.CString());
- keyBinding = M_MAX_INT;
- }
- }
- if (keyBinding != M_MAX_INT)
- element->SetVar(VAR_BUTTON_KEY_BINDING, keyBinding);
- }
- }
- else if (name.StartsWith("Axis"))
- {
- ++numAxes;
- ///\todo Axis emulation for screen joystick is not fully supported yet.
- LOGWARNING("Axis emulation for screen joystick is not fully supported yet");
- }
- else if (name.StartsWith("Hat"))
- {
- ++numHats;
- Text* text = dynamic_cast<Text*>(element->GetChild("KeyBinding", false));
- if (text)
- {
- text->SetVisible(false);
- String keyBinding = text->GetText();
- if (keyBinding.Contains(' ')) // e.g.: "UP DOWN LEFT RIGHT"
- {
- // Attempt to split the text using ' ' as separator
- Vector<String>keyBindings(keyBinding.Split(' '));
- String mappedKeyBinding;
- if (keyBindings.Size() == 4)
- {
- PopulateKeyBindingMap(keyBindingMap);
- for (unsigned j = 0; j < 4; ++j)
- {
- if (keyBindings[j].Length() == 1)
- mappedKeyBinding.Append(keyBindings[j][0]);
- else
- {
- HashMap<String, int>::Iterator i = keyBindingMap.Find(keyBindings[j]);
- if (i != keyBindingMap.End())
- mappedKeyBinding.Append(i->second_);
- else
- break;
- }
- }
- }
- if (mappedKeyBinding.Length() != 4)
- {
- LOGERRORF("%s has invalid key binding %s, fallback to WSAD", name.CString(), keyBinding.CString());
- keyBinding = "WSAD";
- }
- else
- keyBinding = mappedKeyBinding;
- }
- else if (keyBinding.Length() != 4)
- {
- LOGERRORF("%s has invalid key binding %s, fallback to WSAD", name.CString(), keyBinding.CString());
- keyBinding = "WSAD";
- }
- element->SetVar(VAR_BUTTON_KEY_BINDING, keyBinding);
- }
- }
- element->SetVar(VAR_SCREEN_JOYSTICK_INDEX, index);
- }
- // Make sure all the children are non-focusable so they do not mistakenly to be considered as active UI input controls by application
- PODVector<UIElement*> allChildren;
- state.screenJoystick_->GetChildren(allChildren, true);
- for (PODVector<UIElement*>::Iterator iter = allChildren.Begin(); iter != allChildren.End(); ++iter)
- (*iter)->SetFocusMode(FM_NOTFOCUSABLE);
- state.buttons_.Resize(numButtons);
- state.buttonPress_.Resize(numButtons);
- state.axes_.Resize(numAxes);
- state.hats_.Resize(numHats);
- // There could be potentially more than one screen joystick, however they all will be handled by a same handler method
- // So there is no harm to replace the old handler with the new handler in each call to SubscribeToEvent()
- SubscribeToEvent(E_TOUCHBEGIN, HANDLER(Input, HandleScreenJoystickTouch));
- SubscribeToEvent(E_TOUCHMOVE, HANDLER(Input, HandleScreenJoystickTouch));
- SubscribeToEvent(E_TOUCHEND, HANDLER(Input, HandleScreenJoystickTouch));
- return index;
- }
- bool Input::RemoveScreenJoystick(unsigned index)
- {
- if (index >= joysticks_.Size())
- {
- LOGERRORF("Joystick index #%d is out of bounds", index);
- return false;
- }
- JoystickState& state = joysticks_[index];
- if (!state.screenJoystick_)
- {
- LOGERRORF("Failed to remove joystick at index #%d which is not a screen joystick", index);
- return false;
- }
- state.screenJoystick_->Remove();
- joysticks_.Erase(index);
- return true;
- }
- void Input::SetScreenKeyboardVisible(bool enable)
- {
- if (!graphics_)
- return;
- if (enable != IsScreenKeyboardVisible())
- {
- if (enable)
- SDL_StartTextInput();
- else
- SDL_StopTextInput();
- }
- }
- bool Input::RecordGesture()
- {
- // If have no touch devices, fail
- if (!SDL_GetNumTouchDevices())
- {
- LOGERROR("Can not record gesture: no touch devices");
- return false;
- }
- return SDL_RecordGesture(-1);
- }
- bool Input::SaveGestures(Serializer& dest)
- {
- RWOpsWrapper<Serializer> wrapper(dest);
- return SDL_SaveAllDollarTemplates(wrapper.GetRWOps());
- }
- bool Input::SaveGesture(Serializer& dest, unsigned gestureID)
- {
- RWOpsWrapper<Serializer> wrapper(dest);
- return SDL_SaveDollarTemplate(gestureID, wrapper.GetRWOps());
- }
- unsigned Input::LoadGestures(Deserializer& source)
- {
- // If have no touch devices, fail
- if (!SDL_GetNumTouchDevices())
- {
- LOGERROR("Can not load gestures: no touch devices");
- return 0;
- }
- RWOpsWrapper<Deserializer> wrapper(source);
- return SDL_LoadDollarTemplates(-1, wrapper.GetRWOps());
- }
- bool Input::OpenJoystick(unsigned index)
- {
- if (index >= joysticks_.Size())
- {
- LOGERRORF("Joystick index #%d is out of bounds", index);
- return false;
- }
- // Check if already opened
- JoystickState& state = joysticks_[index];
- if (joysticks_[index].joystick_ || (state.screenJoystick_ && state.screenJoystick_->IsVisible()))
- return true;
- if (state.screenJoystick_)
- state.screenJoystick_->SetVisible(true);
- else
- {
- SDL_Joystick* joystick = SDL_JoystickOpen(index);
- if (!joystick)
- {
- LOGERRORF("Cannot open joystick #%d (%s)", index, joysticks_[index].name_.CString());
- return false;
- }
- // Map SDL joystick index to internal index (which starts at 0)
- int sdl_joy_instance_id = SDL_JoystickInstanceID(joystick);
- joystickIDMap_[sdl_joy_instance_id] = index;
- state.joystick_ = joystick;
- if (SDL_IsGameController(index))
- state.controller_ = SDL_GameControllerOpen(index);
- state.buttons_.Resize(SDL_JoystickNumButtons(joystick));
- state.buttonPress_.Resize(state.buttons_.Size());
- state.axes_.Resize(SDL_JoystickNumAxes(joystick));
- state.hats_.Resize(SDL_JoystickNumHats(joystick));
- }
- for (unsigned i = 0; i < state.buttons_.Size(); ++i)
- {
- state.buttons_[i] = false;
- state.buttonPress_[i] = false;
- }
- for (unsigned i = 0; i < state.axes_.Size(); ++i)
- state.axes_[i] = 0.0f;
- for (unsigned i = 0; i < state.hats_.Size(); ++i)
- state.hats_[i] = HAT_CENTER;
- return true;
- }
- void Input::CloseJoystick(unsigned index)
- {
- if (index >= joysticks_.Size())
- return;
- JoystickState& state = joysticks_[index];
- if (joysticks_[index].joystick_)
- {
- SDL_JoystickClose(state.joystick_);
- state.joystick_ = 0;
- state.controller_ = 0;
- state.buttons_.Clear();
- state.axes_.Clear();
- state.hats_.Clear();
- }
- else if (state.screenJoystick_ && state.screenJoystick_->IsVisible())
- state.screenJoystick_->SetVisible(false);
- }
- int Input::GetKeyFromName(const String& name) const
- {
- return SDL_GetKeyFromName(name.CString());
- }
- int Input::GetKeyFromScancode(int scancode) const
- {
- return SDL_GetKeyFromScancode((SDL_Scancode)scancode);
- }
- String Input::GetKeyName(int key) const
- {
- return String(SDL_GetKeyName(key));
- }
- int Input::GetScancodeFromKey(int key) const
- {
- return SDL_GetScancodeFromKey(key);
- }
- int Input::GetScancodeFromName(const String& name) const
- {
- return SDL_GetScancodeFromName(name.CString());
- }
- String Input::GetScancodeName(int scancode) const
- {
- return SDL_GetScancodeName((SDL_Scancode)scancode);
- }
- bool Input::GetKeyDown(int key) const
- {
- return keyDown_.Contains(SDL_toupper(key));
- }
- bool Input::GetKeyPress(int key) const
- {
- return keyPress_.Contains(SDL_toupper(key));
- }
- bool Input::GetScancodeDown(int scancode) const
- {
- return scancodeDown_.Contains(scancode);
- }
- bool Input::GetScancodePress(int scancode) const
- {
- return scancodePress_.Contains(scancode);
- }
- bool Input::GetMouseButtonDown(int button) const
- {
- return (mouseButtonDown_ & button) != 0;
- }
- bool Input::GetMouseButtonPress(int button) const
- {
- return (mouseButtonPress_ & button) != 0;
- }
- bool Input::GetQualifierDown(int qualifier) const
- {
- if (qualifier == QUAL_SHIFT)
- return GetKeyDown(KEY_LSHIFT) || GetKeyDown(KEY_RSHIFT);
- if (qualifier == QUAL_CTRL)
- return GetKeyDown(KEY_LCTRL) || GetKeyDown(KEY_RCTRL);
- if (qualifier == QUAL_ALT)
- return GetKeyDown(KEY_LALT) || GetKeyDown(KEY_RALT);
- return false;
- }
- bool Input::GetQualifierPress(int qualifier) const
- {
- if (qualifier == QUAL_SHIFT)
- return GetKeyPress(KEY_LSHIFT) || GetKeyPress(KEY_RSHIFT);
- if (qualifier == QUAL_CTRL)
- return GetKeyPress(KEY_LCTRL) || GetKeyPress(KEY_RCTRL);
- if (qualifier == QUAL_ALT)
- return GetKeyPress(KEY_LALT) || GetKeyPress(KEY_RALT);
- return false;
- }
- int Input::GetQualifiers() const
- {
- int ret = 0;
- if (GetQualifierDown(QUAL_SHIFT))
- ret |= QUAL_SHIFT;
- if (GetQualifierDown(QUAL_CTRL))
- ret |= QUAL_CTRL;
- if (GetQualifierDown(QUAL_ALT))
- ret |= QUAL_ALT;
- return ret;
- }
- IntVector2 Input::GetMousePosition() const
- {
- IntVector2 ret = IntVector2::ZERO;
- if (!initialized_)
- return ret;
- SDL_GetMouseState(&ret.x_, &ret.y_);
- return ret;
- }
- TouchState* Input::GetTouch(unsigned index) const
- {
- if (index >= touches_.Size())
- return 0;
- HashMap<int, TouchState>::ConstIterator i = touches_.Begin();
- while (index--)
- ++i;
- return const_cast<TouchState*>(&i->second_);
- }
- const String& Input::GetJoystickName(unsigned index) const
- {
- return index < joysticks_.Size() ? joysticks_[index].name_ : String::EMPTY;
- }
- JoystickState* Input::GetJoystick(unsigned index)
- {
- if (index < joysticks_.Size())
- {
- JoystickState& state = joysticks_[index];
- // If necessary, automatically open the joystick first
- if ((!state.joystick_ && !state.screenJoystick_) || (state.screenJoystick_ && !state.screenJoystick_->IsVisible()))
- OpenJoystick(index);
- return const_cast<JoystickState*>(&state);
- }
- else
- return 0;
- }
- bool Input::GetScreenKeyboardSupport() const
- {
- return graphics_ ? SDL_HasScreenKeyboardSupport() : false;
- }
- bool Input::IsScreenKeyboardVisible() const
- {
- if (graphics_)
- {
- SDL_Window* window = graphics_->GetImpl()->GetWindow();
- return SDL_IsScreenKeyboardShown(window);
- }
- else
- return false;
- }
- bool Input::IsMinimized() const
- {
- // Return minimized state also when unfocused in fullscreen
- if (!inputFocus_ && graphics_ && graphics_->GetFullscreen())
- return true;
- else
- return minimized_;
- }
- void Input::Initialize()
- {
- Graphics* graphics = GetSubsystem<Graphics>();
- if (!graphics || !graphics->IsInitialized())
- return;
- graphics_ = graphics;
- // In external window mode only visible mouse is supported
- if (graphics_->GetExternalWindow())
- mouseVisible_ = true;
- // Set the initial activation
- focusedThisFrame_ = true;
- initialized_ = true;
- ResetJoysticks();
- ResetState();
- SubscribeToEvent(E_BEGINFRAME, HANDLER(Input, HandleBeginFrame));
- LOGINFO("Initialized input");
- }
- void Input::ResetJoysticks()
- {
- joysticks_.Clear();
- joysticks_.Resize(SDL_NumJoysticks());
- for (unsigned i = 0; i < joysticks_.Size(); ++i)
- joysticks_[i].name_ = SDL_JoystickNameForIndex(i);
- }
- void Input::GainFocus()
- {
- ResetState();
- inputFocus_ = true;
- focusedThisFrame_ = false;
- // Re-establish mouse cursor hiding as necessary
- if (!mouseVisible_)
- {
- SDL_ShowCursor(SDL_FALSE);
- suppressNextMouseMove_ = true;
- }
- else
- lastMousePosition_ = GetMousePosition();
- SendInputFocusEvent();
- }
- void Input::LoseFocus()
- {
- ResetState();
- inputFocus_ = false;
- focusedThisFrame_ = false;
- // Show the mouse cursor when inactive
- SDL_ShowCursor(SDL_TRUE);
- SendInputFocusEvent();
- }
- void Input::ResetState()
- {
- keyDown_.Clear();
- keyPress_.Clear();
- scancodeDown_.Clear();
- scancodePress_.Clear();
- /// \todo Check if this is necessary
- for (Vector<JoystickState>::Iterator i = joysticks_.Begin(); i != joysticks_.End(); ++i)
- {
- for (unsigned j = 0; j < i->buttons_.Size(); ++j)
- i->buttons_[j] = false;
- for (unsigned j = 0; j < i->hats_.Size(); ++j)
- i->hats_[j] = HAT_CENTER;
- }
- // When clearing touch states, send the corresponding touch end events
- for (HashMap<int, TouchState>::Iterator i = touches_.Begin(); i != touches_.End(); ++i)
- {
- TouchState& state = i->second_;
- using namespace TouchEnd;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_TOUCHID] = state.touchID_;
- eventData[P_X] = state.position_.x_;
- eventData[P_Y] = state.position_.y_;
- SendEvent(E_TOUCHEND, eventData);
- }
- // Use SetMouseButton() to reset the state so that mouse events will be sent properly
- SetMouseButton(MOUSEB_LEFT, false);
- SetMouseButton(MOUSEB_RIGHT, false);
- SetMouseButton(MOUSEB_MIDDLE, false);
- mouseMove_ = IntVector2::ZERO;
- mouseMoveWheel_ = 0;
- mouseButtonPress_ = 0;
- }
- void Input::SendInputFocusEvent()
- {
- using namespace InputFocus;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_FOCUS] = HasFocus();
- eventData[P_MINIMIZED] = IsMinimized();
- SendEvent(E_INPUTFOCUS, eventData);
- }
- void Input::SetMouseButton(int button, bool newState)
- {
- #ifdef REQUIRE_CLICK_TO_FOCUS
- if (!mouseVisible_ && !graphics_->GetFullscreen())
- {
- if (!inputFocus_ && newState && button == MOUSEB_LEFT)
- focusedThisFrame_ = true;
- }
- #endif
- // If we do not have focus yet, do not react to the mouse button down
- if (!graphics_->GetExternalWindow() && newState && !inputFocus_)
- return;
- if (newState)
- {
- if (!(mouseButtonDown_ & button))
- mouseButtonPress_ |= button;
- mouseButtonDown_ |= button;
- }
- else
- {
- if (!(mouseButtonDown_ & button))
- return;
- mouseButtonDown_ &= ~button;
- }
- using namespace MouseButtonDown;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_BUTTON] = button;
- eventData[P_BUTTONS] = mouseButtonDown_;
- eventData[P_QUALIFIERS] = GetQualifiers();
- SendEvent(newState ? E_MOUSEBUTTONDOWN : E_MOUSEBUTTONUP, eventData);
- }
- void Input::SetKey(int key, int scancode, unsigned raw, bool newState)
- {
- // If we do not have focus yet, do not react to the key down
- if (!graphics_->GetExternalWindow() && newState && !inputFocus_)
- return;
- bool repeat = false;
- if (newState)
- {
- scancodeDown_.Insert(scancode);
- scancodePress_.Insert(scancode);
- if (!keyDown_.Contains(key))
- {
- keyDown_.Insert(key);
- keyPress_.Insert(key);
- }
- else
- repeat = true;
- }
- else
- {
- scancodeDown_.Erase(scancode);
- if (!keyDown_.Erase(key))
- return;
- }
- using namespace KeyDown;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_KEY] = key;
- eventData[P_SCANCODE] = scancode;
- eventData[P_RAW] = raw;
- eventData[P_BUTTONS] = mouseButtonDown_;
- eventData[P_QUALIFIERS] = GetQualifiers();
- if (newState)
- eventData[P_REPEAT] = repeat;
- SendEvent(newState ? E_KEYDOWN : E_KEYUP, eventData);
- if ((key == KEY_RETURN || key == KEY_RETURN2 || key == KEY_KP_ENTER) && newState && !repeat && toggleFullscreen_ &&
- (GetKeyDown(KEY_LALT) || GetKeyDown(KEY_RALT)))
- graphics_->ToggleFullscreen();
- }
- void Input::SetMouseWheel(int delta)
- {
- // If we do not have focus yet, do not react to the wheel
- if (!graphics_->GetExternalWindow() && !inputFocus_)
- return;
- if (delta)
- {
- mouseMoveWheel_ += delta;
- using namespace MouseWheel;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_WHEEL] = delta;
- eventData[P_BUTTONS] = mouseButtonDown_;
- eventData[P_QUALIFIERS] = GetQualifiers();
- SendEvent(E_MOUSEWHEEL, eventData);
- }
- }
- void Input::SetMousePosition(const IntVector2& position)
- {
- if (!graphics_)
- return;
- SDL_WarpMouseInWindow(graphics_->GetImpl()->GetWindow(), position.x_, position.y_);
- }
- void Input::HandleSDLEvent(void* sdlEvent)
- {
- SDL_Event& evt = *static_cast<SDL_Event*>(sdlEvent);
- switch (evt.type)
- {
- case SDL_KEYDOWN:
- // Convert to uppercase to match Win32 virtual key codes
- SetKey(ConvertSDLKeyCode(evt.key.keysym.sym, evt.key.keysym.scancode), evt.key.keysym.scancode, evt.key.keysym.raw, true);
- break;
- case SDL_KEYUP:
- SetKey(ConvertSDLKeyCode(evt.key.keysym.sym, evt.key.keysym.scancode), evt.key.keysym.scancode, evt.key.keysym.raw, false);
- break;
- case SDL_TEXTINPUT:
- {
- textInput_ = &evt.text.text[0];
- unsigned unicode = textInput_.AtUTF8(0);
- if (unicode)
- {
- using namespace TextInput;
- VariantMap textInputEventData;
- textInputEventData[P_TEXT] = textInput_;
- textInputEventData[P_BUTTONS] = mouseButtonDown_;
- textInputEventData[P_QUALIFIERS] = GetQualifiers();
- SendEvent(E_TEXTINPUT, textInputEventData);
- }
- }
- break;
- case SDL_MOUSEBUTTONDOWN:
- SetMouseButton(1 << (evt.button.button - 1), true);
- break;
- case SDL_MOUSEBUTTONUP:
- SetMouseButton(1 << (evt.button.button - 1), false);
- break;
- case SDL_MOUSEMOTION:
- if (mouseVisible_)
- {
- mouseMove_.x_ += evt.motion.xrel;
- mouseMove_.y_ += evt.motion.yrel;
- using namespace MouseMove;
- VariantMap& eventData = GetEventDataMap();
- if (mouseVisible_)
- {
- eventData[P_X] = evt.motion.x;
- eventData[P_Y] = evt.motion.y;
- }
- eventData[P_DX] = evt.motion.xrel;
- eventData[P_DY] = evt.motion.yrel;
- eventData[P_BUTTONS] = mouseButtonDown_;
- eventData[P_QUALIFIERS] = GetQualifiers();
- SendEvent(E_MOUSEMOVE, eventData);
- }
- break;
- case SDL_MOUSEWHEEL:
- SetMouseWheel(evt.wheel.y);
- break;
- case SDL_FINGERDOWN:
- if (evt.tfinger.touchId != SDL_TOUCH_MOUSEID)
- {
- int touchID = evt.tfinger.fingerId & 0x7ffffff;
- TouchState& state = touches_[touchID];
- state.touchID_ = touchID;
- state.lastPosition_ = state.position_ = IntVector2((int)(evt.tfinger.x * graphics_->GetWidth()),
- (int)(evt.tfinger.y * graphics_->GetHeight()));
- state.delta_ = IntVector2::ZERO;
- state.pressure_ = evt.tfinger.pressure;
- using namespace TouchBegin;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_TOUCHID] = touchID;
- eventData[P_X] = state.position_.x_;
- eventData[P_Y] = state.position_.y_;
- eventData[P_PRESSURE] = state.pressure_;
- SendEvent(E_TOUCHBEGIN, eventData);
- }
- break;
- case SDL_FINGERUP:
- if (evt.tfinger.touchId != SDL_TOUCH_MOUSEID)
- {
- int touchID = evt.tfinger.fingerId & 0x7ffffff;
- TouchState& state = touches_[touchID];
- using namespace TouchEnd;
- VariantMap& eventData = GetEventDataMap();
- // Do not trust the position in the finger up event. Instead use the last position stored in the
- // touch structure
- eventData[P_TOUCHID] = touchID;
- eventData[P_X] = state.position_.x_;
- eventData[P_Y] = state.position_.y_;
- SendEvent(E_TOUCHEND, eventData);
- touches_.Erase(touchID);
- }
- break;
- case SDL_FINGERMOTION:
- if (evt.tfinger.touchId != SDL_TOUCH_MOUSEID)
- {
- int touchID = evt.tfinger.fingerId & 0x7ffffff;
- TouchState& state = touches_[touchID];
- state.touchID_ = touchID;
- state.position_ = IntVector2((int)(evt.tfinger.x * graphics_->GetWidth()),
- (int)(evt.tfinger.y * graphics_->GetHeight()));
- state.delta_ = state.position_ - state.lastPosition_;
- state.pressure_ = evt.tfinger.pressure;
- using namespace TouchMove;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_TOUCHID] = touchID;
- eventData[P_X] = state.position_.x_;
- eventData[P_Y] = state.position_.y_;
- eventData[P_DX] = (int)(evt.tfinger.dx * graphics_->GetWidth());
- eventData[P_DY] = (int)(evt.tfinger.dy * graphics_->GetHeight());
- eventData[P_PRESSURE] = state.pressure_;
- SendEvent(E_TOUCHMOVE, eventData);
- }
- break;
- case SDL_DOLLARRECORD:
- {
- using namespace GestureRecorded;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_GESTUREID] = (int)evt.dgesture.gestureId;
- SendEvent(E_GESTURERECORDED, eventData);
- }
- break;
- case SDL_DOLLARGESTURE:
- {
- using namespace GestureInput;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_GESTUREID] = (int)evt.dgesture.gestureId;
- eventData[P_CENTERX] = (int)(evt.dgesture.x * graphics_->GetWidth());
- eventData[P_CENTERY] = (int)(evt.dgesture.y * graphics_->GetHeight());
- eventData[P_NUMFINGERS] = (int)evt.dgesture.numFingers;
- eventData[P_ERROR] = evt.dgesture.error;
- SendEvent(E_GESTUREINPUT, eventData);
- }
- break;
- case SDL_MULTIGESTURE:
- {
- using namespace MultiGesture;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_CENTERX] = (int)(evt.mgesture.x * graphics_->GetWidth());
- eventData[P_CENTERY] = (int)(evt.mgesture.y * graphics_->GetHeight());
- eventData[P_NUMFINGERS] = (int)evt.mgesture.numFingers;
- eventData[P_DTHETA] = M_RADTODEG * evt.mgesture.dTheta;
- eventData[P_DDIST] = evt.mgesture.dDist;
- SendEvent(E_MULTIGESTURE, eventData);
- }
- break;
- case SDL_JOYBUTTONDOWN:
- {
- using namespace JoystickButtonDown;
- unsigned button = evt.jbutton.button;
- unsigned joystickIndex = joystickIDMap_[evt.jbutton.which];
- VariantMap& eventData = GetEventDataMap();
- eventData[P_JOYSTICK] = joystickIndex;
- eventData[P_BUTTON] = button;
- if (joystickIndex < joysticks_.Size() && button < joysticks_[joystickIndex].buttons_.Size()) {
- joysticks_[joystickIndex].buttons_[button] = true;
- joysticks_[joystickIndex].buttonPress_[button] = true;
- SendEvent(E_JOYSTICKBUTTONDOWN, eventData);
- }
- }
- break;
- case SDL_JOYBUTTONUP:
- {
- using namespace JoystickButtonUp;
- unsigned button = evt.jbutton.button;
- unsigned joystickIndex = joystickIDMap_[evt.jbutton.which];
- VariantMap& eventData = GetEventDataMap();
- eventData[P_JOYSTICK] = joystickIndex;
- eventData[P_BUTTON] = button;
- if (joystickIndex < joysticks_.Size() && button < joysticks_[joystickIndex].buttons_.Size()) {
- joysticks_[joystickIndex].buttons_[button] = false;
- SendEvent(E_JOYSTICKBUTTONUP, eventData);
- }
- }
- break;
- case SDL_JOYAXISMOTION:
- {
- using namespace JoystickAxisMove;
- unsigned joystickIndex = joystickIDMap_[evt.jaxis.which];
- VariantMap& eventData = GetEventDataMap();
- eventData[P_JOYSTICK] = joystickIndex;
- eventData[P_AXIS] = evt.jaxis.axis;
- eventData[P_POSITION] = Clamp((float)evt.jaxis.value / 32767.0f, -1.0f, 1.0f);
- if (joystickIndex < joysticks_.Size() && evt.jaxis.axis <
- joysticks_[joystickIndex].axes_.Size())
- {
- joysticks_[joystickIndex].axes_[evt.jaxis.axis] = eventData[P_POSITION].GetFloat();
- SendEvent(E_JOYSTICKAXISMOVE, eventData);
- }
- }
- break;
- case SDL_JOYHATMOTION:
- {
- using namespace JoystickHatMove;
- unsigned joystickIndex = joystickIDMap_[evt.jaxis.which];
- VariantMap& eventData = GetEventDataMap();
- eventData[P_JOYSTICK] = joystickIndex;
- eventData[P_HAT] = evt.jhat.hat;
- eventData[P_POSITION] = evt.jhat.value;
- if (joystickIndex < joysticks_.Size() && evt.jhat.hat <
- joysticks_[joystickIndex].hats_.Size())
- {
- joysticks_[joystickIndex].hats_[evt.jhat.hat] = evt.jhat.value;
- SendEvent(E_JOYSTICKHATMOVE, eventData);
- }
- }
- break;
- case SDL_CONTROLLERBUTTONDOWN:
- {
- using namespace ControllerButtonDown;
- unsigned button = evt.cbutton.button;
- unsigned joystickIndex = joystickIDMap_[evt.cbutton.which];
- VariantMap& eventData = GetEventDataMap();
- eventData[P_JOYSTICK] = joystickIndex;
- eventData[P_BUTTON] = button;
- if (joystickIndex < joysticks_.Size() && button < joysticks_[joystickIndex].buttons_.Size()) {
- joysticks_[joystickIndex].buttons_[button] = true;
- joysticks_[joystickIndex].buttonPress_[button] = true;
- SendEvent(E_CONTROLLERBUTTONDOWN, eventData);
- }
- }
- break;
- case SDL_CONTROLLERBUTTONUP:
- {
- using namespace ControllerButtonUp;
- unsigned button = evt.cbutton.button;
- unsigned joystickIndex = joystickIDMap_[evt.cbutton.which];
- VariantMap& eventData = GetEventDataMap();
- eventData[P_JOYSTICK] = joystickIndex;
- eventData[P_BUTTON] = button;
- if (joystickIndex < joysticks_.Size() && button < joysticks_[joystickIndex].buttons_.Size()) {
- joysticks_[joystickIndex].buttons_[button] = false;
- SendEvent(E_CONTROLLERBUTTONUP, eventData);
- }
- }
- break;
- case SDL_CONTROLLERAXISMOTION:
- {
- using namespace ControllerAxisMove;
- unsigned joystickIndex = joystickIDMap_[evt.caxis.which];
- VariantMap& eventData = GetEventDataMap();
- eventData[P_JOYSTICK] = joystickIndex;
- eventData[P_AXIS] = evt.caxis.axis;
- eventData[P_POSITION] = Clamp((float)evt.caxis.value / 32767.0f, -1.0f, 1.0f);
- if (joystickIndex < joysticks_.Size() && evt.caxis.axis <
- joysticks_[joystickIndex].axes_.Size())
- {
- joysticks_[joystickIndex].axes_[evt.caxis.axis] = eventData[P_POSITION].GetFloat();
- SendEvent(E_CONTROLLERAXISMOVE, eventData);
- }
- }
- break;
- case SDL_WINDOWEVENT:
- {
- switch (evt.window.event)
- {
- case SDL_WINDOWEVENT_MINIMIZED:
- minimized_ = true;
- SendInputFocusEvent();
- break;
- case SDL_WINDOWEVENT_MAXIMIZED:
- case SDL_WINDOWEVENT_RESTORED:
- minimized_ = false;
- SendInputFocusEvent();
- #ifdef IOS
- // On iOS we never lose the GL context, but may have done GPU object changes that could not be applied yet.
- // Apply them now
- graphics_->Restore();
- #endif
- break;
- #ifdef ANDROID
- case SDL_WINDOWEVENT_FOCUS_GAINED:
- // Restore GPU objects to the new GL context
- graphics_->Restore();
- break;
- #endif
- case SDL_WINDOWEVENT_RESIZED:
- graphics_->WindowResized();
- break;
- }
- }
- break;
- case SDL_DROPFILE:
- {
- using namespace DropFile;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_FILENAME] = GetInternalPath(String(evt.drop.file));
- SDL_free(evt.drop.file);
- SendEvent(E_DROPFILE, eventData);
- }
- break;
- case SDL_QUIT:
- SendEvent(E_EXITREQUESTED);
- break;
- }
- }
- void Input::HandleScreenMode(StringHash eventType, VariantMap& eventData)
- {
- // Reset input state on subsequent initializations
- if (!initialized_)
- Initialize();
- else
- ResetState();
- // Re-enable cursor clipping, and re-center the cursor (if needed) to the new screen size, so that there is no erroneous
- // mouse move event. Also get new window ID if it changed
- SDL_Window* window = graphics_->GetImpl()->GetWindow();
- windowID_ = SDL_GetWindowID(window);
- if (!mouseVisible_)
- {
- IntVector2 center(graphics_->GetWidth() / 2, graphics_->GetHeight() / 2);
- SetMousePosition(center);
- lastMousePosition_ = center;
- }
- focusedThisFrame_ = true;
- // After setting a new screen mode we should not be minimized
- minimized_ = (SDL_GetWindowFlags(window) & SDL_WINDOW_MINIMIZED) != 0;
- }
- void Input::HandleBeginFrame(StringHash eventType, VariantMap& eventData)
- {
- // Update input right at the beginning of the frame
- Update();
- }
- void Input::HandleScreenJoystickTouch(StringHash eventType, VariantMap& eventData)
- {
- using namespace TouchBegin;
- // Only interested in events from screen joystick(s)
- TouchState& state = touches_[eventData[P_TOUCHID].GetInt()];
- IntVector2 position(state.position_.x_, state.position_.y_);
- UIElement* element = eventType == E_TOUCHBEGIN ? GetSubsystem<UI>()->GetElementAt(position) : state.touchedElement_;
- if (!element)
- return;
- Variant variant = element->GetVar(VAR_SCREEN_JOYSTICK_INDEX);
- if (variant.IsEmpty())
- return;
- unsigned index = variant.GetUInt();
- if (eventType == E_TOUCHEND)
- state.touchedElement_.Reset();
- else
- state.touchedElement_ = element;
- // Prepare a fake SDL event
- SDL_Event evt;
- const String& name = element->GetName();
- if (name.StartsWith("Button"))
- {
- if (eventType == E_TOUCHMOVE)
- return;
- // Determine whether to inject a joystick event or keyboard event
- Variant variant = element->GetVar(VAR_BUTTON_KEY_BINDING);
- if (variant.IsEmpty())
- {
- evt.type = eventType == E_TOUCHBEGIN ? SDL_JOYBUTTONDOWN : SDL_JOYBUTTONUP;
- evt.jbutton.which = SCREEN_JOYSTICK_START_INDEX + index;
- evt.jbutton.button = ToUInt(name.Substring(6));
- }
- else
- {
- evt.type = eventType == E_TOUCHBEGIN ? SDL_KEYDOWN : SDL_KEYUP;
- evt.key.keysym.sym = variant.GetInt();
- evt.key.keysym.scancode = SDL_SCANCODE_UNKNOWN;
- }
- }
- else if (name.StartsWith("Hat"))
- {
- Variant variant = element->GetVar(VAR_BUTTON_KEY_BINDING);
- if (variant.IsEmpty())
- {
- evt.type = SDL_JOYHATMOTION;
- evt.jaxis.which = SCREEN_JOYSTICK_START_INDEX + index;
- evt.jhat.hat = ToUInt(name.Substring(3));
- evt.jhat.value = HAT_CENTER;
- if (eventType != E_TOUCHEND)
- {
- IntVector2 relPosition = position - element->GetScreenPosition() - element->GetSize() / 2;
- if (relPosition.y_ < 0 && Abs(relPosition.x_ * 3 / 2) < Abs(relPosition.y_))
- evt.jhat.value |= HAT_UP;
- if (relPosition.y_ > 0 && Abs(relPosition.x_ * 3 / 2) < Abs(relPosition.y_))
- evt.jhat.value |= HAT_DOWN;
- if (relPosition.x_ < 0 && Abs(relPosition.y_ * 3 / 2) < Abs(relPosition.x_))
- evt.jhat.value |= HAT_LEFT;
- if (relPosition.x_ > 0 && Abs(relPosition.y_ * 3 / 2) < Abs(relPosition.x_))
- evt.jhat.value |= HAT_RIGHT;
- }
- }
- else
- {
- // Hat is binded by 4 keys, like 'WASD'
- String keyBinding = variant.GetString();
- if (eventType == E_TOUCHEND)
- {
- evt.type = SDL_KEYUP;
- evt.key.keysym.sym = element->GetVar(VAR_LAST_KEYSYM).GetInt();
- if (!evt.key.keysym.sym)
- return;
- element->SetVar(VAR_LAST_KEYSYM, 0);
- }
- else
- {
- evt.type = SDL_KEYDOWN;
- IntVector2 relPosition = position - element->GetScreenPosition() - element->GetSize() / 2;
- if (relPosition.y_ < 0 && Abs(relPosition.x_ * 3 / 2) < Abs(relPosition.y_))
- evt.key.keysym.sym = keyBinding[0];
- else if (relPosition.y_ > 0 && Abs(relPosition.x_ * 3 / 2) < Abs(relPosition.y_))
- evt.key.keysym.sym = keyBinding[1];
- else if (relPosition.x_ < 0 && Abs(relPosition.y_ * 3 / 2) < Abs(relPosition.x_))
- evt.key.keysym.sym = keyBinding[2];
- else if (relPosition.x_ > 0 && Abs(relPosition.y_ * 3 / 2) < Abs(relPosition.x_))
- evt.key.keysym.sym = keyBinding[3];
- else
- return;
- if (eventType == E_TOUCHMOVE && evt.key.keysym.sym != element->GetVar(VAR_LAST_KEYSYM).GetInt())
- {
- // Dragging past the directional boundary will cause an additional key up event for previous key symbol
- SDL_Event evt;
- evt.type = SDL_KEYUP;
- evt.key.keysym.sym = element->GetVar(VAR_LAST_KEYSYM).GetInt();
- if (evt.key.keysym.sym)
- {
- evt.key.keysym.scancode = SDL_SCANCODE_UNKNOWN;
- HandleSDLEvent(&evt);
- }
- element->SetVar(VAR_LAST_KEYSYM, 0);
- }
- evt.key.keysym.scancode = SDL_SCANCODE_UNKNOWN;
- element->SetVar(VAR_LAST_KEYSYM, evt.key.keysym.sym);
- }
- }
- }
- else
- return;
- // Handle the fake SDL event to turn it into Urho3D genuine event
- HandleSDLEvent(&evt);
- }
- }
|