2013-03-10 22:08:57 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
2012-11-12 17:32:35 +00:00
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2023-03-24 18:57:24 +00:00
|
|
|
#include "Common/CommonWindows.h"
|
|
|
|
#include "Windows/InputDevice.h"
|
2013-08-12 21:26:01 +00:00
|
|
|
|
2023-03-25 09:43:00 +00:00
|
|
|
void SetConsolePosition();
|
|
|
|
void UpdateConsolePosition();
|
2013-06-26 07:32:49 +00:00
|
|
|
|
2023-03-24 18:57:24 +00:00
|
|
|
class WindowsInputManager {
|
|
|
|
public:
|
|
|
|
void Init();
|
|
|
|
void PollControllers();
|
2013-07-06 17:08:59 +00:00
|
|
|
|
2023-03-24 18:57:24 +00:00
|
|
|
private:
|
|
|
|
size_t numDinputDevices_ = 0;
|
2019-06-28 22:55:45 +00:00
|
|
|
std::list<std::unique_ptr<InputDevice>> input;
|
2023-03-24 18:57:24 +00:00
|
|
|
|
|
|
|
float mouseDeltaX_ = 0;
|
|
|
|
float mouseDeltaY_ = 0;
|
|
|
|
|
|
|
|
int checkCounter_ = 0;
|
2013-08-06 23:38:54 +00:00
|
|
|
};
|
2023-03-24 18:57:24 +00:00
|
|
|
|
|
|
|
extern WindowsInputManager g_inputManager;
|