window-basic-main.cpp 57.9 KB
Newer Older
1
/******************************************************************************
2
    Copyright (C) 2013-2014 by Hugh Bailey <obs.jim@gmail.com>
J
jp9000 已提交
3
                               Zachary Lund <admin@computerquip.com>
4 5 6

    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
7
    the Free Software Foundation, either version 2 of the License, or
8 9 10
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 13 14 15 16 17 18
    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/>.
******************************************************************************/

J
jp9000 已提交
19
#include <time.h>
J
jp9000 已提交
20
#include <obs.hpp>
J
jp9000 已提交
21
#include <QMessageBox>
22
#include <QShowEvent>
J
jp9000 已提交
23
#include <QFileDialog>
J
jp9000 已提交
24 25
#include <QNetworkRequest>
#include <QNetworkReply>
26

J
jp9000 已提交
27
#include <util/dstr.h>
28 29
#include <util/util.hpp>
#include <util/platform.h>
J
jp9000 已提交
30
#include <graphics/math-defs.h>
31

32
#include "obs-app.hpp"
33
#include "platform.hpp"
34
#include "window-basic-settings.hpp"
35
#include "window-namedialog.hpp"
J
jp9000 已提交
36
#include "window-basic-source-select.hpp"
J
jp9000 已提交
37
#include "window-basic-main.hpp"
38
#include "window-basic-properties.hpp"
J
jp9000 已提交
39
#include "window-log-reply.hpp"
J
jp9000 已提交
40
#include "qt-wrappers.hpp"
41
#include "display-helpers.hpp"
42
#include "volume-control.hpp"
43

J
jp9000 已提交
44
#include "ui_OBSBasic.h"
45

J
jp9000 已提交
46
#include <fstream>
47 48
#include <sstream>

49 50 51
#include <QScreen>
#include <QWindow>

52 53
#define PREVIEW_EDGE_SIZE 10

54
using namespace std;
J
jp9000 已提交
55

J
jp9000 已提交
56 57
Q_DECLARE_METATYPE(OBSScene);
Q_DECLARE_METATYPE(OBSSceneItem);
J
jp9000 已提交
58
Q_DECLARE_METATYPE(obs_order_movement);
J
jp9000 已提交
59

60 61 62 63 64 65 66 67 68 69
static void AddExtraModulePaths()
{
	BPtr<char> base_module_dir = os_get_config_path("plugins/%module%");
	if (!base_module_dir)
		return;

	string path = (char*)base_module_dir;
	obs_add_module_path((path + "/bin").c_str(), (path + "/data").c_str());
}

70
OBSBasic::OBSBasic(QWidget *parent)
71
	: OBSMainWindow  (parent),
J
jp9000 已提交
72
	  ui             (new Ui::OBSBasic)
73 74
{
	ui->setupUi(this);
75 76 77 78 79 80 81

	connect(windowHandle(), &QWindow::screenChanged, [this]() {
		struct obs_video_info ovi;

		if (obs_get_video_info(&ovi))
			ResizePreview(ovi.base_width, ovi.base_height);
	});
J
jp9000 已提交
82 83 84 85

	stringstream name;
	name << "OBS " << App()->GetVersionString();

J
jp9000 已提交
86
	blog(LOG_INFO, "%s", name.str().c_str());
J
jp9000 已提交
87
	setWindowTitle(QT_UTF8(name.str().c_str()));
J
jp9000 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101

	connect(ui->scenes->itemDelegate(),
			SIGNAL(closeEditor(QWidget*,
					QAbstractItemDelegate::EndEditHint)),
			this,
			SLOT(SceneNameEdited(QWidget*,
					QAbstractItemDelegate::EndEditHint)));

	connect(ui->sources->itemDelegate(),
			SIGNAL(closeEditor(QWidget*,
					QAbstractItemDelegate::EndEditHint)),
			this,
			SLOT(SceneItemNameEdited(QWidget*,
					QAbstractItemDelegate::EndEditHint)));
102 103

	cpuUsageInfo = os_cpu_usage_info_start();
J
jp9000 已提交
104 105 106 107
	cpuUsageTimer = new QTimer(this);
	connect(cpuUsageTimer, SIGNAL(timeout()),
			ui->statusbar, SLOT(UpdateCPUUsage()));
	cpuUsageTimer->start(3000);
108 109 110 111 112 113

#ifdef __APPLE__
	QList<QKeySequence> keys;
	keys.append(QKeySequence::Delete);
	keys.append(QKeySequence(Qt::Key_Backspace));
	ui->actionRemoveSource->setShortcuts(keys);
114 115 116

	ui->action_Settings->setMenuRole(QAction::PreferencesRole);
	ui->actionE_xit->setMenuRole(QAction::QuitRole);
117
#endif
118 119
}

120 121 122 123 124 125 126 127
static void SaveAudioDevice(const char *name, int channel, obs_data_t parent)
{
	obs_source_t source = obs_get_output_source(channel);
	if (!source)
		return;

	obs_data_t data = obs_save_source(source);

J
jp9000 已提交
128
	obs_data_set_obj(parent, name, data);
129 130 131 132 133

	obs_data_release(data);
	obs_source_release(source);
}

134 135 136 137 138
static obs_data_t GenerateSaveData()
{
	obs_data_t       saveData     = obs_data_create();
	obs_data_array_t sourcesArray = obs_save_sources();
	obs_source_t     currentScene = obs_get_output_source(0);
139
	const char       *sceneName   = obs_source_get_name(currentScene);
140

141 142 143 144 145 146
	SaveAudioDevice(DESKTOP_AUDIO_1, 1, saveData);
	SaveAudioDevice(DESKTOP_AUDIO_2, 2, saveData);
	SaveAudioDevice(AUX_AUDIO_1,     3, saveData);
	SaveAudioDevice(AUX_AUDIO_2,     4, saveData);
	SaveAudioDevice(AUX_AUDIO_3,     5, saveData);

J
jp9000 已提交
147 148
	obs_data_set_string(saveData, "current_scene", sceneName);
	obs_data_set_array(saveData, "sources", sourcesArray);
149 150 151 152 153 154
	obs_data_array_release(sourcesArray);
	obs_source_release(currentScene);

	return saveData;
}

155 156 157 158 159 160 161 162 163 164 165 166
void OBSBasic::ClearVolumeControls()
{
	VolControl *control;

	for (size_t i = 0; i < volumes.size(); i++) {
		control = volumes[i];
		delete control;
	}

	volumes.clear();
}

167 168 169
void OBSBasic::Save(const char *file)
{
	obs_data_t saveData  = GenerateSaveData();
J
jp9000 已提交
170
	const char *jsonData = obs_data_get_json(saveData);
171 172 173 174 175 176 177 178

	/* TODO maybe a message box here? */
	if (!os_quick_write_utf8_file(file, jsonData, strlen(jsonData), false))
		blog(LOG_ERROR, "Could not save scene data to %s", file);

	obs_data_release(saveData);
}

179 180
static void LoadAudioDevice(const char *name, int channel, obs_data_t parent)
{
J
jp9000 已提交
181
	obs_data_t data = obs_data_get_obj(parent, name);
182 183 184 185 186 187 188 189 190 191 192 193 194 195
	if (!data)
		return;

	obs_source_t source = obs_load_source(data);
	if (source) {
		obs_set_output_source(channel, source);
		obs_source_release(source);
	}

	obs_data_release(data);
}

void OBSBasic::CreateDefaultScene()
{
196
	obs_scene_t  scene  = obs_scene_create(Str("Basic.Scene"));
197
	obs_source_t source = obs_scene_get_source(scene);
198 199 200 201 202

	obs_add_source(source);

#ifdef __APPLE__
	source = obs_source_create(OBS_SOURCE_TYPE_INPUT, "display_capture",
203
			Str("Basic.DisplayCapture"), NULL);
204 205 206 207 208 209 210 211

	if (source) {
		obs_scene_add(scene, source);
		obs_add_source(source);
		obs_source_release(source);
	}
#endif

212
	obs_set_output_source(0, obs_scene_get_source(scene));
213 214 215
	obs_scene_release(scene);
}

216 217 218 219 220 221 222 223
void OBSBasic::Load(const char *file)
{
	if (!file) {
		blog(LOG_ERROR, "Could not find file %s", file);
		return;
	}

	BPtr<char> jsonData = os_quick_read_utf8_file(file);
224 225
	if (!jsonData) {
		CreateDefaultScene();
226
		return;
227
	}
228 229

	obs_data_t       data       = obs_data_create_from_json(jsonData);
J
jp9000 已提交
230 231 232
	obs_data_array_t sources    = obs_data_get_array(data, "sources");
	const char       *sceneName = obs_data_get_string(data,
			"current_scene");
233 234
	obs_source_t     curScene;

235 236 237 238 239 240
	LoadAudioDevice(DESKTOP_AUDIO_1, 1, data);
	LoadAudioDevice(DESKTOP_AUDIO_2, 2, data);
	LoadAudioDevice(AUX_AUDIO_1,     3, data);
	LoadAudioDevice(AUX_AUDIO_2,     4, data);
	LoadAudioDevice(AUX_AUDIO_3,     5, data);

241 242 243 244 245 246 247 248 249 250
	obs_load_sources(sources);

	curScene = obs_get_source_by_name(sceneName);
	obs_set_output_source(0, curScene);
	obs_source_release(curScene);

	obs_data_array_release(sources);
	obs_data_release(data);
}

251 252 253
static inline bool HasAudioDevices(const char *source_id)
{
	const char *output_id = source_id;
254
	obs_properties_t props = obs_get_source_properties(
255
			OBS_SOURCE_TYPE_INPUT, output_id);
256 257 258 259 260 261 262 263 264 265 266 267 268 269
	size_t count = 0;

	if (!props)
		return false;

	obs_property_t devices = obs_properties_get(props, "device_id");
	if (devices)
		count = obs_property_list_item_count(devices);

	obs_properties_destroy(props);

	return count != 0;
}

270 271 272 273 274 275 276 277 278
static void OBSStartStreaming(void *data, calldata_t params)
{
	UNUSED_PARAMETER(params);
	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"StreamingStart");
}

static void OBSStopStreaming(void *data, calldata_t params)
{
279
	int code = (int)calldata_int(params, "code");
280 281 282 283
	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"StreamingStop", Q_ARG(int, code));
}

284 285 286 287 288 289 290 291
static void OBSStopRecording(void *data, calldata_t params)
{
	UNUSED_PARAMETER(params);

	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"RecordingStop");
}

292 293 294 295 296 297 298 299 300 301 302 303 304 305
#define SERVICE_PATH "obs-studio/basic/service.json"

void OBSBasic::SaveService()
{
	if (!service)
		return;

	BPtr<char> serviceJsonPath(os_get_config_path(SERVICE_PATH));
	if (!serviceJsonPath)
		return;

	obs_data_t data     = obs_data_create();
	obs_data_t settings = obs_service_get_settings(service);

J
jp9000 已提交
306 307
	obs_data_set_string(data, "type", obs_service_gettype(service));
	obs_data_set_obj(data, "settings", settings);
308

J
jp9000 已提交
309
	const char *json = obs_data_get_json(data);
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331

	os_quick_write_utf8_file(serviceJsonPath, json, strlen(json), false);

	obs_data_release(settings);
	obs_data_release(data);
}

