2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-02-21 06:34:42 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include "Runtime/GCNTypes.hpp"
|
|
|
|
#include "Runtime/Input/CInputGenerator.hpp"
|
|
|
|
#include "Runtime/Input/CRumbleVoice.hpp"
|
2017-01-13 00:16:26 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CRumbleGenerator {
|
|
|
|
CRumbleVoice x0_voices[4];
|
|
|
|
float xc0_periodTime[4];
|
|
|
|
float xd0_onTime[4];
|
|
|
|
EMotorState xe0_commandArray[4];
|
|
|
|
bool xf0_24_disabled : 1;
|
|
|
|
|
2016-02-21 06:34:42 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CRumbleGenerator();
|
|
|
|
~CRumbleGenerator();
|
|
|
|
void Update(float dt);
|
|
|
|
void HardStopAll();
|
|
|
|
s16 Rumble(const SAdsrData& adsr, float, ERumblePriority prio, EIOPort port);
|
|
|
|
void Stop(s16 id, EIOPort port);
|
|
|
|
bool IsDisabled() const { return xf0_24_disabled; }
|
|
|
|
void SetDisabled(bool disabled) { xf0_24_disabled = disabled; }
|
2016-02-21 06:34:42 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|