window-basic-main.cpp 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325
  1. /******************************************************************************
  2. Copyright (C) 2013-2014 by Hugh Bailey <[email protected]>
  3. Zachary Lund <[email protected]>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. ******************************************************************************/
  15. #include <time.h>
  16. #include <obs.hpp>
  17. #include <QMessageBox>
  18. #include <QShowEvent>
  19. #include <QFileDialog>
  20. #include <QNetworkRequest>
  21. #include <QNetworkReply>
  22. #include <util/dstr.h>
  23. #include <util/util.hpp>
  24. #include <util/platform.h>
  25. #include <graphics/math-defs.h>
  26. #include "obs-app.hpp"
  27. #include "platform.hpp"
  28. #include "window-basic-settings.hpp"
  29. #include "window-namedialog.hpp"
  30. #include "window-basic-source-select.hpp"
  31. #include "window-basic-main.hpp"
  32. #include "window-basic-properties.hpp"
  33. #include "window-log-reply.hpp"
  34. #include "qt-wrappers.hpp"
  35. #include "display-helpers.hpp"
  36. #include "volume-control.hpp"
  37. #include "ui_OBSBasic.h"
  38. #include <fstream>
  39. #include <sstream>
  40. #include <QScreen>
  41. #include <QWindow>
  42. #define PREVIEW_EDGE_SIZE 10
  43. using namespace std;
  44. Q_DECLARE_METATYPE(OBSScene);
  45. Q_DECLARE_METATYPE(OBSSceneItem);
  46. Q_DECLARE_METATYPE(order_movement);
  47. OBSBasic::OBSBasic(QWidget *parent)
  48. : OBSMainWindow (parent),
  49. ui (new Ui::OBSBasic)
  50. {
  51. ui->setupUi(this);
  52. connect(windowHandle(), &QWindow::screenChanged, [this]() {
  53. struct obs_video_info ovi;
  54. if (obs_get_video_info(&ovi))
  55. ResizePreview(ovi.base_width, ovi.base_height);
  56. });
  57. stringstream name;
  58. name << "OBS " << App()->GetVersionString();
  59. blog(LOG_INFO, "%s", name.str().c_str());
  60. setWindowTitle(QT_UTF8(name.str().c_str()));
  61. connect(ui->scenes->itemDelegate(),
  62. SIGNAL(closeEditor(QWidget*,
  63. QAbstractItemDelegate::EndEditHint)),
  64. this,
  65. SLOT(SceneNameEdited(QWidget*,
  66. QAbstractItemDelegate::EndEditHint)));
  67. connect(ui->sources->itemDelegate(),
  68. SIGNAL(closeEditor(QWidget*,
  69. QAbstractItemDelegate::EndEditHint)),
  70. this,
  71. SLOT(SceneItemNameEdited(QWidget*,
  72. QAbstractItemDelegate::EndEditHint)));
  73. cpuUsageInfo = os_cpu_usage_info_start();
  74. cpuUsageTimer = new QTimer(this);
  75. connect(cpuUsageTimer, SIGNAL(timeout()),
  76. ui->statusbar, SLOT(UpdateCPUUsage()));
  77. cpuUsageTimer->start(3000);
  78. #ifdef __APPLE__
  79. QList<QKeySequence> keys;
  80. keys.append(QKeySequence::Delete);
  81. keys.append(QKeySequence(Qt::Key_Backspace));
  82. ui->actionRemoveSource->setShortcuts(keys);
  83. ui->action_Settings->setMenuRole(QAction::PreferencesRole);
  84. ui->actionE_xit->setMenuRole(QAction::QuitRole);
  85. #endif
  86. }
  87. static void SaveAudioDevice(const char *name, int channel, obs_data_t parent)
  88. {
  89. obs_source_t source = obs_get_output_source(channel);
  90. if (!source)
  91. return;
  92. obs_data_t data = obs_save_source(source);
  93. obs_data_setobj(parent, name, data);
  94. obs_data_release(data);
  95. obs_source_release(source);
  96. }
  97. static obs_data_t GenerateSaveData()
  98. {
  99. obs_data_t saveData = obs_data_create();
  100. obs_data_array_t sourcesArray = obs_save_sources();
  101. obs_source_t currentScene = obs_get_output_source(0);
  102. const char *sceneName = obs_source_getname(currentScene);
  103. SaveAudioDevice(DESKTOP_AUDIO_1, 1, saveData);
  104. SaveAudioDevice(DESKTOP_AUDIO_2, 2, saveData);
  105. SaveAudioDevice(AUX_AUDIO_1, 3, saveData);
  106. SaveAudioDevice(AUX_AUDIO_2, 4, saveData);
  107. SaveAudioDevice(AUX_AUDIO_3, 5, saveData);
  108. obs_data_setstring(saveData, "current_scene", sceneName);
  109. obs_data_setarray(saveData, "sources", sourcesArray);
  110. obs_data_array_release(sourcesArray);
  111. obs_source_release(currentScene);
  112. return saveData;
  113. }
  114. void OBSBasic::ClearVolumeControls()
  115. {
  116. VolControl *control;
  117. for (size_t i = 0; i < volumes.size(); i++) {
  118. control = volumes[i];
  119. delete control;
  120. }
  121. volumes.clear();
  122. }
  123. void OBSBasic::Save(const char *file)
  124. {
  125. obs_data_t saveData = GenerateSaveData();
  126. const char *jsonData = obs_data_getjson(saveData);
  127. /* TODO maybe a message box here? */
  128. if (!os_quick_write_utf8_file(file, jsonData, strlen(jsonData), false))
  129. blog(LOG_ERROR, "Could not save scene data to %s", file);
  130. obs_data_release(saveData);
  131. }
  132. static void LoadAudioDevice(const char *name, int channel, obs_data_t parent)
  133. {
  134. obs_data_t data = obs_data_getobj(parent, name);
  135. if (!data)
  136. return;
  137. obs_source_t source = obs_load_source(data);
  138. if (source) {
  139. obs_set_output_source(channel, source);
  140. obs_source_release(source);
  141. }
  142. obs_data_release(data);
  143. }
  144. void OBSBasic::CreateDefaultScene()
  145. {
  146. obs_scene_t scene = obs_scene_create(Str("Basic.Scene"));
  147. obs_source_t source = obs_scene_getsource(scene);
  148. obs_add_source(source);
  149. #ifdef __APPLE__
  150. source = obs_source_create(OBS_SOURCE_TYPE_INPUT, "display_capture",
  151. Str("Basic.DisplayCapture"), NULL);
  152. if (source) {
  153. obs_scene_add(scene, source);
  154. obs_add_source(source);
  155. obs_source_release(source);
  156. }
  157. #endif
  158. obs_set_output_source(0, obs_scene_getsource(scene));
  159. obs_scene_release(scene);
  160. }
  161. void OBSBasic::Load(const char *file)
  162. {
  163. if (!file) {
  164. blog(LOG_ERROR, "Could not find file %s", file);
  165. return;
  166. }
  167. BPtr<char> jsonData = os_quick_read_utf8_file(file);
  168. if (!jsonData) {
  169. CreateDefaultScene();
  170. return;
  171. }
  172. obs_data_t data = obs_data_create_from_json(jsonData);
  173. obs_data_array_t sources = obs_data_getarray(data, "sources");
  174. const char *sceneName = obs_data_getstring(data, "current_scene");
  175. obs_source_t curScene;
  176. LoadAudioDevice(DESKTOP_AUDIO_1, 1, data);
  177. LoadAudioDevice(DESKTOP_AUDIO_2, 2, data);
  178. LoadAudioDevice(AUX_AUDIO_1, 3, data);
  179. LoadAudioDevice(AUX_AUDIO_2, 4, data);
  180. LoadAudioDevice(AUX_AUDIO_3, 5, data);
  181. obs_load_sources(sources);
  182. curScene = obs_get_source_by_name(sceneName);
  183. obs_set_output_source(0, curScene);
  184. obs_source_release(curScene);
  185. obs_data_array_release(sources);
  186. obs_data_release(data);
  187. }
  188. static inline bool HasAudioDevices(const char *source_id)
  189. {
  190. const char *output_id = source_id;
  191. obs_properties_t props = obs_get_source_properties(
  192. OBS_SOURCE_TYPE_INPUT, output_id);
  193. size_t count = 0;
  194. if (!props)
  195. return false;
  196. obs_property_t devices = obs_properties_get(props, "device_id");
  197. if (devices)
  198. count = obs_property_list_item_count(devices);
  199. obs_properties_destroy(props);
  200. return count != 0;
  201. }
  202. static void OBSStartStreaming(void *data, calldata_t params)
  203. {
  204. UNUSED_PARAMETER(params);
  205. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  206. "StreamingStart");
  207. }
  208. static void OBSStopStreaming(void *data, calldata_t params)
  209. {
  210. int code = (int)calldata_int(params, "code");
  211. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  212. "StreamingStop", Q_ARG(int, code));
  213. }
  214. static void OBSStopRecording(void *data, calldata_t params)
  215. {
  216. UNUSED_PARAMETER(params);
  217. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  218. "RecordingStop");
  219. }
  220. #define SERVICE_PATH "obs-studio/basic/service.json"
  221. void OBSBasic::SaveService()
  222. {
  223. if (!service)
  224. return;
  225. BPtr<char> serviceJsonPath(os_get_config_path(SERVICE_PATH));
  226. if (!serviceJsonPath)
  227. return;
  228. obs_data_t data = obs_data_create();
  229. obs_data_t settings = obs_service_get_settings(service);
  230. obs_data_setstring(data, "type", obs_service_gettype(service));
  231. obs_data_setobj(data, "settings", settings);
  232. const char *json = obs_data_getjson(data);
  233. os_quick_write_utf8_file(serviceJsonPath, json, strlen(json), false);
  234. obs_data_release(settings);
  235. obs_data_release(data);
  236. }
  237. bool OBSBasic::LoadService()
  238. {
  239. const char *type;
  240. BPtr<char> serviceJsonPath(os_get_config_path(SERVICE_PATH));
  241. if (!serviceJsonPath)
  242. return false;
  243. BPtr<char> jsonText = os_quick_read_utf8_file(serviceJsonPath);
  244. if (!jsonText)
  245. return false;
  246. obs_data_t data = obs_data_create_from_json(jsonText);
  247. obs_data_set_default_string(data, "type", "rtmp_common");
  248. type = obs_data_getstring(data, "type");
  249. obs_data_t settings = obs_data_getobj(data, "settings");
  250. service = obs_service_create(type, "default_service", settings);
  251. obs_data_release(settings);
  252. obs_data_release(data);
  253. return !!service;
  254. }
  255. bool OBSBasic::InitOutputs()
  256. {
  257. fileOutput = obs_output_create("flv_output", "default_file_output",
  258. nullptr);
  259. if (!fileOutput)
  260. return false;
  261. streamOutput = obs_output_create("rtmp_output", "default_stream",
  262. nullptr);
  263. if (!streamOutput)
  264. return false;
  265. signal_handler_connect(obs_output_signalhandler(streamOutput),
  266. "start", OBSStartStreaming, this);
  267. signal_handler_connect(obs_output_signalhandler(streamOutput),
  268. "stop", OBSStopStreaming, this);
  269. signal_handler_connect(obs_output_signalhandler(fileOutput),
  270. "stop", OBSStopRecording, this);
  271. return true;
  272. }
  273. bool OBSBasic::InitEncoders()
  274. {
  275. x264 = obs_video_encoder_create("obs_x264", "default_h264", nullptr);
  276. if (!x264)
  277. return false;
  278. aac = obs_audio_encoder_create("libfdk_aac", "default_aac", nullptr);
  279. if (!aac)
  280. aac = obs_audio_encoder_create("ffmpeg_aac", "default_aac",
  281. nullptr);
  282. if (!aac)
  283. return false;
  284. return true;
  285. }
  286. bool OBSBasic::InitService()
  287. {
  288. if (LoadService())
  289. return true;
  290. service = obs_service_create("rtmp_common", "default_service", nullptr);
  291. if (!service)
  292. return false;
  293. return true;
  294. }
  295. bool OBSBasic::InitBasicConfigDefaults()
  296. {
  297. bool hasDesktopAudio = HasAudioDevices(App()->OutputAudioSource());
  298. bool hasInputAudio = HasAudioDevices(App()->InputAudioSource());
  299. config_set_default_int(basicConfig, "Window", "PosX", -1);
  300. config_set_default_int(basicConfig, "Window", "PosY", -1);
  301. config_set_default_int(basicConfig, "Window", "SizeX", -1);
  302. config_set_default_int(basicConfig, "Window", "SizeY", -1);
  303. vector<MonitorInfo> monitors;
  304. GetMonitors(monitors);
  305. if (!monitors.size()) {
  306. OBSErrorBox(NULL, "There appears to be no monitors. Er, this "
  307. "technically shouldn't be possible.");
  308. return false;
  309. }
  310. uint32_t cx = monitors[0].cx;
  311. uint32_t cy = monitors[0].cy;
  312. /* TODO: temporary */
  313. config_set_default_string(basicConfig, "SimpleOutput", "FilePath",
  314. GetDefaultVideoSavePath().c_str());
  315. config_set_default_uint (basicConfig, "SimpleOutput", "VBitrate",
  316. 2500);
  317. config_set_default_uint (basicConfig, "SimpleOutput", "ABitrate", 128);
  318. config_set_default_bool (basicConfig, "SimpleOutput", "Reconnect",
  319. true);
  320. config_set_default_uint (basicConfig, "SimpleOutput", "RetryDelay", 2);
  321. config_set_default_uint (basicConfig, "SimpleOutput", "MaxRetries",
  322. 20);
  323. config_set_default_uint (basicConfig, "Video", "BaseCX", cx);
  324. config_set_default_uint (basicConfig, "Video", "BaseCY", cy);
  325. cx = cx * 10 / 15;
  326. cy = cy * 10 / 15;
  327. config_set_default_uint (basicConfig, "Video", "OutputCX", cx);
  328. config_set_default_uint (basicConfig, "Video", "OutputCY", cy);
  329. config_set_default_uint (basicConfig, "Video", "FPSType", 0);
  330. config_set_default_string(basicConfig, "Video", "FPSCommon", "30");
  331. config_set_default_uint (basicConfig, "Video", "FPSInt", 30);
  332. config_set_default_uint (basicConfig, "Video", "FPSNum", 30);
  333. config_set_default_uint (basicConfig, "Video", "FPSDen", 1);
  334. config_set_default_uint (basicConfig, "Audio", "SampleRate", 44100);
  335. config_set_default_string(basicConfig, "Audio", "ChannelSetup",
  336. "Stereo");
  337. config_set_default_uint (basicConfig, "Audio", "BufferingTime", 1000);
  338. config_set_default_string(basicConfig, "Audio", "DesktopDevice1",
  339. hasDesktopAudio ? "default" : "disabled");
  340. config_set_default_string(basicConfig, "Audio", "DesktopDevice2",
  341. "disabled");
  342. config_set_default_string(basicConfig, "Audio", "AuxDevice1",
  343. hasInputAudio ? "default" : "disabled");
  344. config_set_default_string(basicConfig, "Audio", "AuxDevice2",
  345. "disabled");
  346. config_set_default_string(basicConfig, "Audio", "AuxDevice3",
  347. "disabled");
  348. return true;
  349. }
  350. bool OBSBasic::InitBasicConfig()
  351. {
  352. BPtr<char> configPath(os_get_config_path("obs-studio/basic/basic.ini"));
  353. int code = basicConfig.Open(configPath, CONFIG_OPEN_ALWAYS);
  354. if (code != CONFIG_SUCCESS) {
  355. OBSErrorBox(NULL, "Failed to open basic.ini: %d", code);
  356. return false;
  357. }
  358. return InitBasicConfigDefaults();
  359. }
  360. void OBSBasic::InitOBSCallbacks()
  361. {
  362. signal_handler_connect(obs_signalhandler(), "source_add",
  363. OBSBasic::SourceAdded, this);
  364. signal_handler_connect(obs_signalhandler(), "source_remove",
  365. OBSBasic::SourceRemoved, this);
  366. signal_handler_connect(obs_signalhandler(), "channel_change",
  367. OBSBasic::ChannelChanged, this);
  368. signal_handler_connect(obs_signalhandler(), "source_activate",
  369. OBSBasic::SourceActivated, this);
  370. signal_handler_connect(obs_signalhandler(), "source_deactivate",
  371. OBSBasic::SourceDeactivated, this);
  372. signal_handler_connect(obs_signalhandler(), "source_rename",
  373. OBSBasic::SourceRenamed, this);
  374. }
  375. void OBSBasic::InitPrimitives()
  376. {
  377. gs_entercontext(obs_graphics());
  378. gs_renderstart(true);
  379. gs_vertex2f(0.0f, 0.0f);
  380. gs_vertex2f(0.0f, 1.0f);
  381. gs_vertex2f(1.0f, 1.0f);
  382. gs_vertex2f(1.0f, 0.0f);
  383. gs_vertex2f(0.0f, 0.0f);
  384. box = gs_rendersave();
  385. gs_renderstart(true);
  386. for (int i = 0; i <= 360; i += (360/20)) {
  387. float pos = RAD(float(i));
  388. gs_vertex2f(cosf(pos), sinf(pos));
  389. }
  390. circle = gs_rendersave();
  391. gs_leavecontext();
  392. }
  393. void OBSBasic::OBSInit()
  394. {
  395. BPtr<char> savePath(os_get_config_path("obs-studio/basic/scenes.json"));
  396. /* make sure it's fully displayed before doing any initialization */
  397. show();
  398. App()->processEvents();
  399. if (!obs_startup(App()->GetLocale()))
  400. throw "Failed to initialize libobs";
  401. if (!InitBasicConfig())
  402. throw "Failed to load basic.ini";
  403. if (!ResetAudio())
  404. throw "Failed to initialize audio";
  405. int ret = ResetVideo();
  406. switch (ret) {
  407. case OBS_VIDEO_MODULE_NOT_FOUND:
  408. throw "Failed to initialize video: Graphics module not found";
  409. case OBS_VIDEO_NOT_SUPPORTED:
  410. throw "Failed to initialize video: Your graphics adapter "
  411. "is either too old or does not have the required "
  412. "capabilities required for this program";
  413. case OBS_VIDEO_INVALID_PARAM:
  414. throw "Failed to initialize video: Invalid parameters";
  415. default:
  416. if (ret != OBS_VIDEO_SUCCESS)
  417. throw "Failed to initialize video: Unspecified error";
  418. }
  419. InitOBSCallbacks();
  420. /* TODO: this is a test, all modules will be searched for and loaded
  421. * automatically later */
  422. obs_load_module("image-source");
  423. // obs_load_module("test-input");
  424. obs_load_module("obs-ffmpeg");
  425. obs_load_module("obs-libfdk");
  426. obs_load_module("obs-x264");
  427. obs_load_module("obs-outputs");
  428. obs_load_module("rtmp-services");
  429. #ifdef __APPLE__
  430. obs_load_module("mac-avcapture");
  431. obs_load_module("mac-capture");
  432. #elif _WIN32
  433. obs_load_module("win-wasapi");
  434. obs_load_module("win-capture");
  435. obs_load_module("win-dshow");
  436. #else
  437. obs_load_module("linux-xshm");
  438. obs_load_module("linux-xcomposite");
  439. obs_load_module("linux-pulseaudio");
  440. obs_load_module("linux-v4l2");
  441. #endif
  442. if (!InitOutputs())
  443. throw "Failed to initialize outputs";
  444. if (!InitEncoders())
  445. throw "Failed to initialize encoders";
  446. if (!InitService())
  447. throw "Failed to initialize service";
  448. InitPrimitives();
  449. Load(savePath);
  450. ResetAudioDevices();
  451. TimedCheckForUpdates();
  452. loaded = true;
  453. }
  454. OBSBasic::~OBSBasic()
  455. {
  456. BPtr<char> savePath(os_get_config_path("obs-studio/basic/scenes.json"));
  457. SaveService();
  458. Save(savePath);
  459. /* XXX: any obs data must be released before calling obs_shutdown.
  460. * currently, we can't automate this with C++ RAII because of the
  461. * delicate nature of obs_shutdown needing to be freed before the UI
  462. * can be freed, and we have no control over the destruction order of
  463. * the Qt UI stuff, so we have to manually clear any references to
  464. * libobs. */
  465. delete cpuUsageTimer;
  466. os_cpu_usage_info_destroy(cpuUsageInfo);
  467. delete properties;
  468. delete transformWindow;
  469. ClearVolumeControls();
  470. ui->sources->clear();
  471. ui->scenes->clear();
  472. gs_entercontext(obs_graphics());
  473. vertexbuffer_destroy(box);
  474. vertexbuffer_destroy(circle);
  475. gs_leavecontext();
  476. obs_shutdown();
  477. config_set_int(App()->GlobalConfig(), "General", "LastVersion",
  478. LIBOBS_API_VER);
  479. config_save(App()->GlobalConfig());
  480. }
  481. OBSScene OBSBasic::GetCurrentScene()
  482. {
  483. QListWidgetItem *item = ui->scenes->currentItem();
  484. return item ? item->data(Qt::UserRole).value<OBSScene>() : nullptr;
  485. }
  486. OBSSceneItem OBSBasic::GetCurrentSceneItem()
  487. {
  488. QListWidgetItem *item = ui->sources->currentItem();
  489. return item ? item->data(Qt::UserRole).value<OBSSceneItem>() : nullptr;
  490. }
  491. void OBSBasic::UpdateSources(OBSScene scene)
  492. {
  493. ui->sources->clear();
  494. obs_scene_enum_items(scene,
  495. [] (obs_scene_t scene, obs_sceneitem_t item, void *p)
  496. {
  497. OBSBasic *window = static_cast<OBSBasic*>(p);
  498. window->InsertSceneItem(item);
  499. UNUSED_PARAMETER(scene);
  500. return true;
  501. }, this);
  502. }
  503. void OBSBasic::InsertSceneItem(obs_sceneitem_t item)
  504. {
  505. obs_source_t source = obs_sceneitem_getsource(item);
  506. const char *name = obs_source_getname(source);
  507. QListWidgetItem *listItem = new QListWidgetItem(QT_UTF8(name));
  508. listItem->setFlags(listItem->flags() | Qt::ItemIsEditable);
  509. listItem->setData(Qt::UserRole,
  510. QVariant::fromValue(OBSSceneItem(item)));
  511. ui->sources->insertItem(0, listItem);
  512. ui->sources->setCurrentRow(0);
  513. /* if the source was just created, open properties dialog */
  514. if (sourceSceneRefs[source] == 0 && loaded) {
  515. delete properties;
  516. properties = new OBSBasicProperties(this, source);
  517. properties->Init();
  518. }
  519. }
  520. /* Qt callbacks for invokeMethod */
  521. void OBSBasic::AddScene(OBSSource source)
  522. {
  523. const char *name = obs_source_getname(source);
  524. obs_scene_t scene = obs_scene_fromsource(source);
  525. QListWidgetItem *item = new QListWidgetItem(QT_UTF8(name));
  526. item->setFlags(item->flags() | Qt::ItemIsEditable);
  527. item->setData(Qt::UserRole, QVariant::fromValue(OBSScene(scene)));
  528. ui->scenes->addItem(item);
  529. signal_handler_t handler = obs_source_signalhandler(source);
  530. signal_handler_connect(handler, "item_add",
  531. OBSBasic::SceneItemAdded, this);
  532. signal_handler_connect(handler, "item_remove",
  533. OBSBasic::SceneItemRemoved, this);
  534. signal_handler_connect(handler, "item_move_up",
  535. OBSBasic::SceneItemMoveUp, this);
  536. signal_handler_connect(handler, "item_move_down",
  537. OBSBasic::SceneItemMoveDown, this);
  538. signal_handler_connect(handler, "item_move_top",
  539. OBSBasic::SceneItemMoveTop, this);
  540. signal_handler_connect(handler, "item_move_bottom",
  541. OBSBasic::SceneItemMoveBottom, this);
  542. }
  543. void OBSBasic::RemoveScene(OBSSource source)
  544. {
  545. const char *name = obs_source_getname(source);
  546. QListWidgetItem *sel = ui->scenes->currentItem();
  547. QList<QListWidgetItem*> items = ui->scenes->findItems(QT_UTF8(name),
  548. Qt::MatchExactly);
  549. if (sel != nullptr) {
  550. if (items.contains(sel))
  551. ui->sources->clear();
  552. delete sel;
  553. }
  554. }
  555. void OBSBasic::AddSceneItem(OBSSceneItem item)
  556. {
  557. obs_scene_t scene = obs_sceneitem_getscene(item);
  558. obs_source_t source = obs_sceneitem_getsource(item);
  559. if (GetCurrentScene() == scene)
  560. InsertSceneItem(item);
  561. sourceSceneRefs[source] = sourceSceneRefs[source] + 1;
  562. }
  563. void OBSBasic::RemoveSceneItem(OBSSceneItem item)
  564. {
  565. obs_scene_t scene = obs_sceneitem_getscene(item);
  566. if (GetCurrentScene() == scene) {
  567. for (int i = 0; i < ui->sources->count(); i++) {
  568. QListWidgetItem *listItem = ui->sources->item(i);
  569. QVariant userData = listItem->data(Qt::UserRole);
  570. if (userData.value<OBSSceneItem>() == item) {
  571. delete listItem;
  572. break;
  573. }
  574. }
  575. }
  576. obs_source_t source = obs_sceneitem_getsource(item);
  577. int scenes = sourceSceneRefs[source] - 1;
  578. sourceSceneRefs[source] = scenes;
  579. if (scenes == 0) {
  580. obs_source_remove(source);
  581. sourceSceneRefs.erase(source);
  582. }
  583. }
  584. void OBSBasic::UpdateSceneSelection(OBSSource source)
  585. {
  586. if (source) {
  587. obs_source_type type;
  588. obs_source_gettype(source, &type, NULL);
  589. obs_scene_t scene = obs_scene_fromsource(source);
  590. const char *name = obs_source_getname(source);
  591. if (!scene)
  592. return;
  593. QList<QListWidgetItem*> items =
  594. ui->scenes->findItems(QT_UTF8(name), Qt::MatchExactly);
  595. if (items.count()) {
  596. sceneChanging = true;
  597. ui->scenes->setCurrentItem(items.first());
  598. sceneChanging = false;
  599. UpdateSources(scene);
  600. }
  601. }
  602. }
  603. static void RenameListValues(QListWidget *listWidget, const QString &newName,
  604. const QString &prevName)
  605. {
  606. QList<QListWidgetItem*> items =
  607. listWidget->findItems(prevName, Qt::MatchExactly);
  608. for (int i = 0; i < items.count(); i++)
  609. items[i]->setText(newName);
  610. }
  611. void OBSBasic::RenameSources(QString newName, QString prevName)
  612. {
  613. RenameListValues(ui->scenes, newName, prevName);
  614. RenameListValues(ui->sources, newName, prevName);
  615. for (size_t i = 0; i < volumes.size(); i++) {
  616. if (volumes[i]->GetName().compare(prevName) == 0)
  617. volumes[i]->SetName(newName);
  618. }
  619. }
  620. void OBSBasic::MoveSceneItem(OBSSceneItem item, order_movement movement)
  621. {
  622. OBSScene scene = obs_sceneitem_getscene(item);
  623. if (scene != GetCurrentScene())
  624. return;
  625. int curRow = ui->sources->currentRow();
  626. if (curRow == -1)
  627. return;
  628. QListWidgetItem *listItem = ui->sources->takeItem(curRow);
  629. switch (movement) {
  630. case ORDER_MOVE_UP:
  631. if (curRow > 0)
  632. curRow--;
  633. break;
  634. case ORDER_MOVE_DOWN:
  635. if (curRow < ui->sources->count())
  636. curRow++;
  637. break;
  638. case ORDER_MOVE_TOP:
  639. curRow = 0;
  640. break;
  641. case ORDER_MOVE_BOTTOM:
  642. curRow = ui->sources->count();
  643. break;
  644. }
  645. ui->sources->insertItem(curRow, listItem);
  646. ui->sources->setCurrentRow(curRow);
  647. }
  648. void OBSBasic::ActivateAudioSource(OBSSource source)
  649. {
  650. VolControl *vol = new VolControl(source);
  651. volumes.push_back(vol);
  652. ui->volumeWidgets->layout()->addWidget(vol);
  653. }
  654. void OBSBasic::DeactivateAudioSource(OBSSource source)
  655. {
  656. for (size_t i = 0; i < volumes.size(); i++) {
  657. if (volumes[i]->GetSource() == source) {
  658. delete volumes[i];
  659. volumes.erase(volumes.begin() + i);
  660. break;
  661. }
  662. }
  663. }
  664. bool OBSBasic::QueryRemoveSource(obs_source_t source)
  665. {
  666. const char *name = obs_source_getname(source);
  667. QString text = QTStr("ConfirmRemove.Text");
  668. text.replace("$1", QT_UTF8(name));
  669. QMessageBox::StandardButton button;
  670. button = QMessageBox::question(this,
  671. QTStr("ConfirmRemove.Remove"), text);
  672. return button == QMessageBox::Yes;
  673. }
  674. #define UPDATE_CHECK_INTERVAL (60*60*24*4) /* 4 days */
  675. void OBSBasic::TimedCheckForUpdates()
  676. {
  677. long long lastUpdate = config_get_int(App()->GlobalConfig(), "General",
  678. "LastUpdateCheck");
  679. uint32_t lastVersion = config_get_int(App()->GlobalConfig(), "General",
  680. "LastVersion");
  681. if (lastVersion < LIBOBS_API_VER) {
  682. lastUpdate = 0;
  683. config_set_int(App()->GlobalConfig(), "General",
  684. "LastUpdateCheck", 0);
  685. }
  686. long long t = (long long)time(nullptr);
  687. long long secs = t - lastUpdate;
  688. if (secs > UPDATE_CHECK_INTERVAL)
  689. CheckForUpdates();
  690. }
  691. void OBSBasic::CheckForUpdates()
  692. {
  693. ui->actionCheckForUpdates->setEnabled(false);
  694. string versionString("obs-basic ");
  695. versionString += App()->GetVersionString();
  696. QNetworkRequest request;
  697. request.setUrl(QUrl("https://obsproject.com/obs2_update/basic.json"));
  698. request.setRawHeader("User-Agent", versionString.c_str());
  699. updateReply = networkManager.get(request);
  700. connect(updateReply, SIGNAL(finished()),
  701. this, SLOT(updateFileFinished()));
  702. connect(updateReply, SIGNAL(readyRead()),
  703. this, SLOT(updateFileRead()));
  704. }
  705. void OBSBasic::updateFileRead()
  706. {
  707. updateReturnData.push_back(updateReply->readAll());
  708. }
  709. #ifdef __APPLE__
  710. #define VERSION_ENTRY "mac"
  711. #elif _WIN32
  712. #define VERSION_ENTRY "windows"
  713. #else
  714. #define VERSION_ENTRY "other"
  715. #endif
  716. void OBSBasic::updateFileFinished()
  717. {
  718. ui->actionCheckForUpdates->setEnabled(true);
  719. if (updateReply->error()) {
  720. blog(LOG_WARNING, "Update check failed: %s",
  721. QT_TO_UTF8(updateReply->errorString()));
  722. return;
  723. }
  724. const char *jsonReply = updateReturnData.constData();
  725. if (!jsonReply || !*jsonReply)
  726. return;
  727. obs_data_t returnData = obs_data_create_from_json(jsonReply);
  728. obs_data_t versionData = obs_data_getobj(returnData, VERSION_ENTRY);
  729. const char *description = obs_data_getstring(returnData, "description");
  730. const char *download = obs_data_getstring(versionData, "download");
  731. if (returnData && versionData && description && download) {
  732. long major = obs_data_getint(versionData, "major");
  733. long minor = obs_data_getint(versionData, "minor");
  734. long patch = obs_data_getint(versionData, "patch");
  735. long version = MAKE_SEMANTIC_VERSION(major, minor, patch);
  736. blog(LOG_INFO, "Update check: latest version is: %ld.%ld.%ld",
  737. major, minor, patch);
  738. if (version > LIBOBS_API_VER) {
  739. QString str = QTStr("UpdateAvailable.Text");
  740. QMessageBox messageBox(this);
  741. str = str.arg(QString::number(major),
  742. QString::number(minor),
  743. QString::number(patch),
  744. download);
  745. messageBox.setWindowTitle(QTStr("UpdateAvailable"));
  746. messageBox.setTextFormat(Qt::RichText);
  747. messageBox.setText(str);
  748. messageBox.setInformativeText(QT_UTF8(description));
  749. messageBox.exec();
  750. long long t = (long long)time(nullptr);
  751. config_set_int(App()->GlobalConfig(), "General",
  752. "LastUpdateCheck", t);
  753. config_save(App()->GlobalConfig());
  754. }
  755. } else {
  756. blog(LOG_WARNING, "Bad JSON file received from server");
  757. }
  758. obs_data_release(versionData);
  759. obs_data_release(returnData);
  760. }
  761. void OBSBasic::RemoveSelectedScene()
  762. {
  763. OBSScene scene = GetCurrentScene();
  764. if (scene) {
  765. obs_source_t source = obs_scene_getsource(scene);
  766. if (QueryRemoveSource(source))
  767. obs_source_remove(source);
  768. }
  769. }
  770. void OBSBasic::RemoveSelectedSceneItem()
  771. {
  772. OBSSceneItem item = GetCurrentSceneItem();
  773. if (item) {
  774. obs_source_t source = obs_sceneitem_getsource(item);
  775. if (QueryRemoveSource(source))
  776. obs_sceneitem_remove(item);
  777. }
  778. }
  779. /* OBS Callbacks */
  780. void OBSBasic::SceneItemAdded(void *data, calldata_t params)
  781. {
  782. OBSBasic *window = static_cast<OBSBasic*>(data);
  783. obs_sceneitem_t item = (obs_sceneitem_t)calldata_ptr(params, "item");
  784. QMetaObject::invokeMethod(window, "AddSceneItem",
  785. Q_ARG(OBSSceneItem, OBSSceneItem(item)));
  786. }
  787. void OBSBasic::SceneItemRemoved(void *data, calldata_t params)
  788. {
  789. OBSBasic *window = static_cast<OBSBasic*>(data);
  790. obs_sceneitem_t item = (obs_sceneitem_t)calldata_ptr(params, "item");
  791. QMetaObject::invokeMethod(window, "RemoveSceneItem",
  792. Q_ARG(OBSSceneItem, OBSSceneItem(item)));
  793. }
  794. void OBSBasic::SourceAdded(void *data, calldata_t params)
  795. {
  796. OBSBasic *window = static_cast<OBSBasic*>(data);
  797. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  798. if (obs_scene_fromsource(source) != NULL)
  799. QMetaObject::invokeMethod(window,
  800. "AddScene",
  801. Q_ARG(OBSSource, OBSSource(source)));
  802. }
  803. void OBSBasic::SourceRemoved(void *data, calldata_t params)
  804. {
  805. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  806. if (obs_scene_fromsource(source) != NULL)
  807. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  808. "RemoveScene",
  809. Q_ARG(OBSSource, OBSSource(source)));
  810. }
  811. void OBSBasic::SourceActivated(void *data, calldata_t params)
  812. {
  813. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  814. uint32_t flags = obs_source_get_output_flags(source);
  815. if (flags & OBS_SOURCE_AUDIO)
  816. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  817. "ActivateAudioSource",
  818. Q_ARG(OBSSource, OBSSource(source)));
  819. }
  820. void OBSBasic::SourceDeactivated(void *data, calldata_t params)
  821. {
  822. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  823. uint32_t flags = obs_source_get_output_flags(source);
  824. if (flags & OBS_SOURCE_AUDIO)
  825. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  826. "DeactivateAudioSource",
  827. Q_ARG(OBSSource, OBSSource(source)));
  828. }
  829. void OBSBasic::SourceRenamed(void *data, calldata_t params)
  830. {
  831. const char *newName = calldata_string(params, "new_name");
  832. const char *prevName = calldata_string(params, "prev_name");
  833. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  834. "RenameSources",
  835. Q_ARG(QString, QT_UTF8(newName)),
  836. Q_ARG(QString, QT_UTF8(prevName)));
  837. }
  838. void OBSBasic::ChannelChanged(void *data, calldata_t params)
  839. {
  840. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  841. uint32_t channel = (uint32_t)calldata_int(params, "channel");
  842. if (channel == 0)
  843. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  844. "UpdateSceneSelection",
  845. Q_ARG(OBSSource, OBSSource(source)));
  846. }
  847. void OBSBasic::DrawBackdrop(float cx, float cy)
  848. {
  849. if (!box)
  850. return;
  851. effect_t solid = obs_get_solid_effect();
  852. eparam_t color = effect_getparambyname(solid, "color");
  853. technique_t tech = effect_gettechnique(solid, "Solid");
  854. vec4 colorVal;
  855. vec4_set(&colorVal, 0.0f, 0.0f, 0.0f, 1.0f);
  856. effect_setvec4(color, &colorVal);
  857. technique_begin(tech);
  858. technique_beginpass(tech, 0);
  859. gs_matrix_push();
  860. gs_matrix_identity();
  861. gs_matrix_scale3f(float(cx), float(cy), 1.0f);
  862. gs_load_vertexbuffer(box);
  863. gs_draw(GS_TRISTRIP, 0, 0);
  864. gs_matrix_pop();
  865. technique_endpass(tech);
  866. technique_end(tech);
  867. gs_load_vertexbuffer(nullptr);
  868. }
  869. void OBSBasic::RenderMain(void *data, uint32_t cx, uint32_t cy)
  870. {
  871. OBSBasic *window = static_cast<OBSBasic*>(data);
  872. obs_video_info ovi;
  873. obs_get_video_info(&ovi);
  874. window->previewCX = int(window->previewScale * float(ovi.base_width));
  875. window->previewCY = int(window->previewScale * float(ovi.base_height));
  876. gs_viewport_push();
  877. gs_projection_push();
  878. /* --------------------------------------- */
  879. gs_ortho(0.0f, float(ovi.base_width), 0.0f, float(ovi.base_height),
  880. -100.0f, 100.0f);
  881. gs_setviewport(window->previewX, window->previewY,
  882. window->previewCX, window->previewCY);
  883. window->DrawBackdrop(float(ovi.base_width), float(ovi.base_height));
  884. obs_render_main_view();
  885. gs_load_vertexbuffer(nullptr);
  886. /* --------------------------------------- */
  887. QSize previewSize = GetPixelSize(window->ui->preview);
  888. float right = float(previewSize.width()) - window->previewX;
  889. float bottom = float(previewSize.height()) - window->previewY;
  890. gs_ortho(-window->previewX, right,
  891. -window->previewY, bottom,
  892. -100.0f, 100.0f);
  893. gs_resetviewport();
  894. window->ui->preview->DrawSceneEditing();
  895. /* --------------------------------------- */
  896. gs_projection_pop();
  897. gs_viewport_pop();
  898. UNUSED_PARAMETER(cx);
  899. UNUSED_PARAMETER(cy);
  900. }
  901. void OBSBasic::SceneItemMoveUp(void *data, calldata_t params)
  902. {
  903. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  904. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  905. "MoveSceneItem",
  906. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  907. Q_ARG(order_movement, ORDER_MOVE_UP));
  908. }
  909. void OBSBasic::SceneItemMoveDown(void *data, calldata_t params)
  910. {
  911. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  912. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  913. "MoveSceneItem",
  914. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  915. Q_ARG(order_movement, ORDER_MOVE_DOWN));
  916. }
  917. void OBSBasic::SceneItemMoveTop(void *data, calldata_t params)
  918. {
  919. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  920. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  921. "MoveSceneItem",
  922. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  923. Q_ARG(order_movement, ORDER_MOVE_TOP));
  924. }
  925. void OBSBasic::SceneItemMoveBottom(void *data, calldata_t params)
  926. {
  927. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  928. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  929. "MoveSceneItem",
  930. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  931. Q_ARG(order_movement, ORDER_MOVE_BOTTOM));
  932. }
  933. /* Main class functions */
  934. obs_service_t OBSBasic::GetService()
  935. {
  936. if (!service)
  937. service = obs_service_create("rtmp_common", NULL, NULL);
  938. return service;
  939. }
  940. void OBSBasic::SetService(obs_service_t newService)
  941. {
  942. if (newService) {
  943. if (service)
  944. obs_service_destroy(service);
  945. service = newService;
  946. }
  947. }
  948. static inline int AttemptToResetVideo(struct obs_video_info *ovi)
  949. {
  950. int ret = obs_reset_video(ovi);
  951. if (ret == OBS_VIDEO_INVALID_PARAM) {
  952. struct obs_video_info new_params = *ovi;
  953. if (new_params.window_width == 0)
  954. new_params.window_width = 512;
  955. if (new_params.window_height == 0)
  956. new_params.window_height = 512;
  957. new_params.output_width = new_params.window_width;
  958. new_params.output_height = new_params.window_height;
  959. new_params.base_width = new_params.window_width;
  960. new_params.base_height = new_params.window_height;
  961. ret = obs_reset_video(&new_params);
  962. }
  963. return ret;
  964. }
  965. int OBSBasic::ResetVideo()
  966. {
  967. struct obs_video_info ovi;
  968. int ret;
  969. GetConfigFPS(ovi.fps_num, ovi.fps_den);
  970. ovi.graphics_module = App()->GetRenderModule();
  971. ovi.base_width = (uint32_t)config_get_uint(basicConfig,
  972. "Video", "BaseCX");
  973. ovi.base_height = (uint32_t)config_get_uint(basicConfig,
  974. "Video", "BaseCY");
  975. ovi.output_width = (uint32_t)config_get_uint(basicConfig,
  976. "Video", "OutputCX");
  977. ovi.output_height = (uint32_t)config_get_uint(basicConfig,
  978. "Video", "OutputCY");
  979. ovi.output_format = VIDEO_FORMAT_NV12;
  980. ovi.adapter = 0;
  981. ovi.gpu_conversion = true;
  982. QTToGSWindow(ui->preview->winId(), ovi.window);
  983. //required to make opengl display stuff on osx(?)
  984. ResizePreview(ovi.base_width, ovi.base_height);
  985. QSize size = GetPixelSize(ui->preview);
  986. ovi.window_width = size.width();
  987. ovi.window_height = size.height();
  988. ret = AttemptToResetVideo(&ovi);
  989. if (ret == OBS_VIDEO_SUCCESS)
  990. obs_add_draw_callback(OBSBasic::RenderMain, this);
  991. return ret;
  992. }
  993. bool OBSBasic::ResetAudio()
  994. {
  995. struct audio_output_info ai;
  996. ai.name = "Main Audio Track";
  997. ai.format = AUDIO_FORMAT_FLOAT;
  998. ai.samples_per_sec = config_get_uint(basicConfig, "Audio",
  999. "SampleRate");
  1000. const char *channelSetupStr = config_get_string(basicConfig,
  1001. "Audio", "ChannelSetup");
  1002. if (strcmp(channelSetupStr, "Mono") == 0)
  1003. ai.speakers = SPEAKERS_MONO;
  1004. else
  1005. ai.speakers = SPEAKERS_STEREO;
  1006. ai.buffer_ms = config_get_uint(basicConfig, "Audio", "BufferingTime");
  1007. return obs_reset_audio(&ai);
  1008. }
  1009. void OBSBasic::ResetAudioDevice(const char *sourceId, const char *deviceName,
  1010. const char *deviceDesc, int channel)
  1011. {
  1012. const char *deviceId = config_get_string(basicConfig, "Audio",
  1013. deviceName);
  1014. obs_source_t source;
  1015. obs_data_t settings;
  1016. bool same = false;
  1017. source = obs_get_output_source(channel);
  1018. if (source) {
  1019. settings = obs_source_getsettings(source);
  1020. const char *curId = obs_data_getstring(settings, "device_id");
  1021. same = (strcmp(curId, deviceId) == 0);
  1022. obs_data_release(settings);
  1023. obs_source_release(source);
  1024. }
  1025. if (!same)
  1026. obs_set_output_source(channel, nullptr);
  1027. if (!same && strcmp(deviceId, "disabled") != 0) {
  1028. obs_data_t settings = obs_data_create();
  1029. obs_data_setstring(settings, "device_id", deviceId);
  1030. source = obs_source_create(OBS_SOURCE_TYPE_INPUT,
  1031. sourceId, deviceDesc, settings);
  1032. obs_data_release(settings);
  1033. obs_set_output_source(channel, source);
  1034. obs_source_release(source);
  1035. }
  1036. }
  1037. void OBSBasic::ResetAudioDevices()
  1038. {
  1039. ResetAudioDevice(App()->OutputAudioSource(), "DesktopDevice1",
  1040. Str("Basic.DesktopDevice1"), 1);
  1041. ResetAudioDevice(App()->OutputAudioSource(), "DesktopDevice2",
  1042. Str("Basic.DesktopDevice2"), 2);
  1043. ResetAudioDevice(App()->InputAudioSource(), "AuxDevice1",
  1044. Str("Basic.AuxDevice1"), 3);
  1045. ResetAudioDevice(App()->InputAudioSource(), "AuxDevice2",
  1046. Str("Basic.AuxDevice2"), 4);
  1047. ResetAudioDevice(App()->InputAudioSource(), "AuxDevice3",
  1048. Str("Basic.AuxDevice3"), 5);
  1049. }
  1050. void OBSBasic::ResizePreview(uint32_t cx, uint32_t cy)
  1051. {
  1052. QSize targetSize;
  1053. /* resize preview panel to fix to the top section of the window */
  1054. targetSize = GetPixelSize(ui->preview);
  1055. GetScaleAndCenterPos(int(cx), int(cy),
  1056. targetSize.width() - PREVIEW_EDGE_SIZE * 2,
  1057. targetSize.height() - PREVIEW_EDGE_SIZE * 2,
  1058. previewX, previewY, previewScale);
  1059. previewX += float(PREVIEW_EDGE_SIZE);
  1060. previewY += float(PREVIEW_EDGE_SIZE);
  1061. if (isVisible()) {
  1062. if (resizeTimer)
  1063. killTimer(resizeTimer);
  1064. resizeTimer = startTimer(100);
  1065. }
  1066. }
  1067. void OBSBasic::closeEvent(QCloseEvent *event)
  1068. {
  1069. QWidget::closeEvent(event);
  1070. if (!event->isAccepted())
  1071. return;
  1072. // remove draw callback in case our drawable surfaces go away before
  1073. // the destructor gets called
  1074. obs_remove_draw_callback(OBSBasic::RenderMain, this);
  1075. }
  1076. void OBSBasic::changeEvent(QEvent *event)
  1077. {
  1078. /* TODO */
  1079. UNUSED_PARAMETER(event);
  1080. }
  1081. void OBSBasic::resizeEvent(QResizeEvent *event)
  1082. {
  1083. struct obs_video_info ovi;
  1084. if (obs_get_video_info(&ovi))
  1085. ResizePreview(ovi.base_width, ovi.base_height);
  1086. UNUSED_PARAMETER(event);
  1087. }
  1088. void OBSBasic::timerEvent(QTimerEvent *event)
  1089. {
  1090. if (event->timerId() == resizeTimer) {
  1091. killTimer(resizeTimer);
  1092. resizeTimer = 0;
  1093. QSize size = GetPixelSize(ui->preview);
  1094. obs_resize(size.width(), size.height());
  1095. }
  1096. }
  1097. void OBSBasic::on_action_New_triggered()
  1098. {
  1099. /* TODO */
  1100. }
  1101. void OBSBasic::on_action_Open_triggered()
  1102. {
  1103. /* TODO */
  1104. }
  1105. void OBSBasic::on_action_Save_triggered()
  1106. {
  1107. /* TODO */
  1108. }
  1109. void OBSBasic::on_action_Settings_triggered()
  1110. {
  1111. OBSBasicSettings settings(this);
  1112. settings.exec();
  1113. }
  1114. void OBSBasic::on_scenes_currentItemChanged(QListWidgetItem *current,
  1115. QListWidgetItem *prev)
  1116. {
  1117. obs_source_t source = NULL;
  1118. if (sceneChanging)
  1119. return;
  1120. if (current) {
  1121. obs_scene_t scene;
  1122. scene = current->data(Qt::UserRole).value<OBSScene>();
  1123. source = obs_scene_getsource(scene);
  1124. }
  1125. /* TODO: allow transitions */
  1126. obs_set_output_source(0, source);
  1127. UNUSED_PARAMETER(prev);
  1128. }
  1129. void OBSBasic::EditSceneName()
  1130. {
  1131. ui->scenes->editItem(ui->scenes->currentItem());
  1132. }
  1133. void OBSBasic::on_scenes_customContextMenuRequested(const QPoint &pos)
  1134. {
  1135. QListWidgetItem *item = ui->scenes->itemAt(pos);
  1136. QMenu popup;
  1137. popup.addAction(QTStr("Add"),
  1138. this, SLOT(on_actionAddScene_triggered()));
  1139. if (item)
  1140. popup.addAction(QTStr("Remove"),
  1141. this, SLOT(RemoveSelectedScene()));
  1142. popup.exec(QCursor::pos());
  1143. }
  1144. void OBSBasic::on_actionAddScene_triggered()
  1145. {
  1146. string name;
  1147. QString format{QTStr("Basic.Main.DefaultSceneName.Text")};
  1148. int i = 1;
  1149. QString placeHolderText = format.arg(i);
  1150. obs_source_t source = nullptr;
  1151. while ((source = obs_get_source_by_name(QT_TO_UTF8(placeHolderText)))) {
  1152. obs_source_release(source);
  1153. placeHolderText = format.arg(++i);
  1154. }
  1155. bool accepted = NameDialog::AskForName(this,
  1156. QTStr("Basic.Main.AddSceneDlg.Title"),
  1157. QTStr("Basic.Main.AddSceneDlg.Text"),
  1158. name,
  1159. placeHolderText);
  1160. if (accepted) {
  1161. if (name.empty()) {
  1162. QMessageBox::information(this,
  1163. QTStr("NoNameEntered"),
  1164. QTStr("NoNameEntered"));
  1165. on_actionAddScene_triggered();
  1166. return;
  1167. }
  1168. obs_source_t source = obs_get_source_by_name(name.c_str());
  1169. if (source) {
  1170. QMessageBox::information(this,
  1171. QTStr("NameExists.Title"),
  1172. QTStr("NameExists.Text"));
  1173. obs_source_release(source);
  1174. on_actionAddScene_triggered();
  1175. return;
  1176. }
  1177. obs_scene_t scene = obs_scene_create(name.c_str());
  1178. source = obs_scene_getsource(scene);
  1179. obs_add_source(source);
  1180. obs_scene_release(scene);
  1181. obs_set_output_source(0, source);
  1182. }
  1183. }
  1184. void OBSBasic::on_actionRemoveScene_triggered()
  1185. {
  1186. OBSScene scene = GetCurrentScene();
  1187. obs_source_t source = obs_scene_getsource(scene);
  1188. if (source && QueryRemoveSource(source))
  1189. obs_source_remove(source);
  1190. }
  1191. void OBSBasic::on_actionSceneProperties_triggered()
  1192. {
  1193. /* TODO */
  1194. }
  1195. void OBSBasic::on_actionSceneUp_triggered()
  1196. {
  1197. /* TODO */
  1198. }
  1199. void OBSBasic::on_actionSceneDown_triggered()
  1200. {
  1201. /* TODO */
  1202. }
  1203. void OBSBasic::on_sources_currentItemChanged(QListWidgetItem *current,
  1204. QListWidgetItem *prev)
  1205. {
  1206. auto select_one = [] (obs_scene_t scene, obs_sceneitem_t item,
  1207. void *param)
  1208. {
  1209. obs_sceneitem_t selectedItem =
  1210. *reinterpret_cast<OBSSceneItem*>(param);
  1211. obs_sceneitem_select(item, (selectedItem == item));
  1212. UNUSED_PARAMETER(scene);
  1213. return true;
  1214. };
  1215. if (!current)
  1216. return;
  1217. OBSSceneItem item = current->data(Qt::UserRole).value<OBSSceneItem>();
  1218. obs_source_t source = obs_sceneitem_getsource(item);
  1219. if ((obs_source_get_output_flags(source) & OBS_SOURCE_VIDEO) == 0)
  1220. return;
  1221. obs_scene_enum_items(GetCurrentScene(), select_one, &item);
  1222. UNUSED_PARAMETER(prev);
  1223. }
  1224. void OBSBasic::EditSceneItemName()
  1225. {
  1226. ui->sources->editItem(ui->sources->currentItem());
  1227. }
  1228. void OBSBasic::on_sources_customContextMenuRequested(const QPoint &pos)
  1229. {
  1230. QListWidgetItem *item = ui->sources->itemAt(pos);
  1231. QMenu popup;
  1232. QPointer<QMenu> addSourceMenu = CreateAddSourcePopupMenu();
  1233. if (addSourceMenu)
  1234. popup.addMenu(addSourceMenu);
  1235. if (item) {
  1236. if (addSourceMenu)
  1237. popup.addSeparator();
  1238. popup.addAction(QTStr("Rename"), this,
  1239. SLOT(EditSceneItemName()));
  1240. popup.addAction(QTStr("Remove"), this,
  1241. SLOT(on_actionRemoveSource_triggered()),
  1242. QKeySequence::Delete);
  1243. popup.addSeparator();
  1244. popup.addMenu(ui->orderMenu);
  1245. popup.addMenu(ui->transformMenu);
  1246. popup.addSeparator();
  1247. popup.addAction(QTStr("Properties"), this,
  1248. SLOT(on_actionSourceProperties_triggered()));
  1249. }
  1250. popup.exec(QCursor::pos());
  1251. }
  1252. void OBSBasic::AddSource(const char *id)
  1253. {
  1254. if (id && *id) {
  1255. OBSBasicSourceSelect sourceSelect(this, id);
  1256. sourceSelect.exec();
  1257. }
  1258. }
  1259. QMenu *OBSBasic::CreateAddSourcePopupMenu()
  1260. {
  1261. const char *type;
  1262. bool foundValues = false;
  1263. size_t idx = 0;
  1264. QMenu *popup = new QMenu(QTStr("Add"));
  1265. while (obs_enum_input_types(idx++, &type)) {
  1266. const char *name = obs_source_getdisplayname(
  1267. OBS_SOURCE_TYPE_INPUT, type);
  1268. if (strcmp(type, "scene") == 0)
  1269. continue;
  1270. QAction *popupItem = new QAction(QT_UTF8(name), this);
  1271. popupItem->setData(QT_UTF8(type));
  1272. connect(popupItem, SIGNAL(triggered(bool)),
  1273. this, SLOT(AddSourceFromAction()));
  1274. popup->addAction(popupItem);
  1275. foundValues = true;
  1276. }
  1277. if (!foundValues) {
  1278. delete popup;
  1279. popup = nullptr;
  1280. }
  1281. return popup;
  1282. }
  1283. void OBSBasic::AddSourceFromAction()
  1284. {
  1285. QAction *action = qobject_cast<QAction*>(sender());
  1286. if (!action)
  1287. return;
  1288. AddSource(QT_TO_UTF8(action->data().toString()));
  1289. }
  1290. void OBSBasic::AddSourcePopupMenu(const QPoint &pos)
  1291. {
  1292. if (!GetCurrentScene()) {
  1293. // Tell the user he needs a scene first (help beginners).
  1294. QMessageBox::information(this,
  1295. QTStr("Basic.Main.AddSourceHelp.Title"),
  1296. QTStr("Basic.Main.AddSourceHelp.Text"));
  1297. return;
  1298. }
  1299. QPointer<QMenu> popup = CreateAddSourcePopupMenu();
  1300. if (popup)
  1301. popup->exec(pos);
  1302. }
  1303. void OBSBasic::on_actionAddSource_triggered()
  1304. {
  1305. AddSourcePopupMenu(QCursor::pos());
  1306. }
  1307. void OBSBasic::on_actionRemoveSource_triggered()
  1308. {
  1309. OBSSceneItem item = GetCurrentSceneItem();
  1310. obs_source_t source = obs_sceneitem_getsource(item);
  1311. if (source && QueryRemoveSource(source))
  1312. obs_sceneitem_remove(item);
  1313. }
  1314. void OBSBasic::on_actionSourceProperties_triggered()
  1315. {
  1316. OBSSceneItem item = GetCurrentSceneItem();
  1317. OBSSource source = obs_sceneitem_getsource(item);
  1318. if (source) {
  1319. delete properties;
  1320. properties = new OBSBasicProperties(this, source);
  1321. properties->Init();
  1322. }
  1323. }
  1324. void OBSBasic::on_actionSourceUp_triggered()
  1325. {
  1326. OBSSceneItem item = GetCurrentSceneItem();
  1327. obs_sceneitem_setorder(item, ORDER_MOVE_UP);
  1328. }
  1329. void OBSBasic::on_actionSourceDown_triggered()
  1330. {
  1331. OBSSceneItem item = GetCurrentSceneItem();
  1332. obs_sceneitem_setorder(item, ORDER_MOVE_DOWN);
  1333. }
  1334. void OBSBasic::on_actionMoveUp_triggered()
  1335. {
  1336. OBSSceneItem item = GetCurrentSceneItem();
  1337. obs_sceneitem_setorder(item, ORDER_MOVE_UP);
  1338. }
  1339. void OBSBasic::on_actionMoveDown_triggered()
  1340. {
  1341. OBSSceneItem item = GetCurrentSceneItem();
  1342. obs_sceneitem_setorder(item, ORDER_MOVE_DOWN);
  1343. }
  1344. void OBSBasic::on_actionMoveToTop_triggered()
  1345. {
  1346. OBSSceneItem item = GetCurrentSceneItem();
  1347. obs_sceneitem_setorder(item, ORDER_MOVE_TOP);
  1348. }
  1349. void OBSBasic::on_actionMoveToBottom_triggered()
  1350. {
  1351. OBSSceneItem item = GetCurrentSceneItem();
  1352. obs_sceneitem_setorder(item, ORDER_MOVE_BOTTOM);
  1353. }
  1354. static char *ReadLogFile(const char *log)
  1355. {
  1356. BPtr<char> logDir(os_get_config_path("obs-studio/logs"));
  1357. string path = (char*)logDir;
  1358. path += "/";
  1359. path += log;
  1360. char *file = os_quick_read_utf8_file(path.c_str());
  1361. if (!file)
  1362. blog(LOG_WARNING, "Failed to read log file %s", path.c_str());
  1363. return file;
  1364. }
  1365. void OBSBasic::UploadLog(const char *file)
  1366. {
  1367. dstr fileString = {};
  1368. stringstream ss;
  1369. string jsonData;
  1370. dstr_move_array(&fileString, ReadLogFile(file));
  1371. if (!fileString.array)
  1372. return;
  1373. if (!*fileString.array) {
  1374. dstr_free(&fileString);
  1375. return;
  1376. }
  1377. ui->menuLogFiles->setEnabled(false);
  1378. dstr_replace(&fileString, "\\", "\\\\");
  1379. dstr_replace(&fileString, "\"", "\\\"");
  1380. dstr_replace(&fileString, "\n", "\\n");
  1381. dstr_replace(&fileString, "\r", "\\r");
  1382. dstr_replace(&fileString, "\t", "\\t");
  1383. dstr_replace(&fileString, "\t", "\\t");
  1384. dstr_replace(&fileString, "/", "\\/");
  1385. ss << "{ \"public\": false, \"description\": \"OBS " <<
  1386. App()->GetVersionString() << " log file uploaded at " <<
  1387. CurrentDateTimeString() << "\", \"files\": { \"" <<
  1388. file << "\": { \"content\": \"" <<
  1389. fileString.array << "\" } } }";
  1390. jsonData = std::move(ss.str());
  1391. logUploadPostData.setData(jsonData.c_str(), (int)jsonData.size());
  1392. QUrl url("https://api.github.com/gists");
  1393. logUploadReply = networkManager.post(QNetworkRequest(url),
  1394. &logUploadPostData);
  1395. connect(logUploadReply, SIGNAL(finished()),
  1396. this, SLOT(logUploadFinished()));
  1397. connect(logUploadReply, SIGNAL(readyRead()),
  1398. this, SLOT(logUploadRead()));
  1399. dstr_free(&fileString);
  1400. }
  1401. void OBSBasic::on_actionUploadCurrentLog_triggered()
  1402. {
  1403. UploadLog(App()->GetCurrentLog());
  1404. }
  1405. void OBSBasic::on_actionUploadLastLog_triggered()
  1406. {
  1407. UploadLog(App()->GetLastLog());
  1408. }
  1409. void OBSBasic::on_actionCheckForUpdates_triggered()
  1410. {
  1411. CheckForUpdates();
  1412. }
  1413. void OBSBasic::logUploadRead()
  1414. {
  1415. logUploadReturnData.push_back(logUploadReply->readAll());
  1416. }
  1417. void OBSBasic::logUploadFinished()
  1418. {
  1419. ui->menuLogFiles->setEnabled(true);
  1420. if (logUploadReply->error()) {
  1421. QMessageBox::information(this,
  1422. QTStr("LogReturnDialog.ErrorUploadingLog"),
  1423. logUploadReply->errorString());
  1424. return;
  1425. }
  1426. const char *jsonReply = logUploadReturnData.constData();
  1427. if (!jsonReply || !*jsonReply)
  1428. return;
  1429. obs_data_t returnData = obs_data_create_from_json(jsonReply);
  1430. QString logURL = obs_data_getstring(returnData, "html_url");
  1431. obs_data_release(returnData);
  1432. OBSLogReply logDialog(this, logURL);
  1433. logDialog.exec();
  1434. }
  1435. static void RenameListItem(QListWidget *listWidget, obs_source_t source,
  1436. const string &name)
  1437. {
  1438. const char *prevName = obs_source_getname(source);
  1439. obs_source_t foundSource = obs_get_source_by_name(name.c_str());
  1440. QListWidgetItem *listItem = listWidget->currentItem();
  1441. if (foundSource || name.compare(prevName) == 0 || name.empty()) {
  1442. listItem->setText(QT_UTF8(prevName));
  1443. obs_source_release(foundSource);
  1444. } else {
  1445. listItem->setText(QT_UTF8(name.c_str()));
  1446. obs_source_setname(source, name.c_str());
  1447. }
  1448. }
  1449. void OBSBasic::SceneNameEdited(QWidget *editor,
  1450. QAbstractItemDelegate::EndEditHint endHint)
  1451. {
  1452. OBSScene scene = GetCurrentScene();
  1453. QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
  1454. string text = QT_TO_UTF8(edit->text().trimmed());
  1455. if (!scene)
  1456. return;
  1457. obs_source_t source = obs_scene_getsource(scene);
  1458. RenameListItem(ui->scenes, source, text);
  1459. UNUSED_PARAMETER(endHint);
  1460. }
  1461. void OBSBasic::SceneItemNameEdited(QWidget *editor,
  1462. QAbstractItemDelegate::EndEditHint endHint)
  1463. {
  1464. OBSSceneItem item = GetCurrentSceneItem();
  1465. QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
  1466. string text = QT_TO_UTF8(edit->text().trimmed());
  1467. if (!item)
  1468. return;
  1469. obs_source_t source = obs_sceneitem_getsource(item);
  1470. RenameListItem(ui->sources, source, text);
  1471. UNUSED_PARAMETER(endHint);
  1472. }
  1473. void OBSBasic::StreamingStart()
  1474. {
  1475. ui->streamButton->setText(QTStr("Basic.Main.StopStreaming"));
  1476. ui->streamButton->setEnabled(true);
  1477. ui->statusbar->StreamStarted(streamOutput);
  1478. }
  1479. void OBSBasic::StreamingStop(int code)
  1480. {
  1481. const char *errorMessage;
  1482. switch (code) {
  1483. case OBS_OUTPUT_BAD_PATH:
  1484. errorMessage = Str("Output.ConnectFail.BadPath");
  1485. break;
  1486. case OBS_OUTPUT_CONNECT_FAILED:
  1487. errorMessage = Str("Output.ConnectFail.ConnectFailed");
  1488. break;
  1489. case OBS_OUTPUT_INVALID_STREAM:
  1490. errorMessage = Str("Output.ConnectFail.InvalidStream");
  1491. break;
  1492. default:
  1493. case OBS_OUTPUT_ERROR:
  1494. errorMessage = Str("Output.ConnectFail.Error");
  1495. break;
  1496. case OBS_OUTPUT_DISCONNECTED:
  1497. /* doesn't happen if output is set to reconnect. note that
  1498. * reconnects are handled in the output, not in the UI */
  1499. errorMessage = Str("Output.ConnectFail.Disconnected");
  1500. }
  1501. activeRefs--;
  1502. ui->statusbar->StreamStopped();
  1503. ui->streamButton->setText(QTStr("Basic.Main.StartStreaming"));
  1504. ui->streamButton->setEnabled(true);
  1505. if (code != OBS_OUTPUT_SUCCESS)
  1506. QMessageBox::information(this,
  1507. QTStr("Output.ConnectFail.Title"),
  1508. QT_UTF8(errorMessage));
  1509. }
  1510. void OBSBasic::RecordingStop()
  1511. {
  1512. activeRefs--;
  1513. ui->recordButton->setText(QTStr("Basic.Main.StartRecording"));
  1514. }
  1515. void OBSBasic::SetupEncoders()
  1516. {
  1517. if (activeRefs == 0) {
  1518. obs_data_t x264Settings = obs_data_create();
  1519. obs_data_t aacSettings = obs_data_create();
  1520. int videoBitrate = config_get_uint(basicConfig, "SimpleOutput",
  1521. "VBitrate");
  1522. int audioBitrate = config_get_uint(basicConfig, "SimpleOutput",
  1523. "ABitrate");
  1524. obs_data_setint(x264Settings, "bitrate", videoBitrate);
  1525. obs_data_setint(x264Settings, "buffer_size", videoBitrate);
  1526. obs_data_setbool(x264Settings, "cbr", true);
  1527. obs_data_setint(aacSettings, "bitrate", audioBitrate);
  1528. obs_encoder_update(x264, x264Settings);
  1529. obs_encoder_update(aac, aacSettings);
  1530. obs_data_release(x264Settings);
  1531. obs_data_release(aacSettings);
  1532. obs_encoder_set_video(x264, obs_video());
  1533. obs_encoder_set_audio(aac, obs_audio());
  1534. }
  1535. }
  1536. void OBSBasic::on_streamButton_clicked()
  1537. {
  1538. if (obs_output_active(streamOutput)) {
  1539. obs_output_stop(streamOutput);
  1540. } else {
  1541. SaveService();
  1542. SetupEncoders();
  1543. obs_output_set_video_encoder(streamOutput, x264);
  1544. obs_output_set_audio_encoder(streamOutput, aac);
  1545. obs_output_set_service(streamOutput, service);
  1546. bool reconnect = config_get_bool(basicConfig, "SimpleOutput",
  1547. "Reconnect");
  1548. int retryDelay = config_get_uint(basicConfig, "SimpleOutput",
  1549. "RetryDelay");
  1550. int maxRetries = config_get_uint(basicConfig, "SimpleOutput",
  1551. "MaxRetries");
  1552. if (!reconnect)
  1553. maxRetries = 0;
  1554. obs_output_set_reconnect_settings(streamOutput, maxRetries,
  1555. retryDelay);
  1556. if (obs_output_start(streamOutput)) {
  1557. activeRefs++;
  1558. ui->streamButton->setEnabled(false);
  1559. ui->streamButton->setText(
  1560. QTStr("Basic.Main.Connecting"));
  1561. }
  1562. }
  1563. }
  1564. void OBSBasic::on_recordButton_clicked()
  1565. {
  1566. if (obs_output_active(fileOutput)) {
  1567. obs_output_stop(fileOutput);
  1568. } else {
  1569. const char *path = config_get_string(basicConfig,
  1570. "SimpleOutput", "FilePath");
  1571. os_dir_t dir = path ? os_opendir(path) : nullptr;
  1572. if (!dir) {
  1573. QMessageBox::information(this,
  1574. QTStr("Output.BadPath.Title"),
  1575. QTStr("Output.BadPath.Text"));
  1576. return;
  1577. }
  1578. os_closedir(dir);
  1579. string strPath;
  1580. strPath += path;
  1581. char lastChar = strPath.back();
  1582. if (lastChar != '/' && lastChar != '\\')
  1583. strPath += "/";
  1584. strPath += GenerateTimeDateFilename("flv");
  1585. SetupEncoders();
  1586. obs_output_set_video_encoder(fileOutput, x264);
  1587. obs_output_set_audio_encoder(fileOutput, aac);
  1588. obs_data_t settings = obs_data_create();
  1589. obs_data_setstring(settings, "path", strPath.c_str());
  1590. obs_output_update(fileOutput, settings);
  1591. obs_data_release(settings);
  1592. if (obs_output_start(fileOutput)) {
  1593. activeRefs++;
  1594. ui->recordButton->setText(
  1595. QTStr("Basic.Main.StopRecording"));
  1596. }
  1597. }
  1598. }
  1599. void OBSBasic::on_settingsButton_clicked()
  1600. {
  1601. OBSBasicSettings settings(this);
  1602. settings.exec();
  1603. }
  1604. void OBSBasic::GetFPSCommon(uint32_t &num, uint32_t &den) const
  1605. {
  1606. const char *val = config_get_string(basicConfig, "Video", "FPSCommon");
  1607. if (strcmp(val, "10") == 0) {
  1608. num = 10;
  1609. den = 1;
  1610. } else if (strcmp(val, "20") == 0) {
  1611. num = 20;
  1612. den = 1;
  1613. } else if (strcmp(val, "25") == 0) {
  1614. num = 25;
  1615. den = 1;
  1616. } else if (strcmp(val, "29.97") == 0) {
  1617. num = 30000;
  1618. den = 1001;
  1619. } else if (strcmp(val, "48") == 0) {
  1620. num = 48;
  1621. den = 1;
  1622. } else if (strcmp(val, "59.94") == 0) {
  1623. num = 60000;
  1624. den = 1001;
  1625. } else if (strcmp(val, "60") == 0) {
  1626. num = 60;
  1627. den = 1;
  1628. } else {
  1629. num = 30;
  1630. den = 1;
  1631. }
  1632. }
  1633. void OBSBasic::GetFPSInteger(uint32_t &num, uint32_t &den) const
  1634. {
  1635. num = (uint32_t)config_get_uint(basicConfig, "Video", "FPSInt");
  1636. den = 1;
  1637. }
  1638. void OBSBasic::GetFPSFraction(uint32_t &num, uint32_t &den) const
  1639. {
  1640. num = (uint32_t)config_get_uint(basicConfig, "Video", "FPSNum");
  1641. den = (uint32_t)config_get_uint(basicConfig, "Video", "FPSDen");
  1642. }
  1643. void OBSBasic::GetFPSNanoseconds(uint32_t &num, uint32_t &den) const
  1644. {
  1645. num = 1000000000;
  1646. den = (uint32_t)config_get_uint(basicConfig, "Video", "FPSNS");
  1647. }
  1648. void OBSBasic::GetConfigFPS(uint32_t &num, uint32_t &den) const
  1649. {
  1650. uint32_t type = config_get_uint(basicConfig, "Video", "FPSType");
  1651. if (type == 1) //"Integer"
  1652. GetFPSInteger(num, den);
  1653. else if (type == 2) //"Fraction"
  1654. GetFPSFraction(num, den);
  1655. else if (false) //"Nanoseconds", currently not implemented
  1656. GetFPSNanoseconds(num, den);
  1657. else
  1658. GetFPSCommon(num, den);
  1659. }
  1660. config_t OBSBasic::Config() const
  1661. {
  1662. return basicConfig;
  1663. }
  1664. void OBSBasic::on_actionEditTransform_triggered()
  1665. {
  1666. delete transformWindow;
  1667. transformWindow = new OBSBasicTransform(this);
  1668. transformWindow->show();
  1669. }
  1670. void OBSBasic::on_actionResetTransform_triggered()
  1671. {
  1672. auto func = [] (obs_scene_t scene, obs_sceneitem_t item, void *param)
  1673. {
  1674. if (!obs_sceneitem_selected(item))
  1675. return true;
  1676. obs_sceneitem_info info;
  1677. vec2_set(&info.pos, 0.0f, 0.0f);
  1678. vec2_set(&info.scale, 1.0f, 1.0f);
  1679. info.rot = 0.0f;
  1680. info.alignment = OBS_ALIGN_TOP | OBS_ALIGN_LEFT;
  1681. info.bounds_type = OBS_BOUNDS_NONE;
  1682. info.bounds_alignment = OBS_ALIGN_CENTER;
  1683. vec2_set(&info.bounds, 0.0f, 0.0f);
  1684. obs_sceneitem_set_info(item, &info);
  1685. UNUSED_PARAMETER(scene);
  1686. UNUSED_PARAMETER(param);
  1687. return true;
  1688. };
  1689. obs_scene_enum_items(GetCurrentScene(), func, nullptr);
  1690. }
  1691. static void GetItemBox(obs_sceneitem_t item, vec3 &tl, vec3 &br)
  1692. {
  1693. matrix4 boxTransform;
  1694. obs_sceneitem_get_box_transform(item, &boxTransform);
  1695. vec3_set(&tl, M_INFINITE, M_INFINITE, 0.0f);
  1696. vec3_set(&br, -M_INFINITE, -M_INFINITE, 0.0f);
  1697. auto GetMinPos = [&] (float x, float y)
  1698. {
  1699. vec3 pos;
  1700. vec3_set(&pos, x, y, 0.0f);
  1701. vec3_transform(&pos, &pos, &boxTransform);
  1702. vec3_min(&tl, &tl, &pos);
  1703. vec3_max(&br, &br, &pos);
  1704. };
  1705. GetMinPos(0.0f, 0.0f);
  1706. GetMinPos(1.0f, 0.0f);
  1707. GetMinPos(0.0f, 1.0f);
  1708. GetMinPos(1.0f, 1.0f);
  1709. }
  1710. static vec3 GetItemTL(obs_sceneitem_t item)
  1711. {
  1712. vec3 tl, br;
  1713. GetItemBox(item, tl, br);
  1714. return tl;
  1715. }
  1716. static void SetItemTL(obs_sceneitem_t item, const vec3 &tl)
  1717. {
  1718. vec3 newTL;
  1719. vec2 pos;
  1720. obs_sceneitem_getpos(item, &pos);
  1721. newTL = GetItemTL(item);
  1722. pos.x += tl.x - newTL.x;
  1723. pos.y += tl.y - newTL.y;
  1724. obs_sceneitem_setpos(item, &pos);
  1725. }
  1726. static bool RotateSelectedSources(obs_scene_t scene, obs_sceneitem_t item,
  1727. void *param)
  1728. {
  1729. if (!obs_sceneitem_selected(item))
  1730. return true;
  1731. float rot = *reinterpret_cast<float*>(param);
  1732. vec3 tl = GetItemTL(item);
  1733. rot += obs_sceneitem_getrot(item);
  1734. if (rot >= 360.0f) rot -= 360.0f;
  1735. else if (rot <= -360.0f) rot += 360.0f;
  1736. obs_sceneitem_setrot(item, rot);
  1737. SetItemTL(item, tl);
  1738. UNUSED_PARAMETER(scene);
  1739. UNUSED_PARAMETER(param);
  1740. return true;
  1741. };
  1742. void OBSBasic::on_actionRotate90CW_triggered()
  1743. {
  1744. float f90CW = 90.0f;
  1745. obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f90CW);
  1746. }
  1747. void OBSBasic::on_actionRotate90CCW_triggered()
  1748. {
  1749. float f90CCW = -90.0f;
  1750. obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f90CCW);
  1751. }
  1752. void OBSBasic::on_actionRotate180_triggered()
  1753. {
  1754. float f180 = 180.0f;
  1755. obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f180);
  1756. }
  1757. static bool MultiplySelectedItemScale(obs_scene_t scene, obs_sceneitem_t item,
  1758. void *param)
  1759. {
  1760. vec2 &mul = *reinterpret_cast<vec2*>(param);
  1761. if (!obs_sceneitem_selected(item))
  1762. return true;
  1763. vec3 tl = GetItemTL(item);
  1764. vec2 scale;
  1765. obs_sceneitem_getscale(item, &scale);
  1766. vec2_mul(&scale, &scale, &mul);
  1767. obs_sceneitem_setscale(item, &scale);
  1768. SetItemTL(item, tl);
  1769. UNUSED_PARAMETER(scene);
  1770. return true;
  1771. }
  1772. void OBSBasic::on_actionFlipHorizontal_triggered()
  1773. {
  1774. vec2 scale;
  1775. vec2_set(&scale, -1.0f, 1.0f);
  1776. obs_scene_enum_items(GetCurrentScene(), MultiplySelectedItemScale,
  1777. &scale);
  1778. }
  1779. void OBSBasic::on_actionFlipVertical_triggered()
  1780. {
  1781. vec2 scale;
  1782. vec2_set(&scale, 1.0f, -1.0f);
  1783. obs_scene_enum_items(GetCurrentScene(), MultiplySelectedItemScale,
  1784. &scale);
  1785. }
  1786. static bool CenterAlignSelectedItems(obs_scene_t scene, obs_sceneitem_t item,
  1787. void *param)
  1788. {
  1789. obs_bounds_type boundsType = *reinterpret_cast<obs_bounds_type*>(param);
  1790. if (!obs_sceneitem_selected(item))
  1791. return true;
  1792. obs_video_info ovi;
  1793. obs_get_video_info(&ovi);
  1794. obs_sceneitem_info itemInfo;
  1795. vec2_set(&itemInfo.pos, 0.0f, 0.0f);
  1796. vec2_set(&itemInfo.scale, 1.0f, 1.0f);
  1797. itemInfo.alignment = OBS_ALIGN_LEFT | OBS_ALIGN_TOP;
  1798. itemInfo.rot = 0.0f;
  1799. vec2_set(&itemInfo.bounds,
  1800. float(ovi.base_width), float(ovi.base_height));
  1801. itemInfo.bounds_type = boundsType;
  1802. itemInfo.bounds_alignment = OBS_ALIGN_CENTER;
  1803. obs_sceneitem_set_info(item, &itemInfo);
  1804. UNUSED_PARAMETER(scene);
  1805. return true;
  1806. }
  1807. void OBSBasic::on_actionFitToScreen_triggered()
  1808. {
  1809. obs_bounds_type boundsType = OBS_BOUNDS_SCALE_INNER;
  1810. obs_scene_enum_items(GetCurrentScene(), CenterAlignSelectedItems,
  1811. &boundsType);
  1812. }
  1813. void OBSBasic::on_actionStretchToScreen_triggered()
  1814. {
  1815. obs_bounds_type boundsType = OBS_BOUNDS_STRETCH;
  1816. obs_scene_enum_items(GetCurrentScene(), CenterAlignSelectedItems,
  1817. &boundsType);
  1818. }
  1819. void OBSBasic::on_actionCenterToScreen_triggered()
  1820. {
  1821. auto func = [] (obs_scene_t scene, obs_sceneitem_t item, void *param)
  1822. {
  1823. vec3 tl, br, itemCenter, screenCenter, offset;
  1824. obs_video_info ovi;
  1825. if (!obs_sceneitem_selected(item))
  1826. return true;
  1827. obs_get_video_info(&ovi);
  1828. vec3_set(&screenCenter, float(ovi.base_width),
  1829. float(ovi.base_height), 0.0f);
  1830. vec3_mulf(&screenCenter, &screenCenter, 0.5f);
  1831. GetItemBox(item, tl, br);
  1832. vec3_sub(&itemCenter, &br, &tl);
  1833. vec3_mulf(&itemCenter, &itemCenter, 0.5f);
  1834. vec3_add(&itemCenter, &itemCenter, &tl);
  1835. vec3_sub(&offset, &screenCenter, &itemCenter);
  1836. vec3_add(&tl, &tl, &offset);
  1837. SetItemTL(item, tl);
  1838. UNUSED_PARAMETER(scene);
  1839. UNUSED_PARAMETER(param);
  1840. return true;
  1841. };
  1842. obs_scene_enum_items(GetCurrentScene(), func, nullptr);
  1843. }