bool OBSBasic::LoadService()
{
	const char *type;

	BPtr<char> serviceJsonPath(os_get_config_path(SERVICE_PATH));
	if (!serviceJsonPath)
		return false;

	BPtr<char> jsonText = os_quick_read_utf8_file(serviceJsonPath);
	if (!jsonText)
		return false;

	obs_data_t data = obs_data_create_from_json(jsonText);

	obs_data_set_default_string(data, "type", "rtmp_common");
J
jp9000 已提交
332
	type = obs_data_get_string(data, "type");
333

J
jp9000 已提交
334
	obs_data_t settings = obs_data_get_obj(data, "settings");
335

336
	service = obs_service_create(type, "default_service", settings);
337 338 339 340 341 342 343 344 345

	obs_data_release(settings);
	obs_data_release(data);

	return !!service;
}

bool OBSBasic::InitOutputs()
{
346 347
	fileOutput = obs_output_create("flv_output", "default_file_output",
			nullptr);
348 349 350
	if (!fileOutput)
		return false;

351 352
	streamOutput = obs_output_create("rtmp_output", "default_stream",
			nullptr);
353 354 355
	if (!streamOutput)
		return false;

356
	signal_handler_connect(obs_output_get_signal_handler(streamOutput),
357
			"start", OBSStartStreaming, this);
358
	signal_handler_connect(obs_output_get_signal_handler(streamOutput),
359 360
			"stop", OBSStopStreaming, this);

361
	signal_handler_connect(obs_output_get_signal_handler(fileOutput),
362 363
			"stop", OBSStopRecording, this);

364 365 366 367 368
	return true;
}

bool OBSBasic::InitEncoders()
{
369
	x264 = obs_video_encoder_create("obs_x264", "default_h264", nullptr);
370 371 372
	if (!x264)
		return false;

373
	aac = obs_audio_encoder_create("libfdk_aac", "default_aac", nullptr);
B
BtbN 已提交
374

375 376 377
	if (!aac)
		aac = obs_audio_encoder_create("ffmpeg_aac", "default_aac",
				nullptr);
B
BtbN 已提交
378 379 380 381

	if (!aac)
		return false;

382 383 384 385 386 387 388 389
	return true;
}

bool OBSBasic::InitService()
{
	if (LoadService())
		return true;

390
	service = obs_service_create("rtmp_common", "default_service", nullptr);
391 392 393 394 395 396
	if (!service)
		return false;

	return true;
}

397 398
bool OBSBasic::InitBasicConfigDefaults()
{
399 400 401
	bool hasDesktopAudio = HasAudioDevices(App()->OutputAudioSource());
	bool hasInputAudio   = HasAudioDevices(App()->InputAudioSource());

402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
	config_set_default_int(basicConfig, "Window", "PosX",  -1);
	config_set_default_int(basicConfig, "Window", "PosY",  -1);
	config_set_default_int(basicConfig, "Window", "SizeX", -1);
	config_set_default_int(basicConfig, "Window", "SizeY", -1);

	vector<MonitorInfo> monitors;
	GetMonitors(monitors);

	if (!monitors.size()) {
		OBSErrorBox(NULL, "There appears to be no monitors.  Er, this "
		                  "technically shouldn't be possible.");
		return false;
	}

	uint32_t cx = monitors[0].cx;
	uint32_t cy = monitors[0].cy;

419
	/* TODO: temporary */
420 421
	config_set_default_string(basicConfig, "SimpleOutput", "FilePath",
			GetDefaultVideoSavePath().c_str());
422 423 424
	config_set_default_uint  (basicConfig, "SimpleOutput", "VBitrate",
			2500);
	config_set_default_uint  (basicConfig, "SimpleOutput", "ABitrate", 128);
J
jp9000 已提交
425 426 427 428 429
	config_set_default_bool  (basicConfig, "SimpleOutput", "Reconnect",
			true);
	config_set_default_uint  (basicConfig, "SimpleOutput", "RetryDelay", 2);
	config_set_default_uint  (basicConfig, "SimpleOutput", "MaxRetries",
			20);
430

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
	config_set_default_uint  (basicConfig, "Video", "BaseCX",   cx);
	config_set_default_uint  (basicConfig, "Video", "BaseCY",   cy);

	cx = cx * 10 / 15;
	cy = cy * 10 / 15;
	config_set_default_uint  (basicConfig, "Video", "OutputCX", cx);
	config_set_default_uint  (basicConfig, "Video", "OutputCY", cy);

	config_set_default_uint  (basicConfig, "Video", "FPSType", 0);
	config_set_default_string(basicConfig, "Video", "FPSCommon", "30");
	config_set_default_uint  (basicConfig, "Video", "FPSInt", 30);
	config_set_default_uint  (basicConfig, "Video", "FPSNum", 30);
	config_set_default_uint  (basicConfig, "Video", "FPSDen", 1);

	config_set_default_uint  (basicConfig, "Audio", "SampleRate", 44100);
	config_set_default_string(basicConfig, "Audio", "ChannelSetup",
			"Stereo");
	config_set_default_uint  (basicConfig, "Audio", "BufferingTime", 1000);

J
jp9000 已提交
450
	config_set_default_string(basicConfig, "Audio", "DesktopDevice1",
451
			hasDesktopAudio ? "default" : "disabled");
J
jp9000 已提交
452 453 454
	config_set_default_string(basicConfig, "Audio", "DesktopDevice2",
			"disabled");
	config_set_default_string(basicConfig, "Audio", "AuxDevice1",
455
			hasInputAudio ? "default" : "disabled");
J
jp9000 已提交
456 457 458 459 460
	config_set_default_string(basicConfig, "Audio", "AuxDevice2",
			"disabled");
	config_set_default_string(basicConfig, "Audio", "AuxDevice3",
			"disabled");

461 462 463 464 465 466 467
	return true;
}

bool OBSBasic::InitBasicConfig()
{
	BPtr<char> configPath(os_get_config_path("obs-studio/basic/basic.ini"));

468 469 470
	int code = basicConfig.Open(configPath, CONFIG_OPEN_ALWAYS);
	if (code != CONFIG_SUCCESS) {
		OBSErrorBox(NULL, "Failed to open basic.ini: %d", code);
471 472 473 474 475 476
		return false;
	}

	return InitBasicConfigDefaults();
}

477 478
void OBSBasic::InitOBSCallbacks()
{
479
	signal_handler_connect(obs_get_signal_handler(), "source_add",
480
			OBSBasic::SourceAdded, this);
481
	signal_handler_connect(obs_get_signal_handler(), "source_remove",
482
			OBSBasic::SourceRemoved, this);
483
	signal_handler_connect(obs_get_signal_handler(), "channel_change",
484
			OBSBasic::ChannelChanged, this);
485
	signal_handler_connect(obs_get_signal_handler(), "source_activate",
486
			OBSBasic::SourceActivated, this);
487
	signal_handler_connect(obs_get_signal_handler(), "source_deactivate",
488
			OBSBasic::SourceDeactivated, this);
489
	signal_handler_connect(obs_get_signal_handler(), "source_rename",
J
jp9000 已提交
490
			OBSBasic::SourceRenamed, this);
491 492
}

J
jp9000 已提交
493 494
void OBSBasic::InitPrimitives()
{
J
jp9000 已提交
495
	obs_enter_graphics();
J
jp9000 已提交
496

497
	gs_render_start(true);
J
jp9000 已提交
498 499 500 501 502
	gs_vertex2f(0.0f, 0.0f);
	gs_vertex2f(0.0f, 1.0f);
	gs_vertex2f(1.0f, 1.0f);
	gs_vertex2f(1.0f, 0.0f);
	gs_vertex2f(0.0f, 0.0f);
503
	box = gs_render_save();
J
jp9000 已提交
504

505
	gs_render_start(true);
J
jp9000 已提交
506 507 508 509
	for (int i = 0; i <= 360; i += (360/20)) {
		float pos = RAD(float(i));
		gs_vertex2f(cosf(pos), sinf(pos));
	}
510
	circle = gs_render_save();
J
jp9000 已提交
511

J
jp9000 已提交
512
	obs_leave_graphics();
J
jp9000 已提交
513 514
}

515 516
void OBSBasic::OBSInit()
{
517 518
	BPtr<char> savePath(os_get_config_path("obs-studio/basic/scenes.json"));

519 520 521 522
	/* make sure it's fully displayed before doing any initialization */
	show();
	App()->processEvents();

523
	if (!obs_startup(App()->GetLocale()))
524
		throw "Failed to initialize libobs";
525 526
	if (!InitBasicConfig())
		throw "Failed to load basic.ini";
527
	if (!ResetAudio())
528 529
		throw "Failed to initialize audio";

530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	int ret = ResetVideo();

	switch (ret) {
	case OBS_VIDEO_MODULE_NOT_FOUND:
		throw "Failed to initialize video:  Graphics module not found";
	case OBS_VIDEO_NOT_SUPPORTED:
		throw "Failed to initialize video:  Your graphics adapter "
		      "is either too old or does not have the required "
		      "capabilities required for this program";
	case OBS_VIDEO_INVALID_PARAM:
		throw "Failed to initialize video:  Invalid parameters";
	default:
		if (ret != OBS_VIDEO_SUCCESS)
			throw "Failed to initialize video:  Unspecified error";
	}

546
	InitOBSCallbacks();
547

548
	AddExtraModulePaths();
J
jp9000 已提交
549
	obs_load_all_modules();
J
jp9000 已提交
550

551 552 553 554 555 556 557
	if (!InitOutputs())
		throw "Failed to initialize outputs";
	if (!InitEncoders())
		throw "Failed to initialize encoders";
	if (!InitService())
		throw "Failed to initialize service";

J
jp9000 已提交
558 559
	InitPrimitives();

560
	Load(savePath);
J
jp9000 已提交
561
	ResetAudioDevices();
562

J
jp9000 已提交
563
	TimedCheckForUpdates();
564
	loaded = true;
565 566 567 568
}

OBSBasic::~OBSBasic()
{
569
	BPtr<char> savePath(os_get_config_path("obs-studio/basic/scenes.json"));
570
	SaveService();
571
	Save(savePath);
572

J
jp9000 已提交
573 574 575 576 577 578
	/* XXX: any obs data must be released before calling obs_shutdown.
	 * currently, we can't automate this with C++ RAII because of the
	 * delicate nature of obs_shutdown needing to be freed before the UI
	 * can be freed, and we have no control over the destruction order of
	 * the Qt UI stuff, so we have to manually clear any references to
	 * libobs. */
J
jp9000 已提交
579
	delete cpuUsageTimer;
580 581
	os_cpu_usage_info_destroy(cpuUsageInfo);

582 583 584 585 586
	if (properties)
		delete properties;

	if (transformWindow)
		delete transformWindow;
587

588
	ClearVolumeControls();
589 590
	ui->sources->clear();
	ui->scenes->clear();
J
jp9000 已提交
591

J
jp9000 已提交
592
	obs_enter_graphics();
593 594
	gs_vertexbuffer_destroy(box);
	gs_vertexbuffer_destroy(circle);
J
jp9000 已提交
595
	obs_leave_graphics();
J
jp9000 已提交
596

597
	obs_shutdown();
J
jp9000 已提交
598 599 600 601

	config_set_int(App()->GlobalConfig(), "General", "LastVersion",
			LIBOBS_API_VER);
	config_save(App()->GlobalConfig());
602 603
}

