| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 | 
							- /******************************************************************************
 
-     Copyright (C) 2015 by Hugh Bailey <[email protected]>
 
-     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
 
-     the Free Software Foundation, either version 2 of the License, or
 
-     (at your option) any later version.
 
-     This program is distributed in the hope that it will be useful,
 
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
 
-     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/>.
 
- ******************************************************************************/
 
- #include <obs.hpp>
 
- #include <util/util.hpp>
 
- #include <QMessageBox>
 
- #include <QVariant>
 
- #include <QFileDialog>
 
- #include <QStandardPaths>
 
- #include "item-widget-helpers.hpp"
 
- #include "window-basic-main.hpp"
 
- #include "window-importer.hpp"
 
- #include "window-namedialog.hpp"
 
- #include "qt-wrappers.hpp"
 
- using namespace std;
 
- void EnumSceneCollections(std::function<bool(const char *, const char *)> &&cb)
 
- {
 
- 	char path[512];
 
- 	os_glob_t *glob;
 
- 	int ret = GetConfigPath(path, sizeof(path),
 
- 				"obs-studio/basic/scenes/*.json");
 
- 	if (ret <= 0) {
 
- 		blog(LOG_WARNING, "Failed to get config path for scene "
 
- 				  "collections");
 
- 		return;
 
- 	}
 
- 	if (os_glob(path, 0, &glob) != 0) {
 
- 		blog(LOG_WARNING, "Failed to glob scene collections");
 
- 		return;
 
- 	}
 
- 	for (size_t i = 0; i < glob->gl_pathc; i++) {
 
- 		const char *filePath = glob->gl_pathv[i].path;
 
- 		if (glob->gl_pathv[i].directory)
 
- 			continue;
 
- 		OBSDataAutoRelease data =
 
- 			obs_data_create_from_json_file_safe(filePath, "bak");
 
- 		std::string name = obs_data_get_string(data, "name");
 
- 		/* if no name found, use the file name as the name
 
- 		 * (this only happens when switching to the new version) */
 
- 		if (name.empty()) {
 
- 			name = strrchr(filePath, '/') + 1;
 
- 			name.resize(name.size() - 5);
 
- 		}
 
- 		if (!cb(name.c_str(), filePath))
 
- 			break;
 
- 	}
 
- 	os_globfree(glob);
 
- }
 
- bool SceneCollectionExists(const char *findName)
 
- {
 
- 	bool found = false;
 
- 	auto func = [&](const char *name, const char *) {
 
- 		if (strcmp(name, findName) == 0) {
 
- 			found = true;
 
- 			return false;
 
- 		}
 
- 		return true;
 
- 	};
 
- 	EnumSceneCollections(func);
 
- 	return found;
 
- }
 
- static bool GetSceneCollectionName(QWidget *parent, std::string &name,
 
- 				   std::string &file,
 
- 				   const char *oldName = nullptr)
 
- {
 
- 	bool rename = oldName != nullptr;
 
- 	const char *title;
 
- 	const char *text;
 
- 	if (rename) {
 
- 		title = Str("Basic.Main.RenameSceneCollection.Title");
 
- 		text = Str("Basic.Main.AddSceneCollection.Text");
 
- 	} else {
 
- 		title = Str("Basic.Main.AddSceneCollection.Title");
 
- 		text = Str("Basic.Main.AddSceneCollection.Text");
 
- 	}
 
- 	for (;;) {
 
- 		bool success = NameDialog::AskForName(parent, title, text, name,
 
- 						      QT_UTF8(oldName));
 
- 		if (!success) {
 
- 			return false;
 
- 		}
 
- 		if (name.empty()) {
 
- 			OBSMessageBox::warning(parent,
 
- 					       QTStr("NoNameEntered.Title"),
 
- 					       QTStr("NoNameEntered.Text"));
 
- 			continue;
 
- 		}
 
- 		if (SceneCollectionExists(name.c_str())) {
 
- 			OBSMessageBox::warning(parent,
 
- 					       QTStr("NameExists.Title"),
 
- 					       QTStr("NameExists.Text"));
 
- 			continue;
 
- 		}
 
- 		break;
 
- 	}
 
- 	if (!GetUnusedSceneCollectionFile(name, file)) {
 
- 		return false;
 
- 	}
 
- 	return true;
 
- }
 
- bool OBSBasic::AddSceneCollection(bool create_new, const QString &qname)
 
- {
 
- 	std::string name;
 
- 	std::string file;
 
- 	if (qname.isEmpty()) {
 
- 		if (!GetSceneCollectionName(this, name, file))
 
- 			return false;
 
- 	} else {
 
- 		name = QT_TO_UTF8(qname);
 
- 		if (SceneCollectionExists(name.c_str()))
 
- 			return false;
 
- 		if (!GetUnusedSceneCollectionFile(name, file)) {
 
- 			return false;
 
- 		}
 
- 	}
 
- 	auto new_collection = [this, create_new](const std::string &file,
 
- 						 const std::string &name) {
 
- 		SaveProjectNow();
 
- 		config_set_string(App()->GlobalConfig(), "Basic",
 
- 				  "SceneCollection", name.c_str());
 
- 		config_set_string(App()->GlobalConfig(), "Basic",
 
- 				  "SceneCollectionFile", file.c_str());
 
- 		if (create_new) {
 
- 			CreateDefaultScene(false);
 
- 		}
 
- 		SaveProjectNow();
 
- 		RefreshSceneCollections();
 
- 	};
 
- 	if (api)
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_CHANGING);
 
