mirror of
https://github.com/AntiMicroX/antimicrox.git
synced 2026-08-02 10:36:19 -04:00
117 lines
2.9 KiB
C++
117 lines
2.9 KiB
C++
/* antimicrox Gamepad to KB+M event mapper
|
|
* Copyright (C) 2015 Travis Nickles <nickles.travis@gmail.com>
|
|
* Copyright (C) 2020 Jagoda Górska <juliagoda.pl@protonmail.com>
|
|
*
|
|
* 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, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* 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 for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "antkeymapper.h"
|
|
|
|
#include "eventhandlerfactory.h"
|
|
|
|
#include <QDebug>
|
|
#include <QStringList>
|
|
#include <QtGlobal>
|
|
|
|
AntKeyMapper *AntKeyMapper::_instance = nullptr;
|
|
|
|
static QStringList buildEventGeneratorList()
|
|
{
|
|
QStringList temp = QStringList();
|
|
|
|
#ifdef Q_OS_WIN
|
|
temp.append("sendinput");
|
|
#endif
|
|
#ifdef WITH_XTEST
|
|
temp.append("xtest");
|
|
#endif
|
|
#ifdef WITH_UINPUT
|
|
temp.append("uinput");
|
|
#endif
|
|
|
|
return temp;
|
|
}
|
|
|
|
AntKeyMapper::AntKeyMapper(QString handler, QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
internalMapper = nullptr;
|
|
|
|
#if defined(Q_OS_UNIX)
|
|
#ifdef WITH_XTEST
|
|
if (handler == "xtest")
|
|
{
|
|
internalMapper = new QtX11KeyMapper(this);
|
|
nativeKeyMapper = nullptr;
|
|
}
|
|
#endif
|
|
|
|
#ifdef WITH_UINPUT
|
|
if (handler == "uinput")
|
|
{
|
|
internalMapper = new QtUInputKeyMapper(this);
|
|
#ifdef WITH_XTEST
|
|
nativeKeyMapper = new QtX11KeyMapper(this);
|
|
#else
|
|
nativeKeyMapper = nullptr;
|
|
#endif
|
|
}
|
|
#endif
|
|
#elif defined Q_OS_WIN
|
|
BACKEND_ELSE_IF(handler == "sendinput")
|
|
{
|
|
internalMapper = new QtWinKeyMapper(this);
|
|
nativeKeyMapper = 0;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
AntKeyMapper *AntKeyMapper::getInstance(QString handler)
|
|
{
|
|
if (_instance == nullptr)
|
|
{
|
|
Q_ASSERT(!handler.isEmpty());
|
|
QStringList temp = buildEventGeneratorList();
|
|
Q_ASSERT(temp.contains(handler));
|
|
_instance = new AntKeyMapper(handler);
|
|
}
|
|
|
|
return _instance;
|
|
}
|
|
|
|
void AntKeyMapper::deleteInstance()
|
|
{
|
|
if (_instance != nullptr)
|
|
{
|
|
delete _instance;
|
|
_instance = nullptr;
|
|
}
|
|
}
|
|
|
|
int AntKeyMapper::returnQtKey(int key, int scancode) { return internalMapper->returnQtKey(key, scancode); }
|
|
|
|
int AntKeyMapper::returnVirtualKey(int qkey) { return internalMapper->returnVirtualKey(qkey); }
|
|
|
|
bool AntKeyMapper::isModifierKey(int qkey) { return internalMapper->isModifier(qkey); }
|
|
|
|
QtKeyMapperBase *AntKeyMapper::getNativeKeyMapper() const { return nativeKeyMapper; }
|
|
|
|
QtKeyMapperBase *AntKeyMapper::getKeyMapper() const { return internalMapper; }
|
|
|
|
bool AntKeyMapper::hasNativeKeyMapper()
|
|
{
|
|
bool result = (nativeKeyMapper != nullptr);
|
|
return result;
|
|
}
|