J
jp9000 已提交
604
OBSScene OBSBasic::GetCurrentScene()
605
{
J
jp9000 已提交
606
	QListWidgetItem *item = ui->scenes->currentItem();
J
jp9000 已提交
607
	return item ? item->data(Qt::UserRole).value<OBSScene>() : nullptr;
608 609
}

J
jp9000 已提交
610
OBSSceneItem OBSBasic::GetCurrentSceneItem()
J
jp9000 已提交
611 612
{
	QListWidgetItem *item = ui->sources->currentItem();
J
jp9000 已提交
613
	return item ? item->data(Qt::UserRole).value<OBSSceneItem>() : nullptr;
J
jp9000 已提交
614 615
}

616 617 618 619 620 621 622 623
void OBSBasic::UpdateSources(OBSScene scene)
{
	ui->sources->clear();

	obs_scene_enum_items(scene,
			[] (obs_scene_t scene, obs_sceneitem_t item, void *p)
			{
				OBSBasic *window = static_cast<OBSBasic*>(p);
624
				window->InsertSceneItem(item);
J
jp9000 已提交
625 626

				UNUSED_PARAMETER(scene);
627 628 629 630
				return true;
			}, this);
}

631 632
void OBSBasic::InsertSceneItem(obs_sceneitem_t item)
{
J
jp9000 已提交
633
	obs_source_t source = obs_sceneitem_get_source(item);
634
	const char   *name  = obs_source_get_name(source);
635 636

	QListWidgetItem *listItem = new QListWidgetItem(QT_UTF8(name));
J
jp9000 已提交
637
	listItem->setFlags(listItem->flags() | Qt::ItemIsEditable);
638 639 640 641
	listItem->setData(Qt::UserRole,
			QVariant::fromValue(OBSSceneItem(item)));

	ui->sources->insertItem(0, listItem);
642 643 644
	ui->sources->setCurrentRow(0);

	/* if the source was just created, open properties dialog */
645 646 647 648 649 650 651 652 653 654 655 656
	if (sourceSceneRefs[source] == 0 && loaded)
		CreatePropertiesWindow(source);
}

void OBSBasic::CreatePropertiesWindow(obs_source_t source)
{
	if (properties)
		properties->close();

	properties = new OBSBasicProperties(this, source);
	properties->Init();
	properties->setAttribute(Qt::WA_DeleteOnClose, true);
657 658
}

659 660 661
/* Qt callbacks for invokeMethod */

void OBSBasic::AddScene(OBSSource source)
662
{
663 664
	const char *name  = obs_source_get_name(source);
	obs_scene_t scene = obs_scene_from_source(source);
J
jp9000 已提交
665 666

	QListWidgetItem *item = new QListWidgetItem(QT_UTF8(name));
J
jp9000 已提交
667
	item->setFlags(item->flags() | Qt::ItemIsEditable);
J
jp9000 已提交
668
	item->setData(Qt::UserRole, QVariant::fromValue(OBSScene(scene)));
J
jp9000 已提交
669
	ui->scenes->addItem(item);
670

671
	signal_handler_t handler = obs_source_get_signal_handler(source);
672
	signal_handler_connect(handler, "item_add",
J
jp9000 已提交
673
			OBSBasic::SceneItemAdded, this);
674
	signal_handler_connect(handler, "item_remove",
J
jp9000 已提交
675
			OBSBasic::SceneItemRemoved, this);
J
jp9000 已提交
676 677 678 679 680 681 682 683
	signal_handler_connect(handler, "item_move_up",
			OBSBasic::SceneItemMoveUp, this);
	signal_handler_connect(handler, "item_move_down",
			OBSBasic::SceneItemMoveDown, this);
	signal_handler_connect(handler, "item_move_top",
			OBSBasic::SceneItemMoveTop, this);
	signal_handler_connect(handler, "item_move_bottom",
			OBSBasic::SceneItemMoveBottom, this);
684 685
}

686
void OBSBasic::RemoveScene(OBSSource source)
J
jp9000 已提交
687
{
688
	const char *name = obs_source_get_name(source);
J
jp9000 已提交
689

J
jp9000 已提交
690 691 692
	QListWidgetItem *sel = ui->scenes->currentItem();
	QList<QListWidgetItem*> items = ui->scenes->findItems(QT_UTF8(name),
			Qt::MatchExactly);
J
jp9000 已提交
693

J
jp9000 已提交
694 695 696 697
	if (sel != nullptr) {
		if (items.contains(sel))
			ui->sources->clear();
		delete sel;
J
jp9000 已提交
698
	}
699 700
}

701
void OBSBasic::AddSceneItem(OBSSceneItem item)
702
{
J
jp9000 已提交
703 704
	obs_scene_t  scene  = obs_sceneitem_get_scene(item);
	obs_source_t source = obs_sceneitem_get_source(item);
J
jp9000 已提交
705

706 707
	if (GetCurrentScene() == scene)
		InsertSceneItem(item);
J
jp9000 已提交
708 709

	sourceSceneRefs[source] = sourceSceneRefs[source] + 1;
710 711
}

712
void OBSBasic::RemoveSceneItem(OBSSceneItem item)
713
{
J
jp9000 已提交
714
	obs_scene_t scene = obs_sceneitem_get_scene(item);
715

J
jp9000 已提交
716
	if (GetCurrentScene() == scene) {
B
BtbN 已提交
717
		for (int i = 0; i < ui->sources->count(); i++) {
J
jp9000 已提交
718 719
			QListWidgetItem *listItem = ui->sources->item(i);
			QVariant userData = listItem->data(Qt::UserRole);
J
jp9000 已提交
720

J
jp9000 已提交
721
			if (userData.value<OBSSceneItem>() == item) {
J
jp9000 已提交
722
				delete listItem;
J
jp9000 已提交
723 724
				break;
			}
725 726
		}
	}
J
jp9000 已提交
727

J
jp9000 已提交
728
	obs_source_t source = obs_sceneitem_get_source(item);
J
jp9000 已提交
729 730

	int scenes = sourceSceneRefs[source] - 1;
731 732
	sourceSceneRefs[source] = scenes;

J
jp9000 已提交
733 734 735 736
	if (scenes == 0) {
		obs_source_remove(source);
		sourceSceneRefs.erase(source);
	}
737 738
}

739
void OBSBasic::UpdateSceneSelection(OBSSource source)
740 741
{
	if (source) {
742 743
		obs_scene_t scene = obs_scene_from_source(source);
		const char *name = obs_source_get_name(source);
J
jp9000 已提交
744

745 746 747
		if (!scene)
			return;

J
jp9000 已提交
748 749 750
		QList<QListWidgetItem*> items =
			ui->scenes->findItems(QT_UTF8(name), Qt::MatchExactly);

751 752 753 754 755
		if (items.count()) {
			sceneChanging = true;
			ui->scenes->setCurrentItem(items.first());
			sceneChanging = false;

J
jp9000 已提交
756
			UpdateSources(scene);
757
		}
J
jp9000 已提交
758
	}
759 760
}

J
jp9000 已提交
761 762 763 764 765 766 767 768 769 770 771 772 773 774
static void RenameListValues(QListWidget *listWidget, const QString &newName,
		const QString &prevName)
{
	QList<QListWidgetItem*> items =
		listWidget->findItems(prevName, Qt::MatchExactly);

	for (int i = 0; i < items.count(); i++)
		items[i]->setText(newName);
}

void OBSBasic::RenameSources(QString newName, QString prevName)
{
	RenameListValues(ui->scenes,  newName, prevName);
	RenameListValues(ui->sources, newName, prevName);
775 776 777 778 779

	for (size_t i = 0; i < volumes.size(); i++) {
		if (volumes[i]->GetName().compare(prevName) == 0)
			volumes[i]->SetName(newName);
	}
J
jp9000 已提交
780 781
}

J
jp9000 已提交
782
void OBSBasic::MoveSceneItem(OBSSceneItem item, obs_order_movement movement)
J
jp9000 已提交
783
{
J
jp9000 已提交
784
	OBSScene scene = obs_sceneitem_get_scene(item);
J
jp9000 已提交
785 786 787 788 789 790 791 792 793 794
	if (scene != GetCurrentScene())
		return;

	int curRow = ui->sources->currentRow();
	if (curRow == -1)
		return;

	QListWidgetItem *listItem = ui->sources->takeItem(curRow);

	switch (movement) {
J
jp9000 已提交
795
	case OBS_ORDER_MOVE_UP:
J
jp9000 已提交
796 797 798 799
		if (curRow > 0)
			curRow--;
		break;

J
jp9000 已提交
800
	case OBS_ORDER_MOVE_DOWN:
J
jp9000 已提交
801 802 803 804
		if (curRow < ui->sources->count())
			curRow++;
		break;

J
jp9000 已提交
805
	case OBS_ORDER_MOVE_TOP:
J
jp9000 已提交
806 807 808
		curRow = 0;
		break;

J
jp9000 已提交
809
	case OBS_ORDER_MOVE_BOTTOM:
J
jp9000 已提交
810 811 812 813 814 815 816 817
		curRow = ui->sources->count();
		break;
	}

	ui->sources->insertItem(curRow, listItem);
	ui->sources->setCurrentRow(curRow);
}

818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
void OBSBasic::ActivateAudioSource(OBSSource source)
{
	VolControl *vol = new VolControl(source);

	volumes.push_back(vol);
	ui->volumeWidgets->layout()->addWidget(vol);
}

void OBSBasic::DeactivateAudioSource(OBSSource source)
{
	for (size_t i = 0; i < volumes.size(); i++) {
		if (volumes[i]->GetSource() == source) {
			delete volumes[i];
			volumes.erase(volumes.begin() + i);
			break;
		}
	}
}

837
bool OBSBasic::QueryRemoveSource(obs_source_t source)
J
jp9000 已提交
838
{
839
	const char *name  = obs_source_get_name(source);
840 841 842

	QString text = QTStr("ConfirmRemove.Text");
	text.replace("$1", QT_UTF8(name));
J
jp9000 已提交
843

844 845 846
	QMessageBox::StandardButton button;
	button = QMessageBox::question(this,
			QTStr("ConfirmRemove.Remove"), text);
J
jp9000 已提交
847

848 849
	return button == QMessageBox::Yes;
}
J
jp9000 已提交
850

J
jp9000 已提交
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
#define UPDATE_CHECK_INTERVAL (60*60*24*4) /* 4 days */

void OBSBasic::TimedCheckForUpdates()
{
	long long lastUpdate = config_get_int(App()->GlobalConfig(), "General",
			"LastUpdateCheck");
	uint32_t lastVersion = config_get_int(App()->GlobalConfig(), "General",
			"LastVersion");

	if (lastVersion < LIBOBS_API_VER) {
		lastUpdate = 0;
		config_set_int(App()->GlobalConfig(), "General",
				"LastUpdateCheck", 0);
	}

	long long t    = (long long)time(nullptr);
	long long secs = t - lastUpdate;

	if (secs > UPDATE_CHECK_INTERVAL)
		CheckForUpdates();
}