- 	new_collection(file, name);
 
- 	blog(LOG_INFO, "Added scene collection '%s' (%s, %s.json)",
 
- 	     name.c_str(), create_new ? "clean" : "duplicate", file.c_str());
 
- 	blog(LOG_INFO, "------------------------------------------------");
 
- 	UpdateTitleBar();
 
- 	if (api) {
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_LIST_CHANGED);
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_CHANGED);
 
- 	}
 
- 	return true;
 
- }
 
- void OBSBasic::RefreshSceneCollections()
 
- {
 
- 	QList<QAction *> menuActions = ui->sceneCollectionMenu->actions();
 
- 	int count = 0;
 
- 	for (int i = 0; i < menuActions.count(); i++) {
 
- 		QVariant v = menuActions[i]->property("file_name");
 
- 		if (v.typeName() != nullptr)
 
- 			delete menuActions[i];
 
- 	}
 
- 	const char *cur_name = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						 "SceneCollection");
 
- 	auto addCollection = [&](const char *name, const char *path) {
 
- 		std::string file = strrchr(path, '/') + 1;
 
- 		file.erase(file.size() - 5, 5);
 
- 		QAction *action = new QAction(QT_UTF8(name), this);
 
- 		action->setProperty("file_name", QT_UTF8(path));
 
- 		connect(action, &QAction::triggered, this,
 
- 			&OBSBasic::ChangeSceneCollection);
 
- 		action->setCheckable(true);
 
- 		action->setChecked(strcmp(name, cur_name) == 0);
 
- 		ui->sceneCollectionMenu->addAction(action);
 
- 		count++;
 
- 		return true;
 
- 	};
 
- 	EnumSceneCollections(addCollection);
 
- 	/* force saving of first scene collection on first run, otherwise
 
- 	 * no scene collections will show up */
 
- 	if (!count) {
 
- 		long prevDisableVal = disableSaving;
 
- 		disableSaving = 0;
 
- 		SaveProjectNow();
 
- 		disableSaving = prevDisableVal;
 
- 		EnumSceneCollections(addCollection);
 
- 	}
 
- 	ui->actionRemoveSceneCollection->setEnabled(count > 1);
 
- 	OBSBasic *main = reinterpret_cast<OBSBasic *>(App()->GetMainWindow());
 
- 	main->ui->actionPasteFilters->setEnabled(false);
 
- 	main->ui->actionPasteRef->setEnabled(false);
 
- 	main->ui->actionPasteDup->setEnabled(false);
 
- }
 
- void OBSBasic::on_actionNewSceneCollection_triggered()
 
- {
 
- 	AddSceneCollection(true);
 
- }
 
- void OBSBasic::on_actionDupSceneCollection_triggered()
 
- {
 
- 	AddSceneCollection(false);
 
- }
 
- void OBSBasic::on_actionRenameSceneCollection_triggered()
 
- {
 
- 	std::string name;
 
- 	std::string file;
 
- 	std::string oname;
 
- 	std::string oldFile = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollectionFile");
 
- 	const char *oldName = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollection");
 
- 	oname = std::string(oldName);
 
- 	bool success = GetSceneCollectionName(this, name, file, oldName);
 
- 	if (!success)
 
- 		return;
 
- 	config_set_string(App()->GlobalConfig(), "Basic", "SceneCollection",
 
- 			  name.c_str());
 
- 	config_set_string(App()->GlobalConfig(), "Basic", "SceneCollectionFile",
 
- 			  file.c_str());
 
- 	SaveProjectNow();
 
- 	char path[512];
 
- 	int ret = GetConfigPath(path, 512, "obs-studio/basic/scenes/");
 
- 	if (ret <= 0) {
 
- 		blog(LOG_WARNING, "Failed to get scene collection config path");
 
- 		return;
 
- 	}
 
- 	oldFile.insert(0, path);
 
- 	oldFile += ".json";
 
- 	os_unlink(oldFile.c_str());
 
- 	oldFile += ".bak";
 
- 	os_unlink(oldFile.c_str());
 
- 	blog(LOG_INFO, "------------------------------------------------");
 
- 	blog(LOG_INFO, "Renamed scene collection to '%s' (%s.json)",
 
- 	     name.c_str(), file.c_str());
 
- 	blog(LOG_INFO, "------------------------------------------------");
 
- 	UpdateTitleBar();
 
- 	RefreshSceneCollections();
 
- 	if (api)
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_RENAMED);
 
