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

129 lines
3.3 KiB
C++
Raw Normal View History

2021-02-09 05:30:19 +01: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 "SWDC2018.h"
extern int EnableDamper;
extern int DamperStrength;
2021-06-23 10:16:20 +02:00
static bool VersionFound;
static bool Version103;
static bool Version230;
static DWORD FFB;
2024-07-21 00:14:02 +02:00
static WORD FFBStr;
2021-02-09 05:30:19 +01:00
static wchar_t* settingsFilename = TEXT(".\\FFBPlugin.ini");
static int EscapeKeyExitViaPlugin = GetPrivateProfileInt(TEXT("Settings"), TEXT("EscapeKeyExitViaPlugin"), 0, settingsFilename);
2021-06-23 10:16:20 +02:00
static const char* SDDS = "SDDS";
static void getSDDS103(char* Name)
{
if (strcmp(Name, SDDS) == 0)
2021-02-09 05:30:19 +01:00
{
2021-06-23 10:16:20 +02:00
Version103 = true;
VersionFound = true;
2021-02-09 05:30:19 +01:00
}
2021-06-23 10:16:20 +02:00
}
2021-02-09 05:30:19 +01:00
2021-06-23 10:16:20 +02:00
static void getSDDS230(char* Name)
{
if (strcmp(Name, SDDS) == 0)
{
Version230 = true;
VersionFound = true;
}
}
void SWDC::FFBLoop(EffectConstants* constants, Helpers* helpers, EffectTriggers* triggers) {
2021-02-09 05:30:19 +01:00
2021-06-23 10:16:20 +02:00
if (GetAsyncKeyState((VK_ESCAPE)) && (EscapeKeyExitViaPlugin == 1))
ExitProcess(0);
2021-06-23 10:16:20 +02:00
if (!VersionFound)
2021-02-09 05:30:19 +01:00
{
2021-06-23 10:16:20 +02:00
DWORD SDDS103 = helpers->ReadInt32(0x8E5CBD0, true);
DWORD SDDS230 = helpers->ReadInt32(0x9BC7B20, true);
char Version103[256] = { 0 };
std::memcpy(Version103, &SDDS103, 4);
std::string myString103(Version103);
char Version230[256] = { 0 };
std::memcpy(Version230, &SDDS230, 4);
std::string myString230(Version230);
getSDDS103((char*)myString103.c_str());
getSDDS230((char*)myString230.c_str());
2021-02-09 05:30:19 +01:00
}
2021-06-23 10:16:20 +02:00
else
2021-02-09 05:30:19 +01:00
{
2021-06-23 10:16:20 +02:00
if (Version103)
2024-07-21 00:14:02 +02:00
{
FFB = helpers->ReadInt32(0x8E5CCF4, true);
2024-07-21 00:14:02 +02:00
FFBStr = helpers->ReadWord(0x8E5CCF6, true);
}
2021-06-23 10:16:20 +02:00
if (Version230)
2024-07-21 00:14:02 +02:00
{
FFB = helpers->ReadInt32(0x9BC7B18, true);
2024-07-21 00:14:02 +02:00
FFBStr = helpers->ReadWord(0x9BC7B1A, true);
}
2021-06-23 10:16:20 +02:00
if (EnableDamper)
2021-06-23 10:16:20 +02:00
triggers->Damper(DamperStrength / 100.0);
BYTE* ffb = reinterpret_cast<BYTE*>(&FFB);
if (ffb[0] == 0x80 && ffb[2] == 0x01)
2021-06-23 10:16:20 +02:00
{
triggers->Spring(1.0);
}
2024-07-21 00:14:02 +02:00
if (ffb[0] == 0x85 && ffb[1] > 0x00 && FFBStr > 0x00)
2021-02-09 05:30:19 +01:00
{
2024-07-21 00:14:02 +02:00
double percentForce = FFBStr / 32767.0;
double Period = ffb[1] / 127.0 * 120.0;
double percentLength = 100;
triggers->Rumble(percentForce, percentForce, percentLength);
triggers->Sine(static_cast<int>(Period), 0, percentForce);
2021-02-09 05:30:19 +01:00
}
2024-07-21 00:14:02 +02:00
if (ffb[0] == 0x86 && FFBStr)
2021-02-09 05:30:19 +01:00
{
2024-07-21 00:14:02 +02:00
double percentForce = FFBStr / 32767.0;
double percentLength = 100;
triggers->Spring(percentForce);
2021-02-09 05:30:19 +01:00
}
2024-07-21 00:14:02 +02:00
if (ffb[0] == 0x84 && FFBStr > 0x00)
2021-02-09 05:30:19 +01:00
{
if (ffb[1] == 0x00)
2021-02-09 05:30:19 +01:00
{
2024-07-21 00:14:02 +02:00
double percentForce = (32767.0 - FFBStr) / 32767.0;
2021-02-09 05:30:19 +01:00
double percentLength = 100;
triggers->Rumble(percentForce, 0, percentLength);
triggers->Constant(constants->DIRECTION_FROM_LEFT, percentForce);
}
2024-07-21 00:14:02 +02:00
else if (ffb[1] == 0x01)
2021-02-09 05:30:19 +01:00
{
2024-07-21 00:14:02 +02:00
double percentForce = (FFBStr / 32767.0);
2021-02-09 05:30:19 +01:00
double percentLength = 100;
triggers->Rumble(0, percentForce, percentLength);
triggers->Constant(constants->DIRECTION_FROM_RIGHT, percentForce);
}
}
}
2021-02-09 05:30:19 +01:00
}