void OBSBasic::CheckForUpdates()
{
	ui->actionCheckForUpdates->setEnabled(false);

877 878 879 880 881 882 883 884
	string versionString("obs-basic ");
	versionString += App()->GetVersionString();

	QNetworkRequest request;
	request.setUrl(QUrl("https://obsproject.com/obs2_update/basic.json"));
	request.setRawHeader("User-Agent", versionString.c_str());

	updateReply = networkManager.get(request);
J
jp9000 已提交
885 886 887 888 889 890 891 892 893 894 895
	connect(updateReply, SIGNAL(finished()),
			this, SLOT(updateFileFinished()));
	connect(updateReply, SIGNAL(readyRead()),
			this, SLOT(updateFileRead()));
}

void OBSBasic::updateFileRead()
{
	updateReturnData.push_back(updateReply->readAll());
}

J
jp9000 已提交
896 897
#ifdef __APPLE__
#define VERSION_ENTRY "mac"
J
jp9000 已提交
898 899
#elif _WIN32
#define VERSION_ENTRY "windows"
J
jp9000 已提交
900 901 902 903
#else
#define VERSION_ENTRY "other"
#endif

J
jp9000 已提交
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
void OBSBasic::updateFileFinished()
{
	ui->actionCheckForUpdates->setEnabled(true);

	if (updateReply->error()) {
		blog(LOG_WARNING, "Update check failed: %s",
				QT_TO_UTF8(updateReply->errorString()));
		return;
	}

	const char *jsonReply = updateReturnData.constData();
	if (!jsonReply || !*jsonReply)
		return;

	obs_data_t returnData   = obs_data_create_from_json(jsonReply);
J
jp9000 已提交
919 920 921 922
	obs_data_t versionData  = obs_data_get_obj(returnData, VERSION_ENTRY);
	const char *description = obs_data_get_string(returnData,
			"description");
	const char *download    = obs_data_get_string(versionData, "download");
J
jp9000 已提交
923 924

	if (returnData && versionData && description && download) {
J
jp9000 已提交
925 926 927
		long major   = obs_data_get_int(versionData, "major");
		long minor   = obs_data_get_int(versionData, "minor");
		long patch   = obs_data_get_int(versionData, "patch");
J
jp9000 已提交
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
		long version = MAKE_SEMANTIC_VERSION(major, minor, patch);

		blog(LOG_INFO, "Update check: latest version is: %ld.%ld.%ld",
				major, minor, patch);

		if (version > LIBOBS_API_VER) {
			QString     str = QTStr("UpdateAvailable.Text");
			QMessageBox messageBox(this);

			str = str.arg(QString::number(major),
			              QString::number(minor),
			              QString::number(patch),
			              download);

			messageBox.setWindowTitle(QTStr("UpdateAvailable"));
			messageBox.setTextFormat(Qt::RichText);
			messageBox.setText(str);
			messageBox.setInformativeText(QT_UTF8(description));
			messageBox.exec();

			long long t = (long long)time(nullptr);
			config_set_int(App()->GlobalConfig(), "General",
					"LastUpdateCheck", t);
			config_save(App()->GlobalConfig());
		}
	} else {
		blog(LOG_WARNING, "Bad JSON file received from server");
	}

	obs_data_release(versionData);
	obs_data_release(returnData);
}

961 962 963 964
void OBSBasic::RemoveSelectedScene()
{
	OBSScene scene = GetCurrentScene();
	if (scene) {
965
		obs_source_t source = obs_scene_get_source(scene);
966 967 968 969 970 971 972 973 974
		if (QueryRemoveSource(source))
			obs_source_remove(source);
	}
}

void OBSBasic::RemoveSelectedSceneItem()
{
	OBSSceneItem item = GetCurrentSceneItem();
	if (item) {
J
jp9000 已提交
975
		obs_source_t source = obs_sceneitem_get_source(item);
976
		if (QueryRemoveSource(source))
J
jp9000 已提交
977 978 979 980
			obs_sceneitem_remove(item);
	}
}

981 982 983 984 985 986 987
/* OBS Callbacks */

void OBSBasic::SceneItemAdded(void *data, calldata_t params)
{
	OBSBasic *window = static_cast<OBSBasic*>(data);

	obs_sceneitem_t item = (obs_sceneitem_t)calldata_ptr(params, "item");
J
jp9000 已提交
988

989 990
	QMetaObject::invokeMethod(window, "AddSceneItem",
			Q_ARG(OBSSceneItem, OBSSceneItem(item)));
J
jp9000 已提交
991 992
}

993
void OBSBasic::SceneItemRemoved(void *data, calldata_t params)
994
{
995
	OBSBasic *window = static_cast<OBSBasic*>(data);
996

997 998
	obs_sceneitem_t item = (obs_sceneitem_t)calldata_ptr(params, "item");

999 1000
	QMetaObject::invokeMethod(window, "RemoveSceneItem",
			Q_ARG(OBSSceneItem, OBSSceneItem(item)));
1001 1002 1003 1004
}

void OBSBasic::SourceAdded(void *data, calldata_t params)
{
J
jp9000 已提交
1005
	OBSBasic *window = static_cast<OBSBasic*>(data);
1006
	obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
1007

1008
	if (obs_scene_from_source(source) != NULL)
J
jp9000 已提交
1009
		QMetaObject::invokeMethod(window,
1010 1011
				"AddScene",
				Q_ARG(OBSSource, OBSSource(source)));
1012 1013
}

J
jp9000 已提交
1014
void OBSBasic::SourceRemoved(void *data, calldata_t params)
1015
{
1016
	obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
1017

1018
	if (obs_scene_from_source(source) != NULL)
1019 1020 1021
		QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
				"RemoveScene",
				Q_ARG(OBSSource, OBSSource(source)));
1022 1023
}

1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
void OBSBasic::SourceActivated(void *data, calldata_t params)
{
	obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
	uint32_t     flags  = obs_source_get_output_flags(source);

	if (flags & OBS_SOURCE_AUDIO)
		QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
				"ActivateAudioSource",
				Q_ARG(OBSSource, OBSSource(source)));
}

void OBSBasic::SourceDeactivated(void *data, calldata_t params)
{
	obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
	uint32_t     flags  = obs_source_get_output_flags(source);

	if (flags & OBS_SOURCE_AUDIO)
		QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
				"DeactivateAudioSource",
				Q_ARG(OBSSource, OBSSource(source)));
}

J
jp9000 已提交
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
void OBSBasic::SourceRenamed(void *data, calldata_t params)
{
	const char *newName  = calldata_string(params, "new_name");
	const char *prevName = calldata_string(params, "prev_name");

	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"RenameSources",
			Q_ARG(QString, QT_UTF8(newName)),
			Q_ARG(QString, QT_UTF8(prevName)));
}

1057 1058 1059
void OBSBasic::ChannelChanged(void *data, calldata_t params)
{
	obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
1060
	uint32_t channel = (uint32_t)calldata_int(params, "channel");
1061 1062

	if (channel == 0)
1063 1064 1065
		QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
				"UpdateSceneSelection",
				Q_ARG(OBSSource, OBSSource(source)));
1066 1067
}

1068 1069 1070 1071 1072
void OBSBasic::DrawBackdrop(float cx, float cy)
{
	if (!box)
		return;

1073 1074 1075
	gs_effect_t    solid = obs_get_solid_effect();
	gs_eparam_t    color = gs_effect_get_param_by_name(solid, "color");
	gs_technique_t tech  = gs_effect_get_technique(solid, "Solid");
1076 1077 1078

	vec4 colorVal;
	vec4_set(&colorVal, 0.0f, 0.0f, 0.0f, 1.0f);
1079
	gs_effect_set_vec4(color, &colorVal);
1080

1081 1082
	gs_technique_begin(tech);
	gs_technique_begin_pass(tech, 0);
1083 1084 1085 1086 1087 1088 1089 1090
	gs_matrix_push();
	gs_matrix_identity();
	gs_matrix_scale3f(float(cx), float(cy), 1.0f);

	gs_load_vertexbuffer(box);
	gs_draw(GS_TRISTRIP, 0, 0);

	gs_matrix_pop();
1091 1092
	gs_technique_end_pass(tech);
	gs_technique_end(tech);
1093 1094 1095 1096

	gs_load_vertexbuffer(nullptr);
}

1097 1098
void OBSBasic::RenderMain(void *data, uint32_t cx, uint32_t cy)
{
J
jp9000 已提交
1099
	OBSBasic *window = static_cast<OBSBasic*>(data);
1100 1101 1102 1103
	obs_video_info ovi;

	obs_get_video_info(&ovi);

J
jp9000 已提交
1104 1105
	window->previewCX = int(window->previewScale * float(ovi.base_width));
	window->previewCY = int(window->previewScale * float(ovi.base_height));
1106 1107 1108

	gs_viewport_push();
	gs_projection_push();
1109 1110 1111

	/* --------------------------------------- */

1112 1113
	gs_ortho(0.0f, float(ovi.base_width), 0.0f, float(ovi.base_height),
			-100.0f, 100.0f);
1114
	gs_set_viewport(window->previewX, window->previewY,
J
jp9000 已提交
1115
			window->previewCX, window->previewCY);
1116

1117 1118
	window->DrawBackdrop(float(ovi.base_width), float(ovi.base_height));

J
jp9000 已提交
1119
	obs_render_main_view();
1120
	gs_load_vertexbuffer(nullptr);
1121

1122 1123
	/* --------------------------------------- */

1124 1125 1126
	QSize previewSize = GetPixelSize(window->ui->preview);
	float right  = float(previewSize.width())  - window->previewX;
	float bottom = float(previewSize.height()) - window->previewY;
1127 1128 1129 1130

	gs_ortho(-window->previewX, right,
	         -window->previewY, bottom,
	         -100.0f, 100.0f);
1131
	gs_reset_viewport();
J
jp9000 已提交
1132 1133 1134

	window->ui->preview->DrawSceneEditing();

1135 1136
	/* --------------------------------------- */

1137 1138
	gs_projection_pop();
	gs_viewport_pop();
J
jp9000 已提交
1139 1140 1141

	UNUSED_PARAMETER(cx);
	UNUSED_PARAMETER(cy);
1142 1143
}

J
jp9000 已提交
1144 1145 1146 1147 1148 1149
void OBSBasic::SceneItemMoveUp(void *data, calldata_t params)
{
	OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"MoveSceneItem",
			Q_ARG(OBSSceneItem, OBSSceneItem(item)),
J
jp9000 已提交
1150
			Q_ARG(obs_order_movement, OBS_ORDER_MOVE_UP));
J
jp9000 已提交
1151 1152 1153 1154 1155 1156 1157 1158
}

void OBSBasic::SceneItemMoveDown(void *data, calldata_t params)
{
	OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"MoveSceneItem",
			Q_ARG(OBSSceneItem, OBSSceneItem(item)),
J
jp9000 已提交
1159
			Q_ARG(obs_order_movement, OBS_ORDER_MOVE_DOWN));
J
jp9000 已提交
1160 1161 1162 1163 1164 1165 1166 1167
}

void OBSBasic::SceneItemMoveTop(void *data, calldata_t params)
{
	OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"MoveSceneItem",
			Q_ARG(OBSSceneItem, OBSSceneItem(item)),
J
jp9000 已提交
1168
			Q_ARG(obs_order_movement, OBS_ORDER_MOVE_TOP));