- }
 
- void OBSBasic::on_actionRemoveSceneCollection_triggered()
 
- {
 
- 	std::string newName;
 
- 	std::string newPath;
 
- 	std::string oldFile = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollectionFile");
 
- 	std::string oldName = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollection");
 
- 	auto cb = [&](const char *name, const char *filePath) {
 
- 		if (strcmp(oldName.c_str(), name) != 0) {
 
- 			newName = name;
 
- 			newPath = filePath;
 
- 			return false;
 
- 		}
 
- 		return true;
 
- 	};
 
- 	EnumSceneCollections(cb);
 
- 	/* this should never be true due to menu item being grayed out */
 
- 	if (newPath.empty())
 
- 		return;
 
- 	QString text = QTStr("ConfirmRemove.Text");
 
- 	text.replace("$1", QT_UTF8(oldName.c_str()));
 
- 	QMessageBox::StandardButton button = OBSMessageBox::question(
 
- 		this, QTStr("ConfirmRemove.Title"), text);
 
- 	if (button == QMessageBox::No)
 
- 		return;
 
- 	char path[512];
 
- 	int ret = GetConfigPath(path, 512, "obs-studio/basic/scenes/");
 
- 	if (ret <= 0) {
 
- 		blog(LOG_WARNING, "Failed to get scene collection config path");
 
- 		return;
 
- 	}
 
- 	if (api)
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_CHANGING);
 
- 	oldFile.insert(0, path);
 
- 	oldFile += ".json";
 
- 	os_unlink(oldFile.c_str());
 
- 	oldFile += ".bak";
 
- 	os_unlink(oldFile.c_str());
 
- 	Load(newPath.c_str());
 
- 	RefreshSceneCollections();
 
- 	const char *newFile = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollectionFile");
 
- 	blog(LOG_INFO,
 
- 	     "Removed scene collection '%s' (%s.json), "
 
- 	     "switched to '%s' (%s.json)",
 
- 	     oldName.c_str(), oldFile.c_str(), newName.c_str(), newFile);
 
- 	blog(LOG_INFO, "------------------------------------------------");
 
- 	UpdateTitleBar();
 
- 	if (api) {
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_LIST_CHANGED);
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_CHANGED);
 
- 	}
 
- }
 
- void OBSBasic::on_actionImportSceneCollection_triggered()
 
- {
 
- 	OBSImporter imp(this);
 
- 	imp.exec();
 
- 	RefreshSceneCollections();
 
- }
 
- void OBSBasic::on_actionExportSceneCollection_triggered()
 
- {
 
- 	SaveProjectNow();
 
- 	char path[512];
 
- 	QString home = QDir::homePath();
 
- 	QString currentFile = QT_UTF8(config_get_string(
 
- 		App()->GlobalConfig(), "Basic", "SceneCollectionFile"));
 
- 	int ret = GetConfigPath(path, 512, "obs-studio/basic/scenes/");
 
- 	if (ret <= 0) {
 
- 		blog(LOG_WARNING, "Failed to get scene collection config path");
 
- 		return;
 
- 	}
 
- 	QString exportFile =
 
- 		SaveFile(this, QTStr("Basic.MainMenu.SceneCollection.Export"),
 
- 			 home + "/" + currentFile, "JSON Files (*.json)");
 
- 	string file = QT_TO_UTF8(exportFile);
 
- 	if (!exportFile.isEmpty() && !exportFile.isNull()) {
 
- 		if (QFile::exists(exportFile))
 
- 			QFile::remove(exportFile);
 
- 		QFile::copy(path + currentFile + ".json", exportFile);
 
- 	}
 
- }
 
- void OBSBasic::ChangeSceneCollection()
 
- {
 
- 	QAction *action = reinterpret_cast<QAction *>(sender());
 
- 	std::string fileName;
 
- 	if (!action)
 
- 		return;
 
- 	fileName = QT_TO_UTF8(action->property("file_name").value<QString>());
 
- 	if (fileName.empty())
 
- 		return;
 
- 	const char *oldName = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollection");
 
- 	if (action->text().compare(QT_UTF8(oldName)) == 0) {
 
- 		action->setChecked(true);
 
- 		return;
 
- 	}
 
- 	if (api)
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_CHANGING);
 
- 	SaveProjectNow();
 
- 	Load(fileName.c_str());
 
- 	RefreshSceneCollections();
 
- 	const char *newName = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollection");
 
- 	const char *newFile = config_get_string(App()->GlobalConfig(), "Basic",
 
- 						"SceneCollectionFile");
 
- 	blog(LOG_INFO, "Switched to scene collection '%s' (%s.json)", newName,
 
- 	     newFile);
 
- 	blog(LOG_INFO, "------------------------------------------------");
 
- 	UpdateTitleBar();
 
- 	if (api)
 
- 		api->on_event(OBS_FRONTEND_EVENT_SCENE_COLLECTION_CHANGED);
 
- }
 
 
  |