1
0
mirror of synced 2024-11-15 02:47:41 +01:00
FFBArcadePlugin/Common Files/TeknoParrotGame.cpp

43 lines
1006 B
C++
Raw Normal View History

2019-11-01 21:34:57 +01:00
#include "TeknoParrotGame.h"
static wchar_t* settingsFilename = TEXT(".\\FFBPlugin.ini");
static int configGameId = GetPrivateProfileInt(TEXT("Settings"), TEXT("GameId"), 0, settingsFilename);
2019-11-01 21:34:57 +01:00
TeknoParrotGame::TeknoParrotGame()
{
hSection = CreateFileMapping(INVALID_HANDLE_VALUE, nullptr, PAGE_READWRITE, 0, 64, L"TeknoParrot_JvsState");
secData = MapViewOfFile(hSection, FILE_MAP_ALL_ACCESS, 0, 0, 64);
if (configGameId == 19)
{
ffbOffset = *((int*)secData + 6);
ffbOffset2 = *((int*)secData + 7);
}
else
{
ffbOffset = *((int*)secData + 2);
}
2019-11-01 21:34:57 +01:00
}
int TeknoParrotGame::GetTeknoParrotFFB()
{
if (configGameId == 19)
{
ffbOffset = *((int*)secData + 6);
}
else
{
ffbOffset = *((int*)secData + 2);
}
2019-11-01 21:34:57 +01:00
return ffbOffset;
}
int TeknoParrotGame::GetTeknoParrotFFB2()
{
ffbOffset2 = *((int*)secData + 7);
return ffbOffset2;
}
2019-11-01 21:34:57 +01:00
void TeknoParrotGame::FFBLoop(EffectConstants *constants, Helpers *helpers, EffectTriggers* triggers) {
helpers->log("TeknoParrot game not implemented");
}