J
jp9000 已提交
1169 1170 1171 1172 1173 1174 1175 1176
}

void OBSBasic::SceneItemMoveBottom(void *data, calldata_t params)
{
	OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
	QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
			"MoveSceneItem",
			Q_ARG(OBSSceneItem, OBSSceneItem(item)),
J
jp9000 已提交
1177
			Q_ARG(obs_order_movement, OBS_ORDER_MOVE_BOTTOM));
J
jp9000 已提交
1178 1179
}

1180 1181
/* Main class functions */

1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
obs_service_t OBSBasic::GetService()
{
	if (!service)
		service = obs_service_create("rtmp_common", NULL, NULL);
	return service;
}

void OBSBasic::SetService(obs_service_t newService)
{
	if (newService) {
		if (service)
			obs_service_destroy(service);
		service = newService;
	}
}

1198 1199 1200 1201 1202 1203
#ifdef _WIN32
#define IS_WIN32 1
#else
#define IS_WIN32 0
#endif

1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
static inline int AttemptToResetVideo(struct obs_video_info *ovi)
{
	int ret = obs_reset_video(ovi);
	if (ret == OBS_VIDEO_INVALID_PARAM) {
		struct obs_video_info new_params = *ovi;

		if (new_params.window_width == 0)
			new_params.window_width = 512;
		if (new_params.window_height == 0)
			new_params.window_height = 512;

		new_params.output_width  = new_params.window_width;
		new_params.output_height = new_params.window_height;
		new_params.base_width    = new_params.window_width;
		new_params.base_height   = new_params.window_height;
		ret = obs_reset_video(&new_params);
	}

	return ret;
}

1225
int OBSBasic::ResetVideo()
J
jp9000 已提交
1226 1227
{
	struct obs_video_info ovi;
1228
	int ret;
J
jp9000 已提交
1229

1230
	GetConfigFPS(ovi.fps_num, ovi.fps_den);
J
jp9000 已提交
1231 1232

	ovi.graphics_module = App()->GetRenderModule();
1233
	ovi.base_width     = (uint32_t)config_get_uint(basicConfig,
J
jp9000 已提交
1234
			"Video", "BaseCX");
1235
	ovi.base_height    = (uint32_t)config_get_uint(basicConfig,
J
jp9000 已提交
1236
			"Video", "BaseCY");
1237
	ovi.output_width   = (uint32_t)config_get_uint(basicConfig,
J
jp9000 已提交
1238
			"Video", "OutputCX");
1239
	ovi.output_height  = (uint32_t)config_get_uint(basicConfig,
J
jp9000 已提交
1240
			"Video", "OutputCY");
1241
	ovi.output_format  = VIDEO_FORMAT_NV12;
J
jp9000 已提交
1242 1243
	ovi.adapter        = 0;
	ovi.gpu_conversion = true;
1244

J
jp9000 已提交
1245
	QTToGSWindow(ui->preview->winId(), ovi.window);
J
jp9000 已提交
1246 1247

	//required to make opengl display stuff on osx(?)
J
jp9000 已提交
1248
	ResizePreview(ovi.base_width, ovi.base_height);
J
jp9000 已提交
1249

1250
	QSize size = GetPixelSize(ui->preview);
J
jp9000 已提交
1251 1252
	ovi.window_width  = size.width();
	ovi.window_height = size.height();
J
jp9000 已提交
1253

1254
	ret = AttemptToResetVideo(&ovi);
1255 1256 1257 1258 1259 1260 1261 1262
	if (IS_WIN32 && ret != OBS_VIDEO_SUCCESS) {
		/* Try OpenGL if DirectX fails on windows */
		if (astrcmpi(ovi.graphics_module, "libobs-opengl") != 0) {
			ovi.graphics_module = "libobs-opengl";
			ret = AttemptToResetVideo(&ovi);
		}
	}

1263 1264
	if (ret == OBS_VIDEO_SUCCESS)
		obs_add_draw_callback(OBSBasic::RenderMain, this);
1265

1266
	return ret;
J
jp9000 已提交
1267
}
J
jp9000 已提交
1268

1269
bool OBSBasic::ResetAudio()
J
jp9000 已提交
1270
{
J
jp9000 已提交
1271
	struct audio_output_info ai;
1272 1273 1274
	ai.name = "Main Audio Track";
	ai.format = AUDIO_FORMAT_FLOAT;

1275
	ai.samples_per_sec = config_get_uint(basicConfig, "Audio",
1276 1277
			"SampleRate");

1278
	const char *channelSetupStr = config_get_string(basicConfig,
1279 1280 1281 1282 1283 1284 1285
			"Audio", "ChannelSetup");

	if (strcmp(channelSetupStr, "Mono") == 0)
		ai.speakers = SPEAKERS_MONO;
	else
		ai.speakers = SPEAKERS_STEREO;

1286
	ai.buffer_ms = config_get_uint(basicConfig, "Audio", "BufferingTime");
J
jp9000 已提交
1287 1288

	return obs_reset_audio(&ai);
J
jp9000 已提交
1289 1290
}

J
jp9000 已提交
1291
void OBSBasic::ResetAudioDevice(const char *sourceId, const char *deviceName,
1292
		const char *deviceDesc, int channel)
J
jp9000 已提交
1293 1294 1295 1296 1297 1298 1299 1300 1301
{
	const char *deviceId = config_get_string(basicConfig, "Audio",
			deviceName);
	obs_source_t source;
	obs_data_t settings;
	bool same = false;

	source = obs_get_output_source(channel);
	if (source) {
1302
		settings = obs_source_get_settings(source);
J
jp9000 已提交
1303
		const char *curId = obs_data_get_string(settings, "device_id");
J
jp9000 已提交
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315

		same = (strcmp(curId, deviceId) == 0);

		obs_data_release(settings);
		obs_source_release(source);
	}

	if (!same)
		obs_set_output_source(channel, nullptr);

	if (!same && strcmp(deviceId, "disabled") != 0) {
		obs_data_t settings = obs_data_create();
J
jp9000 已提交
1316
		obs_data_set_string(settings, "device_id", deviceId);
J
jp9000 已提交
1317
		source = obs_source_create(OBS_SOURCE_TYPE_INPUT,
1318
				sourceId, deviceDesc, settings);
J
jp9000 已提交
1319 1320 1321 1322 1323 1324 1325 1326
		obs_data_release(settings);

		obs_set_output_source(channel, source);
		obs_source_release(source);
	}
}

void OBSBasic::ResetAudioDevices()
J
jp9000 已提交
1327
{
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
	ResetAudioDevice(App()->OutputAudioSource(), "DesktopDevice1",
			Str("Basic.DesktopDevice1"), 1);
	ResetAudioDevice(App()->OutputAudioSource(), "DesktopDevice2",
			Str("Basic.DesktopDevice2"), 2);
	ResetAudioDevice(App()->InputAudioSource(),  "AuxDevice1",
			Str("Basic.AuxDevice1"), 3);
	ResetAudioDevice(App()->InputAudioSource(),  "AuxDevice2",
			Str("Basic.AuxDevice2"), 4);
	ResetAudioDevice(App()->InputAudioSource(),  "AuxDevice3",
			Str("Basic.AuxDevice3"), 5);
J
jp9000 已提交
1338 1339
}

J
jp9000 已提交
1340
void OBSBasic::ResizePreview(uint32_t cx, uint32_t cy)
1341
{
1342
	QSize  targetSize;
J
jp9000 已提交
1343

1344
	/* resize preview panel to fix to the top section of the window */
1345
	targetSize = GetPixelSize(ui->preview);
1346
	GetScaleAndCenterPos(int(cx), int(cy),
1347 1348
			targetSize.width()  - PREVIEW_EDGE_SIZE * 2,
			targetSize.height() - PREVIEW_EDGE_SIZE * 2,
1349
			previewX, previewY, previewScale);
J
jp9000 已提交
1350

1351 1352 1353
	previewX += float(PREVIEW_EDGE_SIZE);
	previewY += float(PREVIEW_EDGE_SIZE);

J
jp9000 已提交
1354 1355 1356 1357 1358
	if (isVisible()) {
		if (resizeTimer)
			killTimer(resizeTimer);
		resizeTimer = startTimer(100);
	}
J
jp9000 已提交
1359 1360
}

J
jp9000 已提交
1361
void OBSBasic::closeEvent(QCloseEvent *event)
J
jp9000 已提交
1362
{
1363 1364 1365 1366 1367 1368 1369
	QWidget::closeEvent(event);
	if (!event->isAccepted())
		return;

	// remove draw callback in case our drawable surfaces go away before
	// the destructor gets called
	obs_remove_draw_callback(OBSBasic::RenderMain, this);
1370 1371
}

J
jp9000 已提交
1372
void OBSBasic::changeEvent(QEvent *event)
1373
{
J
jp9000 已提交
1374 1375
	/* TODO */
	UNUSED_PARAMETER(event);
1376 1377
}

J
jp9000 已提交
1378
void OBSBasic::resizeEvent(QResizeEvent *event)
1379
{
J
jp9000 已提交
1380 1381 1382 1383
	struct obs_video_info ovi;

	if (obs_get_video_info(&ovi))
		ResizePreview(ovi.base_width, ovi.base_height);
J
jp9000 已提交
1384 1385

	UNUSED_PARAMETER(event);
1386 1387
}

J
jp9000 已提交
1388 1389 1390 1391 1392 1393
void OBSBasic::timerEvent(QTimerEvent *event)
{
	if (event->timerId() == resizeTimer) {
		killTimer(resizeTimer);
		resizeTimer = 0;

1394
		QSize size = GetPixelSize(ui->preview);
J
jp9000 已提交
1395 1396 1397 1398
		obs_resize(size.width(), size.height());
	}
}

J
jp9000 已提交
1399
void OBSBasic::on_action_New_triggered()
1400
{
J
jp9000 已提交
1401
	/* TODO */
1402 1403
}

J
jp9000 已提交
1404
void OBSBasic::on_action_Open_triggered()
1405
{
J
jp9000 已提交
1406
	/* TODO */
1407 1408
}

J
jp9000 已提交
1409
void OBSBasic::on_action_Save_triggered()
1410
{
J
jp9000 已提交
1411
	/* TODO */
1412 1413
}

P
Palana 已提交
1414 1415 1416 1417 1418 1419
void OBSBasic::on_action_Settings_triggered()
{
	OBSBasicSettings settings(this);
	settings.exec();
}

1420 1421
void OBSBasic::on_scenes_currentItemChanged(QListWidgetItem *current,
		QListWidgetItem *prev)
1422 1423
{
	obs_source_t source = NULL;
J
jp9000 已提交
1424

1425 1426 1427 1428
	if (sceneChanging)
		return;

	if (current) {
J
jp9000 已提交
1429 1430
		obs_scene_t scene;

1431
		scene = current->data(Qt::UserRole).value<OBSScene>();
1432
		source = obs_scene_get_source(scene);
1433 1434
	}

1435
	/* TODO: allow transitions */
1436
	obs_set_output_source(0, source);
1437 1438

	UNUSED_PARAMETER(prev);
1439 1440
}

