obs-websocket/src/obs-websocket.cpp

98 lines
2.6 KiB
C++
Raw Normal View History

2021-03-08 11:56:43 +00:00
#include <obs-module.h>
#include <obs-frontend-api.h>
#include <obs-data.h>
#include <QtCore/QTimer>
#include <QtWidgets/QAction>
#include <QtWidgets/QMainWindow>
#include <QTime>
2021-03-08 11:56:43 +00:00
#include "obs-websocket.h"
2021-04-27 02:59:50 +00:00
#include "Config.h"
#include "WebSocketServer.h"
2021-05-10 22:48:41 +00:00
#include "eventhandler/EventHandler.h"
2021-04-27 02:59:50 +00:00
#include "forms/SettingsDialog.h"
2021-03-08 11:56:43 +00:00
2021-04-27 23:41:10 +00:00
#include "plugin-macros.generated.h"
// Auto release definitions
2021-03-08 11:56:43 +00:00
void ___source_dummy_addref(obs_source_t*) {}
void ___sceneitem_dummy_addref(obs_sceneitem_t*) {}
void ___data_dummy_addref(obs_data_t*) {}
void ___data_array_dummy_addref(obs_data_array_t*) {}
void ___output_dummy_addref(obs_output_t*) {}
void ___data_item_dummy_addref(obs_data_item_t*) {}
void ___data_item_release(obs_data_item_t* dataItem)
{
2021-03-08 11:56:43 +00:00
obs_data_item_release(&dataItem);
}
2021-03-08 11:56:43 +00:00
OBS_DECLARE_MODULE()
OBS_MODULE_USE_DEFAULT_LOCALE("obs-websocket", "en-US")
2021-04-27 02:59:50 +00:00
ConfigPtr _config;
WebSocketServerPtr _webSocketServer;
2021-04-27 03:55:18 +00:00
SettingsDialog *_settingsDialog = nullptr;
2021-04-27 02:59:50 +00:00
bool obs_module_load(void)
{
2021-04-28 18:43:39 +00:00
blog(LOG_INFO, "[obs_module_load] you can haz websockets (Version: %s | RPC Version: %d)", OBS_WEBSOCKET_VERSION, OBS_WEBSOCKET_RPC_VERSION);
blog(LOG_INFO, "[obs_module_load] Qt version (compile-time): %s | Qt version (run-time): %s",
2021-03-08 11:56:43 +00:00
QT_VERSION_STR, qVersion());
// Randomize the random number generator
qsrand(QTime::currentTime().msec());
// Create the config object then load the parameters from storage
2021-04-27 03:55:18 +00:00
_config = ConfigPtr(new Config());
_config->Load();
_webSocketServer = WebSocketServerPtr(new WebSocketServer());
2021-04-27 03:55:18 +00:00
obs_frontend_push_ui_translation(obs_module_get_string);
QMainWindow* mainWindow = (QMainWindow*)obs_frontend_get_main_window();
_settingsDialog = new SettingsDialog(mainWindow);
obs_frontend_pop_ui_translation();
const char* menuActionText = obs_module_text("OBSWebSocket.Settings.DialogTitle");
QAction* menuAction = (QAction*)obs_frontend_add_tools_menu_qaction(menuActionText);
QObject::connect(menuAction, &QAction::triggered, [] { _settingsDialog->ToggleShowHide(); });
2021-03-08 11:56:43 +00:00
// Loading finished
2021-04-28 18:43:39 +00:00
blog(LOG_INFO, "[obs_module_load] Module loaded.");
2021-03-08 11:56:43 +00:00
2021-04-28 17:27:32 +00:00
if (_config->ServerEnabled)
_webSocketServer->Start();
2021-03-08 11:56:43 +00:00
return true;
}
void obs_module_unload()
{
2021-04-28 18:43:39 +00:00
blog(LOG_INFO, "[obs_module_unload] Shutting down...");
2021-04-28 17:27:32 +00:00
_config->FirstLoad = false;
_config->Save();
if (_webSocketServer->IsListening()) {
2021-04-28 18:43:39 +00:00
blog(LOG_INFO, "[obs_module_unload] WebSocket server is running. Stopping...");
_webSocketServer->Stop();
}
2021-04-27 03:55:18 +00:00
_config.reset();
2021-04-27 22:21:30 +00:00
_webSocketServer.reset();
2021-04-28 18:43:39 +00:00
blog(LOG_INFO, "[obs_module_unload] Finished shutting down.");
2021-04-27 02:59:50 +00:00
}
ConfigPtr GetConfig()
{
2021-04-27 02:59:50 +00:00
return _config;
}
WebSocketServerPtr GetWebSocketServer()
{
return _webSocketServer;
2021-04-27 21:52:48 +00:00
}