1
0
mirror of synced 2024-11-15 10:57:42 +01:00
FFBArcadePlugin/Game Files/BG4JP.cpp

95 lines
2.8 KiB
C++
Raw Normal View History

2019-09-14 03:13:05 +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/>.
*/
2019-04-07 07:16:19 +02:00
#include <string>
#include "BG4JP.h"
2019-05-15 09:25:41 +02:00
static int SpeedStrength;
2019-04-07 07:16:19 +02:00
void BG4JP::FFBLoop(EffectConstants *constants, Helpers *helpers, EffectTriggers* triggers) {
int ff = helpers->ReadInt32(0x42EBB0, /* isRelativeOffset */ true);
float ffspeed = helpers->ReadFloat32(0x3F3000, /* isRelativeOffset */ true);
float ff2 = helpers->ReadFloat32(0x42EAB4, /* isRelativeOffset */ true);
2019-05-15 09:25:41 +02:00
if ((ffspeed >= 0.1) & (ffspeed <= 15))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 10;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if ((ffspeed >= 15.01) & (ffspeed <= 35))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 20;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if ((ffspeed >= 35.01) & (ffspeed <= 55))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 30;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if ((ffspeed >= 55.01) & (ffspeed <= 75))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 40;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if ((ffspeed >= 75.01) & (ffspeed <= 90))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 51;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if ((ffspeed >= 90.01) & (ffspeed <= 110))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 62;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if ((ffspeed >= 110.01) & (ffspeed <= 130))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 75;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if ((ffspeed >= 130.01) & (ffspeed <= 150))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 90;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else if (ffspeed > 150.01)
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 100;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
else
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
SpeedStrength = 0;
2019-04-07 07:16:19 +02:00
}
2019-05-15 09:25:41 +02:00
helpers->log("got value: ");
std::string ffs = std::to_string(ff);
helpers->log((char *)ffs.c_str());
if ((2000000 < ff) && (ff < 4000000))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
double percentForce = SpeedStrength / 100.0;
double percentLength = 150;
triggers->LeftRight(0, percentForce, percentLength);
2019-04-07 07:16:19 +02:00
triggers->Constant(constants->DIRECTION_FROM_RIGHT, percentForce);
}
2019-05-15 09:25:41 +02:00
else if ((1000000 < ff) && (ff < 1600000))
2019-04-07 07:16:19 +02:00
{
2019-05-15 09:25:41 +02:00
double percentForce = SpeedStrength / 100.0;
double percentLength = 150;
triggers->LeftRight(percentForce, 0, percentLength);
2019-04-07 07:16:19 +02:00
triggers->Constant(constants->DIRECTION_FROM_LEFT, percentForce);
}
2019-05-15 09:25:41 +02:00
else if ((0.00000000000000000001 < ff2) && (ffspeed > 0.01))
2019-04-07 07:16:19 +02:00
{
double percentForce = (0.1);
double percentLength = (50);
triggers->LeftRight(0, percentForce, percentLength);
triggers->Constant(constants->DIRECTION_FROM_RIGHT, percentForce);
}
2019-05-15 09:25:41 +02:00
else if ((0.00000000000000000001 > ff2) && (ffspeed > 0.01))
2019-04-07 07:16:19 +02:00
{
double percentForce = (0.1);
double percentLength = (50);
triggers->LeftRight(percentForce, 0, percentLength);
triggers->Constant(constants->DIRECTION_FROM_LEFT, percentForce);
}
}