J
jp9000 已提交
1441 1442 1443 1444 1445
void OBSBasic::EditSceneName()
{
	ui->scenes->editItem(ui->scenes->currentItem());
}

J
jp9000 已提交
1446
void OBSBasic::on_scenes_customContextMenuRequested(const QPoint &pos)
1447
{
J
jp9000 已提交
1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
	QListWidgetItem *item = ui->scenes->itemAt(pos);

	QMenu popup;
	popup.addAction(QTStr("Add"),
			this, SLOT(on_actionAddScene_triggered()));

	if (item)
		popup.addAction(QTStr("Remove"),
				this, SLOT(RemoveSelectedScene()));

	popup.exec(QCursor::pos());
1459 1460
}

J
jp9000 已提交
1461
void OBSBasic::on_actionAddScene_triggered()
1462
{
1463
	string name;
S
Socapex 已提交
1464
	QString format{QTStr("Basic.Main.DefaultSceneName.Text")};
P
Palana 已提交
1465 1466 1467

	int i = 1;
	QString placeHolderText = format.arg(i);
P
Palana 已提交
1468 1469 1470
	obs_source_t source = nullptr;
	while ((source = obs_get_source_by_name(QT_TO_UTF8(placeHolderText)))) {
		obs_source_release(source);
P
Palana 已提交
1471
		placeHolderText = format.arg(++i);
P
Palana 已提交
1472
	}
S
Socapex 已提交
1473

J
jp9000 已提交
1474
	bool accepted = NameDialog::AskForName(this,
1475 1476
			QTStr("Basic.Main.AddSceneDlg.Title"),
			QTStr("Basic.Main.AddSceneDlg.Text"),
S
Socapex 已提交
1477 1478
			name,
			placeHolderText);
1479

J
jp9000 已提交
1480
	if (accepted) {
J
jp9000 已提交
1481 1482
		if (name.empty()) {
			QMessageBox::information(this,
1483 1484
					QTStr("NoNameEntered.Title"),
					QTStr("NoNameEntered.Text"));
J
jp9000 已提交
1485 1486 1487 1488
			on_actionAddScene_triggered();
			return;
		}

1489 1490
		obs_source_t source = obs_get_source_by_name(name.c_str());
		if (source) {
J
jp9000 已提交
1491
			QMessageBox::information(this,
1492 1493
					QTStr("NameExists.Title"),
					QTStr("NameExists.Text"));
1494 1495

			obs_source_release(source);
J
jp9000 已提交
1496
			on_actionAddScene_triggered();
1497 1498 1499
			return;
		}

1500
		obs_scene_t scene = obs_scene_create(name.c_str());
1501
		source = obs_scene_get_source(scene);
1502
		obs_add_source(source);
1503
		obs_scene_release(scene);
1504 1505

		obs_set_output_source(0, source);
1506
	}
1507 1508
}

J
jp9000 已提交
1509
void OBSBasic::on_actionRemoveScene_triggered()
1510
{
1511
	OBSScene     scene  = GetCurrentScene();
1512
	obs_source_t source = obs_scene_get_source(scene);
1513 1514 1515

	if (source && QueryRemoveSource(source))
		obs_source_remove(source);
1516 1517
}

J
jp9000 已提交
1518
void OBSBasic::on_actionSceneProperties_triggered()
1519
{
J
jp9000 已提交
1520
	/* TODO */
1521 1522
}

J
jp9000 已提交
1523
void OBSBasic::on_actionSceneUp_triggered()
1524
{
J
jp9000 已提交
1525
	/* TODO */
1526 1527
}

J
jp9000 已提交
1528
void OBSBasic::on_actionSceneDown_triggered()
1529
{
J
jp9000 已提交
1530
	/* TODO */
1531 1532
}

1533 1534
void OBSBasic::on_sources_currentItemChanged(QListWidgetItem *current,
		QListWidgetItem *prev)
1535
{
J
jp9000 已提交
1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
	auto select_one = [] (obs_scene_t scene, obs_sceneitem_t item,
			void *param)
	{
		obs_sceneitem_t selectedItem =
			*reinterpret_cast<OBSSceneItem*>(param);
		obs_sceneitem_select(item, (selectedItem == item));

		UNUSED_PARAMETER(scene);
		return true;
	};

	if (!current)
		return;

	OBSSceneItem item = current->data(Qt::UserRole).value<OBSSceneItem>();
J
jp9000 已提交
1551
	obs_source_t source = obs_sceneitem_get_source(item);
1552 1553 1554
	if ((obs_source_get_output_flags(source) & OBS_SOURCE_VIDEO) == 0)
		return;

J
jp9000 已提交
1555 1556
	obs_scene_enum_items(GetCurrentScene(), select_one, &item);

1557
	UNUSED_PARAMETER(prev);
1558 1559
}

J
jp9000 已提交
1560 1561 1562 1563 1564
void OBSBasic::EditSceneItemName()
{
	ui->sources->editItem(ui->sources->currentItem());
}

J
jp9000 已提交
1565
void OBSBasic::on_sources_customContextMenuRequested(const QPoint &pos)
1566
{
J
jp9000 已提交
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
	QListWidgetItem *item = ui->sources->itemAt(pos);

	QMenu popup;
	QPointer<QMenu> addSourceMenu = CreateAddSourcePopupMenu();
	if (addSourceMenu)
		popup.addMenu(addSourceMenu);

	if (item) {
		if (addSourceMenu)
			popup.addSeparator();

		popup.addAction(QTStr("Rename"), this,
				SLOT(EditSceneItemName()));
1580 1581 1582
		popup.addAction(QTStr("Remove"), this,
				SLOT(on_actionRemoveSource_triggered()),
				QKeySequence::Delete);
J
jp9000 已提交
1583 1584
		popup.addSeparator();
		popup.addMenu(ui->orderMenu);
J
jp9000 已提交
1585 1586 1587 1588 1589 1590 1591
		popup.addMenu(ui->transformMenu);
		popup.addSeparator();
		popup.addAction(QTStr("Properties"), this,
				SLOT(on_actionSourceProperties_triggered()));
	}

	popup.exec(QCursor::pos());
1592 1593
}

J
jp9000 已提交
1594
void OBSBasic::AddSource(const char *id)
1595
{
1596 1597 1598 1599
	if (id && *id) {
		OBSBasicSourceSelect sourceSelect(this, id);
		sourceSelect.exec();
	}
1600 1601
}

1602
QMenu *OBSBasic::CreateAddSourcePopupMenu()
1603
{
1604
	const char *type;
J
jp9000 已提交
1605 1606
	bool foundValues = false;
	size_t idx = 0;
1607

1608
	QMenu *popup = new QMenu(QTStr("Add"));
J
jp9000 已提交
1609
	while (obs_enum_input_types(idx++, &type)) {
1610
		const char *name = obs_source_get_display_name(
1611
				OBS_SOURCE_TYPE_INPUT, type);
1612

1613 1614 1615
		if (strcmp(type, "scene") == 0)
			continue;

J
jp9000 已提交
1616 1617
		QAction *popupItem = new QAction(QT_UTF8(name), this);
		popupItem->setData(QT_UTF8(type));
1618 1619 1620
		connect(popupItem, SIGNAL(triggered(bool)),
				this, SLOT(AddSourceFromAction()));
		popup->addAction(popupItem);
1621

J
jp9000 已提交
1622
		foundValues = true;
1623 1624
	}

1625 1626 1627
	if (!foundValues) {
		delete popup;
		popup = nullptr;
1628
	}
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654

	return popup;
}

void OBSBasic::AddSourceFromAction()
{
	QAction *action = qobject_cast<QAction*>(sender());
	if (!action)
		return;

	AddSource(QT_TO_UTF8(action->data().toString()));
}

void OBSBasic::AddSourcePopupMenu(const QPoint &pos)
{
	if (!GetCurrentScene()) {
		// Tell the user he needs a scene first (help beginners).
		QMessageBox::information(this,
				QTStr("Basic.Main.AddSourceHelp.Title"),
				QTStr("Basic.Main.AddSourceHelp.Text"));
		return;
	}

	QPointer<QMenu> popup = CreateAddSourcePopupMenu();
	if (popup)
		popup->exec(pos);
1655 1656
}

J
jp9000 已提交
1657
void OBSBasic::on_actionAddSource_triggered()
1658
{
J
jp9000 已提交
1659
	AddSourcePopupMenu(QCursor::pos());
1660 1661
}

J
jp9000 已提交
1662
void OBSBasic::on_actionRemoveSource_triggered()
1663
{
1664
	OBSSceneItem item   = GetCurrentSceneItem();
J
jp9000 已提交
1665
	obs_source_t source = obs_sceneitem_get_source(item);
1666 1667

	if (source && QueryRemoveSource(source))
J
jp9000 已提交
1668
		obs_sceneitem_remove(item);
1669 1670
}

J
jp9000 已提交
1671
void OBSBasic::on_actionSourceProperties_triggered()
1672
{
1673
	OBSSceneItem item = GetCurrentSceneItem();
J
jp9000 已提交
1674
	OBSSource source = obs_sceneitem_get_source(item);
1675

1676 1677
	if (source)
		CreatePropertiesWindow(source);
1678 1679
}

J
jp9000 已提交
1680
void OBSBasic::on_actionSourceUp_triggered()
1681
{
J
jp9000 已提交
1682
	OBSSceneItem item = GetCurrentSceneItem();
J
jp9000 已提交
1683
	obs_sceneitem_set_order(item, OBS_ORDER_MOVE_UP);
1684
}
J
jp9000 已提交
1685

J
jp9000 已提交
1686
void OBSBasic::on_actionSourceDown_triggered()
1687
{
J
jp9000 已提交
1688
	OBSSceneItem item = GetCurrentSceneItem();
J
jp9000 已提交
1689
	obs_sceneitem_set_order(item, OBS_ORDER_MOVE_DOWN);
1690 1691
}

J
jp9000 已提交
1692 1693 1694
void OBSBasic::on_actionMoveUp_triggered()
{
	OBSSceneItem item = GetCurrentSceneItem();
J
jp9000 已提交
1695
	obs_sceneitem_set_order(item, OBS_ORDER_MOVE_UP);
J
jp9000 已提交
1696 1697 1698 1699 1700
}

void OBSBasic::on_actionMoveDown_triggered()
{
	OBSSceneItem item = GetCurrentSceneItem();
J
jp9000 已提交
1701
	obs_sceneitem_set_order(item, OBS_ORDER_MOVE_DOWN);
J
jp9000 已提交
1702 1703 1704 1705 1706
}

void OBSBasic::on_actionMoveToTop_triggered()
{
	OBSSceneItem item = GetCurrentSceneItem();
J
jp9000 已提交
1707
	obs_sceneitem_set_order(item, OBS_ORDER_MOVE_TOP);
J
jp9000 已提交
1708 1709 1710 1711 1712
}

void OBSBasic::on_actionMoveToBottom_triggered()
{
	OBSSceneItem item = GetCurrentSceneItem();
J
jp9000 已提交
1713
	obs_sceneitem_set_order(item, OBS_ORDER_MOVE_BOTTOM);
J
jp9000 已提交
1714 1715
}

