project64/Source/Project64-input/InputMain.cpp

259 lines
5.5 KiB
C++
Raw Normal View History

#include <Project64-plugin-spec/Input.h>
2020-06-17 07:23:10 +00:00
#include "InputConfigUI.h"
2020-06-16 06:41:01 +00:00
#include "Version.h"
2020-06-23 07:47:46 +00:00
#include "CProject64Input.h"
#include "InputSettings.h"
2020-06-16 06:41:01 +00:00
#include <stdio.h>
/*
2020-06-16 06:41:01 +00:00
Function: CloseDLL
Purpose: This function is called when the emulator is closing
down allowing the DLL to de-initialize.
Input: None
Output: None
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL CloseDLL(void)
{
CleanupInputSettings();
2020-06-16 06:41:01 +00:00
}
/*
2020-06-16 06:41:01 +00:00
Function: ControllerCommand
Purpose: To process the raw data that has just been sent to a
2020-06-16 06:41:01 +00:00
specific controller.
Input: Controller number (0 to 3) and -1 signaling end of
processing the PIF RAM.
2020-06-16 06:41:01 +00:00
- Pointer of data to be processed.
Output: None
Note: This function is only needed if the DLL is allowing raw
data, or the plugin is set to raw.
The data that is being processed looks like this:
Initialize controller: 01 03 00 FF FF FF
Read controller: 01 04 01 FF FF FF FF
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL ControllerCommand(int32_t /*Control*/, uint8_t * /*Command*/)
{
}
/*
2020-06-16 06:41:01 +00:00
Function: DllAbout
Purpose: This function is optional function that is provided
2020-06-16 06:41:01 +00:00
to give further information about the DLL.
Input: A handle to the window that calls this function.
Output: None
*/
//EXPORT void CALL DllAbout(void * hParent)
//{
//}
2020-06-16 06:41:01 +00:00
/*
2020-06-16 06:41:01 +00:00
Function: DllConfig
Purpose: This function is optional function that is provided
to allow the user to configure the DLL.
Input: A handle to the window that calls this function.
Output: None
*/
2020-06-17 07:23:10 +00:00
#ifdef _WIN32
EXPORT void CALL DllConfig(void * hParent)
2020-06-16 06:41:01 +00:00
{
if (g_InputPlugin != nullptr)
{
g_InputPlugin->UnlockMouse();
}
2020-06-17 07:23:10 +00:00
ConfigInput(hParent);
2020-06-16 06:41:01 +00:00
}
2020-06-17 07:23:10 +00:00
#endif
2020-06-16 06:41:01 +00:00
/*
2020-06-16 06:41:01 +00:00
Function: DllTest
Purpose: This function is optional function that is provided
to allow the user to test the DLL.
Input: A handle to the window that calls this function.
Output: None
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL DllTest(void * /*hParent*/)
{
}
/*
2020-06-16 06:41:01 +00:00
Function: GetDllInfo
Purpose: This function allows the emulator to gather information
about the DLL by filling in the PluginInfo structure.
Input: A pointer to a PLUGIN_INFO structure that needs to be
2020-06-16 06:41:01 +00:00
filled by the function. (see def above)
Output: None
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL GetDllInfo(PLUGIN_INFO * PluginInfo)
{
PluginInfo->Version = CONTROLLER_SPECS_VERSION;
PluginInfo->Type = PLUGIN_TYPE_CONTROLLER;
#ifdef _DEBUG
sprintf(PluginInfo->Name, "Project64 input plugin (Debug): %s", VER_FILE_VERSION_STR);
2020-06-16 06:41:01 +00:00
#else
sprintf(PluginInfo->Name, "Project64 input plugin: %s", VER_FILE_VERSION_STR);
2020-06-16 06:41:01 +00:00
#endif
PluginInfo->Reserved2 = true;
PluginInfo->Reserved1 = false;
2020-06-16 06:41:01 +00:00
}
/*
2020-06-16 06:41:01 +00:00
Function: GetKeys
Purpose: To get the current state of the controllers buttons.
Input: Controller number (0 to 3)
2020-06-16 06:41:01 +00:00
- A pointer to a BUTTONS structure to be filled with
the controller state.
Output: None
*/
EXPORT void CALL GetKeys(int32_t Control, BUTTONS * Keys)
2020-06-16 06:41:01 +00:00
{
g_InputPlugin->GetKeys(Control, Keys);
2020-06-16 06:41:01 +00:00
}
/*
Function: InitiateControllers
Purpose: This function initializes how each of the controllers
should be handled.
Input: A controller structure that needs to be filled for
the emulator to know how to handle each controller.
Output: None
*/
2020-06-23 07:47:46 +00:00
EXPORT void CALL InitiateControllers(CONTROL_INFO * ControlInfo)
2020-06-16 06:41:01 +00:00
{
2020-06-23 07:47:46 +00:00
if (g_InputPlugin != nullptr)
{
g_InputPlugin->InitiateControllers(ControlInfo);
}
2020-06-16 06:41:01 +00:00
}
/*
2020-06-16 06:41:01 +00:00
Function: ReadController
Purpose: To process the raw data in the PIF RAM that is about to
2020-06-16 06:41:01 +00:00
be read.
Input: Controller number (0 to 3) and -1 signaling end of
processing the PIF RAM.
2020-06-16 06:41:01 +00:00
- Pointer of data to be processed.
Output: None
Note: This function is only needed if the DLL is allowing raw
2020-06-16 06:41:01 +00:00
data.
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL ReadController(int /*Control*/, uint8_t * /*Command*/)
{
}
/*
2020-06-16 06:41:01 +00:00
Function: RomClosed
Purpose: This function is called when a ROM is closed.
Input: None
Output: None
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL RomClosed(void)
{
if (g_InputPlugin != nullptr)
{
g_InputPlugin->UnlockMouse();
}
2020-06-16 06:41:01 +00:00
}
/*
2020-06-16 06:41:01 +00:00
Function: RomOpen
Purpose: This function is called when a ROM is open. (from the
2020-06-16 06:41:01 +00:00
emulation thread)
Input: None
Output: None
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL RomOpen(void)
{
if (g_InputPlugin != nullptr)
{
g_InputPlugin->LockMouse();
}
}
/*
Function: EmulationPaused
Purpose: This function is called when the emulation is paused. (from the
emulation thread)
Input: None
Output: None
*/
EXPORT void CALL EmulationPaused(void)
{
if (g_InputPlugin != nullptr)
{
g_InputPlugin->UnlockMouse();
}
2020-06-16 06:41:01 +00:00
}
/*
2020-06-16 06:41:01 +00:00
Function: WM_KeyDown
Purpose: To pass the WM_KeyDown message from the emulator to the
2020-06-16 06:41:01 +00:00
plugin.
Input: wParam and lParam of the WM_KEYDOWN message.
Output: None
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL WM_KeyDown(uint32_t /*wParam*/, uint32_t /*lParam*/)
{
}
/*
2020-06-16 06:41:01 +00:00
Function: WM_KeyUp
Purpose: To pass the WM_KEYUP message from the emulator to the
2020-06-16 06:41:01 +00:00
plugin.
Input: wParam and lParam of the WM_KEYDOWN message.
Output: None
*/
2020-06-16 06:41:01 +00:00
EXPORT void CALL WM_KeyUp(uint32_t /*wParam*/, uint32_t /*lParam*/)
{
}
/*
Function: WM_KillFocus
Purpose: To pass the WM_KILLFOCUS message from the emulator to the
plugin.
Input: wParam and lParam of the WM_KILLFOCUS message.
Output: None
*/
EXPORT void CALL WM_KillFocus(uint32_t /*wParam*/, uint32_t /*lParam*/)
{
if (g_InputPlugin != nullptr)
{
g_InputPlugin->UnlockMouse();
}
}
2020-06-16 07:40:03 +00:00
EXPORT void CALL PluginLoaded(void)
{
SetupInputSettings();
2020-06-23 07:47:46 +00:00
}
#include <Windows.h>
extern "C" int WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID /*lpReserved*/)
{
if (fdwReason == DLL_PROCESS_ATTACH)
{
g_InputPlugin = new CProject64Input(hinst);
}
else if (fdwReason == DLL_PROCESS_DETACH)
{
delete g_InputPlugin;
2021-04-12 11:35:39 +00:00
g_InputPlugin = nullptr;
2020-06-23 07:47:46 +00:00
}
return TRUE;
}