2013-11-07 15:45:03 -08:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2013-12-02 21:24:38 -08:00
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
2013-11-07 15:45:03 -08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2013-11-08 23:19:38 -08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2013-11-07 15:45:03 -08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-12-22 16:42:02 -08:00
|
|
|
#include <obs.hpp>
|
|
|
|
|
2013-12-29 08:17:00 -08:00
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
|
2013-11-23 22:38:52 -08:00
|
|
|
#include "obs-app.hpp"
|
2013-12-22 22:40:07 -08:00
|
|
|
#include "wx-wrappers.hpp"
|
2013-12-28 20:51:18 -08:00
|
|
|
#include "window-basic-settings.hpp"
|
|
|
|
#include "window-basic-main.hpp"
|
2013-12-29 07:54:06 -08:00
|
|
|
#include "window-namedialog.hpp"
|
|
|
|
using namespace std;
|
2013-11-22 15:20:52 -08:00
|
|
|
|
2013-12-28 04:33:16 -08:00
|
|
|
void OBSBasic::SceneAdded(obs_source_t source)
|
|
|
|
{
|
|
|
|
const char *name = obs_source_getname(source);
|
|
|
|
obs_scene_t scene = obs_scene_fromsource(source);
|
|
|
|
scenes->Append(wxString(name, wxConvUTF8), scene);
|
|
|
|
}
|
|
|
|
|
2013-12-28 21:29:13 -08:00
|
|
|
void OBSBasic::SceneRemoved(obs_source_t source)
|
|
|
|
{
|
|
|
|
const char *name = obs_source_getname(source);
|
|
|
|
|
|
|
|
int item = scenes->FindString(name);
|
2013-12-29 19:01:19 -08:00
|
|
|
if (item != wxNOT_FOUND) {
|
|
|
|
scenes->Delete(item);
|
2013-12-28 21:29:13 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-29 19:01:19 -08:00
|
|
|
item = sources->FindString(name);
|
|
|
|
if (item != wxNOT_FOUND)
|
|
|
|
sources->Delete(item);
|
2013-12-28 21:29:13 -08:00
|
|
|
}
|
|
|
|
|
2013-12-28 04:33:16 -08:00
|
|
|
void OBSBasic::SourceAdded(void *data, calldata_t params)
|
|
|
|
{
|
|
|
|
OBSBasic *window = (OBSBasic*)data;
|
|
|
|
|
|
|
|
obs_source_t source;
|
|
|
|
calldata_getptr(params, "source", (void**)&source);
|
|
|
|
|
|
|
|
obs_source_type type;
|
|
|
|
obs_source_gettype(source, &type, NULL);
|
|
|
|
|
|
|
|
if (type == SOURCE_SCENE)
|
|
|
|
window->SceneAdded(source);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBSBasic::SourceDestroyed(void *data, calldata_t params)
|
|
|
|
{
|
|
|
|
OBSBasic *window = (OBSBasic*)data;
|
|
|
|
|
2013-12-29 08:17:00 -08:00
|
|
|
obs_source_t source;
|
2013-12-28 04:33:16 -08:00
|
|
|
calldata_getptr(params, "source", (void**)&source);
|
|
|
|
|
2013-12-28 21:29:13 -08:00
|
|
|
obs_source_type type;
|
|
|
|
obs_source_gettype(source, &type, NULL);
|
|
|
|
|
|
|
|
if (type == SOURCE_SCENE)
|
|
|
|
window->SceneRemoved(source);
|
2013-12-28 04:33:16 -08:00
|
|
|
}
|
|
|
|
|
2013-12-22 22:40:07 -08:00
|
|
|
bool OBSBasic::Init()
|
|
|
|
{
|
|
|
|
if (!obs_startup())
|
|
|
|
return false;
|
|
|
|
if (!InitGraphics())
|
|
|
|
return false;
|
|
|
|
|
2013-12-28 04:33:16 -08:00
|
|
|
signal_handler_connect(obs_signalhandler(), "source-add",
|
|
|
|
OBSBasic::SourceAdded, this);
|
|
|
|
signal_handler_connect(obs_signalhandler(), "source-destroy",
|
|
|
|
OBSBasic::SourceDestroyed, this);
|
|
|
|
|
|
|
|
//obs_scene_t scene = obs_scene_create("test scene");
|
|
|
|
//obs_add_source(obs_scene_getsource(scene));
|
|
|
|
|
2013-12-30 05:56:39 -08:00
|
|
|
/* TODO: this is a test */
|
|
|
|
obs_load_module("test-input");
|
2013-12-28 04:33:16 -08:00
|
|
|
|
2013-12-30 14:47:20 -08:00
|
|
|
obs_source_t test = obs_source_create(SOURCE_INPUT, "random", "test",
|
|
|
|
NULL);
|
|
|
|
obs_add_source(test);
|
|
|
|
obs_set_output_source(0, test);
|
|
|
|
/*obs_scene_t scene = obs_scene_create("test2");
|
|
|
|
obs_set_output_source(0, obs_scene_getsource(scene));
|
|
|
|
|
|
|
|
obs_sceneitem_t bla = obs_scene_add(scene, test);
|
|
|
|
|
|
|
|
struct vec2 ddd = {100.0f, 100.0f};
|
|
|
|
obs_sceneitem_setscale(bla, &ddd);
|
|
|
|
|
|
|
|
obs_scene_release(scene);*/
|
|
|
|
obs_source_release(test);
|
|
|
|
|
2013-12-22 22:40:07 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
OBSBasic::~OBSBasic()
|
|
|
|
{
|
|
|
|
obs_shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OBSBasic::InitGraphics()
|
|
|
|
{
|
|
|
|
struct obs_video_info ovi;
|
|
|
|
wxGetApp().GetConfigFPS(ovi.fps_num, ovi.fps_den);
|
|
|
|
ovi.graphics_module = wxGetApp().GetRenderModule();
|
|
|
|
ovi.base_width = (uint32_t)config_get_uint(GetGlobalConfig(),
|
|
|
|
"Video", "BaseCX");
|
|
|
|
ovi.base_height = (uint32_t)config_get_uint(GetGlobalConfig(),
|
|
|
|
"Video", "BaseCY");
|
|
|
|
ovi.output_width = (uint32_t)config_get_uint(GetGlobalConfig(),
|
|
|
|
"Video", "OutputCX");
|
|
|
|
ovi.output_height = (uint32_t)config_get_uint(GetGlobalConfig(),
|
|
|
|
"Video", "OutputCY");
|
|
|
|
ovi.output_format = VIDEO_FORMAT_RGBA;
|
|
|
|
ovi.adapter = 0;
|
|
|
|
ovi.window = WxToGSWindow(previewPanel);
|
|
|
|
|
|
|
|
//required to make opengl display stuff on osx(?)
|
2013-12-31 03:02:07 -08:00
|
|
|
ResizePreview(ovi.base_width, ovi.base_height);
|
2013-12-22 22:40:07 -08:00
|
|
|
SendSizeEvent();
|
|
|
|
|
2013-12-31 03:02:07 -08:00
|
|
|
wxSize size = previewPanel->GetMinSize();
|
|
|
|
ovi.window_width = size.x;
|
|
|
|
ovi.window_height = size.y;
|
|
|
|
|
|
|
|
if (!obs_reset_video(&ovi))
|
|
|
|
return false;
|
|
|
|
|
2013-12-22 22:40:07 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::OnClose(wxCloseEvent &event)
|
2013-11-23 22:38:52 -08:00
|
|
|
{
|
|
|
|
wxGetApp().ExitMainLoop();
|
2013-12-06 05:39:19 -08:00
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::OnMinimize(wxIconizeEvent &event)
|
2013-12-06 05:39:19 -08:00
|
|
|
{
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
2013-12-31 03:02:07 -08:00
|
|
|
void OBSBasic::ResizePreview(uint32_t cx, uint32_t cy)
|
2013-12-06 05:39:19 -08:00
|
|
|
{
|
2013-12-06 08:16:33 -08:00
|
|
|
/* resize preview panel to fix to the top section of the window */
|
2013-12-06 05:39:19 -08:00
|
|
|
wxSize targetSize = GetPreviewContainer()->GetSize();
|
|
|
|
double targetAspect = double(targetSize.x) / double(targetSize.y);
|
2013-12-31 03:02:07 -08:00
|
|
|
double baseAspect = double(cx) / double(cy);
|
2013-12-30 07:55:01 -08:00
|
|
|
wxSize newSize;
|
2013-12-06 05:39:19 -08:00
|
|
|
|
|
|
|
if (targetAspect > baseAspect)
|
2013-12-30 07:55:01 -08:00
|
|
|
newSize = wxSize(targetSize.y * baseAspect, targetSize.y);
|
2013-12-06 05:39:19 -08:00
|
|
|
else
|
2013-12-30 07:55:01 -08:00
|
|
|
newSize = wxSize(targetSize.x, targetSize.x / baseAspect);
|
|
|
|
|
|
|
|
GetPreviewPanel()->SetMinSize(newSize);
|
2013-12-31 03:02:07 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void OBSBasic::OnSize(wxSizeEvent &event)
|
|
|
|
{
|
|
|
|
struct obs_video_info ovi;
|
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
|
|
|
|
if (!obs_get_video_info(&ovi))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ResizePreview(ovi.base_width, ovi.base_height);
|
2013-12-31 06:10:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void OBSBasic::OnResizePreview(wxSizeEvent &event)
|
|
|
|
{
|
|
|
|
event.Skip();
|
|
|
|
|
2013-12-31 03:02:07 -08:00
|
|
|
wxSize newSize = previewPanel->GetMinSize();
|
|
|
|
|
2013-12-31 06:10:47 -08:00
|
|
|
graphics_t graphics = obs_graphics();
|
|
|
|
if (graphics) {
|
|
|
|
gs_entercontext(graphics);
|
|
|
|
gs_resize(newSize.x, newSize.y);
|
|
|
|
gs_leavecontext();
|
|
|
|
}
|
2013-11-23 22:38:52 -08:00
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::fileNewClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::fileOpenClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::fileSaveClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::fileExitClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
2013-12-10 10:22:33 -08:00
|
|
|
wxGetApp().ExitMainLoop();
|
2013-11-07 15:45:03 -08:00
|
|
|
}
|
|
|
|
|
2013-12-30 00:17:57 -08:00
|
|
|
void OBSBasic::scenesClicked(wxCommandEvent &event)
|
|
|
|
{
|
|
|
|
int sel = scenes->GetSelection();
|
|
|
|
|
|
|
|
obs_source_t source = NULL;
|
|
|
|
if (sel != wxNOT_FOUND) {
|
|
|
|
obs_scene_t scene = (obs_scene_t)scenes->GetClientData(sel);
|
|
|
|
source = obs_scene_getsource(scene);
|
|
|
|
}
|
|
|
|
|
|
|
|
obs_set_output_source(0, source);
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::scenesRDown(wxMouseEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sceneAddClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
2013-12-29 07:54:06 -08:00
|
|
|
string name;
|
|
|
|
int ret = NameDialog::AskForName(this,
|
|
|
|
Str("MainWindow.AddSceneDlg.Title"),
|
|
|
|
Str("MainWindow.AddSceneDlg.Text"),
|
|
|
|
name);
|
|
|
|
|
|
|
|
if (ret == wxID_OK) {
|
2013-12-29 08:17:00 -08:00
|
|
|
obs_source_t source = obs_get_source_by_name(name.c_str());
|
|
|
|
if (source) {
|
|
|
|
wxMessageBox(WXStr("MainWindow.NameExists.Text"),
|
|
|
|
WXStr("MainWindow.NameExists.Title"),
|
|
|
|
wxOK|wxCENTRE, this);
|
|
|
|
|
|
|
|
obs_source_release(source);
|
|
|
|
sceneAddClicked(event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-29 07:54:06 -08:00
|
|
|
obs_scene_t scene = obs_scene_create(name.c_str());
|
|
|
|
obs_add_source(obs_scene_getsource(scene));
|
|
|
|
obs_scene_release(scene);
|
|
|
|
}
|
2013-11-07 15:45:03 -08:00
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sceneRemoveClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
2013-12-29 19:01:19 -08:00
|
|
|
int sel = scenes->GetSelection();
|
|
|
|
if (sel == wxNOT_FOUND)
|
|
|
|
return;
|
|
|
|
|
|
|
|
obs_scene_t scene = (obs_scene_t)scenes->GetClientData(sel);
|
|
|
|
obs_source_t source = obs_scene_getsource(scene);
|
|
|
|
obs_source_remove(source);
|
2013-11-07 15:45:03 -08:00
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::scenePropertiesClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sceneUpClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sceneDownClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-30 00:17:57 -08:00
|
|
|
void OBSBasic::sourcesClicked(wxCommandEvent &event)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBSBasic::sourcesToggled(wxCommandEvent &event)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sourcesRDown(wxMouseEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-30 05:56:39 -08:00
|
|
|
void OBSBasic::AddSource(obs_scene_t scene, const char *id)
|
|
|
|
{
|
|
|
|
string name;
|
|
|
|
|
|
|
|
bool success = false;
|
|
|
|
while (!success) {
|
|
|
|
int ret = NameDialog::AskForName(this,
|
|
|
|
Str("MainWindow.AddSourceDlg.Title"),
|
|
|
|
Str("MainWindow.AddSourceDlg.Text"),
|
|
|
|
name);
|
|
|
|
|
|
|
|
if (ret == wxID_CANCEL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
obs_source_t source = obs_get_source_by_name(
|
|
|
|
name.c_str());
|
|
|
|
if (!source) {
|
|
|
|
success = true;
|
|
|
|
} else {
|
|
|
|
wxMessageBox(WXStr("MainWindow.NameExists.Text"),
|
|
|
|
WXStr("MainWindow.NameExists.Title"),
|
|
|
|
wxOK|wxCENTRE, this);
|
|
|
|
obs_source_release(source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
obs_source_t source = obs_source_create(SOURCE_INPUT, id,
|
|
|
|
name.c_str(), NULL);
|
|
|
|
obs_add_source(source);
|
|
|
|
obs_sceneitem_t item = obs_scene_add(scene, source);
|
|
|
|
obs_source_release(source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBSBasic::AddSourcePopup()
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
2013-12-30 00:17:57 -08:00
|
|
|
int sceneSel = scenes->GetSelection();
|
2013-12-30 05:56:39 -08:00
|
|
|
size_t idx = 0;
|
|
|
|
const char *type;
|
|
|
|
vector<const char *> types;
|
|
|
|
|
2013-12-30 00:17:57 -08:00
|
|
|
if (sceneSel == wxNOT_FOUND)
|
|
|
|
return;
|
|
|
|
|
2013-12-30 05:56:39 -08:00
|
|
|
obs_scene_t scene = (obs_scene_t)scenes->GetClientData(sceneSel);
|
|
|
|
obs_scene_addref(scene);
|
|
|
|
|
|
|
|
unique_ptr<wxMenu> popup(new wxMenu());
|
|
|
|
while (obs_enum_input_types(idx, &type)) {
|
|
|
|
const char *name = obs_source_getdisplayname(SOURCE_INPUT,
|
|
|
|
type, wxGetApp().GetLocale());
|
|
|
|
|
|
|
|
types.push_back(type);
|
2013-12-30 12:33:13 -08:00
|
|
|
popup->Append((int)idx+1, wxString(name, wxConvUTF8));
|
2013-12-30 05:56:39 -08:00
|
|
|
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (idx) {
|
|
|
|
int id = WXDoPopupMenu(this, popup.get());
|
|
|
|
if (id != -1)
|
2013-12-30 12:33:13 -08:00
|
|
|
AddSource(scene, types[id-1]);
|
2013-12-30 05:56:39 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
obs_scene_release(scene);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OBSBasic::sourceAddClicked(wxCommandEvent &event)
|
|
|
|
{
|
|
|
|
AddSourcePopup();
|
2013-11-07 15:45:03 -08:00
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sourceRemoveClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sourcePropertiesClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sourceUpClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::sourceDownClicked(wxCommandEvent &event)
|
2013-11-07 15:45:03 -08:00
|
|
|
{
|
|
|
|
}
|
2013-12-10 10:22:33 -08:00
|
|
|
|
2013-12-10 20:14:45 -08:00
|
|
|
void OBSBasic::settingsClicked(wxCommandEvent &event)
|
|
|
|
{
|
2013-12-16 07:06:30 -08:00
|
|
|
OBSBasicSettings test(this);
|
|
|
|
test.ShowModal();
|
2013-12-10 20:14:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void OBSBasic::exitClicked(wxCommandEvent &event)
|
2013-12-10 10:22:33 -08:00
|
|
|
{
|
|
|
|
wxGetApp().ExitMainLoop();
|
|
|
|
}
|