J
jp9000 已提交
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764
static char *ReadLogFile(const char *log)
{
	BPtr<char> logDir(os_get_config_path("obs-studio/logs"));

	string path = (char*)logDir;
	path += "/";
	path += log;

	char *file = os_quick_read_utf8_file(path.c_str());
	if (!file)
		blog(LOG_WARNING, "Failed to read log file %s", path.c_str());

	return file;
}

void OBSBasic::UploadLog(const char *file)
{
	dstr fileString = {};
	stringstream ss;
	string       jsonData;

	dstr_move_array(&fileString, ReadLogFile(file));

	if (!fileString.array)
		return;

	if (!*fileString.array) {
		dstr_free(&fileString);
		return;
	}

	ui->menuLogFiles->setEnabled(false);

	dstr_replace(&fileString, "\\", "\\\\");
	dstr_replace(&fileString, "\"", "\\\"");
	dstr_replace(&fileString, "\n", "\\n");
	dstr_replace(&fileString, "\r", "\\r");
	dstr_replace(&fileString, "\t", "\\t");
	dstr_replace(&fileString, "\t", "\\t");
	dstr_replace(&fileString, "/",  "\\/");

	ss << "{ \"public\": false, \"description\": \"OBS " <<
		App()->GetVersionString() << " log file uploaded at " <<
		CurrentDateTimeString() << "\", \"files\": { \"" <<
		file << "\": { \"content\": \"" <<
		fileString.array << "\" } } }";

	jsonData = std::move(ss.str());

J
jp9000 已提交
1765
	logUploadPostData.setData(jsonData.c_str(), (int)jsonData.size());
J
jp9000 已提交
1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787

	QUrl url("https://api.github.com/gists");
	logUploadReply = networkManager.post(QNetworkRequest(url),
			&logUploadPostData);
	connect(logUploadReply, SIGNAL(finished()),
			this, SLOT(logUploadFinished()));
	connect(logUploadReply, SIGNAL(readyRead()),
			this, SLOT(logUploadRead()));

	dstr_free(&fileString);
}

void OBSBasic::on_actionUploadCurrentLog_triggered()
{
	UploadLog(App()->GetCurrentLog());
}

void OBSBasic::on_actionUploadLastLog_triggered()
{
	UploadLog(App()->GetLastLog());
}

J
jp9000 已提交
1788 1789 1790 1791 1792
void OBSBasic::on_actionCheckForUpdates_triggered()
{
	CheckForUpdates();
}

J
jp9000 已提交
1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
void OBSBasic::logUploadRead()
{
	logUploadReturnData.push_back(logUploadReply->readAll());
}

void OBSBasic::logUploadFinished()
{
	ui->menuLogFiles->setEnabled(true);

	if (logUploadReply->error()) {
		QMessageBox::information(this,
				QTStr("LogReturnDialog.ErrorUploadingLog"),
				logUploadReply->errorString());
		return;
	}

	const char *jsonReply = logUploadReturnData.constData();
	if (!jsonReply || !*jsonReply)
		return;

	obs_data_t returnData = obs_data_create_from_json(jsonReply);
J
jp9000 已提交
1814
	QString logURL = obs_data_get_string(returnData, "html_url");
J
jp9000 已提交
1815 1816 1817 1818 1819 1820
	obs_data_release(returnData);

	OBSLogReply logDialog(this, logURL);
	logDialog.exec();
}

1821
static void RenameListItem(OBSBasic *parent, QListWidget *listWidget, obs_source_t source,
1822 1823
		const string &name)
{
1824
	const char      *prevName   = obs_source_get_name(source);
1825 1826 1827 1828 1829
	obs_source_t    foundSource = obs_get_source_by_name(name.c_str());
	QListWidgetItem *listItem   = listWidget->currentItem();

	if (foundSource || name.compare(prevName) == 0 || name.empty()) {
		listItem->setText(QT_UTF8(prevName));
1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840

		if (foundSource || name.compare(prevName) == 0) {
			QMessageBox::information(parent,
				QTStr("NameExists.Title"),
				QTStr("NameExists.Text"));
		} else if (name.empty()) {
			QMessageBox::information(parent,
				QTStr("NoNameEntered.Title"),
				QTStr("NoNameEntered.Text"));
		}

1841 1842 1843
		obs_source_release(foundSource);
	} else {
		listItem->setText(QT_UTF8(name.c_str()));
1844
		obs_source_set_name(source, name.c_str());
1845 1846 1847
	}
}

J
jp9000 已提交
1848 1849 1850 1851 1852
void OBSBasic::SceneNameEdited(QWidget *editor,
		QAbstractItemDelegate::EndEditHint endHint)
{
	OBSScene  scene = GetCurrentScene();
	QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
1853
	string    text  = QT_TO_UTF8(edit->text().trimmed());
J
jp9000 已提交
1854 1855 1856 1857

	if (!scene)
		return;

1858
	obs_source_t source = obs_scene_get_source(scene);
1859
	RenameListItem(this, ui->scenes, source, text);
J
jp9000 已提交
1860 1861 1862 1863 1864 1865 1866 1867 1868

	UNUSED_PARAMETER(endHint);
}

void OBSBasic::SceneItemNameEdited(QWidget *editor,
		QAbstractItemDelegate::EndEditHint endHint)
{
	OBSSceneItem item  = GetCurrentSceneItem();
	QLineEdit    *edit = qobject_cast<QLineEdit*>(editor);
1869
	string       text  = QT_TO_UTF8(edit->text().trimmed());
J
jp9000 已提交
1870 1871 1872 1873

	if (!item)
		return;

J
jp9000 已提交
1874
	obs_source_t source = obs_sceneitem_get_source(item);
1875
	RenameListItem(this, ui->sources, source, text);
J
jp9000 已提交
1876 1877 1878 1879

	UNUSED_PARAMETER(endHint);
}

1880
void OBSBasic::StreamingStart()
1881
{
1882
	ui->streamButton->setText(QTStr("Basic.Main.StopStreaming"));
J
jp9000 已提交
1883
	ui->streamButton->setEnabled(true);
J
jp9000 已提交
1884
	ui->statusbar->StreamStarted(streamOutput);
1885 1886
}

1887
void OBSBasic::StreamingStop(int code)
1888
{
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
	const char *errorMessage;

	switch (code) {
	case OBS_OUTPUT_BAD_PATH:
		errorMessage = Str("Output.ConnectFail.BadPath");
		break;

	case OBS_OUTPUT_CONNECT_FAILED:
		errorMessage = Str("Output.ConnectFail.ConnectFailed");
		break;

	case OBS_OUTPUT_INVALID_STREAM:
		errorMessage = Str("Output.ConnectFail.InvalidStream");
		break;

1904
	default:
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
	case OBS_OUTPUT_ERROR:
		errorMessage = Str("Output.ConnectFail.Error");
		break;

	case OBS_OUTPUT_DISCONNECTED:
		/* doesn't happen if output is set to reconnect.  note that
		 * reconnects are handled in the output, not in the UI */
		errorMessage = Str("Output.ConnectFail.Disconnected");
	}

1915
	activeRefs--;
J
jp9000 已提交
1916
	ui->statusbar->StreamStopped();
1917

1918
	ui->streamButton->setText(QTStr("Basic.Main.StartStreaming"));
J
jp9000 已提交
1919
	ui->streamButton->setEnabled(true);
1920 1921 1922 1923 1924

	if (code != OBS_OUTPUT_SUCCESS)
		QMessageBox::information(this,
				QTStr("Output.ConnectFail.Title"),
				QT_UTF8(errorMessage));
J
jp9000 已提交
1925 1926
}

1927
void OBSBasic::RecordingStop()
1928
{
1929 1930 1931
	activeRefs--;
	ui->recordButton->setText(QTStr("Basic.Main.StartRecording"));
}
1932

1933 1934 1935
void OBSBasic::SetupEncoders()
{
	if (activeRefs == 0) {
1936 1937 1938 1939
		obs_data_t x264Settings = obs_data_create();
		obs_data_t aacSettings  = obs_data_create();

		int videoBitrate = config_get_uint(basicConfig, "SimpleOutput",
1940
				"VBitrate");
1941
		int audioBitrate = config_get_uint(basicConfig, "SimpleOutput",
1942 1943
				"ABitrate");

J
jp9000 已提交
1944 1945 1946
		obs_data_set_int(x264Settings, "bitrate", videoBitrate);
		obs_data_set_int(x264Settings, "buffer_size", videoBitrate);
		obs_data_set_bool(x264Settings, "cbr", true);
1947

J
jp9000 已提交
1948
		obs_data_set_int(aacSettings, "bitrate", audioBitrate);
1949

1950 1951
		obs_encoder_update(x264, x264Settings);
		obs_encoder_update(aac,  aacSettings);
J
jp9000 已提交
1952

1953 1954
		obs_data_release(x264Settings);
		obs_data_release(aacSettings);
1955

1956 1957
		obs_encoder_set_video(x264, obs_get_video());
		obs_encoder_set_audio(aac,  obs_get_audio());
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
	}
}

void OBSBasic::on_streamButton_clicked()
{
	if (obs_output_active(streamOutput)) {
		obs_output_stop(streamOutput);
	} else {

		SaveService();
		SetupEncoders();

1970 1971 1972
		obs_output_set_video_encoder(streamOutput, x264);
		obs_output_set_audio_encoder(streamOutput, aac);
		obs_output_set_service(streamOutput, service);
1973

J
jp9000 已提交
1974 1975 1976 1977 1978 1979 1980 1981 1982
		bool reconnect = config_get_bool(basicConfig, "SimpleOutput",
				"Reconnect");
		int retryDelay = config_get_uint(basicConfig, "SimpleOutput",
				"RetryDelay");
		int maxRetries = config_get_uint(basicConfig, "SimpleOutput",
				"MaxRetries");
		if (!reconnect)
			maxRetries = 0;

J
jp9000 已提交
1983 1984
		obs_output_set_reconnect_settings(streamOutput, maxRetries,
				retryDelay);
J
jp9000 已提交
1985

1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030
		if (obs_output_start(streamOutput)) {
			activeRefs++;

			ui->streamButton->setEnabled(false);
			ui->streamButton->setText(
					QTStr("Basic.Main.Connecting"));
		}
	}
}

void OBSBasic::on_recordButton_clicked()
{
	if (obs_output_active(fileOutput)) {
		obs_output_stop(fileOutput);
	} else {

		const char *path = config_get_string(basicConfig,
				"SimpleOutput", "FilePath");

		os_dir_t dir = path ? os_opendir(path) : nullptr;

		if (!dir) {
			QMessageBox::information(this,
					QTStr("Output.BadPath.Title"),
					QTStr("Output.BadPath.Text"));
			return;
		}

		os_closedir(dir);

		string strPath;
		strPath += path;

		char lastChar = strPath.back();
		if (lastChar != '/' && lastChar != '\\')
			strPath += "/";

		strPath += GenerateTimeDateFilename("flv");

		SetupEncoders();

		obs_output_set_video_encoder(fileOutput, x264);
		obs_output_set_audio_encoder(fileOutput, aac);

		obs_data_t settings = obs_data_create();
J
jp9000 已提交
2031
		obs_data_set_string(settings, "path", strPath.c_str());
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042

		obs_output_update(fileOutput, settings);

		obs_data_release(settings);

		if (obs_output_start(fileOutput)) {
			activeRefs++;

			ui->recordButton->setText(
					QTStr("Basic.Main.StopRecording"));
		}
J
jp9000 已提交
2043 2044 2045
	}
}

