1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

DirectInput support

This commit is contained in:
Brian Fiete 2020-11-27 06:25:54 -08:00
parent b9f84d328e
commit 98c35f4a87
6 changed files with 64 additions and 1 deletions

View file

@ -9,6 +9,7 @@
#include "img/BFIData.h"
#include "util/Vector.h"
#include "util/PerfTimer.h"
#include "util/TLSingleton.h"
#include "util/AllocDebug.h"
@ -22,7 +23,7 @@ USING_NS_BF;
#pragma warning(disable:4996)
static String gTempString;
static UTF16String gTempUTF16String;
int gPixelsDrawn = 0;
@ -260,6 +261,17 @@ BF_EXPORT void BF_CALLTYPE BFApp_RehupMouse()
}
BF_EXPORT const char* BF_CALLTYPE BFApp_EnumerateInputDevices()
{
gTempString = gBFApp->EnumerateInputDevices();
return gTempString.c_str();
}
BF_EXPORT BFInputDevice* BFApp_CreateInputDevice(const char* guid)
{
return gBFApp->CreateInputDevice(guid);
}
BF_EXPORT BFSoundManager* BF_CALLTYPE BFApp_GetSoundManager()
{
return gBFApp->GetSoundManager();
@ -725,6 +737,17 @@ BF_EXPORT ShaderParam* BF_CALLTYPE Gfx_GetShaderParam(Shader* shader, const char
return shader->GetShaderParam(shaderName);
}
BF_EXPORT void BF_CALLTYPE BFInput_Destroy(BFInputDevice* inputDevice)
{
delete inputDevice;
}
BF_EXPORT const char* BF_CALLTYPE BFInput_GetState(BFInputDevice* inputDevice)
{
gTempString = inputDevice->GetState();
return gTempString.c_str();
}
BF_EXPORT int BF_CALLTYPE BF_TickCount()
{
return (int) BFTickCount();