2015-07-01 23:17:14 -04:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
#include "../Core/MessageManager.h"
|
|
|
|
#include "../Core/Console.h"
|
|
|
|
#include "../Core/GameServer.h"
|
|
|
|
#include "../Core/GameClient.h"
|
|
|
|
#include "../Core/ClientConnectionData.h"
|
|
|
|
#include "../Core/SaveStateManager.h"
|
2015-07-05 19:05:33 -04:00
|
|
|
#include "../Core/CheatManager.h"
|
2015-07-17 20:58:57 -04:00
|
|
|
#include "../Core/EmulationSettings.h"
|
2015-07-23 23:16:31 -04:00
|
|
|
#include "../Core/VideoDecoder.h"
|
2015-12-26 17:11:00 -05:00
|
|
|
#include "../Core/AutoRomTest.h"
|
2016-01-28 20:47:16 -05:00
|
|
|
#include "../Core/FDS.h"
|
2016-04-30 20:08:53 -04:00
|
|
|
#include "../Core/VsControlManager.h"
|
2016-06-05 14:36:20 -04:00
|
|
|
#include "../Core/SoundMixer.h"
|
2016-06-17 20:53:05 -04:00
|
|
|
#include "../Core/RomLoader.h"
|
2016-06-25 20:46:54 -04:00
|
|
|
#include "../Core/NsfMapper.h"
|
2016-12-11 10:56:23 -05:00
|
|
|
#include "../Core/IRenderingDevice.h"
|
|
|
|
#include "../Core/IAudioDevice.h"
|
2016-12-29 21:19:13 -05:00
|
|
|
#include "../Utilities/AviWriter.h"
|
2015-07-01 23:17:14 -04:00
|
|
|
|
2016-12-11 10:56:23 -05:00
|
|
|
#ifdef WIN32
|
|
|
|
#include "../Windows/Renderer.h"
|
|
|
|
#include "../Windows/SoundManager.h"
|
|
|
|
#include "../Windows/WindowsKeyManager.h"
|
|
|
|
#else
|
2016-12-11 16:39:11 -05:00
|
|
|
#include "../Linux/SdlRenderer.h"
|
|
|
|
#include "../Linux/SdlSoundManager.h"
|
|
|
|
#include "../Linux/LinuxKeyManager.h"
|
2016-12-11 10:56:23 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
IRenderingDevice *_renderer = nullptr;
|
|
|
|
IAudioDevice *_soundManager = nullptr;
|
2016-07-16 16:25:57 -04:00
|
|
|
IKeyManager *_keyManager = nullptr;
|
2016-12-11 10:56:23 -05:00
|
|
|
void* _windowHandle = nullptr;
|
|
|
|
void* _viewerHandle = nullptr;
|
2015-12-26 17:11:00 -05:00
|
|
|
string _returnString;
|
2016-06-19 16:54:34 -04:00
|
|
|
string _logString;
|
2015-12-26 17:11:00 -05:00
|
|
|
AutoRomTest *_autoRomTest = nullptr;
|
2015-07-01 23:17:14 -04:00
|
|
|
|
|
|
|
typedef void (__stdcall *NotificationListenerCallback)(int);
|
|
|
|
|
|
|
|
namespace InteropEmu {
|
|
|
|
class InteropNotificationListener : public INotificationListener
|
|
|
|
{
|
|
|
|
NotificationListenerCallback _callback;
|
|
|
|
public:
|
|
|
|
InteropNotificationListener(NotificationListenerCallback callback)
|
|
|
|
{
|
|
|
|
_callback = callback;
|
|
|
|
}
|
|
|
|
|
2015-12-26 17:11:00 -05:00
|
|
|
void ProcessNotification(ConsoleNotificationType type, void* parameter)
|
2015-07-01 23:17:14 -04:00
|
|
|
{
|
|
|
|
_callback((int)type);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-17 20:53:05 -04:00
|
|
|
struct RomInfo
|
|
|
|
{
|
|
|
|
const char* RomName;
|
|
|
|
uint32_t Crc32;
|
2016-07-10 09:05:41 -04:00
|
|
|
uint32_t PrgCrc32;
|
2016-06-17 20:53:05 -04:00
|
|
|
};
|
|
|
|
|
2015-07-01 23:17:14 -04:00
|
|
|
extern "C" {
|
2016-01-16 19:33:10 -05:00
|
|
|
DllExport bool __stdcall TestDll()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-02-08 23:23:31 -05:00
|
|
|
DllExport uint32_t __stdcall GetMesenVersion() { return EmulationSettings::GetMesenVersion(); }
|
|
|
|
|
2016-12-11 10:56:23 -05:00
|
|
|
DllExport void __stdcall InitializeEmu(const char* homeFolder, void *windowHandle, void *viewerHandle, bool noAudio, bool noVideo, bool noInput)
|
2015-07-01 23:17:14 -04:00
|
|
|
{
|
2015-07-05 19:21:49 -04:00
|
|
|
FolderUtilities::SetHomeFolder(homeFolder);
|
|
|
|
|
2016-12-11 10:56:23 -05:00
|
|
|
if(windowHandle != nullptr && viewerHandle != nullptr) {
|
2015-08-23 11:45:13 -04:00
|
|
|
_windowHandle = windowHandle;
|
2016-12-11 10:56:23 -05:00
|
|
|
_viewerHandle = viewerHandle;
|
2015-07-01 23:17:14 -04:00
|
|
|
|
2016-07-23 15:28:52 -04:00
|
|
|
if(!noVideo) {
|
2016-12-11 10:56:23 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
_renderer = new NES::Renderer((HWND)_viewerHandle);
|
|
|
|
#else
|
|
|
|
_renderer = new SdlRenderer(_viewerHandle);
|
|
|
|
#endif
|
2016-07-23 15:28:52 -04:00
|
|
|
}
|
2015-07-10 21:07:24 -04:00
|
|
|
|
2016-07-23 15:28:52 -04:00
|
|
|
if(!noAudio) {
|
2016-12-11 10:56:23 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
_soundManager = new SoundManager((HWND)_windowHandle);
|
|
|
|
#else
|
|
|
|
_soundManager = new SdlSoundManager();
|
|
|
|
#endif
|
2016-07-23 15:28:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!noInput) {
|
2016-12-11 10:56:23 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
_keyManager = new WindowsKeyManager((HWND)_windowHandle);
|
|
|
|
#else
|
2016-12-11 16:39:11 -05:00
|
|
|
_keyManager = new LinuxKeyManager();
|
2016-12-11 10:56:23 -05:00
|
|
|
#endif
|
|
|
|
|
2016-07-23 15:28:52 -04:00
|
|
|
ControlManager::RegisterKeyManager(_keyManager);
|
|
|
|
}
|
2015-07-10 21:07:24 -04:00
|
|
|
}
|
2015-07-01 23:17:14 -04:00
|
|
|
}
|
|
|
|
|
2016-02-14 12:58:35 -05:00
|
|
|
DllExport bool __stdcall IsRunning() { return Console::IsRunning(); }
|
|
|
|
|
2016-08-20 22:07:56 -04:00
|
|
|
DllExport void __stdcall LoadROM(char* filename, int32_t archiveFileIndex, char* ipsFile) { Console::LoadROM(filename, nullptr, archiveFileIndex, ipsFile); }
|
2016-12-09 12:49:17 -05:00
|
|
|
DllExport void __stdcall AddKnownGameFolder(char* folder) { FolderUtilities::AddKnownGameFolder(folder); }
|
2015-07-05 22:23:44 -04:00
|
|
|
|
2016-06-17 20:53:05 -04:00
|
|
|
DllExport const char* __stdcall GetArchiveRomList(char* filename) {
|
|
|
|
std::ostringstream out;
|
|
|
|
for(string romName : RomLoader::GetArchiveRomList(filename)) {
|
2016-06-25 20:46:54 -04:00
|
|
|
out << romName << "[!|!]";
|
2016-06-17 20:53:05 -04:00
|
|
|
}
|
|
|
|
_returnString = out.str();
|
|
|
|
return _returnString.c_str();
|
|
|
|
}
|
|
|
|
|
2016-02-05 23:14:27 -05:00
|
|
|
DllExport void __stdcall SetControllerType(uint32_t port, ControllerType type) { EmulationSettings::SetControllerType(port, type); }
|
|
|
|
DllExport void __stdcall SetControllerKeys(uint32_t port, KeyMappingSet mappings) { EmulationSettings::SetControllerKeys(port, mappings); }
|
|
|
|
DllExport void __stdcall SetExpansionDevice(ExpansionPortDevice device) { EmulationSettings::SetExpansionDevice(device); }
|
|
|
|
DllExport void __stdcall SetConsoleType(ConsoleType type) { EmulationSettings::SetConsoleType(type); }
|
2016-09-02 19:36:37 -04:00
|
|
|
DllExport void __stdcall SetEmulatorKeys(EmulatorKeyMappingSet mappings) { EmulationSettings::SetEmulatorKeys(mappings); }
|
2016-07-09 15:58:49 -04:00
|
|
|
|
|
|
|
DllExport ControllerType __stdcall GetControllerType(uint32_t port) { return EmulationSettings::GetControllerType(port); }
|
|
|
|
DllExport ExpansionPortDevice GetExpansionDevice() { return EmulationSettings::GetExpansionDevice(); }
|
|
|
|
DllExport ConsoleType __stdcall GetConsoleType() { return EmulationSettings::GetConsoleType(); }
|
2016-02-05 23:14:27 -05:00
|
|
|
|
2016-02-14 12:58:35 -05:00
|
|
|
DllExport bool __stdcall HasZapper() { return EmulationSettings::HasZapper(); }
|
2016-07-09 15:58:49 -04:00
|
|
|
DllExport bool __stdcall HasFourScore() { return EmulationSettings::CheckFlag(EmulationFlags::HasFourScore); }
|
2016-02-14 12:58:35 -05:00
|
|
|
DllExport bool __stdcall HasArkanoidPaddle() { return EmulationSettings::HasArkanoidPaddle(); }
|
|
|
|
|
|
|
|
DllExport void __stdcall SetMousePosition(double x, double y) { ControlManager::SetMousePosition(x, y); }
|
2015-07-10 21:07:24 -04:00
|
|
|
|
2016-07-23 15:28:52 -04:00
|
|
|
DllExport void __stdcall UpdateInputDevices() { if(_keyManager) { _keyManager->UpdateDevices(); } }
|
2015-07-10 21:07:24 -04:00
|
|
|
DllExport uint32_t __stdcall GetPressedKey() { return ControlManager::GetPressedKey(); }
|
2016-07-28 17:45:18 -04:00
|
|
|
DllExport void __stdcall SetKeyState(int32_t scanCode, bool state) { if(_keyManager) { _keyManager->SetKeyState(scanCode, state); } }
|
|
|
|
DllExport void __stdcall ResetKeyState() { if(_keyManager) { _keyManager->ResetKeyState(); } }
|
2015-07-11 08:27:22 -04:00
|
|
|
DllExport const char* __stdcall GetKeyName(uint32_t keyCode)
|
|
|
|
{
|
|
|
|
_returnString = ControlManager::GetKeyName(keyCode);
|
|
|
|
return _returnString.c_str();
|
|
|
|
}
|
2016-02-05 23:14:27 -05:00
|
|
|
DllExport uint32_t __stdcall GetKeyCode(char* keyName) {
|
|
|
|
if(keyName) {
|
|
|
|
return ControlManager::GetKeyCode(keyName);
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2015-07-10 21:07:24 -04:00
|
|
|
|
2015-07-01 23:17:14 -04:00
|
|
|
DllExport void __stdcall Run()
|
|
|
|
{
|
|
|
|
if(Console::GetInstance()) {
|
|
|
|
Console::GetInstance()->Run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-17 20:58:57 -04:00
|
|
|
DllExport void __stdcall Resume() { EmulationSettings::ClearFlags(EmulationFlags::Paused); }
|
2016-01-16 19:33:10 -05:00
|
|
|
DllExport bool __stdcall IsPaused() { return EmulationSettings::CheckFlag(EmulationFlags::Paused); }
|
2015-07-01 23:17:14 -04:00
|
|
|
DllExport void __stdcall Stop()
|
|
|
|
{
|
|
|
|
if(Console::GetInstance()) {
|
|
|
|
Console::GetInstance()->Stop();
|
|
|
|
}
|
|
|
|
}
|
2016-06-17 20:53:05 -04:00
|
|
|
|
|
|
|
DllExport const void __stdcall GetRomInfo(RomInfo &romInfo, char* filename, int32_t archiveFileIndex)
|
2015-07-05 19:05:33 -04:00
|
|
|
{
|
2016-06-17 20:53:05 -04:00
|
|
|
string romPath = filename;
|
|
|
|
if(romPath.empty()) {
|
|
|
|
_returnString = Console::GetRomName();
|
|
|
|
romInfo.RomName = _returnString.c_str();
|
|
|
|
romInfo.Crc32 = Console::GetCrc32();
|
2016-07-10 09:05:41 -04:00
|
|
|
romInfo.PrgCrc32 = Console::GetPrgCrc32();
|
2016-06-17 20:53:05 -04:00
|
|
|
} else {
|
|
|
|
RomLoader romLoader;
|
|
|
|
if(romLoader.LoadFile(filename, nullptr, "", archiveFileIndex)) {
|
|
|
|
RomData romData = romLoader.GetRomData();
|
|
|
|
|
|
|
|
_returnString = romData.RomName;
|
|
|
|
romInfo.RomName = _returnString.c_str();
|
|
|
|
romInfo.Crc32 = romData.Crc32;
|
2016-07-10 09:05:41 -04:00
|
|
|
romInfo.PrgCrc32 = romData.PrgCrc32;
|
2016-06-26 10:43:52 -04:00
|
|
|
} else {
|
|
|
|
_returnString = "";
|
|
|
|
romInfo.RomName = _returnString.c_str();
|
|
|
|
romInfo.Crc32 = 0;
|
2016-07-10 09:05:41 -04:00
|
|
|
romInfo.PrgCrc32 = 0;
|
2016-06-17 20:53:05 -04:00
|
|
|
}
|
|
|
|
}
|
2015-07-05 19:05:33 -04:00
|
|
|
}
|
|
|
|
|
2015-07-01 23:17:14 -04:00
|
|
|
DllExport void __stdcall Reset() { Console::Reset(); }
|
2016-07-10 18:22:37 -04:00
|
|
|
DllExport void __stdcall ResetLagCounter() { Console::ResetLagCounter(); }
|
2015-07-01 23:17:14 -04:00
|
|
|
|
2016-02-06 15:33:45 -05:00
|
|
|
DllExport void __stdcall StartServer(uint16_t port, char* hostPlayerName) { GameServer::StartServer(port, hostPlayerName); }
|
2015-07-01 23:17:14 -04:00
|
|
|
DllExport void __stdcall StopServer() { GameServer::StopServer(); }
|
2016-01-16 19:33:10 -05:00
|
|
|
DllExport bool __stdcall IsServerRunning() { return GameServer::Started(); }
|
2015-07-01 23:17:14 -04:00
|
|
|
|
2016-09-03 10:44:01 -04:00
|
|
|
DllExport void __stdcall Connect(char* host, uint16_t port, char* playerName, bool spectator)
|
2015-07-01 23:17:14 -04:00
|
|
|
{
|
|
|
|
shared_ptr<ClientConnectionData> connectionData(new ClientConnectionData(
|
|
|
|
host,
|
|
|
|
port,
|
|
|
|
playerName,
|
2016-02-06 15:33:45 -05:00
|
|
|
spectator
|
|
|
|
));
|
2015-07-01 23:17:14 -04:00
|
|
|
|
|
|
|
GameClient::Connect(connectionData);
|
|
|
|
}
|
|
|
|
|
|
|
|
DllExport void __stdcall Disconnect() { GameClient::Disconnect(); }
|
2016-01-16 19:33:10 -05:00
|
|
|
DllExport bool __stdcall IsConnected() { return GameClient::Connected(); }
|
2016-02-06 15:33:45 -05:00
|
|
|
DllExport ControllerType __stdcall NetPlayGetControllerType(int32_t port) { return EmulationSettings::GetControllerType(port); }
|
|
|
|
|
|
|
|
DllExport int32_t __stdcall NetPlayGetAvailableControllers()
|
|
|
|
{
|
|
|
|
if(GameServer::Started()) {
|
|
|
|
return GameServer::GetAvailableControllers();
|
|
|
|
} else {
|
|
|
|
return GameClient::GetAvailableControllers();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DllExport void __stdcall NetPlaySelectController(int32_t port)
|
|
|
|
{
|
|
|
|
if(GameServer::Started()) {
|
|
|
|
return GameServer::SetHostControllerPort(port);
|
|
|
|
} else {
|
|
|
|
return GameClient::SelectController(port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DllExport int32_t __stdcall NetPlayGetControllerPort()
|
|
|
|
{
|
|
|
|
if(GameServer::Started()) {
|
|
|
|
return GameServer::GetHostControllerPort();
|
|
|
|
} else {
|
|
|
|
return GameClient::GetControllerPort();
|
|
|
|
}
|
|
|
|
}
|
2015-07-01 23:17:14 -04:00
|
|
|
|
|
|
|
DllExport void __stdcall Pause()
|
|
|
|
{
|
|
|
|
if(!IsConnected()) {
|
2015-07-17 20:58:57 -04:00
|
|
|
EmulationSettings::SetFlags(EmulationFlags::Paused);
|
2015-07-01 23:17:14 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DllExport void __stdcall Release()
|
|
|
|
{
|
2015-07-20 23:20:41 -04:00
|
|
|
Console::Release();
|
2015-07-01 23:17:14 -04:00
|
|
|
GameServer::StopServer();
|
|
|
|
GameClient::Disconnect();
|
|
|
|
MessageManager::RegisterMessageManager(nullptr);
|
2016-07-23 15:28:52 -04:00
|
|
|
|
|
|
|
if(_renderer) {
|
|
|
|
delete _renderer;
|
|
|
|
_renderer = nullptr;
|
|
|
|
}
|
|
|
|
if(_soundManager) {
|
|
|
|
delete _soundManager;
|
|
|
|
_soundManager = nullptr;
|
|
|
|
}
|
2016-12-27 15:04:20 -05:00
|
|
|
|
|
|
|
VideoDecoder::GetInstance()->StopThread();
|
|
|
|
VideoDecoder::Release();
|
2015-07-01 23:17:14 -04:00
|
|
|
}
|
|
|
|
|
2016-06-17 20:53:05 -04:00
|
|
|
DllExport void __stdcall TakeScreenshot() { VideoDecoder::GetInstance()->TakeScreenshot(); }
|
2015-07-01 23:17:14 -04:00
|
|
|
|
|
|
|
DllExport INotificationListener* __stdcall RegisterNotificationCallback(NotificationListenerCallback callback)
|
|
|
|
{
|
|
|
|
INotificationListener* listener = new InteropNotificationListener(callback);
|
|
|
|
MessageManager::RegisterNotificationListener(listener);
|
|
|
|
return listener;
|
|
|
|
}
|
|
|
|
DllExport void __stdcall UnregisterNotificationCallback(INotificationListener *listener) { MessageManager::UnregisterNotificationListener(listener); }
|
|
|
|
|
2016-02-19 13:05:04 -05:00
|
|
|
DllExport void __stdcall DisplayMessage(char* title, char* message, char* param1) { MessageManager::DisplayMessage(title, message, param1 ? param1 : ""); }
|
2016-06-19 16:54:34 -04:00
|
|
|
DllExport const char* __stdcall GetLog()
|
|
|
|
{
|
|
|
|
_logString = MessageManager::GetLog();
|
|
|
|
return _logString.c_str();
|
|
|
|
}
|
2015-07-05 19:05:33 -04:00
|
|
|
|
2015-07-01 23:17:14 -04:00
|
|
|
DllExport void __stdcall SaveState(uint32_t stateIndex) { SaveStateManager::SaveState(stateIndex); }
|
|
|
|
DllExport uint32_t __stdcall LoadState(uint32_t stateIndex) { return SaveStateManager::LoadState(stateIndex); }
|
|
|
|
DllExport int64_t __stdcall GetStateInfo(uint32_t stateIndex) { return SaveStateManager::GetStateInfo(stateIndex); }
|
|
|
|
|
2015-07-11 08:27:22 -04:00
|
|
|
DllExport void __stdcall MoviePlay(char* filename) { Movie::Play(filename); }
|
2015-08-02 19:27:02 -04:00
|
|
|
DllExport void __stdcall MovieRecord(char* filename, bool reset) { Movie::Record(filename, reset); }
|
2015-07-01 23:17:14 -04:00
|
|
|
DllExport void __stdcall MovieStop() { Movie::Stop(); }
|
2016-01-16 19:33:10 -05:00
|
|
|
DllExport bool __stdcall MoviePlaying() { return Movie::Playing(); }
|
|
|
|
DllExport bool __stdcall MovieRecording() { return Movie::Recording(); }
|
2015-07-05 19:05:33 -04:00
|
|
|
|
2017-01-01 10:15:42 -05:00
|
|
|
DllExport void __stdcall AviRecord(char* filename, VideoCodec codec, uint32_t compressionLevel) { VideoDecoder::GetInstance()->StartRecording(filename, codec, compressionLevel); }
|
2016-12-29 21:19:13 -05:00
|
|
|
DllExport void __stdcall AviStop() { VideoDecoder::GetInstance()->StopRecording(); }
|
|
|
|
DllExport bool __stdcall AviIsRecording() { return VideoDecoder::GetInstance()->IsRecording(); }
|
|
|
|
|
2016-06-05 14:36:20 -04:00
|
|
|
DllExport void __stdcall WaveRecord(char* filename) { SoundMixer::StartRecording(filename); }
|
|
|
|
DllExport void __stdcall WaveStop() { SoundMixer::StopRecording(); }
|
|
|
|
DllExport bool __stdcall WaveIsRecording() { return SoundMixer::IsRecording(); }
|
|
|
|
|
2016-01-16 19:33:10 -05:00
|
|
|
DllExport int32_t __stdcall RomTestRun(char* filename)
|
2015-12-26 17:11:00 -05:00
|
|
|
{
|
|
|
|
AutoRomTest romTest;
|
|
|
|
return romTest.Run(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
DllExport void __stdcall RomTestRecord(char* filename, bool reset)
|
|
|
|
{
|
|
|
|
if(_autoRomTest) {
|
|
|
|
delete _autoRomTest;
|
|
|
|
}
|
|
|
|
_autoRomTest = new AutoRomTest();
|
|
|
|
_autoRomTest->Record(filename, reset);
|
|
|
|
}
|
|
|
|
|
2015-12-27 09:13:52 -05:00
|
|
|
DllExport void __stdcall RomTestRecordFromMovie(char* testFilename, char* movieFilename)
|
|
|
|
{
|
|
|
|
_autoRomTest = new AutoRomTest();
|
|
|
|
_autoRomTest->RecordFromMovie(testFilename, movieFilename);
|
|
|
|
}
|
|
|
|
|
|
|
|
DllExport void __stdcall RomTestRecordFromTest(char* newTestFilename, char* existingTestFilename)
|
|
|
|
{
|
|
|
|
_autoRomTest = new AutoRomTest();
|
|
|
|
_autoRomTest->RecordFromTest(newTestFilename, existingTestFilename);
|
|
|
|
}
|
|
|
|
|
2015-12-26 17:11:00 -05:00
|
|
|
DllExport void __stdcall RomTestStop()
|
|
|
|
{
|
|
|
|
if(_autoRomTest) {
|
|
|
|
_autoRomTest->Stop();
|
|
|
|
delete _autoRomTest;
|
|
|
|
_autoRomTest = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-16 19:33:10 -05:00
|
|
|
DllExport bool __stdcall RomTestRecording() { return _autoRomTest != nullptr; }
|
2015-12-26 17:11:00 -05:00
|
|
|
|
2016-08-28 18:58:22 -04:00
|
|
|
DllExport void __stdcall SetCheats(CheatInfo cheats[], uint32_t length) { CheatManager::SetCheats(cheats, length); }
|
2015-07-17 20:58:57 -04:00
|
|
|
|
2016-01-06 20:34:45 -05:00
|
|
|
DllExport void __stdcall SetFlags(EmulationFlags flags) { EmulationSettings::SetFlags(flags); }
|
|
|
|
DllExport void __stdcall ClearFlags(EmulationFlags flags) { EmulationSettings::ClearFlags(flags); }
|
2016-08-24 17:32:22 -04:00
|
|
|
DllExport void __stdcall SetRamPowerOnState(RamPowerOnState state) { EmulationSettings::SetRamPowerOnState(state); }
|
2016-02-19 13:05:04 -05:00
|
|
|
DllExport void __stdcall SetDisplayLanguage(Language lang) { EmulationSettings::SetDisplayLanguage(lang); }
|
2015-07-17 20:58:57 -04:00
|
|
|
DllExport void __stdcall SetChannelVolume(uint32_t channel, double volume) { EmulationSettings::SetChannelVolume((AudioChannel)channel, volume); }
|
2016-12-09 21:23:20 -05:00
|
|
|
DllExport void __stdcall SetChannelPanning(uint32_t channel, double panning) { EmulationSettings::SetChannelPanning((AudioChannel)channel, panning); }
|
2016-01-14 01:21:09 -05:00
|
|
|
DllExport void __stdcall SetMasterVolume(double volume) { EmulationSettings::SetMasterVolume(volume); }
|
2016-01-14 19:33:16 -05:00
|
|
|
DllExport void __stdcall SetSampleRate(uint32_t sampleRate) { EmulationSettings::SetSampleRate(sampleRate); }
|
2015-07-17 20:58:57 -04:00
|
|
|
DllExport void __stdcall SetAudioLatency(uint32_t msLatency) { EmulationSettings::SetAudioLatency(msLatency); }
|
2016-02-21 15:31:39 -05:00
|
|
|
DllExport void __stdcall SetStereoFilter(StereoFilter stereoFilter) { EmulationSettings::SetStereoFilter(stereoFilter); }
|
|
|
|
DllExport void __stdcall SetStereoDelay(int32_t delay) { EmulationSettings::SetStereoDelay(delay); }
|
|
|
|
DllExport void __stdcall SetStereoPanningAngle(double angle) { EmulationSettings::SetStereoPanningAngle(angle); }
|
|
|
|
DllExport void __stdcall SetReverbParameters(double strength, double delay) { EmulationSettings::SetReverbParameters(strength, delay); }
|
2016-12-09 14:47:34 -05:00
|
|
|
DllExport void __stdcall SetCrossFeedRatio(uint32_t ratio) { EmulationSettings::SetCrossFeedRatio(ratio); }
|
2016-02-21 15:31:39 -05:00
|
|
|
|
2015-07-21 23:05:27 -04:00
|
|
|
DllExport void __stdcall SetNesModel(uint32_t model) { EmulationSettings::SetNesModel((NesModel)model); }
|
2015-07-23 23:16:31 -04:00
|
|
|
DllExport void __stdcall SetOverscanDimensions(uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) { EmulationSettings::SetOverscanDimensions(left, right, top, bottom); }
|
2016-09-11 08:29:34 -04:00
|
|
|
DllExport void __stdcall SetEmulationSpeed(uint32_t emulationSpeed) { EmulationSettings::SetEmulationSpeed(emulationSpeed, true); }
|
|
|
|
DllExport void __stdcall IncreaseEmulationSpeed() { EmulationSettings::IncreaseEmulationSpeed(); }
|
|
|
|
DllExport void __stdcall DecreaseEmulationSpeed() { EmulationSettings::DecreaseEmulationSpeed(); }
|
|
|
|
DllExport uint32_t __stdcall GetEmulationSpeed() { return EmulationSettings::GetEmulationSpeed(true); }
|
2016-09-02 19:36:37 -04:00
|
|
|
DllExport void __stdcall SetTurboSpeed(uint32_t turboSpeed) { EmulationSettings::SetTurboSpeed(turboSpeed); }
|
2016-06-12 18:11:31 -04:00
|
|
|
DllExport void __stdcall SetOverclockRate(uint32_t overclockRate, bool adjustApu) { EmulationSettings::SetOverclockRate(overclockRate, adjustApu); }
|
2016-06-21 18:58:22 -04:00
|
|
|
DllExport void __stdcall SetPpuNmiConfig(uint32_t extraScanlinesBeforeNmi, uint32_t extraScanlinesAfterNmi) { EmulationSettings::SetPpuNmiConfig(extraScanlinesBeforeNmi, extraScanlinesAfterNmi); }
|
2016-02-07 13:05:32 -05:00
|
|
|
DllExport void __stdcall SetVideoScale(double scale) { EmulationSettings::SetVideoScale(scale); }
|
2017-02-18 13:41:16 -05:00
|
|
|
DllExport void __stdcall SetVideoAspectRatio(VideoAspectRatio aspectRatio, double customRatio) { EmulationSettings::SetVideoAspectRatio(aspectRatio, customRatio); }
|
2016-01-05 21:28:38 -05:00
|
|
|
DllExport void __stdcall SetVideoFilter(VideoFilterType filter) { EmulationSettings::SetVideoFilterType(filter); }
|
2016-05-24 19:45:58 -04:00
|
|
|
DllExport void __stdcall SetVideoResizeFilter(VideoResizeFilter filter) { EmulationSettings::SetVideoResizeFilter(filter); }
|
2016-01-17 14:21:31 -05:00
|
|
|
DllExport void __stdcall GetRgbPalette(uint32_t *paletteBuffer) { EmulationSettings::GetRgbPalette(paletteBuffer); }
|
|
|
|
DllExport void __stdcall SetRgbPalette(uint32_t *paletteBuffer) { EmulationSettings::SetRgbPalette(paletteBuffer); }
|
2016-05-26 22:32:20 -04:00
|
|
|
DllExport void __stdcall SetPictureSettings(double brightness, double contrast, double saturation, double hue, double scanlineIntensity) { EmulationSettings::SetPictureSettings(brightness, contrast, saturation, hue, scanlineIntensity); }
|
2016-12-27 15:04:20 -05:00
|
|
|
DllExport void __stdcall SetNtscFilterSettings(double artifacts, double bleed, double fringing, double gamma, double resolution, double sharpness, bool mergeFields, double yFilterLength, double iFilterLength, double qFilterLength) { EmulationSettings::SetNtscFilterSettings(artifacts, bleed, fringing, gamma, resolution, sharpness, mergeFields, yFilterLength, iFilterLength, qFilterLength); }
|
2015-07-17 20:58:57 -04:00
|
|
|
|
2016-07-19 16:30:18 -04:00
|
|
|
DllExport void __stdcall SetInputDisplaySettings(uint8_t visiblePorts, InputDisplayPosition displayPosition, bool displayHorizontally) { EmulationSettings::SetInputDisplaySettings(visiblePorts, displayPosition, displayHorizontally); }
|
2016-08-31 20:54:38 -04:00
|
|
|
DllExport void __stdcall SetAutoSaveOptions(uint32_t delayInMinutes, bool showMessage) { EmulationSettings::SetAutoSaveOptions(delayInMinutes, showMessage); }
|
2016-07-19 16:30:18 -04:00
|
|
|
|
2016-01-17 22:16:20 -05:00
|
|
|
DllExport const char* __stdcall GetAudioDevices()
|
|
|
|
{
|
2016-07-23 15:28:52 -04:00
|
|
|
_returnString = _soundManager ? _soundManager->GetAvailableDevices() : "";
|
2016-01-17 22:16:20 -05:00
|
|
|
return _returnString.c_str();
|
|
|
|
}
|
|
|
|
|
2016-07-23 15:28:52 -04:00
|
|
|
DllExport void __stdcall SetAudioDevice(char* audioDevice) { if(_soundManager) { _soundManager->SetAudioDevice(audioDevice); } }
|
2016-01-17 22:16:20 -05:00
|
|
|
|
2016-02-07 13:05:32 -05:00
|
|
|
DllExport void __stdcall GetScreenSize(ScreenSize &size, bool ignoreScale) { VideoDecoder::GetInstance()->GetScreenSize(size, ignoreScale); }
|
2016-01-28 20:47:16 -05:00
|
|
|
|
2016-06-25 20:46:54 -04:00
|
|
|
//NSF functions
|
|
|
|
DllExport bool __stdcall IsNsf() { return NsfMapper::GetInstance() != nullptr; }
|
|
|
|
DllExport void __stdcall NsfSelectTrack(uint8_t trackNumber) {
|
|
|
|
if(NsfMapper::GetInstance()) {
|
|
|
|
NsfMapper::GetInstance()->SelectTrack(trackNumber);
|
|
|
|
}
|
|
|
|
}
|
2016-06-26 16:31:29 -04:00
|
|
|
DllExport int32_t __stdcall NsfGetCurrentTrack() {
|
2016-06-25 20:46:54 -04:00
|
|
|
if(NsfMapper::GetInstance()) {
|
|
|
|
return NsfMapper::GetInstance()->GetCurrentTrack();
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
DllExport void __stdcall NsfGetHeader(NsfHeader* header) {
|
|
|
|
if(NsfMapper::GetInstance()) {
|
|
|
|
*header = NsfMapper::GetInstance()->GetNsfHeader();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DllExport void __stdcall NsfSetNsfConfig(int32_t autoDetectSilenceDelay, int32_t moveToNextTrackTime, bool disableApuIrqs) {
|
|
|
|
EmulationSettings::SetNsfConfig(autoDetectSilenceDelay, moveToNextTrackTime, disableApuIrqs);
|
|
|
|
}
|
|
|
|
|
2016-01-28 20:47:16 -05:00
|
|
|
//FDS functions
|
|
|
|
DllExport uint32_t __stdcall FdsGetSideCount() { return FDS::GetSideCount(); }
|
|
|
|
DllExport void __stdcall FdsEjectDisk() { FDS::EjectDisk(); }
|
|
|
|
DllExport void __stdcall FdsInsertDisk(uint32_t diskNumber) { FDS::InsertDisk(diskNumber); }
|
|
|
|
DllExport void __stdcall FdsSwitchDiskSide() { FDS::SwitchDiskSide(); }
|
2016-04-30 20:08:53 -04:00
|
|
|
|
|
|
|
//VS System functions
|
|
|
|
DllExport bool __stdcall IsVsSystem() { return VsControlManager::GetInstance() != nullptr; }
|
|
|
|
DllExport void __stdcall VsInsertCoin(uint32_t port)
|
|
|
|
{
|
|
|
|
VsControlManager* vs = VsControlManager::GetInstance();
|
|
|
|
if(vs) {
|
|
|
|
vs->InsertCoin(port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-10 09:05:41 -04:00
|
|
|
DllExport void __stdcall VsSetGameConfig(PpuModel model, VsInputType inputType, uint8_t dipSwitches)
|
2016-04-30 20:08:53 -04:00
|
|
|
{
|
|
|
|
VsControlManager* vs = VsControlManager::GetInstance();
|
|
|
|
if(vs) {
|
|
|
|
EmulationSettings::SetPpuModel(model);
|
|
|
|
vs->SetDipSwitches(dipSwitches);
|
2016-07-10 09:05:41 -04:00
|
|
|
vs->SetInputType(inputType);
|
2016-04-30 20:08:53 -04:00
|
|
|
}
|
|
|
|
}
|
2015-07-01 23:17:14 -04:00
|
|
|
}
|
|
|
|
}
|