J
jp9000 已提交
2046
void OBSBasic::on_settingsButton_clicked()
J
jp9000 已提交
2047
{
2048 2049
	OBSBasicSettings settings(this);
	settings.exec();
J
jp9000 已提交
2050
}
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118

void OBSBasic::GetFPSCommon(uint32_t &num, uint32_t &den) const
{
	const char *val = config_get_string(basicConfig, "Video", "FPSCommon");

	if (strcmp(val, "10") == 0) {
		num = 10;
		den = 1;
	} else if (strcmp(val, "20") == 0) {
		num = 20;
		den = 1;
	} else if (strcmp(val, "25") == 0) {
		num = 25;
		den = 1;
	} else if (strcmp(val, "29.97") == 0) {
		num = 30000;
		den = 1001;
	} else if (strcmp(val, "48") == 0) {
		num = 48;
		den = 1;
	} else if (strcmp(val, "59.94") == 0) {
		num = 60000;
		den = 1001;
	} else if (strcmp(val, "60") == 0) {
		num = 60;
		den = 1;
	} else {
		num = 30;
		den = 1;
	}
}

void OBSBasic::GetFPSInteger(uint32_t &num, uint32_t &den) const
{
	num = (uint32_t)config_get_uint(basicConfig, "Video", "FPSInt");
	den = 1;
}

void OBSBasic::GetFPSFraction(uint32_t &num, uint32_t &den) const
{
	num = (uint32_t)config_get_uint(basicConfig, "Video", "FPSNum");
	den = (uint32_t)config_get_uint(basicConfig, "Video", "FPSDen");
}

void OBSBasic::GetFPSNanoseconds(uint32_t &num, uint32_t &den) const
{
	num = 1000000000;
	den = (uint32_t)config_get_uint(basicConfig, "Video", "FPSNS");
}

void OBSBasic::GetConfigFPS(uint32_t &num, uint32_t &den) const
{
	uint32_t type = config_get_uint(basicConfig, "Video", "FPSType");

	if (type == 1) //"Integer"
		GetFPSInteger(num, den);
	else if (type == 2) //"Fraction"
		GetFPSFraction(num, den);
	else if (false) //"Nanoseconds", currently not implemented
		GetFPSNanoseconds(num, den);
	else
		GetFPSCommon(num, den);
}

config_t OBSBasic::Config() const
{
	return basicConfig;
}
J
jp9000 已提交
2119 2120 2121

void OBSBasic::on_actionEditTransform_triggered()
{
2122 2123 2124
	if (transformWindow)
		transformWindow->close();

J
jp9000 已提交
2125 2126
	transformWindow = new OBSBasicTransform(this);
	transformWindow->show();
2127
	transformWindow->setAttribute(Qt::WA_DeleteOnClose, true);
J
jp9000 已提交
2128 2129 2130 2131 2132 2133 2134 2135 2136
}

void OBSBasic::on_actionResetTransform_triggered()
{
	auto func = [] (obs_scene_t scene, obs_sceneitem_t item, void *param)
	{
		if (!obs_sceneitem_selected(item))
			return true;

2137
		obs_transform_info info;
J
jp9000 已提交
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
		vec2_set(&info.pos, 0.0f, 0.0f);
		vec2_set(&info.scale, 1.0f, 1.0f);
		info.rot = 0.0f;
		info.alignment = OBS_ALIGN_TOP | OBS_ALIGN_LEFT;
		info.bounds_type = OBS_BOUNDS_NONE;
		info.bounds_alignment = OBS_ALIGN_CENTER;
		vec2_set(&info.bounds, 0.0f, 0.0f);
		obs_sceneitem_set_info(item, &info);

		UNUSED_PARAMETER(scene);
		UNUSED_PARAMETER(param);
		return true;
	};

	obs_scene_enum_items(GetCurrentScene(), func, nullptr);
}

2155
static void GetItemBox(obs_sceneitem_t item, vec3 &tl, vec3 &br)
J
jp9000 已提交
2156 2157 2158 2159 2160
{
	matrix4 boxTransform;
	obs_sceneitem_get_box_transform(item, &boxTransform);

	vec3_set(&tl, M_INFINITE, M_INFINITE, 0.0f);
2161
	vec3_set(&br, -M_INFINITE, -M_INFINITE, 0.0f);
J
jp9000 已提交
2162

2163
	auto GetMinPos = [&] (float x, float y)
J
jp9000 已提交
2164 2165 2166 2167
	{
		vec3 pos;
		vec3_set(&pos, x, y, 0.0f);
		vec3_transform(&pos, &pos, &boxTransform);
2168 2169
		vec3_min(&tl, &tl, &pos);
		vec3_max(&br, &br, &pos);
J
jp9000 已提交
2170 2171
	};

2172 2173 2174 2175 2176 2177 2178 2179 2180 2181
	GetMinPos(0.0f, 0.0f);
	GetMinPos(1.0f, 0.0f);
	GetMinPos(0.0f, 1.0f);
	GetMinPos(1.0f, 1.0f);
}

static vec3 GetItemTL(obs_sceneitem_t item)
{
	vec3 tl, br;
	GetItemBox(item, tl, br);
J
jp9000 已提交
2182 2183 2184 2185 2186 2187 2188 2189
	return tl;
}

static void SetItemTL(obs_sceneitem_t item, const vec3 &tl)
{
	vec3 newTL;
	vec2 pos;

J
jp9000 已提交
2190
	obs_sceneitem_get_pos(item, &pos);
J
jp9000 已提交
2191 2192 2193
	newTL = GetItemTL(item);
	pos.x += tl.x - newTL.x;
	pos.y += tl.y - newTL.y;
J
jp9000 已提交
2194
	obs_sceneitem_set_pos(item, &pos);
J
jp9000 已提交
2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206
}

static bool RotateSelectedSources(obs_scene_t scene, obs_sceneitem_t item,
		void *param)
{
	if (!obs_sceneitem_selected(item))
		return true;

	float rot = *reinterpret_cast<float*>(param);

	vec3 tl = GetItemTL(item);

J
jp9000 已提交
2207
	rot += obs_sceneitem_get_rot(item);
J
jp9000 已提交
2208 2209
	if (rot >= 360.0f)       rot -= 360.0f;
	else if (rot <= -360.0f) rot += 360.0f;
J
jp9000 已提交
2210
	obs_sceneitem_set_rot(item, rot);
J
jp9000 已提交
2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247

	SetItemTL(item, tl);

	UNUSED_PARAMETER(scene);
	UNUSED_PARAMETER(param);
	return true;
};

void OBSBasic::on_actionRotate90CW_triggered()
{
	float f90CW = 90.0f;
	obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f90CW);
}

void OBSBasic::on_actionRotate90CCW_triggered()
{
	float f90CCW = -90.0f;
	obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f90CCW);
}

void OBSBasic::on_actionRotate180_triggered()
{
	float f180 = 180.0f;
	obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f180);
}

static bool MultiplySelectedItemScale(obs_scene_t scene, obs_sceneitem_t item,
		void *param)
{
	vec2 &mul = *reinterpret_cast<vec2*>(param);

	if (!obs_sceneitem_selected(item))
		return true;

	vec3 tl = GetItemTL(item);

	vec2 scale;
J
jp9000 已提交
2248
	obs_sceneitem_get_scale(item, &scale);
J
jp9000 已提交
2249
	vec2_mul(&scale, &scale, &mul);
J
jp9000 已提交
2250
	obs_sceneitem_set_scale(item, &scale);
J
jp9000 已提交
2251 2252

	SetItemTL(item, tl);
J
jp9000 已提交
2253 2254

	UNUSED_PARAMETER(scene);
J
jp9000 已提交
2255 2256 2257 2258 2259
	return true;
}

void OBSBasic::on_actionFlipHorizontal_triggered()
{
J
jp9000 已提交
2260 2261
	vec2 scale;
	vec2_set(&scale, -1.0f, 1.0f);
J
jp9000 已提交
2262 2263 2264 2265 2266 2267
	obs_scene_enum_items(GetCurrentScene(), MultiplySelectedItemScale,
			&scale);
}

void OBSBasic::on_actionFlipVertical_triggered()
{
J
jp9000 已提交
2268 2269
	vec2 scale;
	vec2_set(&scale, 1.0f, -1.0f);
J
jp9000 已提交
2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284
	obs_scene_enum_items(GetCurrentScene(), MultiplySelectedItemScale,
			&scale);
}

static bool CenterAlignSelectedItems(obs_scene_t scene, obs_sceneitem_t item,
		void *param)
{
	obs_bounds_type boundsType = *reinterpret_cast<obs_bounds_type*>(param);

	if (!obs_sceneitem_selected(item))
		return true;

	obs_video_info ovi;
	obs_get_video_info(&ovi);

2285
	obs_transform_info itemInfo;
J
jp9000 已提交
2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317
	vec2_set(&itemInfo.pos, 0.0f, 0.0f);
	vec2_set(&itemInfo.scale, 1.0f, 1.0f);
	itemInfo.alignment = OBS_ALIGN_LEFT | OBS_ALIGN_TOP;
	itemInfo.rot = 0.0f;

	vec2_set(&itemInfo.bounds,
			float(ovi.base_width), float(ovi.base_height));
	itemInfo.bounds_type = boundsType;
	itemInfo.bounds_alignment = OBS_ALIGN_CENTER;

	obs_sceneitem_set_info(item, &itemInfo);

	UNUSED_PARAMETER(scene);
	return true;
}

void OBSBasic::on_actionFitToScreen_triggered()
{
	obs_bounds_type boundsType = OBS_BOUNDS_SCALE_INNER;
	obs_scene_enum_items(GetCurrentScene(), CenterAlignSelectedItems,
			&boundsType);
}

void OBSBasic::on_actionStretchToScreen_triggered()
{
	obs_bounds_type boundsType = OBS_BOUNDS_STRETCH;
	obs_scene_enum_items(GetCurrentScene(), CenterAlignSelectedItems,
			&boundsType);
}

void OBSBasic::on_actionCenterToScreen_triggered()
{
2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343
	auto func = [] (obs_scene_t scene, obs_sceneitem_t item, void *param)
	{
		vec3 tl, br, itemCenter, screenCenter, offset;
		obs_video_info ovi;

		if (!obs_sceneitem_selected(item))
			return true;

		obs_get_video_info(&ovi);

		vec3_set(&screenCenter, float(ovi.base_width),
				float(ovi.base_height), 0.0f);
		vec3_mulf(&screenCenter, &screenCenter, 0.5f);

		GetItemBox(item, tl, br);

		vec3_sub(&itemCenter, &br, &tl);
		vec3_mulf(&itemCenter, &itemCenter, 0.5f);
		vec3_add(&itemCenter, &itemCenter, &tl);

		vec3_sub(&offset, &screenCenter, &itemCenter);
		vec3_add(&tl, &tl, &offset);

		SetItemTL(item, tl);

		UNUSED_PARAMETER(scene);
J
jp9000 已提交
2344
		UNUSED_PARAMETER(param);
2345 2346 2347 2348
		return true;
	};

	obs_scene_enum_items(GetCurrentScene(), func, nullptr);
J
jp9000 已提交
2349
}