123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448 |
- /******************************************************************************
- Copyright (C) 2013-2014 by Hugh Bailey <[email protected]>
- Zachary Lund <[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 <time.h>
- #include <obs.hpp>
- #include <QMessageBox>
- #include <QShowEvent>
- #include <QDesktopServices>
- #include <QFileDialog>
- #include <QNetworkRequest>
- #include <QNetworkReply>
- #include <util/dstr.h>
- #include <util/util.hpp>
- #include <util/platform.h>
- #include <graphics/math-defs.h>
- #include "obs-app.hpp"
- #include "platform.hpp"
- #include "window-basic-settings.hpp"
- #include "window-namedialog.hpp"
- #include "window-basic-source-select.hpp"
- #include "window-basic-main.hpp"
- #include "window-basic-properties.hpp"
- #include "window-log-reply.hpp"
- #include "qt-wrappers.hpp"
- #include "display-helpers.hpp"
- #include "volume-control.hpp"
- #include "ui_OBSBasic.h"
- #include <fstream>
- #include <sstream>
- #include <QScreen>
- #include <QWindow>
- #define PREVIEW_EDGE_SIZE 10
- using namespace std;
- Q_DECLARE_METATYPE(OBSScene);
- Q_DECLARE_METATYPE(OBSSceneItem);
- Q_DECLARE_METATYPE(obs_order_movement);
- static void AddExtraModulePaths()
- {
- BPtr<char> base_module_dir =
- os_get_config_path("obs-studio/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());
- }
- OBSBasic::OBSBasic(QWidget *parent)
- : OBSMainWindow (parent),
- ui (new Ui::OBSBasic)
- {
- ui->setupUi(this);
- connect(windowHandle(), &QWindow::screenChanged, [this]() {
- struct obs_video_info ovi;
- if (obs_get_video_info(&ovi))
- ResizePreview(ovi.base_width, ovi.base_height);
- });
- stringstream name;
- name << "OBS " << App()->GetVersionString();
- blog(LOG_INFO, "%s", name.str().c_str());
- setWindowTitle(QT_UTF8(name.str().c_str()));
- 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)));
- cpuUsageInfo = os_cpu_usage_info_start();
- cpuUsageTimer = new QTimer(this);
- connect(cpuUsageTimer, SIGNAL(timeout()),
- ui->statusbar, SLOT(UpdateCPUUsage()));
- cpuUsageTimer->start(3000);
- #ifdef __APPLE__
- QList<QKeySequence> keys;
- keys.append(QKeySequence::Delete);
- keys.append(QKeySequence(Qt::Key_Backspace));
- ui->actionRemoveSource->setShortcuts(keys);
- ui->action_Settings->setMenuRole(QAction::PreferencesRole);
- ui->actionE_xit->setMenuRole(QAction::QuitRole);
- #endif
- }
- 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);
- obs_data_set_obj(parent, name, data);
- obs_data_release(data);
- obs_source_release(source);
- }
- 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);
- const char *sceneName = obs_source_get_name(currentScene);
- 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);
- obs_data_set_string(saveData, "current_scene", sceneName);
- obs_data_set_array(saveData, "sources", sourcesArray);
- obs_data_array_release(sourcesArray);
- obs_source_release(currentScene);
- return saveData;
- }
- void OBSBasic::ClearVolumeControls()
- {
- VolControl *control;
- for (size_t i = 0; i < volumes.size(); i++) {
- control = volumes[i];
- delete control;
- }
- volumes.clear();
- }
- void OBSBasic::Save(const char *file)
- {
- obs_data_t saveData = GenerateSaveData();
- const char *jsonData = obs_data_get_json(saveData);
- /* 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);
- }
- static void LoadAudioDevice(const char *name, int channel, obs_data_t parent)
- {
- obs_data_t data = obs_data_get_obj(parent, name);
- 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()
- {
- obs_scene_t scene = obs_scene_create(Str("Basic.Scene"));
- obs_source_t source = obs_scene_get_source(scene);
- obs_add_source(source);
- #ifdef __APPLE__
- source = obs_source_create(OBS_SOURCE_TYPE_INPUT, "display_capture",
- Str("Basic.DisplayCapture"), NULL);
- if (source) {
- obs_scene_add(scene, source);
- obs_add_source(source);
- obs_source_release(source);
- }
- #endif
- obs_set_output_source(0, obs_scene_get_source(scene));
- obs_scene_release(scene);
- }
- 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);
- if (!jsonData) {
- CreateDefaultScene();
- return;
- }
- obs_data_t data = obs_data_create_from_json(jsonData);
- obs_data_array_t sources = obs_data_get_array(data, "sources");
- const char *sceneName = obs_data_get_string(data,
- "current_scene");
- obs_source_t curScene;
- 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);
- 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);
- }
- static inline bool HasAudioDevices(const char *source_id)
- {
- const char *output_id = source_id;
- obs_properties_t props = obs_get_source_properties(
- OBS_SOURCE_TYPE_INPUT, output_id);
- 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;
- }
- 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)
- {
- int code = (int)calldata_int(params, "code");
- QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
- "StreamingStop", Q_ARG(int, code));
- }
- static void OBSStartRecording(void *data, calldata_t params)
- {
- UNUSED_PARAMETER(params);
- QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
- "RecordingStart");
- }
- static void OBSStopRecording(void *data, calldata_t params)
- {
- UNUSED_PARAMETER(params);
- QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
- "RecordingStop");
- }
- #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);
- obs_data_set_string(data, "type", obs_service_gettype(service));
- obs_data_set_obj(data, "settings", settings);
- const char *json = obs_data_get_json(data);
- 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");
- type = obs_data_get_string(data, "type");
- obs_data_t settings = obs_data_get_obj(data, "settings");
- service = obs_service_create(type, "default_service", settings);
- obs_data_release(settings);
- obs_data_release(data);
- return !!service;
- }
- bool OBSBasic::InitOutputs()
- {
- fileOutput = obs_output_create("flv_output", "default_file_output",
- nullptr);
- if (!fileOutput)
- return false;
- streamOutput = obs_output_create("rtmp_output", "default_stream",
- nullptr);
- if (!streamOutput)
- return false;
- signal_handler_connect(obs_output_get_signal_handler(streamOutput),
- "start", OBSStartStreaming, this);
- signal_handler_connect(obs_output_get_signal_handler(streamOutput),
- "stop", OBSStopStreaming, this);
- signal_handler_connect(obs_output_get_signal_handler(fileOutput),
- "start", OBSStartRecording, this);
- signal_handler_connect(obs_output_get_signal_handler(fileOutput),
- "stop", OBSStopRecording, this);
- return true;
- }
- bool OBSBasic::InitEncoders()
- {
- x264 = obs_video_encoder_create("obs_x264", "default_h264", nullptr);
- if (!x264)
- return false;
- aac = obs_audio_encoder_create("libfdk_aac", "default_aac", nullptr);
- if (!aac)
- aac = obs_audio_encoder_create("ffmpeg_aac", "default_aac",
- nullptr);
- if (!aac)
- return false;
- return true;
- }
- bool OBSBasic::InitService()
- {
- if (LoadService())
- return true;
- service = obs_service_create("rtmp_common", "default_service", nullptr);
- if (!service)
- return false;
- return true;
- }
- bool OBSBasic::InitBasicConfigDefaults()
- {
- bool hasDesktopAudio = HasAudioDevices(App()->OutputAudioSource());
- bool hasInputAudio = HasAudioDevices(App()->InputAudioSource());
- 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;
- /* TODO: temporary */
- config_set_default_string(basicConfig, "SimpleOutput", "FilePath",
- GetDefaultVideoSavePath().c_str());
- config_set_default_uint (basicConfig, "SimpleOutput", "VBitrate",
- 2500);
- config_set_default_uint (basicConfig, "SimpleOutput", "ABitrate", 128);
- config_set_default_bool (basicConfig, "SimpleOutput", "Reconnect",
- true);
- config_set_default_uint (basicConfig, "SimpleOutput", "RetryDelay", 2);
- config_set_default_uint (basicConfig, "SimpleOutput", "MaxRetries",
- 20);
- config_set_default_bool (basicConfig, "SimpleOutput", "UseAdvanced",
- false);
- config_set_default_bool (basicConfig, "SimpleOutput", "UseCBR", true);
- config_set_default_string(basicConfig, "SimpleOutput", "Preset",
- "veryfast");
- 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);
- config_set_default_string(basicConfig, "Audio", "DesktopDevice1",
- hasDesktopAudio ? "default" : "disabled");
- config_set_default_string(basicConfig, "Audio", "DesktopDevice2",
- "disabled");
- config_set_default_string(basicConfig, "Audio", "AuxDevice1",
- hasInputAudio ? "default" : "disabled");
- config_set_default_string(basicConfig, "Audio", "AuxDevice2",
- "disabled");
- config_set_default_string(basicConfig, "Audio", "AuxDevice3",
- "disabled");
- return true;
- }
- bool OBSBasic::InitBasicConfig()
- {
- BPtr<char> configPath(os_get_config_path("obs-studio/basic/basic.ini"));
- int code = basicConfig.Open(configPath, CONFIG_OPEN_ALWAYS);
- if (code != CONFIG_SUCCESS) {
- OBSErrorBox(NULL, "Failed to open basic.ini: %d", code);
- return false;
- }
- return InitBasicConfigDefaults();
- }
- void OBSBasic::InitOBSCallbacks()
- {
- signal_handler_connect(obs_get_signal_handler(), "source_add",
- OBSBasic::SourceAdded, this);
- signal_handler_connect(obs_get_signal_handler(), "source_remove",
- OBSBasic::SourceRemoved, this);
- signal_handler_connect(obs_get_signal_handler(), "channel_change",
- OBSBasic::ChannelChanged, this);
- signal_handler_connect(obs_get_signal_handler(), "source_activate",
- OBSBasic::SourceActivated, this);
- signal_handler_connect(obs_get_signal_handler(), "source_deactivate",
- OBSBasic::SourceDeactivated, this);
- signal_handler_connect(obs_get_signal_handler(), "source_rename",
- OBSBasic::SourceRenamed, this);
- }
- void OBSBasic::InitPrimitives()
- {
- obs_enter_graphics();
- gs_render_start(true);
- 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);
- box = gs_render_save();
- gs_render_start(true);
- for (int i = 0; i <= 360; i += (360/20)) {
- float pos = RAD(float(i));
- gs_vertex2f(cosf(pos), sinf(pos));
- }
- circle = gs_render_save();
- obs_leave_graphics();
- }
- void OBSBasic::OBSInit()
- {
- BPtr<char> savePath(os_get_config_path("obs-studio/basic/scenes.json"));
- /* make sure it's fully displayed before doing any initialization */
- show();
- App()->processEvents();
- if (!obs_startup(App()->GetLocale()))
- throw "Failed to initialize libobs";
- if (!InitBasicConfig())
- throw "Failed to load basic.ini";
- if (!ResetAudio())
- throw "Failed to initialize audio";
- 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: Required graphics API "
- "functionality not found on these drivers or "
- "unavailable on this equipment";
- 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";
- }
- InitOBSCallbacks();
- AddExtraModulePaths();
- obs_load_all_modules();
- if (!InitOutputs())
- throw "Failed to initialize outputs";
- if (!InitEncoders())
- throw "Failed to initialize encoders";
- if (!InitService())
- throw "Failed to initialize service";
- InitPrimitives();
- Load(savePath);
- ResetAudioDevices();
- TimedCheckForUpdates();
- loaded = true;
- }
- OBSBasic::~OBSBasic()
- {
- BPtr<char> savePath(os_get_config_path("obs-studio/basic/scenes.json"));
- SaveService();
- Save(savePath);
- /* 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. */
- delete cpuUsageTimer;
- os_cpu_usage_info_destroy(cpuUsageInfo);
- if (interaction)
- delete interaction;
- if (properties)
- delete properties;
- if (transformWindow)
- delete transformWindow;
- ClearVolumeControls();
- ui->sources->clear();
- ui->scenes->clear();
- obs_enter_graphics();
- gs_vertexbuffer_destroy(box);
- gs_vertexbuffer_destroy(circle);
- obs_leave_graphics();
- obs_shutdown();
- config_set_int(App()->GlobalConfig(), "General", "LastVersion",
- LIBOBS_API_VER);
- config_save(App()->GlobalConfig());
- }
- OBSScene OBSBasic::GetCurrentScene()
- {
- QListWidgetItem *item = ui->scenes->currentItem();
- return item ? item->data(Qt::UserRole).value<OBSScene>() : nullptr;
- }
- OBSSceneItem OBSBasic::GetSceneItem(QListWidgetItem *item)
- {
- return item ? item->data(Qt::UserRole).value<OBSSceneItem>() : nullptr;
- }
- OBSSceneItem OBSBasic::GetCurrentSceneItem()
- {
- return GetSceneItem(ui->sources->currentItem());
- }
- 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);
- window->InsertSceneItem(item);
- UNUSED_PARAMETER(scene);
- return true;
- }, this);
- }
- void OBSBasic::InsertSceneItem(obs_sceneitem_t item)
- {
- obs_source_t source = obs_sceneitem_get_source(item);
- const char *name = obs_source_get_name(source);
- QListWidgetItem *listItem = new QListWidgetItem(QT_UTF8(name));
- listItem->setFlags(listItem->flags() | Qt::ItemIsEditable);
- listItem->setData(Qt::UserRole,
- QVariant::fromValue(OBSSceneItem(item)));
- ui->sources->insertItem(0, listItem);
- ui->sources->setCurrentRow(0);
- /* if the source was just created, open properties dialog */
- if (sourceSceneRefs[source] == 0 && loaded)
- CreatePropertiesWindow(source);
- }
- void OBSBasic::CreateInteractionWindow(obs_source_t source)
- {
- if (interaction)
- interaction->close();
- interaction = new OBSBasicInteraction(this, source);
- interaction->Init();
- interaction->setAttribute(Qt::WA_DeleteOnClose, true);
- }
- void OBSBasic::CreatePropertiesWindow(obs_source_t source)
- {
- if (properties)
- properties->close();
- properties = new OBSBasicProperties(this, source);
- properties->Init();
- properties->setAttribute(Qt::WA_DeleteOnClose, true);
- }
- /* Qt callbacks for invokeMethod */
- void OBSBasic::AddScene(OBSSource source)
- {
- const char *name = obs_source_get_name(source);
- obs_scene_t scene = obs_scene_from_source(source);
- QListWidgetItem *item = new QListWidgetItem(QT_UTF8(name));
- item->setFlags(item->flags() | Qt::ItemIsEditable);
- item->setData(Qt::UserRole, QVariant::fromValue(OBSScene(scene)));
- ui->scenes->addItem(item);
- signal_handler_t handler = obs_source_get_signal_handler(source);
- signal_handler_connect(handler, "item_add",
- OBSBasic::SceneItemAdded, this);
- signal_handler_connect(handler, "item_remove",
- OBSBasic::SceneItemRemoved, this);
- 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);
- }
- void OBSBasic::RemoveScene(OBSSource source)
- {
- const char *name = obs_source_get_name(source);
- QListWidgetItem *sel = ui->scenes->currentItem();
- QList<QListWidgetItem*> items = ui->scenes->findItems(QT_UTF8(name),
- Qt::MatchExactly);
- if (sel != nullptr) {
- if (items.contains(sel))
- ui->sources->clear();
- delete sel;
- }
- }
- void OBSBasic::AddSceneItem(OBSSceneItem item)
- {
- obs_scene_t scene = obs_sceneitem_get_scene(item);
- obs_source_t source = obs_sceneitem_get_source(item);
- if (GetCurrentScene() == scene)
- InsertSceneItem(item);
- sourceSceneRefs[source] = sourceSceneRefs[source] + 1;
- }
- void OBSBasic::RemoveSceneItem(OBSSceneItem item)
- {
- obs_scene_t scene = obs_sceneitem_get_scene(item);
- if (GetCurrentScene() == scene) {
- for (int i = 0; i < ui->sources->count(); i++) {
- QListWidgetItem *listItem = ui->sources->item(i);
- QVariant userData = listItem->data(Qt::UserRole);
- if (userData.value<OBSSceneItem>() == item) {
- delete listItem;
- break;
- }
- }
- }
- obs_source_t source = obs_sceneitem_get_source(item);
- int scenes = sourceSceneRefs[source] - 1;
- sourceSceneRefs[source] = scenes;
- if (scenes == 0) {
- obs_source_remove(source);
- sourceSceneRefs.erase(source);
- }
- }
- void OBSBasic::UpdateSceneSelection(OBSSource source)
- {
- if (source) {
- obs_scene_t scene = obs_scene_from_source(source);
- const char *name = obs_source_get_name(source);
- if (!scene)
- return;
- QList<QListWidgetItem*> items =
- ui->scenes->findItems(QT_UTF8(name), Qt::MatchExactly);
- if (items.count()) {
- sceneChanging = true;
- ui->scenes->setCurrentItem(items.first());
- sceneChanging = false;
- UpdateSources(scene);
- }
- }
- }
- 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);
- for (size_t i = 0; i < volumes.size(); i++) {
- if (volumes[i]->GetName().compare(prevName) == 0)
- volumes[i]->SetName(newName);
- }
- }
- void OBSBasic::MoveSceneItem(OBSSceneItem item, obs_order_movement movement)
- {
- OBSScene scene = obs_sceneitem_get_scene(item);
- if (scene != GetCurrentScene())
- return;
- int curRow = ui->sources->currentRow();
- if (curRow == -1)
- return;
- QListWidgetItem *listItem = ui->sources->takeItem(curRow);
- switch (movement) {
- case OBS_ORDER_MOVE_UP:
- if (curRow > 0)
- curRow--;
- break;
- case OBS_ORDER_MOVE_DOWN:
- if (curRow < ui->sources->count())
- curRow++;
- break;
- case OBS_ORDER_MOVE_TOP:
- curRow = 0;
- break;
- case OBS_ORDER_MOVE_BOTTOM:
- curRow = ui->sources->count();
- break;
- }
- ui->sources->insertItem(curRow, listItem);
- ui->sources->setCurrentRow(curRow);
- }
- 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;
- }
- }
- }
- bool OBSBasic::QueryRemoveSource(obs_source_t source)
- {
- const char *name = obs_source_get_name(source);
- QString text = QTStr("ConfirmRemove.Text");
- text.replace("$1", QT_UTF8(name));
- QMessageBox remove_source;
- remove_source.setText(text);
- QAbstractButton *Yes = remove_source.addButton(QTStr("Yes"),
- QMessageBox::YesRole);
- remove_source.addButton(QTStr("No"), QMessageBox::NoRole);
- remove_source.setIcon(QMessageBox::Question);
- remove_source.setWindowTitle(QTStr("ConfirmRemove.Title"));
- remove_source.exec();
- return Yes == remove_source.clickedButton();
- }
- #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);
- 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);
- connect(updateReply, SIGNAL(finished()),
- this, SLOT(updateFileFinished()));
- connect(updateReply, SIGNAL(readyRead()),
- this, SLOT(updateFileRead()));
- }
- void OBSBasic::updateFileRead()
- {
- updateReturnData.push_back(updateReply->readAll());
- }
- #ifdef __APPLE__
- #define VERSION_ENTRY "mac"
- #elif _WIN32
- #define VERSION_ENTRY "windows"
- #else
- #define VERSION_ENTRY "other"
- #endif
- 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);
- 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");
- if (returnData && versionData && description && download) {
- long major = obs_data_get_int(versionData, "major");
- long minor = obs_data_get_int(versionData, "minor");
- long patch = obs_data_get_int(versionData, "patch");
- 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);
- updateReturnData.clear();
- }
- void OBSBasic::RemoveSelectedScene()
- {
- OBSScene scene = GetCurrentScene();
- if (scene) {
- obs_source_t source = obs_scene_get_source(scene);
- if (QueryRemoveSource(source))
- obs_source_remove(source);
- }
- }
- void OBSBasic::RemoveSelectedSceneItem()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- if (item) {
- obs_source_t source = obs_sceneitem_get_source(item);
- if (QueryRemoveSource(source))
- obs_sceneitem_remove(item);
- }
- }
- /* 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");
- QMetaObject::invokeMethod(window, "AddSceneItem",
- Q_ARG(OBSSceneItem, OBSSceneItem(item)));
- }
- void OBSBasic::SceneItemRemoved(void *data, calldata_t params)
- {
- OBSBasic *window = static_cast<OBSBasic*>(data);
- obs_sceneitem_t item = (obs_sceneitem_t)calldata_ptr(params, "item");
- QMetaObject::invokeMethod(window, "RemoveSceneItem",
- Q_ARG(OBSSceneItem, OBSSceneItem(item)));
- }
- void OBSBasic::SourceAdded(void *data, calldata_t params)
- {
- OBSBasic *window = static_cast<OBSBasic*>(data);
- obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
- if (obs_scene_from_source(source) != NULL)
- QMetaObject::invokeMethod(window,
- "AddScene",
- Q_ARG(OBSSource, OBSSource(source)));
- }
- void OBSBasic::SourceRemoved(void *data, calldata_t params)
- {
- obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
- if (obs_scene_from_source(source) != NULL)
- QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
- "RemoveScene",
- Q_ARG(OBSSource, OBSSource(source)));
- }
- 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)));
- }
- 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)));
- }
- void OBSBasic::ChannelChanged(void *data, calldata_t params)
- {
- obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
- uint32_t channel = (uint32_t)calldata_int(params, "channel");
- if (channel == 0)
- QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
- "UpdateSceneSelection",
- Q_ARG(OBSSource, OBSSource(source)));
- }
- void OBSBasic::DrawBackdrop(float cx, float cy)
- {
- if (!box)
- return;
- 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");
- vec4 colorVal;
- vec4_set(&colorVal, 0.0f, 0.0f, 0.0f, 1.0f);
- gs_effect_set_vec4(color, &colorVal);
- gs_technique_begin(tech);
- gs_technique_begin_pass(tech, 0);
- 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();
- gs_technique_end_pass(tech);
- gs_technique_end(tech);
- gs_load_vertexbuffer(nullptr);
- }
- void OBSBasic::RenderMain(void *data, uint32_t cx, uint32_t cy)
- {
- OBSBasic *window = static_cast<OBSBasic*>(data);
- obs_video_info ovi;
- obs_get_video_info(&ovi);
- window->previewCX = int(window->previewScale * float(ovi.base_width));
- window->previewCY = int(window->previewScale * float(ovi.base_height));
- gs_viewport_push();
- gs_projection_push();
- /* --------------------------------------- */
- gs_ortho(0.0f, float(ovi.base_width), 0.0f, float(ovi.base_height),
- -100.0f, 100.0f);
- gs_set_viewport(window->previewX, window->previewY,
- window->previewCX, window->previewCY);
- window->DrawBackdrop(float(ovi.base_width), float(ovi.base_height));
- obs_render_main_view();
- gs_load_vertexbuffer(nullptr);
- /* --------------------------------------- */
- QSize previewSize = GetPixelSize(window->ui->preview);
- float right = float(previewSize.width()) - window->previewX;
- float bottom = float(previewSize.height()) - window->previewY;
- gs_ortho(-window->previewX, right,
- -window->previewY, bottom,
- -100.0f, 100.0f);
- gs_reset_viewport();
- window->ui->preview->DrawSceneEditing();
- /* --------------------------------------- */
- gs_projection_pop();
- gs_viewport_pop();
- UNUSED_PARAMETER(cx);
- UNUSED_PARAMETER(cy);
- }
- 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)),
- Q_ARG(obs_order_movement, OBS_ORDER_MOVE_UP));
- }
- 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)),
- Q_ARG(obs_order_movement, OBS_ORDER_MOVE_DOWN));
- }
- 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)),
- Q_ARG(obs_order_movement, OBS_ORDER_MOVE_TOP));
- }
- 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)),
- Q_ARG(obs_order_movement, OBS_ORDER_MOVE_BOTTOM));
- }
- /* Main class functions */
- 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;
- }
- }
- #ifdef _WIN32
- #define IS_WIN32 1
- #else
- #define IS_WIN32 0
- #endif
- 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;
- }
- int OBSBasic::ResetVideo()
- {
- struct obs_video_info ovi;
- int ret;
- GetConfigFPS(ovi.fps_num, ovi.fps_den);
- ovi.graphics_module = App()->GetRenderModule();
- ovi.base_width = (uint32_t)config_get_uint(basicConfig,
- "Video", "BaseCX");
- ovi.base_height = (uint32_t)config_get_uint(basicConfig,
- "Video", "BaseCY");
- ovi.output_width = (uint32_t)config_get_uint(basicConfig,
- "Video", "OutputCX");
- ovi.output_height = (uint32_t)config_get_uint(basicConfig,
- "Video", "OutputCY");
- ovi.output_format = VIDEO_FORMAT_NV12;
- ovi.adapter = 0;
- ovi.gpu_conversion = true;
- QTToGSWindow(ui->preview->winId(), ovi.window);
- //required to make opengl display stuff on osx(?)
- ResizePreview(ovi.base_width, ovi.base_height);
- QSize size = GetPixelSize(ui->preview);
- ovi.window_width = size.width();
- ovi.window_height = size.height();
- ret = AttemptToResetVideo(&ovi);
- 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);
- }
- }
- if (ret == OBS_VIDEO_SUCCESS)
- obs_add_draw_callback(OBSBasic::RenderMain, this);
- return ret;
- }
- bool OBSBasic::ResetAudio()
- {
- struct audio_output_info ai;
- ai.name = "Main Audio Track";
- ai.format = AUDIO_FORMAT_FLOAT;
- ai.samples_per_sec = config_get_uint(basicConfig, "Audio",
- "SampleRate");
- const char *channelSetupStr = config_get_string(basicConfig,
- "Audio", "ChannelSetup");
- if (strcmp(channelSetupStr, "Mono") == 0)
- ai.speakers = SPEAKERS_MONO;
- else
- ai.speakers = SPEAKERS_STEREO;
- ai.buffer_ms = config_get_uint(basicConfig, "Audio", "BufferingTime");
- return obs_reset_audio(&ai);
- }
- void OBSBasic::ResetAudioDevice(const char *sourceId, const char *deviceName,
- const char *deviceDesc, int channel)
- {
- 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) {
- settings = obs_source_get_settings(source);
- const char *curId = obs_data_get_string(settings, "device_id");
- 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();
- obs_data_set_string(settings, "device_id", deviceId);
- source = obs_source_create(OBS_SOURCE_TYPE_INPUT,
- sourceId, deviceDesc, settings);
- obs_data_release(settings);
- obs_set_output_source(channel, source);
- obs_source_release(source);
- }
- }
- void OBSBasic::ResetAudioDevices()
- {
- 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);
- }
- void OBSBasic::ResizePreview(uint32_t cx, uint32_t cy)
- {
- QSize targetSize;
- /* resize preview panel to fix to the top section of the window */
- targetSize = GetPixelSize(ui->preview);
- GetScaleAndCenterPos(int(cx), int(cy),
- targetSize.width() - PREVIEW_EDGE_SIZE * 2,
- targetSize.height() - PREVIEW_EDGE_SIZE * 2,
- previewX, previewY, previewScale);
- previewX += float(PREVIEW_EDGE_SIZE);
- previewY += float(PREVIEW_EDGE_SIZE);
- if (isVisible()) {
- if (resizeTimer)
- killTimer(resizeTimer);
- resizeTimer = startTimer(100);
- }
- }
- void OBSBasic::closeEvent(QCloseEvent *event)
- {
- 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);
- }
- void OBSBasic::changeEvent(QEvent *event)
- {
- /* TODO */
- UNUSED_PARAMETER(event);
- }
- void OBSBasic::resizeEvent(QResizeEvent *event)
- {
- struct obs_video_info ovi;
- if (obs_get_video_info(&ovi))
- ResizePreview(ovi.base_width, ovi.base_height);
- UNUSED_PARAMETER(event);
- }
- void OBSBasic::timerEvent(QTimerEvent *event)
- {
- if (event->timerId() == resizeTimer) {
- killTimer(resizeTimer);
- resizeTimer = 0;
- QSize size = GetPixelSize(ui->preview);
- obs_resize(size.width(), size.height());
- }
- }
- void OBSBasic::on_action_New_triggered()
- {
- /* TODO */
- }
- void OBSBasic::on_action_Open_triggered()
- {
- /* TODO */
- }
- void OBSBasic::on_action_Save_triggered()
- {
- /* TODO */
- }
- void OBSBasic::on_actionShow_Recordings_triggered()
- {
- const char *path = config_get_string(basicConfig,
- "SimpleOutput", "FilePath");
- QDesktopServices::openUrl(QUrl::fromLocalFile(path));
- }
- void OBSBasic::on_action_Settings_triggered()
- {
- OBSBasicSettings settings(this);
- settings.exec();
- }
- void OBSBasic::on_scenes_currentItemChanged(QListWidgetItem *current,
- QListWidgetItem *prev)
- {
- obs_source_t source = NULL;
- if (sceneChanging)
- return;
- if (current) {
- obs_scene_t scene;
- scene = current->data(Qt::UserRole).value<OBSScene>();
- source = obs_scene_get_source(scene);
- }
- /* TODO: allow transitions */
- obs_set_output_source(0, source);
- UNUSED_PARAMETER(prev);
- }
- void OBSBasic::EditSceneName()
- {
- ui->scenes->editItem(ui->scenes->currentItem());
- }
- void OBSBasic::on_scenes_customContextMenuRequested(const QPoint &pos)
- {
- 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());
- }
- void OBSBasic::on_actionAddScene_triggered()
- {
- string name;
- QString format{QTStr("Basic.Main.DefaultSceneName.Text")};
- int i = 1;
- QString placeHolderText = format.arg(i);
- obs_source_t source = nullptr;
- while ((source = obs_get_source_by_name(QT_TO_UTF8(placeHolderText)))) {
- obs_source_release(source);
- placeHolderText = format.arg(++i);
- }
- bool accepted = NameDialog::AskForName(this,
- QTStr("Basic.Main.AddSceneDlg.Title"),
- QTStr("Basic.Main.AddSceneDlg.Text"),
- name,
- placeHolderText);
- if (accepted) {
- if (name.empty()) {
- QMessageBox::information(this,
- QTStr("NoNameEntered.Title"),
- QTStr("NoNameEntered.Text"));
- on_actionAddScene_triggered();
- return;
- }
- obs_source_t source = obs_get_source_by_name(name.c_str());
- if (source) {
- QMessageBox::information(this,
- QTStr("NameExists.Title"),
- QTStr("NameExists.Text"));
- obs_source_release(source);
- on_actionAddScene_triggered();
- return;
- }
- obs_scene_t scene = obs_scene_create(name.c_str());
- source = obs_scene_get_source(scene);
- obs_add_source(source);
- obs_scene_release(scene);
- obs_set_output_source(0, source);
- }
- }
- void OBSBasic::on_actionRemoveScene_triggered()
- {
- OBSScene scene = GetCurrentScene();
- obs_source_t source = obs_scene_get_source(scene);
- if (source && QueryRemoveSource(source))
- obs_source_remove(source);
- }
- void OBSBasic::on_actionSceneProperties_triggered()
- {
- /* TODO */
- }
- void OBSBasic::on_actionSceneUp_triggered()
- {
- /* TODO */
- }
- void OBSBasic::on_actionSceneDown_triggered()
- {
- /* TODO */
- }
- void OBSBasic::on_sources_currentItemChanged(QListWidgetItem *current,
- QListWidgetItem *prev)
- {
- 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>();
- obs_source_t source = obs_sceneitem_get_source(item);
- if ((obs_source_get_output_flags(source) & OBS_SOURCE_VIDEO) == 0)
- return;
- obs_scene_enum_items(GetCurrentScene(), select_one, &item);
- UNUSED_PARAMETER(prev);
- }
- void OBSBasic::EditSceneItemName()
- {
- ui->sources->editItem(ui->sources->currentItem());
- }
- void OBSBasic::on_sources_customContextMenuRequested(const QPoint &pos)
- {
- QListWidgetItem *item = ui->sources->itemAt(pos);
- QMenu popup;
- QPointer<QMenu> addSourceMenu = CreateAddSourcePopupMenu();
- if (addSourceMenu)
- popup.addMenu(addSourceMenu);
- if (item) {
- if (addSourceMenu)
- popup.addSeparator();
- OBSSceneItem sceneItem = GetSceneItem(item);
- obs_source_t source = obs_sceneitem_get_source(sceneItem);
- QAction *action;
- popup.addAction(QTStr("Rename"), this,
- SLOT(EditSceneItemName()));
- popup.addAction(QTStr("Remove"), this,
- SLOT(on_actionRemoveSource_triggered()),
- QKeySequence::Delete);
- popup.addSeparator();
- popup.addMenu(ui->orderMenu);
- popup.addMenu(ui->transformMenu);
- popup.addSeparator();
- action = popup.addAction(QTStr("Interact"), this,
- SLOT(on_actionInteract_triggered()));
- action->setEnabled(obs_source_get_output_flags(source) &
- OBS_SOURCE_INTERACTION);
- popup.addAction(QTStr("Properties"), this,
- SLOT(on_actionSourceProperties_triggered()));
- }
- popup.exec(QCursor::pos());
- }
- void OBSBasic::AddSource(const char *id)
- {
- if (id && *id) {
- OBSBasicSourceSelect sourceSelect(this, id);
- sourceSelect.exec();
- }
- }
- QMenu *OBSBasic::CreateAddSourcePopupMenu()
- {
- const char *type;
- bool foundValues = false;
- size_t idx = 0;
- QMenu *popup = new QMenu(QTStr("Add"));
- while (obs_enum_input_types(idx++, &type)) {
- const char *name = obs_source_get_display_name(
- OBS_SOURCE_TYPE_INPUT, type);
- if (strcmp(type, "scene") == 0)
- continue;
- QAction *popupItem = new QAction(QT_UTF8(name), this);
- popupItem->setData(QT_UTF8(type));
- connect(popupItem, SIGNAL(triggered(bool)),
- this, SLOT(AddSourceFromAction()));
- popup->addAction(popupItem);
- foundValues = true;
- }
- if (!foundValues) {
- delete popup;
- popup = nullptr;
- }
- 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);
- }
- void OBSBasic::on_actionAddSource_triggered()
- {
- AddSourcePopupMenu(QCursor::pos());
- }
- void OBSBasic::on_actionRemoveSource_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- obs_source_t source = obs_sceneitem_get_source(item);
- if (source && QueryRemoveSource(source))
- obs_sceneitem_remove(item);
- }
- void OBSBasic::on_actionInteract_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- OBSSource source = obs_sceneitem_get_source(item);
- if (source)
- CreateInteractionWindow(source);
- }
- void OBSBasic::on_actionSourceProperties_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- OBSSource source = obs_sceneitem_get_source(item);
- if (source)
- CreatePropertiesWindow(source);
- }
- void OBSBasic::on_actionSourceUp_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- obs_sceneitem_set_order(item, OBS_ORDER_MOVE_UP);
- }
- void OBSBasic::on_actionSourceDown_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- obs_sceneitem_set_order(item, OBS_ORDER_MOVE_DOWN);
- }
- void OBSBasic::on_actionMoveUp_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- obs_sceneitem_set_order(item, OBS_ORDER_MOVE_UP);
- }
- void OBSBasic::on_actionMoveDown_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- obs_sceneitem_set_order(item, OBS_ORDER_MOVE_DOWN);
- }
- void OBSBasic::on_actionMoveToTop_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- obs_sceneitem_set_order(item, OBS_ORDER_MOVE_TOP);
- }
- void OBSBasic::on_actionMoveToBottom_triggered()
- {
- OBSSceneItem item = GetCurrentSceneItem();
- obs_sceneitem_set_order(item, OBS_ORDER_MOVE_BOTTOM);
- }
- static BPtr<char> ReadLogFile(const char *log)
- {
- BPtr<char> logDir(os_get_config_path("obs-studio/logs"));
- string path = (char*)logDir;
- path += "/";
- path += log;
- BPtr<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)
- {
- BPtr<char> fileString{ReadLogFile(file)};
- if (!fileString)
- return;
- if (!*fileString)
- return;
- ui->menuLogFiles->setEnabled(false);
- auto data_deleter = [](obs_data_t d) { obs_data_release(d); };
- using data_t = unique_ptr<struct obs_data, decltype(data_deleter)>;
- data_t content{obs_data_create(), data_deleter};
- data_t files{obs_data_create(), data_deleter};
- data_t request{obs_data_create(), data_deleter};
- obs_data_set_string(content.get(), "content", fileString);
- obs_data_set_obj(files.get(), file, content.get());
- stringstream ss;
- ss << "OBS " << App()->GetVersionString()
- << " log file uploaded at " << CurrentDateTimeString();
- obs_data_set_string(request.get(), "description", ss.str().c_str());
- obs_data_set_bool(request.get(), "public", false);
- obs_data_set_obj(request.get(), "files", files.get());
- const char *json = obs_data_get_json(request.get());
- if (!json) {
- blog(LOG_ERROR, "Failed to get JSON data for log upload");
- return;
- }
- logUploadPostData.setData(json, (int)strlen(json));
- 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()));
- }
- void OBSBasic::on_actionShowLogs_triggered()
- {
- BPtr<char> logDir(os_get_config_path("obs-studio/logs"));
- QUrl url = QUrl::fromLocalFile(QT_UTF8(logDir));
- QDesktopServices::openUrl(url);
- }
- void OBSBasic::on_actionUploadCurrentLog_triggered()
- {
- UploadLog(App()->GetCurrentLog());
- }
- void OBSBasic::on_actionUploadLastLog_triggered()
- {
- UploadLog(App()->GetLastLog());
- }
- void OBSBasic::on_actionCheckForUpdates_triggered()
- {
- CheckForUpdates();
- }
- 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);
- QString logURL = obs_data_get_string(returnData, "html_url");
- obs_data_release(returnData);
- OBSLogReply logDialog(this, logURL);
- logDialog.exec();
- logUploadReturnData.clear();
- }
- static void RenameListItem(OBSBasic *parent, QListWidget *listWidget,
- obs_source_t source, const string &name)
- {
- const char *prevName = obs_source_get_name(source);
- 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));
- 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"));
- }
- obs_source_release(foundSource);
- } else {
- listItem->setText(QT_UTF8(name.c_str()));
- obs_source_set_name(source, name.c_str());
- }
- }
- void OBSBasic::SceneNameEdited(QWidget *editor,
- QAbstractItemDelegate::EndEditHint endHint)
- {
- OBSScene scene = GetCurrentScene();
- QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
- string text = QT_TO_UTF8(edit->text().trimmed());
- if (!scene)
- return;
- obs_source_t source = obs_scene_get_source(scene);
- RenameListItem(this, ui->scenes, source, text);
- UNUSED_PARAMETER(endHint);
- }
- void OBSBasic::SceneItemNameEdited(QWidget *editor,
- QAbstractItemDelegate::EndEditHint endHint)
- {
- OBSSceneItem item = GetCurrentSceneItem();
- QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
- string text = QT_TO_UTF8(edit->text().trimmed());
- if (!item)
- return;
- obs_source_t source = obs_sceneitem_get_source(item);
- RenameListItem(this, ui->sources, source, text);
- UNUSED_PARAMETER(endHint);
- }
- void OBSBasic::StreamingStart()
- {
- ui->streamButton->setText(QTStr("Basic.Main.StopStreaming"));
- ui->streamButton->setEnabled(true);
- ui->statusbar->StreamStarted(streamOutput);
- }
- void OBSBasic::StreamingStop(int code)
- {
- 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;
- default:
- 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");
- }
- activeRefs--;
- ui->statusbar->StreamStopped();
- ui->streamButton->setText(QTStr("Basic.Main.StartStreaming"));
- ui->streamButton->setEnabled(true);
- if (code != OBS_OUTPUT_SUCCESS)
- QMessageBox::information(this,
- QTStr("Output.ConnectFail.Title"),
- QT_UTF8(errorMessage));
- }
- void OBSBasic::RecordingStart()
- {
- ui->statusbar->RecordingStarted(fileOutput);
- }
- void OBSBasic::RecordingStop()
- {
- ui->statusbar->RecordingStopped();
- activeRefs--;
- ui->recordButton->setText(QTStr("Basic.Main.StartRecording"));
- }
- void OBSBasic::SetupEncoders()
- {
- if (activeRefs == 0) {
- obs_data_t x264Settings = obs_data_create();
- obs_data_t aacSettings = obs_data_create();
- int videoBitrate = config_get_uint(basicConfig, "SimpleOutput",
- "VBitrate");
- int audioBitrate = config_get_uint(basicConfig, "SimpleOutput",
- "ABitrate");
- bool advanced = config_get_bool(basicConfig, "SimpleOutput",
- "UseAdvanced");
- bool useCBR = config_get_bool(basicConfig, "SimpleOutput",
- "UseCBR");
- const char *preset = config_get_string(basicConfig,
- "SimpleOutput", "Preset");
- const char *custom = config_get_string(basicConfig,
- "SimpleOutput", "x264Settings");
- obs_data_set_int(x264Settings, "bitrate", videoBitrate);
- obs_data_set_int(x264Settings, "buffer_size", videoBitrate);
- if (advanced) {
- obs_data_set_string(x264Settings, "preset", preset);
- obs_data_set_string(x264Settings, "x264opts", custom);
- obs_data_set_bool(x264Settings, "cbr", useCBR);
- } else {
- obs_data_set_bool(x264Settings, "cbr", true);
- }
- obs_data_set_int(aacSettings, "bitrate", audioBitrate);
- obs_encoder_update(x264, x264Settings);
- obs_encoder_update(aac, aacSettings);
- obs_data_release(x264Settings);
- obs_data_release(aacSettings);
- obs_encoder_set_video(x264, obs_get_video());
- obs_encoder_set_audio(aac, obs_get_audio());
- }
- }
- void OBSBasic::on_streamButton_clicked()
- {
- if (obs_output_active(streamOutput)) {
- obs_output_stop(streamOutput);
- } else {
- SaveService();
- SetupEncoders();
- obs_output_set_video_encoder(streamOutput, x264);
- obs_output_set_audio_encoder(streamOutput, aac);
- obs_output_set_service(streamOutput, service);
- 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;
- obs_output_set_reconnect_settings(streamOutput, maxRetries,
- retryDelay);
- 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();
- obs_data_set_string(settings, "path", strPath.c_str());
- obs_output_update(fileOutput, settings);
- obs_data_release(settings);
- if (obs_output_start(fileOutput)) {
- activeRefs++;
- ui->recordButton->setText(
- QTStr("Basic.Main.StopRecording"));
- }
- }
- }
- void OBSBasic::on_settingsButton_clicked()
- {
- OBSBasicSettings settings(this);
- settings.exec();
- }
- 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;
- }
- void OBSBasic::on_actionEditTransform_triggered()
- {
- if (transformWindow)
- transformWindow->close();
- transformWindow = new OBSBasicTransform(this);
- transformWindow->show();
- transformWindow->setAttribute(Qt::WA_DeleteOnClose, true);
- }
- void OBSBasic::on_actionResetTransform_triggered()
- {
- auto func = [] (obs_scene_t scene, obs_sceneitem_t item, void *param)
- {
- if (!obs_sceneitem_selected(item))
- return true;
- obs_transform_info info;
- 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);
- }
- static void GetItemBox(obs_sceneitem_t item, vec3 &tl, vec3 &br)
- {
- matrix4 boxTransform;
- obs_sceneitem_get_box_transform(item, &boxTransform);
- vec3_set(&tl, M_INFINITE, M_INFINITE, 0.0f);
- vec3_set(&br, -M_INFINITE, -M_INFINITE, 0.0f);
- auto GetMinPos = [&] (float x, float y)
- {
- vec3 pos;
- vec3_set(&pos, x, y, 0.0f);
- vec3_transform(&pos, &pos, &boxTransform);
- vec3_min(&tl, &tl, &pos);
- vec3_max(&br, &br, &pos);
- };
- 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);
- return tl;
- }
- static void SetItemTL(obs_sceneitem_t item, const vec3 &tl)
- {
- vec3 newTL;
- vec2 pos;
- obs_sceneitem_get_pos(item, &pos);
- newTL = GetItemTL(item);
- pos.x += tl.x - newTL.x;
- pos.y += tl.y - newTL.y;
- obs_sceneitem_set_pos(item, &pos);
- }
- 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);
- rot += obs_sceneitem_get_rot(item);
- if (rot >= 360.0f) rot -= 360.0f;
- else if (rot <= -360.0f) rot += 360.0f;
- obs_sceneitem_set_rot(item, rot);
- 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;
- obs_sceneitem_get_scale(item, &scale);
- vec2_mul(&scale, &scale, &mul);
- obs_sceneitem_set_scale(item, &scale);
- SetItemTL(item, tl);
- UNUSED_PARAMETER(scene);
- return true;
- }
- void OBSBasic::on_actionFlipHorizontal_triggered()
- {
- vec2 scale;
- vec2_set(&scale, -1.0f, 1.0f);
- obs_scene_enum_items(GetCurrentScene(), MultiplySelectedItemScale,
- &scale);
- }
- void OBSBasic::on_actionFlipVertical_triggered()
- {
- vec2 scale;
- vec2_set(&scale, 1.0f, -1.0f);
- 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);
- obs_transform_info itemInfo;
- 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()
- {
- 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);
- UNUSED_PARAMETER(param);
- return true;
- };
- obs_scene_enum_items(GetCurrentScene(), func, nullptr);
- }
|