1
0
mirror of synced 2024-11-24 06:50:11 +01:00
FFBArcadePlugin/Game Files/GaelcoTuningRace.cpp

71 lines
1.9 KiB
C++
Raw Normal View History

2022-06-10 12:41:25 +02:00
/*This file is part of FFB Arcade Plugin.
FFB Arcade Plugin 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.
FFB Arcade Plugin 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 FFB Arcade Plugin.If not, see < https://www.gnu.org/licenses/>.
*/
#include <string>
#include "GaelcoTuningRace.h"
2023-03-18 03:01:18 +01:00
2022-06-10 12:41:25 +02:00
static EffectTriggers* myTriggers;
static EffectConstants* myConstants;
static Helpers* myHelpers;
2023-03-18 03:01:18 +01:00
2022-06-10 12:41:25 +02:00
extern int EnableDamper;
extern int DamperStrength;
static bool init;
2023-03-18 03:01:18 +01:00
static int(__stdcall* SetMotorOri)(DWORD* a1);
static int __stdcall SetMotorHook(DWORD* a1)
2022-06-10 12:41:25 +02:00
{
long double v1 = *(float*)&a1;
if (v1 > 0)
{
double percentForce = v1;
double percentLength = 100;
if (percentForce > 1.0)
percentForce = 1.0;
myTriggers->Rumble(percentForce, 0, percentLength);
myTriggers->Constant(myConstants->DIRECTION_FROM_LEFT, percentForce);
}
else if (v1 < 0)
{
double percentForce = -v1;
double percentLength = 100;
if (percentForce > 1.0)
percentForce = 1.0;
myTriggers->Rumble(0, percentForce, percentLength);
myTriggers->Constant(myConstants->DIRECTION_FROM_RIGHT, percentForce);
}
2023-03-18 03:01:18 +01:00
return SetMotorOri(a1);
2022-06-10 12:41:25 +02:00
}
void GaelcoTuningRace::FFBLoop(EffectConstants* constants, Helpers* helpers, EffectTriggers* triggers) {
2023-03-18 03:01:18 +01:00
2022-06-10 12:41:25 +02:00
if (!init)
{
2023-03-18 03:01:18 +01:00
init = true;
MH_Initialize();
MH_CreateHook((void*)0x8188ABC, SetMotorHook, (void**)&SetMotorOri);
MH_EnableHook(MH_ALL_HOOKS);
2022-06-10 12:41:25 +02:00
}
2023-03-10 08:34:30 +01:00
if (EnableDamper)
2022-06-10 12:41:25 +02:00
triggers->Damper(DamperStrength / 100.0);
myTriggers = triggers;
myConstants = constants;
myHelpers = helpers;
}