VTB: release CVBuffer after it actually has been rendered
[xbmc.git] / xbmc / input / joysticks / JoystickMonitor.cpp
blob6de84abf430c6c8c9b2c99dc62b603c4d55edfe6
1 /*
2 * Copyright (C) 2015-2016 Team Kodi
3 * http://kodi.tv
5 * This Program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
10 * This Program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this Program; see the file COPYING. If not, see
17 * <http://www.gnu.org/licenses/>.
21 #include "JoystickMonitor.h"
22 #include "Application.h"
23 #include "input/InputManager.h"
25 using namespace JOYSTICK;
27 bool CJoystickMonitor::OnButtonMotion(unsigned int buttonIndex, bool bPressed)
29 if (bPressed)
31 CInputManager::GetInstance().SetMouseActive(false);
32 return ResetTimers();
35 return false;
38 bool CJoystickMonitor::OnHatMotion(unsigned int hatIndex, HAT_STATE state)
40 if (state != HAT_STATE::UNPRESSED)
42 CInputManager::GetInstance().SetMouseActive(false);
43 return ResetTimers();
46 return false;
49 bool CJoystickMonitor::OnAxisMotion(unsigned int axisIndex, float position)
51 if (position)
53 CInputManager::GetInstance().SetMouseActive(false);
54 return ResetTimers();
57 return false;
60 bool CJoystickMonitor::ResetTimers(void)
62 g_application.ResetSystemIdleTimer();
63 g_application.ResetScreenSaver();
64 return g_application.WakeUpScreenSaverAndDPMS();