window-basic-main.cpp 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289
  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 (!ResetVideo())
  404. throw "Failed to initialize video";
  405. if (!ResetAudio())
  406. throw "Failed to initialize audio";
  407. InitOBSCallbacks();
  408. /* TODO: this is a test, all modules will be searched for and loaded
  409. * automatically later */
  410. obs_load_module("image-source");
  411. // obs_load_module("test-input");
  412. obs_load_module("obs-ffmpeg");
  413. obs_load_module("obs-libfdk");
  414. obs_load_module("obs-x264");
  415. obs_load_module("obs-outputs");
  416. obs_load_module("rtmp-services");
  417. #ifdef __APPLE__
  418. obs_load_module("mac-avcapture");
  419. obs_load_module("mac-capture");
  420. #elif _WIN32
  421. obs_load_module("win-wasapi");
  422. obs_load_module("win-capture");
  423. obs_load_module("win-dshow");
  424. #else
  425. obs_load_module("linux-xshm");
  426. obs_load_module("linux-xcomposite");
  427. obs_load_module("linux-pulseaudio");
  428. obs_load_module("linux-v4l2");
  429. #endif
  430. if (!InitOutputs())
  431. throw "Failed to initialize outputs";
  432. if (!InitEncoders())
  433. throw "Failed to initialize encoders";
  434. if (!InitService())
  435. throw "Failed to initialize service";
  436. InitPrimitives();
  437. Load(savePath);
  438. ResetAudioDevices();
  439. TimedCheckForUpdates();
  440. loaded = true;
  441. }
  442. OBSBasic::~OBSBasic()
  443. {
  444. BPtr<char> savePath(os_get_config_path("obs-studio/basic/scenes.json"));
  445. SaveService();
  446. Save(savePath);
  447. /* XXX: any obs data must be released before calling obs_shutdown.
  448. * currently, we can't automate this with C++ RAII because of the
  449. * delicate nature of obs_shutdown needing to be freed before the UI
  450. * can be freed, and we have no control over the destruction order of
  451. * the Qt UI stuff, so we have to manually clear any references to
  452. * libobs. */
  453. delete cpuUsageTimer;
  454. os_cpu_usage_info_destroy(cpuUsageInfo);
  455. delete properties;
  456. delete transformWindow;
  457. ClearVolumeControls();
  458. ui->sources->clear();
  459. ui->scenes->clear();
  460. gs_entercontext(obs_graphics());
  461. vertexbuffer_destroy(box);
  462. vertexbuffer_destroy(circle);
  463. gs_leavecontext();
  464. obs_shutdown();
  465. config_set_int(App()->GlobalConfig(), "General", "LastVersion",
  466. LIBOBS_API_VER);
  467. config_save(App()->GlobalConfig());
  468. }
  469. OBSScene OBSBasic::GetCurrentScene()
  470. {
  471. QListWidgetItem *item = ui->scenes->currentItem();
  472. return item ? item->data(Qt::UserRole).value<OBSScene>() : nullptr;
  473. }
  474. OBSSceneItem OBSBasic::GetCurrentSceneItem()
  475. {
  476. QListWidgetItem *item = ui->sources->currentItem();
  477. return item ? item->data(Qt::UserRole).value<OBSSceneItem>() : nullptr;
  478. }
  479. void OBSBasic::UpdateSources(OBSScene scene)
  480. {
  481. ui->sources->clear();
  482. obs_scene_enum_items(scene,
  483. [] (obs_scene_t scene, obs_sceneitem_t item, void *p)
  484. {
  485. OBSBasic *window = static_cast<OBSBasic*>(p);
  486. window->InsertSceneItem(item);
  487. UNUSED_PARAMETER(scene);
  488. return true;
  489. }, this);
  490. }
  491. void OBSBasic::InsertSceneItem(obs_sceneitem_t item)
  492. {
  493. obs_source_t source = obs_sceneitem_getsource(item);
  494. const char *name = obs_source_getname(source);
  495. QListWidgetItem *listItem = new QListWidgetItem(QT_UTF8(name));
  496. listItem->setFlags(listItem->flags() | Qt::ItemIsEditable);
  497. listItem->setData(Qt::UserRole,
  498. QVariant::fromValue(OBSSceneItem(item)));
  499. ui->sources->insertItem(0, listItem);
  500. ui->sources->setCurrentRow(0);
  501. /* if the source was just created, open properties dialog */
  502. if (sourceSceneRefs[source] == 0 && loaded) {
  503. delete properties;
  504. properties = new OBSBasicProperties(this, source);
  505. properties->Init();
  506. }
  507. }
  508. /* Qt callbacks for invokeMethod */
  509. void OBSBasic::AddScene(OBSSource source)
  510. {
  511. const char *name = obs_source_getname(source);
  512. obs_scene_t scene = obs_scene_fromsource(source);
  513. QListWidgetItem *item = new QListWidgetItem(QT_UTF8(name));
  514. item->setFlags(item->flags() | Qt::ItemIsEditable);
  515. item->setData(Qt::UserRole, QVariant::fromValue(OBSScene(scene)));
  516. ui->scenes->addItem(item);
  517. signal_handler_t handler = obs_source_signalhandler(source);
  518. signal_handler_connect(handler, "item_add",
  519. OBSBasic::SceneItemAdded, this);
  520. signal_handler_connect(handler, "item_remove",
  521. OBSBasic::SceneItemRemoved, this);
  522. signal_handler_connect(handler, "item_move_up",
  523. OBSBasic::SceneItemMoveUp, this);
  524. signal_handler_connect(handler, "item_move_down",
  525. OBSBasic::SceneItemMoveDown, this);
  526. signal_handler_connect(handler, "item_move_top",
  527. OBSBasic::SceneItemMoveTop, this);
  528. signal_handler_connect(handler, "item_move_bottom",
  529. OBSBasic::SceneItemMoveBottom, this);
  530. }
  531. void OBSBasic::RemoveScene(OBSSource source)
  532. {
  533. const char *name = obs_source_getname(source);
  534. QListWidgetItem *sel = ui->scenes->currentItem();
  535. QList<QListWidgetItem*> items = ui->scenes->findItems(QT_UTF8(name),
  536. Qt::MatchExactly);
  537. if (sel != nullptr) {
  538. if (items.contains(sel))
  539. ui->sources->clear();
  540. delete sel;
  541. }
  542. }
  543. void OBSBasic::AddSceneItem(OBSSceneItem item)
  544. {
  545. obs_scene_t scene = obs_sceneitem_getscene(item);
  546. obs_source_t source = obs_sceneitem_getsource(item);
  547. if (GetCurrentScene() == scene)
  548. InsertSceneItem(item);
  549. sourceSceneRefs[source] = sourceSceneRefs[source] + 1;
  550. }
  551. void OBSBasic::RemoveSceneItem(OBSSceneItem item)
  552. {
  553. obs_scene_t scene = obs_sceneitem_getscene(item);
  554. if (GetCurrentScene() == scene) {
  555. for (int i = 0; i < ui->sources->count(); i++) {
  556. QListWidgetItem *listItem = ui->sources->item(i);
  557. QVariant userData = listItem->data(Qt::UserRole);
  558. if (userData.value<OBSSceneItem>() == item) {
  559. delete listItem;
  560. break;
  561. }
  562. }
  563. }
  564. obs_source_t source = obs_sceneitem_getsource(item);
  565. int scenes = sourceSceneRefs[source] - 1;
  566. sourceSceneRefs[source] = scenes;
  567. if (scenes == 0) {
  568. obs_source_remove(source);
  569. sourceSceneRefs.erase(source);
  570. }
  571. }
  572. void OBSBasic::UpdateSceneSelection(OBSSource source)
  573. {
  574. if (source) {
  575. obs_source_type type;
  576. obs_source_gettype(source, &type, NULL);
  577. obs_scene_t scene = obs_scene_fromsource(source);
  578. const char *name = obs_source_getname(source);
  579. if (!scene)
  580. return;
  581. QList<QListWidgetItem*> items =
  582. ui->scenes->findItems(QT_UTF8(name), Qt::MatchExactly);
  583. if (items.count()) {
  584. sceneChanging = true;
  585. ui->scenes->setCurrentItem(items.first());
  586. sceneChanging = false;
  587. UpdateSources(scene);
  588. }
  589. }
  590. }
  591. static void RenameListValues(QListWidget *listWidget, const QString &newName,
  592. const QString &prevName)
  593. {
  594. QList<QListWidgetItem*> items =
  595. listWidget->findItems(prevName, Qt::MatchExactly);
  596. for (int i = 0; i < items.count(); i++)
  597. items[i]->setText(newName);
  598. }
  599. void OBSBasic::RenameSources(QString newName, QString prevName)
  600. {
  601. RenameListValues(ui->scenes, newName, prevName);
  602. RenameListValues(ui->sources, newName, prevName);
  603. for (size_t i = 0; i < volumes.size(); i++) {
  604. if (volumes[i]->GetName().compare(prevName) == 0)
  605. volumes[i]->SetName(newName);
  606. }
  607. }
  608. void OBSBasic::MoveSceneItem(OBSSceneItem item, order_movement movement)
  609. {
  610. OBSScene scene = obs_sceneitem_getscene(item);
  611. if (scene != GetCurrentScene())
  612. return;
  613. int curRow = ui->sources->currentRow();
  614. if (curRow == -1)
  615. return;
  616. QListWidgetItem *listItem = ui->sources->takeItem(curRow);
  617. switch (movement) {
  618. case ORDER_MOVE_UP:
  619. if (curRow > 0)
  620. curRow--;
  621. break;
  622. case ORDER_MOVE_DOWN:
  623. if (curRow < ui->sources->count())
  624. curRow++;
  625. break;
  626. case ORDER_MOVE_TOP:
  627. curRow = 0;
  628. break;
  629. case ORDER_MOVE_BOTTOM:
  630. curRow = ui->sources->count();
  631. break;
  632. }
  633. ui->sources->insertItem(curRow, listItem);
  634. ui->sources->setCurrentRow(curRow);
  635. }
  636. void OBSBasic::ActivateAudioSource(OBSSource source)
  637. {
  638. VolControl *vol = new VolControl(source);
  639. volumes.push_back(vol);
  640. ui->volumeWidgets->layout()->addWidget(vol);
  641. }
  642. void OBSBasic::DeactivateAudioSource(OBSSource source)
  643. {
  644. for (size_t i = 0; i < volumes.size(); i++) {
  645. if (volumes[i]->GetSource() == source) {
  646. delete volumes[i];
  647. volumes.erase(volumes.begin() + i);
  648. break;
  649. }
  650. }
  651. }
  652. bool OBSBasic::QueryRemoveSource(obs_source_t source)
  653. {
  654. const char *name = obs_source_getname(source);
  655. QString text = QTStr("ConfirmRemove.Text");
  656. text.replace("$1", QT_UTF8(name));
  657. QMessageBox::StandardButton button;
  658. button = QMessageBox::question(this,
  659. QTStr("ConfirmRemove.Remove"), text);
  660. return button == QMessageBox::Yes;
  661. }
  662. #define UPDATE_CHECK_INTERVAL (60*60*24*4) /* 4 days */
  663. void OBSBasic::TimedCheckForUpdates()
  664. {
  665. long long lastUpdate = config_get_int(App()->GlobalConfig(), "General",
  666. "LastUpdateCheck");
  667. uint32_t lastVersion = config_get_int(App()->GlobalConfig(), "General",
  668. "LastVersion");
  669. if (lastVersion < LIBOBS_API_VER) {
  670. lastUpdate = 0;
  671. config_set_int(App()->GlobalConfig(), "General",
  672. "LastUpdateCheck", 0);
  673. }
  674. long long t = (long long)time(nullptr);
  675. long long secs = t - lastUpdate;
  676. if (secs > UPDATE_CHECK_INTERVAL)
  677. CheckForUpdates();
  678. }
  679. void OBSBasic::CheckForUpdates()
  680. {
  681. ui->actionCheckForUpdates->setEnabled(false);
  682. string versionString("obs-basic ");
  683. versionString += App()->GetVersionString();
  684. QNetworkRequest request;
  685. request.setUrl(QUrl("https://obsproject.com/obs2_update/basic.json"));
  686. request.setRawHeader("User-Agent", versionString.c_str());
  687. updateReply = networkManager.get(request);
  688. connect(updateReply, SIGNAL(finished()),
  689. this, SLOT(updateFileFinished()));
  690. connect(updateReply, SIGNAL(readyRead()),
  691. this, SLOT(updateFileRead()));
  692. }
  693. void OBSBasic::updateFileRead()
  694. {
  695. updateReturnData.push_back(updateReply->readAll());
  696. }
  697. #ifdef __APPLE__
  698. #define VERSION_ENTRY "mac"
  699. #elif _WIN32
  700. #define VERSION_ENTRY "windows"
  701. #else
  702. #define VERSION_ENTRY "other"
  703. #endif
  704. void OBSBasic::updateFileFinished()
  705. {
  706. ui->actionCheckForUpdates->setEnabled(true);
  707. if (updateReply->error()) {
  708. blog(LOG_WARNING, "Update check failed: %s",
  709. QT_TO_UTF8(updateReply->errorString()));
  710. return;
  711. }
  712. const char *jsonReply = updateReturnData.constData();
  713. if (!jsonReply || !*jsonReply)
  714. return;
  715. obs_data_t returnData = obs_data_create_from_json(jsonReply);
  716. obs_data_t versionData = obs_data_getobj(returnData, VERSION_ENTRY);
  717. const char *description = obs_data_getstring(returnData, "description");
  718. const char *download = obs_data_getstring(versionData, "download");
  719. if (returnData && versionData && description && download) {
  720. long major = obs_data_getint(versionData, "major");
  721. long minor = obs_data_getint(versionData, "minor");
  722. long patch = obs_data_getint(versionData, "patch");
  723. long version = MAKE_SEMANTIC_VERSION(major, minor, patch);
  724. blog(LOG_INFO, "Update check: latest version is: %ld.%ld.%ld",
  725. major, minor, patch);
  726. if (version > LIBOBS_API_VER) {
  727. QString str = QTStr("UpdateAvailable.Text");
  728. QMessageBox messageBox(this);
  729. str = str.arg(QString::number(major),
  730. QString::number(minor),
  731. QString::number(patch),
  732. download);
  733. messageBox.setWindowTitle(QTStr("UpdateAvailable"));
  734. messageBox.setTextFormat(Qt::RichText);
  735. messageBox.setText(str);
  736. messageBox.setInformativeText(QT_UTF8(description));
  737. messageBox.exec();
  738. long long t = (long long)time(nullptr);
  739. config_set_int(App()->GlobalConfig(), "General",
  740. "LastUpdateCheck", t);
  741. config_save(App()->GlobalConfig());
  742. }
  743. } else {
  744. blog(LOG_WARNING, "Bad JSON file received from server");
  745. }
  746. obs_data_release(versionData);
  747. obs_data_release(returnData);
  748. }
  749. void OBSBasic::RemoveSelectedScene()
  750. {
  751. OBSScene scene = GetCurrentScene();
  752. if (scene) {
  753. obs_source_t source = obs_scene_getsource(scene);
  754. if (QueryRemoveSource(source))
  755. obs_source_remove(source);
  756. }
  757. }
  758. void OBSBasic::RemoveSelectedSceneItem()
  759. {
  760. OBSSceneItem item = GetCurrentSceneItem();
  761. if (item) {
  762. obs_source_t source = obs_sceneitem_getsource(item);
  763. if (QueryRemoveSource(source))
  764. obs_sceneitem_remove(item);
  765. }
  766. }
  767. /* OBS Callbacks */
  768. void OBSBasic::SceneItemAdded(void *data, calldata_t params)
  769. {
  770. OBSBasic *window = static_cast<OBSBasic*>(data);
  771. obs_sceneitem_t item = (obs_sceneitem_t)calldata_ptr(params, "item");
  772. QMetaObject::invokeMethod(window, "AddSceneItem",
  773. Q_ARG(OBSSceneItem, OBSSceneItem(item)));
  774. }
  775. void OBSBasic::SceneItemRemoved(void *data, calldata_t params)
  776. {
  777. OBSBasic *window = static_cast<OBSBasic*>(data);
  778. obs_sceneitem_t item = (obs_sceneitem_t)calldata_ptr(params, "item");
  779. QMetaObject::invokeMethod(window, "RemoveSceneItem",
  780. Q_ARG(OBSSceneItem, OBSSceneItem(item)));
  781. }
  782. void OBSBasic::SourceAdded(void *data, calldata_t params)
  783. {
  784. OBSBasic *window = static_cast<OBSBasic*>(data);
  785. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  786. if (obs_scene_fromsource(source) != NULL)
  787. QMetaObject::invokeMethod(window,
  788. "AddScene",
  789. Q_ARG(OBSSource, OBSSource(source)));
  790. }
  791. void OBSBasic::SourceRemoved(void *data, calldata_t params)
  792. {
  793. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  794. if (obs_scene_fromsource(source) != NULL)
  795. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  796. "RemoveScene",
  797. Q_ARG(OBSSource, OBSSource(source)));
  798. }
  799. void OBSBasic::SourceActivated(void *data, calldata_t params)
  800. {
  801. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  802. uint32_t flags = obs_source_get_output_flags(source);
  803. if (flags & OBS_SOURCE_AUDIO)
  804. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  805. "ActivateAudioSource",
  806. Q_ARG(OBSSource, OBSSource(source)));
  807. }
  808. void OBSBasic::SourceDeactivated(void *data, calldata_t params)
  809. {
  810. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  811. uint32_t flags = obs_source_get_output_flags(source);
  812. if (flags & OBS_SOURCE_AUDIO)
  813. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  814. "DeactivateAudioSource",
  815. Q_ARG(OBSSource, OBSSource(source)));
  816. }
  817. void OBSBasic::SourceRenamed(void *data, calldata_t params)
  818. {
  819. const char *newName = calldata_string(params, "new_name");
  820. const char *prevName = calldata_string(params, "prev_name");
  821. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  822. "RenameSources",
  823. Q_ARG(QString, QT_UTF8(newName)),
  824. Q_ARG(QString, QT_UTF8(prevName)));
  825. }
  826. void OBSBasic::ChannelChanged(void *data, calldata_t params)
  827. {
  828. obs_source_t source = (obs_source_t)calldata_ptr(params, "source");
  829. uint32_t channel = (uint32_t)calldata_int(params, "channel");
  830. if (channel == 0)
  831. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  832. "UpdateSceneSelection",
  833. Q_ARG(OBSSource, OBSSource(source)));
  834. }
  835. void OBSBasic::DrawBackdrop(float cx, float cy)
  836. {
  837. if (!box)
  838. return;
  839. effect_t solid = obs_get_solid_effect();
  840. eparam_t color = effect_getparambyname(solid, "color");
  841. technique_t tech = effect_gettechnique(solid, "Solid");
  842. vec4 colorVal;
  843. vec4_set(&colorVal, 0.0f, 0.0f, 0.0f, 1.0f);
  844. effect_setvec4(color, &colorVal);
  845. technique_begin(tech);
  846. technique_beginpass(tech, 0);
  847. gs_matrix_push();
  848. gs_matrix_identity();
  849. gs_matrix_scale3f(float(cx), float(cy), 1.0f);
  850. gs_load_vertexbuffer(box);
  851. gs_draw(GS_TRISTRIP, 0, 0);
  852. gs_matrix_pop();
  853. technique_endpass(tech);
  854. technique_end(tech);
  855. gs_load_vertexbuffer(nullptr);
  856. }
  857. void OBSBasic::RenderMain(void *data, uint32_t cx, uint32_t cy)
  858. {
  859. OBSBasic *window = static_cast<OBSBasic*>(data);
  860. obs_video_info ovi;
  861. obs_get_video_info(&ovi);
  862. window->previewCX = int(window->previewScale * float(ovi.base_width));
  863. window->previewCY = int(window->previewScale * float(ovi.base_height));
  864. gs_viewport_push();
  865. gs_projection_push();
  866. /* --------------------------------------- */
  867. gs_ortho(0.0f, float(ovi.base_width), 0.0f, float(ovi.base_height),
  868. -100.0f, 100.0f);
  869. gs_setviewport(window->previewX, window->previewY,
  870. window->previewCX, window->previewCY);
  871. window->DrawBackdrop(float(ovi.base_width), float(ovi.base_height));
  872. obs_render_main_view();
  873. gs_load_vertexbuffer(nullptr);
  874. /* --------------------------------------- */
  875. QSize previewSize = GetPixelSize(window->ui->preview);
  876. float right = float(previewSize.width()) - window->previewX;
  877. float bottom = float(previewSize.height()) - window->previewY;
  878. gs_ortho(-window->previewX, right,
  879. -window->previewY, bottom,
  880. -100.0f, 100.0f);
  881. gs_resetviewport();
  882. window->ui->preview->DrawSceneEditing();
  883. /* --------------------------------------- */
  884. gs_projection_pop();
  885. gs_viewport_pop();
  886. UNUSED_PARAMETER(cx);
  887. UNUSED_PARAMETER(cy);
  888. }
  889. void OBSBasic::SceneItemMoveUp(void *data, calldata_t params)
  890. {
  891. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  892. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  893. "MoveSceneItem",
  894. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  895. Q_ARG(order_movement, ORDER_MOVE_UP));
  896. }
  897. void OBSBasic::SceneItemMoveDown(void *data, calldata_t params)
  898. {
  899. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  900. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  901. "MoveSceneItem",
  902. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  903. Q_ARG(order_movement, ORDER_MOVE_DOWN));
  904. }
  905. void OBSBasic::SceneItemMoveTop(void *data, calldata_t params)
  906. {
  907. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  908. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  909. "MoveSceneItem",
  910. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  911. Q_ARG(order_movement, ORDER_MOVE_TOP));
  912. }
  913. void OBSBasic::SceneItemMoveBottom(void *data, calldata_t params)
  914. {
  915. OBSSceneItem item = (obs_sceneitem_t)calldata_ptr(params, "item");
  916. QMetaObject::invokeMethod(static_cast<OBSBasic*>(data),
  917. "MoveSceneItem",
  918. Q_ARG(OBSSceneItem, OBSSceneItem(item)),
  919. Q_ARG(order_movement, ORDER_MOVE_BOTTOM));
  920. }
  921. /* Main class functions */
  922. obs_service_t OBSBasic::GetService()
  923. {
  924. if (!service)
  925. service = obs_service_create("rtmp_common", NULL, NULL);
  926. return service;
  927. }
  928. void OBSBasic::SetService(obs_service_t newService)
  929. {
  930. if (newService) {
  931. if (service)
  932. obs_service_destroy(service);
  933. service = newService;
  934. }
  935. }
  936. bool OBSBasic::ResetVideo()
  937. {
  938. struct obs_video_info ovi;
  939. GetConfigFPS(ovi.fps_num, ovi.fps_den);
  940. ovi.graphics_module = App()->GetRenderModule();
  941. ovi.base_width = (uint32_t)config_get_uint(basicConfig,
  942. "Video", "BaseCX");
  943. ovi.base_height = (uint32_t)config_get_uint(basicConfig,
  944. "Video", "BaseCY");
  945. ovi.output_width = (uint32_t)config_get_uint(basicConfig,
  946. "Video", "OutputCX");
  947. ovi.output_height = (uint32_t)config_get_uint(basicConfig,
  948. "Video", "OutputCY");
  949. ovi.output_format = VIDEO_FORMAT_NV12;
  950. ovi.adapter = 0;
  951. ovi.gpu_conversion = true;
  952. QTToGSWindow(ui->preview->winId(), ovi.window);
  953. //required to make opengl display stuff on osx(?)
  954. ResizePreview(ovi.base_width, ovi.base_height);
  955. QSize size = GetPixelSize(ui->preview);
  956. ovi.window_width = size.width();
  957. ovi.window_height = size.height();
  958. if (!obs_reset_video(&ovi))
  959. return false;
  960. obs_add_draw_callback(OBSBasic::RenderMain, this);
  961. return true;
  962. }
  963. bool OBSBasic::ResetAudio()
  964. {
  965. struct audio_output_info ai;
  966. ai.name = "Main Audio Track";
  967. ai.format = AUDIO_FORMAT_FLOAT;
  968. ai.samples_per_sec = config_get_uint(basicConfig, "Audio",
  969. "SampleRate");
  970. const char *channelSetupStr = config_get_string(basicConfig,
  971. "Audio", "ChannelSetup");
  972. if (strcmp(channelSetupStr, "Mono") == 0)
  973. ai.speakers = SPEAKERS_MONO;
  974. else
  975. ai.speakers = SPEAKERS_STEREO;
  976. ai.buffer_ms = config_get_uint(basicConfig, "Audio", "BufferingTime");
  977. return obs_reset_audio(&ai);
  978. }
  979. void OBSBasic::ResetAudioDevice(const char *sourceId, const char *deviceName,
  980. const char *deviceDesc, int channel)
  981. {
  982. const char *deviceId = config_get_string(basicConfig, "Audio",
  983. deviceName);
  984. obs_source_t source;
  985. obs_data_t settings;
  986. bool same = false;
  987. source = obs_get_output_source(channel);
  988. if (source) {
  989. settings = obs_source_getsettings(source);
  990. const char *curId = obs_data_getstring(settings, "device_id");
  991. same = (strcmp(curId, deviceId) == 0);
  992. obs_data_release(settings);
  993. obs_source_release(source);
  994. }
  995. if (!same)
  996. obs_set_output_source(channel, nullptr);
  997. if (!same && strcmp(deviceId, "disabled") != 0) {
  998. obs_data_t settings = obs_data_create();
  999. obs_data_setstring(settings, "device_id", deviceId);
  1000. source = obs_source_create(OBS_SOURCE_TYPE_INPUT,
  1001. sourceId, deviceDesc, settings);
  1002. obs_data_release(settings);
  1003. obs_set_output_source(channel, source);
  1004. obs_source_release(source);
  1005. }
  1006. }
  1007. void OBSBasic::ResetAudioDevices()
  1008. {
  1009. ResetAudioDevice(App()->OutputAudioSource(), "DesktopDevice1",
  1010. Str("Basic.DesktopDevice1"), 1);
  1011. ResetAudioDevice(App()->OutputAudioSource(), "DesktopDevice2",
  1012. Str("Basic.DesktopDevice2"), 2);
  1013. ResetAudioDevice(App()->InputAudioSource(), "AuxDevice1",
  1014. Str("Basic.AuxDevice1"), 3);
  1015. ResetAudioDevice(App()->InputAudioSource(), "AuxDevice2",
  1016. Str("Basic.AuxDevice2"), 4);
  1017. ResetAudioDevice(App()->InputAudioSource(), "AuxDevice3",
  1018. Str("Basic.AuxDevice3"), 5);
  1019. }
  1020. void OBSBasic::ResizePreview(uint32_t cx, uint32_t cy)
  1021. {
  1022. QSize targetSize;
  1023. /* resize preview panel to fix to the top section of the window */
  1024. targetSize = GetPixelSize(ui->preview);
  1025. GetScaleAndCenterPos(int(cx), int(cy),
  1026. targetSize.width() - PREVIEW_EDGE_SIZE * 2,
  1027. targetSize.height() - PREVIEW_EDGE_SIZE * 2,
  1028. previewX, previewY, previewScale);
  1029. previewX += float(PREVIEW_EDGE_SIZE);
  1030. previewY += float(PREVIEW_EDGE_SIZE);
  1031. if (isVisible()) {
  1032. if (resizeTimer)
  1033. killTimer(resizeTimer);
  1034. resizeTimer = startTimer(100);
  1035. }
  1036. }
  1037. void OBSBasic::closeEvent(QCloseEvent *event)
  1038. {
  1039. QWidget::closeEvent(event);
  1040. if (!event->isAccepted())
  1041. return;
  1042. // remove draw callback in case our drawable surfaces go away before
  1043. // the destructor gets called
  1044. obs_remove_draw_callback(OBSBasic::RenderMain, this);
  1045. }
  1046. void OBSBasic::changeEvent(QEvent *event)
  1047. {
  1048. /* TODO */
  1049. UNUSED_PARAMETER(event);
  1050. }
  1051. void OBSBasic::resizeEvent(QResizeEvent *event)
  1052. {
  1053. struct obs_video_info ovi;
  1054. if (obs_get_video_info(&ovi))
  1055. ResizePreview(ovi.base_width, ovi.base_height);
  1056. UNUSED_PARAMETER(event);
  1057. }
  1058. void OBSBasic::timerEvent(QTimerEvent *event)
  1059. {
  1060. if (event->timerId() == resizeTimer) {
  1061. killTimer(resizeTimer);
  1062. resizeTimer = 0;
  1063. QSize size = GetPixelSize(ui->preview);
  1064. obs_resize(size.width(), size.height());
  1065. }
  1066. }
  1067. void OBSBasic::on_action_New_triggered()
  1068. {
  1069. /* TODO */
  1070. }
  1071. void OBSBasic::on_action_Open_triggered()
  1072. {
  1073. /* TODO */
  1074. }
  1075. void OBSBasic::on_action_Save_triggered()
  1076. {
  1077. /* TODO */
  1078. }
  1079. void OBSBasic::on_action_Settings_triggered()
  1080. {
  1081. OBSBasicSettings settings(this);
  1082. settings.exec();
  1083. }
  1084. void OBSBasic::on_scenes_currentItemChanged(QListWidgetItem *current,
  1085. QListWidgetItem *prev)
  1086. {
  1087. obs_source_t source = NULL;
  1088. if (sceneChanging)
  1089. return;
  1090. if (current) {
  1091. obs_scene_t scene;
  1092. scene = current->data(Qt::UserRole).value<OBSScene>();
  1093. source = obs_scene_getsource(scene);
  1094. }
  1095. /* TODO: allow transitions */
  1096. obs_set_output_source(0, source);
  1097. UNUSED_PARAMETER(prev);
  1098. }
  1099. void OBSBasic::EditSceneName()
  1100. {
  1101. ui->scenes->editItem(ui->scenes->currentItem());
  1102. }
  1103. void OBSBasic::on_scenes_customContextMenuRequested(const QPoint &pos)
  1104. {
  1105. QListWidgetItem *item = ui->scenes->itemAt(pos);
  1106. QMenu popup;
  1107. popup.addAction(QTStr("Add"),
  1108. this, SLOT(on_actionAddScene_triggered()));
  1109. if (item)
  1110. popup.addAction(QTStr("Remove"),
  1111. this, SLOT(RemoveSelectedScene()));
  1112. popup.exec(QCursor::pos());
  1113. }
  1114. void OBSBasic::on_actionAddScene_triggered()
  1115. {
  1116. string name;
  1117. QString format{QTStr("Basic.Main.DefaultSceneName.Text")};
  1118. int i = 1;
  1119. QString placeHolderText = format.arg(i);
  1120. obs_source_t source = nullptr;
  1121. while ((source = obs_get_source_by_name(QT_TO_UTF8(placeHolderText)))) {
  1122. obs_source_release(source);
  1123. placeHolderText = format.arg(++i);
  1124. }
  1125. bool accepted = NameDialog::AskForName(this,
  1126. QTStr("Basic.Main.AddSceneDlg.Title"),
  1127. QTStr("Basic.Main.AddSceneDlg.Text"),
  1128. name,
  1129. placeHolderText);
  1130. if (accepted) {
  1131. if (name.empty()) {
  1132. QMessageBox::information(this,
  1133. QTStr("NoNameEntered"),
  1134. QTStr("NoNameEntered"));
  1135. on_actionAddScene_triggered();
  1136. return;
  1137. }
  1138. obs_source_t source = obs_get_source_by_name(name.c_str());
  1139. if (source) {
  1140. QMessageBox::information(this,
  1141. QTStr("NameExists.Title"),
  1142. QTStr("NameExists.Text"));
  1143. obs_source_release(source);
  1144. on_actionAddScene_triggered();
  1145. return;
  1146. }
  1147. obs_scene_t scene = obs_scene_create(name.c_str());
  1148. source = obs_scene_getsource(scene);
  1149. obs_add_source(source);
  1150. obs_scene_release(scene);
  1151. obs_set_output_source(0, source);
  1152. }
  1153. }
  1154. void OBSBasic::on_actionRemoveScene_triggered()
  1155. {
  1156. OBSScene scene = GetCurrentScene();
  1157. obs_source_t source = obs_scene_getsource(scene);
  1158. if (source && QueryRemoveSource(source))
  1159. obs_source_remove(source);
  1160. }
  1161. void OBSBasic::on_actionSceneProperties_triggered()
  1162. {
  1163. /* TODO */
  1164. }
  1165. void OBSBasic::on_actionSceneUp_triggered()
  1166. {
  1167. /* TODO */
  1168. }
  1169. void OBSBasic::on_actionSceneDown_triggered()
  1170. {
  1171. /* TODO */
  1172. }
  1173. void OBSBasic::on_sources_currentItemChanged(QListWidgetItem *current,
  1174. QListWidgetItem *prev)
  1175. {
  1176. auto select_one = [] (obs_scene_t scene, obs_sceneitem_t item,
  1177. void *param)
  1178. {
  1179. obs_sceneitem_t selectedItem =
  1180. *reinterpret_cast<OBSSceneItem*>(param);
  1181. obs_sceneitem_select(item, (selectedItem == item));
  1182. UNUSED_PARAMETER(scene);
  1183. return true;
  1184. };
  1185. if (!current)
  1186. return;
  1187. OBSSceneItem item = current->data(Qt::UserRole).value<OBSSceneItem>();
  1188. obs_source_t source = obs_sceneitem_getsource(item);
  1189. if ((obs_source_get_output_flags(source) & OBS_SOURCE_VIDEO) == 0)
  1190. return;
  1191. obs_scene_enum_items(GetCurrentScene(), select_one, &item);
  1192. UNUSED_PARAMETER(prev);
  1193. }
  1194. void OBSBasic::EditSceneItemName()
  1195. {
  1196. ui->sources->editItem(ui->sources->currentItem());
  1197. }
  1198. void OBSBasic::on_sources_customContextMenuRequested(const QPoint &pos)
  1199. {
  1200. QListWidgetItem *item = ui->sources->itemAt(pos);
  1201. QMenu popup;
  1202. QPointer<QMenu> addSourceMenu = CreateAddSourcePopupMenu();
  1203. if (addSourceMenu)
  1204. popup.addMenu(addSourceMenu);
  1205. if (item) {
  1206. if (addSourceMenu)
  1207. popup.addSeparator();
  1208. popup.addAction(QTStr("Rename"), this,
  1209. SLOT(EditSceneItemName()));
  1210. popup.addAction(QTStr("Remove"), this,
  1211. SLOT(on_actionRemoveSource_triggered()),
  1212. QKeySequence::Delete);
  1213. popup.addSeparator();
  1214. popup.addMenu(ui->orderMenu);
  1215. popup.addMenu(ui->transformMenu);
  1216. popup.addSeparator();
  1217. popup.addAction(QTStr("Properties"), this,
  1218. SLOT(on_actionSourceProperties_triggered()));
  1219. }
  1220. popup.exec(QCursor::pos());
  1221. }
  1222. void OBSBasic::AddSource(const char *id)
  1223. {
  1224. if (id && *id) {
  1225. OBSBasicSourceSelect sourceSelect(this, id);
  1226. sourceSelect.exec();
  1227. }
  1228. }
  1229. QMenu *OBSBasic::CreateAddSourcePopupMenu()
  1230. {
  1231. const char *type;
  1232. bool foundValues = false;
  1233. size_t idx = 0;
  1234. QMenu *popup = new QMenu(QTStr("Add"));
  1235. while (obs_enum_input_types(idx++, &type)) {
  1236. const char *name = obs_source_getdisplayname(
  1237. OBS_SOURCE_TYPE_INPUT, type);
  1238. if (strcmp(type, "scene") == 0)
  1239. continue;
  1240. QAction *popupItem = new QAction(QT_UTF8(name), this);
  1241. popupItem->setData(QT_UTF8(type));
  1242. connect(popupItem, SIGNAL(triggered(bool)),
  1243. this, SLOT(AddSourceFromAction()));
  1244. popup->addAction(popupItem);
  1245. foundValues = true;
  1246. }
  1247. if (!foundValues) {
  1248. delete popup;
  1249. popup = nullptr;
  1250. }
  1251. return popup;
  1252. }
  1253. void OBSBasic::AddSourceFromAction()
  1254. {
  1255. QAction *action = qobject_cast<QAction*>(sender());
  1256. if (!action)
  1257. return;
  1258. AddSource(QT_TO_UTF8(action->data().toString()));
  1259. }
  1260. void OBSBasic::AddSourcePopupMenu(const QPoint &pos)
  1261. {
  1262. if (!GetCurrentScene()) {
  1263. // Tell the user he needs a scene first (help beginners).
  1264. QMessageBox::information(this,
  1265. QTStr("Basic.Main.AddSourceHelp.Title"),
  1266. QTStr("Basic.Main.AddSourceHelp.Text"));
  1267. return;
  1268. }
  1269. QPointer<QMenu> popup = CreateAddSourcePopupMenu();
  1270. if (popup)
  1271. popup->exec(pos);
  1272. }
  1273. void OBSBasic::on_actionAddSource_triggered()
  1274. {
  1275. AddSourcePopupMenu(QCursor::pos());
  1276. }
  1277. void OBSBasic::on_actionRemoveSource_triggered()
  1278. {
  1279. OBSSceneItem item = GetCurrentSceneItem();
  1280. obs_source_t source = obs_sceneitem_getsource(item);
  1281. if (source && QueryRemoveSource(source))
  1282. obs_sceneitem_remove(item);
  1283. }
  1284. void OBSBasic::on_actionSourceProperties_triggered()
  1285. {
  1286. OBSSceneItem item = GetCurrentSceneItem();
  1287. OBSSource source = obs_sceneitem_getsource(item);
  1288. if (source) {
  1289. delete properties;
  1290. properties = new OBSBasicProperties(this, source);
  1291. properties->Init();
  1292. }
  1293. }
  1294. void OBSBasic::on_actionSourceUp_triggered()
  1295. {
  1296. OBSSceneItem item = GetCurrentSceneItem();
  1297. obs_sceneitem_setorder(item, ORDER_MOVE_UP);
  1298. }
  1299. void OBSBasic::on_actionSourceDown_triggered()
  1300. {
  1301. OBSSceneItem item = GetCurrentSceneItem();
  1302. obs_sceneitem_setorder(item, ORDER_MOVE_DOWN);
  1303. }
  1304. void OBSBasic::on_actionMoveUp_triggered()
  1305. {
  1306. OBSSceneItem item = GetCurrentSceneItem();
  1307. obs_sceneitem_setorder(item, ORDER_MOVE_UP);
  1308. }
  1309. void OBSBasic::on_actionMoveDown_triggered()
  1310. {
  1311. OBSSceneItem item = GetCurrentSceneItem();
  1312. obs_sceneitem_setorder(item, ORDER_MOVE_DOWN);
  1313. }
  1314. void OBSBasic::on_actionMoveToTop_triggered()
  1315. {
  1316. OBSSceneItem item = GetCurrentSceneItem();
  1317. obs_sceneitem_setorder(item, ORDER_MOVE_TOP);
  1318. }
  1319. void OBSBasic::on_actionMoveToBottom_triggered()
  1320. {
  1321. OBSSceneItem item = GetCurrentSceneItem();
  1322. obs_sceneitem_setorder(item, ORDER_MOVE_BOTTOM);
  1323. }
  1324. static char *ReadLogFile(const char *log)
  1325. {
  1326. BPtr<char> logDir(os_get_config_path("obs-studio/logs"));
  1327. string path = (char*)logDir;
  1328. path += "/";
  1329. path += log;
  1330. char *file = os_quick_read_utf8_file(path.c_str());
  1331. if (!file)
  1332. blog(LOG_WARNING, "Failed to read log file %s", path.c_str());
  1333. return file;
  1334. }
  1335. void OBSBasic::UploadLog(const char *file)
  1336. {
  1337. dstr fileString = {};
  1338. stringstream ss;
  1339. string jsonData;
  1340. dstr_move_array(&fileString, ReadLogFile(file));
  1341. if (!fileString.array)
  1342. return;
  1343. if (!*fileString.array) {
  1344. dstr_free(&fileString);
  1345. return;
  1346. }
  1347. ui->menuLogFiles->setEnabled(false);
  1348. dstr_replace(&fileString, "\\", "\\\\");
  1349. dstr_replace(&fileString, "\"", "\\\"");
  1350. dstr_replace(&fileString, "\n", "\\n");
  1351. dstr_replace(&fileString, "\r", "\\r");
  1352. dstr_replace(&fileString, "\t", "\\t");
  1353. dstr_replace(&fileString, "\t", "\\t");
  1354. dstr_replace(&fileString, "/", "\\/");
  1355. ss << "{ \"public\": false, \"description\": \"OBS " <<
  1356. App()->GetVersionString() << " log file uploaded at " <<
  1357. CurrentDateTimeString() << "\", \"files\": { \"" <<
  1358. file << "\": { \"content\": \"" <<
  1359. fileString.array << "\" } } }";
  1360. jsonData = std::move(ss.str());
  1361. logUploadPostData.setData(jsonData.c_str(), (int)jsonData.size());
  1362. QUrl url("https://api.github.com/gists");
  1363. logUploadReply = networkManager.post(QNetworkRequest(url),
  1364. &logUploadPostData);
  1365. connect(logUploadReply, SIGNAL(finished()),
  1366. this, SLOT(logUploadFinished()));
  1367. connect(logUploadReply, SIGNAL(readyRead()),
  1368. this, SLOT(logUploadRead()));
  1369. dstr_free(&fileString);
  1370. }
  1371. void OBSBasic::on_actionUploadCurrentLog_triggered()
  1372. {
  1373. UploadLog(App()->GetCurrentLog());
  1374. }
  1375. void OBSBasic::on_actionUploadLastLog_triggered()
  1376. {
  1377. UploadLog(App()->GetLastLog());
  1378. }
  1379. void OBSBasic::on_actionCheckForUpdates_triggered()
  1380. {
  1381. CheckForUpdates();
  1382. }
  1383. void OBSBasic::logUploadRead()
  1384. {
  1385. logUploadReturnData.push_back(logUploadReply->readAll());
  1386. }
  1387. void OBSBasic::logUploadFinished()
  1388. {
  1389. ui->menuLogFiles->setEnabled(true);
  1390. if (logUploadReply->error()) {
  1391. QMessageBox::information(this,
  1392. QTStr("LogReturnDialog.ErrorUploadingLog"),
  1393. logUploadReply->errorString());
  1394. return;
  1395. }
  1396. const char *jsonReply = logUploadReturnData.constData();
  1397. if (!jsonReply || !*jsonReply)
  1398. return;
  1399. obs_data_t returnData = obs_data_create_from_json(jsonReply);
  1400. QString logURL = obs_data_getstring(returnData, "html_url");
  1401. obs_data_release(returnData);
  1402. OBSLogReply logDialog(this, logURL);
  1403. logDialog.exec();
  1404. }
  1405. static void RenameListItem(QListWidget *listWidget, obs_source_t source,
  1406. const string &name)
  1407. {
  1408. const char *prevName = obs_source_getname(source);
  1409. obs_source_t foundSource = obs_get_source_by_name(name.c_str());
  1410. QListWidgetItem *listItem = listWidget->currentItem();
  1411. if (foundSource || name.compare(prevName) == 0 || name.empty()) {
  1412. listItem->setText(QT_UTF8(prevName));
  1413. obs_source_release(foundSource);
  1414. } else {
  1415. listItem->setText(QT_UTF8(name.c_str()));
  1416. obs_source_setname(source, name.c_str());
  1417. }
  1418. }
  1419. void OBSBasic::SceneNameEdited(QWidget *editor,
  1420. QAbstractItemDelegate::EndEditHint endHint)
  1421. {
  1422. OBSScene scene = GetCurrentScene();
  1423. QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
  1424. string text = QT_TO_UTF8(edit->text().trimmed());
  1425. if (!scene)
  1426. return;
  1427. obs_source_t source = obs_scene_getsource(scene);
  1428. RenameListItem(ui->scenes, source, text);
  1429. UNUSED_PARAMETER(endHint);
  1430. }
  1431. void OBSBasic::SceneItemNameEdited(QWidget *editor,
  1432. QAbstractItemDelegate::EndEditHint endHint)
  1433. {
  1434. OBSSceneItem item = GetCurrentSceneItem();
  1435. QLineEdit *edit = qobject_cast<QLineEdit*>(editor);
  1436. string text = QT_TO_UTF8(edit->text().trimmed());
  1437. if (!item)
  1438. return;
  1439. obs_source_t source = obs_sceneitem_getsource(item);
  1440. RenameListItem(ui->sources, source, text);
  1441. UNUSED_PARAMETER(endHint);
  1442. }
  1443. void OBSBasic::StreamingStart()
  1444. {
  1445. ui->streamButton->setText(QTStr("Basic.Main.StopStreaming"));
  1446. ui->streamButton->setEnabled(true);
  1447. ui->statusbar->StreamStarted(streamOutput);
  1448. }
  1449. void OBSBasic::StreamingStop(int code)
  1450. {
  1451. const char *errorMessage;
  1452. switch (code) {
  1453. case OBS_OUTPUT_BAD_PATH:
  1454. errorMessage = Str("Output.ConnectFail.BadPath");
  1455. break;
  1456. case OBS_OUTPUT_CONNECT_FAILED:
  1457. errorMessage = Str("Output.ConnectFail.ConnectFailed");
  1458. break;
  1459. case OBS_OUTPUT_INVALID_STREAM:
  1460. errorMessage = Str("Output.ConnectFail.InvalidStream");
  1461. break;
  1462. default:
  1463. case OBS_OUTPUT_ERROR:
  1464. errorMessage = Str("Output.ConnectFail.Error");
  1465. break;
  1466. case OBS_OUTPUT_DISCONNECTED:
  1467. /* doesn't happen if output is set to reconnect. note that
  1468. * reconnects are handled in the output, not in the UI */
  1469. errorMessage = Str("Output.ConnectFail.Disconnected");
  1470. }
  1471. activeRefs--;
  1472. ui->statusbar->StreamStopped();
  1473. ui->streamButton->setText(QTStr("Basic.Main.StartStreaming"));
  1474. ui->streamButton->setEnabled(true);
  1475. if (code != OBS_OUTPUT_SUCCESS)
  1476. QMessageBox::information(this,
  1477. QTStr("Output.ConnectFail.Title"),
  1478. QT_UTF8(errorMessage));
  1479. }
  1480. void OBSBasic::RecordingStop()
  1481. {
  1482. activeRefs--;
  1483. ui->recordButton->setText(QTStr("Basic.Main.StartRecording"));
  1484. }
  1485. void OBSBasic::SetupEncoders()
  1486. {
  1487. if (activeRefs == 0) {
  1488. obs_data_t x264Settings = obs_data_create();
  1489. obs_data_t aacSettings = obs_data_create();
  1490. int videoBitrate = config_get_uint(basicConfig, "SimpleOutput",
  1491. "VBitrate");
  1492. int audioBitrate = config_get_uint(basicConfig, "SimpleOutput",
  1493. "ABitrate");
  1494. obs_data_setint(x264Settings, "bitrate", videoBitrate);
  1495. obs_data_setint(x264Settings, "buffer_size", videoBitrate);
  1496. obs_data_setbool(x264Settings, "cbr", true);
  1497. obs_data_setint(aacSettings, "bitrate", audioBitrate);
  1498. obs_encoder_update(x264, x264Settings);
  1499. obs_encoder_update(aac, aacSettings);
  1500. obs_data_release(x264Settings);
  1501. obs_data_release(aacSettings);
  1502. obs_encoder_set_video(x264, obs_video());
  1503. obs_encoder_set_audio(aac, obs_audio());
  1504. }
  1505. }
  1506. void OBSBasic::on_streamButton_clicked()
  1507. {
  1508. if (obs_output_active(streamOutput)) {
  1509. obs_output_stop(streamOutput);
  1510. } else {
  1511. SaveService();
  1512. SetupEncoders();
  1513. obs_output_set_video_encoder(streamOutput, x264);
  1514. obs_output_set_audio_encoder(streamOutput, aac);
  1515. obs_output_set_service(streamOutput, service);
  1516. bool reconnect = config_get_bool(basicConfig, "SimpleOutput",
  1517. "Reconnect");
  1518. int retryDelay = config_get_uint(basicConfig, "SimpleOutput",
  1519. "RetryDelay");
  1520. int maxRetries = config_get_uint(basicConfig, "SimpleOutput",
  1521. "MaxRetries");
  1522. if (!reconnect)
  1523. maxRetries = 0;
  1524. obs_output_set_reconnect_settings(streamOutput, maxRetries,
  1525. retryDelay);
  1526. if (obs_output_start(streamOutput)) {
  1527. activeRefs++;
  1528. ui->streamButton->setEnabled(false);
  1529. ui->streamButton->setText(
  1530. QTStr("Basic.Main.Connecting"));
  1531. }
  1532. }
  1533. }
  1534. void OBSBasic::on_recordButton_clicked()
  1535. {
  1536. if (obs_output_active(fileOutput)) {
  1537. obs_output_stop(fileOutput);
  1538. } else {
  1539. const char *path = config_get_string(basicConfig,
  1540. "SimpleOutput", "FilePath");
  1541. os_dir_t dir = path ? os_opendir(path) : nullptr;
  1542. if (!dir) {
  1543. QMessageBox::information(this,
  1544. QTStr("Output.BadPath.Title"),
  1545. QTStr("Output.BadPath.Text"));
  1546. return;
  1547. }
  1548. os_closedir(dir);
  1549. string strPath;
  1550. strPath += path;
  1551. char lastChar = strPath.back();
  1552. if (lastChar != '/' && lastChar != '\\')
  1553. strPath += "/";
  1554. strPath += GenerateTimeDateFilename("flv");
  1555. SetupEncoders();
  1556. obs_output_set_video_encoder(fileOutput, x264);
  1557. obs_output_set_audio_encoder(fileOutput, aac);
  1558. obs_data_t settings = obs_data_create();
  1559. obs_data_setstring(settings, "path", strPath.c_str());
  1560. obs_output_update(fileOutput, settings);
  1561. obs_data_release(settings);
  1562. if (obs_output_start(fileOutput)) {
  1563. activeRefs++;
  1564. ui->recordButton->setText(
  1565. QTStr("Basic.Main.StopRecording"));
  1566. }
  1567. }
  1568. }
  1569. void OBSBasic::on_settingsButton_clicked()
  1570. {
  1571. OBSBasicSettings settings(this);
  1572. settings.exec();
  1573. }
  1574. void OBSBasic::GetFPSCommon(uint32_t &num, uint32_t &den) const
  1575. {
  1576. const char *val = config_get_string(basicConfig, "Video", "FPSCommon");
  1577. if (strcmp(val, "10") == 0) {
  1578. num = 10;
  1579. den = 1;
  1580. } else if (strcmp(val, "20") == 0) {
  1581. num = 20;
  1582. den = 1;
  1583. } else if (strcmp(val, "25") == 0) {
  1584. num = 25;
  1585. den = 1;
  1586. } else if (strcmp(val, "29.97") == 0) {
  1587. num = 30000;
  1588. den = 1001;
  1589. } else if (strcmp(val, "48") == 0) {
  1590. num = 48;
  1591. den = 1;
  1592. } else if (strcmp(val, "59.94") == 0) {
  1593. num = 60000;
  1594. den = 1001;
  1595. } else if (strcmp(val, "60") == 0) {
  1596. num = 60;
  1597. den = 1;
  1598. } else {
  1599. num = 30;
  1600. den = 1;
  1601. }
  1602. }
  1603. void OBSBasic::GetFPSInteger(uint32_t &num, uint32_t &den) const
  1604. {
  1605. num = (uint32_t)config_get_uint(basicConfig, "Video", "FPSInt");
  1606. den = 1;
  1607. }
  1608. void OBSBasic::GetFPSFraction(uint32_t &num, uint32_t &den) const
  1609. {
  1610. num = (uint32_t)config_get_uint(basicConfig, "Video", "FPSNum");
  1611. den = (uint32_t)config_get_uint(basicConfig, "Video", "FPSDen");
  1612. }
  1613. void OBSBasic::GetFPSNanoseconds(uint32_t &num, uint32_t &den) const
  1614. {
  1615. num = 1000000000;
  1616. den = (uint32_t)config_get_uint(basicConfig, "Video", "FPSNS");
  1617. }
  1618. void OBSBasic::GetConfigFPS(uint32_t &num, uint32_t &den) const
  1619. {
  1620. uint32_t type = config_get_uint(basicConfig, "Video", "FPSType");
  1621. if (type == 1) //"Integer"
  1622. GetFPSInteger(num, den);
  1623. else if (type == 2) //"Fraction"
  1624. GetFPSFraction(num, den);
  1625. else if (false) //"Nanoseconds", currently not implemented
  1626. GetFPSNanoseconds(num, den);
  1627. else
  1628. GetFPSCommon(num, den);
  1629. }
  1630. config_t OBSBasic::Config() const
  1631. {
  1632. return basicConfig;
  1633. }
  1634. void OBSBasic::on_actionEditTransform_triggered()
  1635. {
  1636. delete transformWindow;
  1637. transformWindow = new OBSBasicTransform(this);
  1638. transformWindow->show();
  1639. }
  1640. void OBSBasic::on_actionResetTransform_triggered()
  1641. {
  1642. auto func = [] (obs_scene_t scene, obs_sceneitem_t item, void *param)
  1643. {
  1644. if (!obs_sceneitem_selected(item))
  1645. return true;
  1646. obs_sceneitem_info info;
  1647. vec2_set(&info.pos, 0.0f, 0.0f);
  1648. vec2_set(&info.scale, 1.0f, 1.0f);
  1649. info.rot = 0.0f;
  1650. info.alignment = OBS_ALIGN_TOP | OBS_ALIGN_LEFT;
  1651. info.bounds_type = OBS_BOUNDS_NONE;
  1652. info.bounds_alignment = OBS_ALIGN_CENTER;
  1653. vec2_set(&info.bounds, 0.0f, 0.0f);
  1654. obs_sceneitem_set_info(item, &info);
  1655. UNUSED_PARAMETER(scene);
  1656. UNUSED_PARAMETER(param);
  1657. return true;
  1658. };
  1659. obs_scene_enum_items(GetCurrentScene(), func, nullptr);
  1660. }
  1661. static void GetItemBox(obs_sceneitem_t item, vec3 &tl, vec3 &br)
  1662. {
  1663. matrix4 boxTransform;
  1664. obs_sceneitem_get_box_transform(item, &boxTransform);
  1665. vec3_set(&tl, M_INFINITE, M_INFINITE, 0.0f);
  1666. vec3_set(&br, -M_INFINITE, -M_INFINITE, 0.0f);
  1667. auto GetMinPos = [&] (float x, float y)
  1668. {
  1669. vec3 pos;
  1670. vec3_set(&pos, x, y, 0.0f);
  1671. vec3_transform(&pos, &pos, &boxTransform);
  1672. vec3_min(&tl, &tl, &pos);
  1673. vec3_max(&br, &br, &pos);
  1674. };
  1675. GetMinPos(0.0f, 0.0f);
  1676. GetMinPos(1.0f, 0.0f);
  1677. GetMinPos(0.0f, 1.0f);
  1678. GetMinPos(1.0f, 1.0f);
  1679. }
  1680. static vec3 GetItemTL(obs_sceneitem_t item)
  1681. {
  1682. vec3 tl, br;
  1683. GetItemBox(item, tl, br);
  1684. return tl;
  1685. }
  1686. static void SetItemTL(obs_sceneitem_t item, const vec3 &tl)
  1687. {
  1688. vec3 newTL;
  1689. vec2 pos;
  1690. obs_sceneitem_getpos(item, &pos);
  1691. newTL = GetItemTL(item);
  1692. pos.x += tl.x - newTL.x;
  1693. pos.y += tl.y - newTL.y;
  1694. obs_sceneitem_setpos(item, &pos);
  1695. }
  1696. static bool RotateSelectedSources(obs_scene_t scene, obs_sceneitem_t item,
  1697. void *param)
  1698. {
  1699. if (!obs_sceneitem_selected(item))
  1700. return true;
  1701. float rot = *reinterpret_cast<float*>(param);
  1702. vec3 tl = GetItemTL(item);
  1703. rot += obs_sceneitem_getrot(item);
  1704. if (rot >= 360.0f) rot -= 360.0f;
  1705. else if (rot <= -360.0f) rot += 360.0f;
  1706. obs_sceneitem_setrot(item, rot);
  1707. SetItemTL(item, tl);
  1708. UNUSED_PARAMETER(scene);
  1709. UNUSED_PARAMETER(param);
  1710. return true;
  1711. };
  1712. void OBSBasic::on_actionRotate90CW_triggered()
  1713. {
  1714. float f90CW = 90.0f;
  1715. obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f90CW);
  1716. }
  1717. void OBSBasic::on_actionRotate90CCW_triggered()
  1718. {
  1719. float f90CCW = -90.0f;
  1720. obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f90CCW);
  1721. }
  1722. void OBSBasic::on_actionRotate180_triggered()
  1723. {
  1724. float f180 = 180.0f;
  1725. obs_scene_enum_items(GetCurrentScene(), RotateSelectedSources, &f180);
  1726. }
  1727. static bool MultiplySelectedItemScale(obs_scene_t scene, obs_sceneitem_t item,
  1728. void *param)
  1729. {
  1730. vec2 &mul = *reinterpret_cast<vec2*>(param);
  1731. if (!obs_sceneitem_selected(item))
  1732. return true;
  1733. vec3 tl = GetItemTL(item);
  1734. vec2 scale;
  1735. obs_sceneitem_getscale(item, &scale);
  1736. vec2_mul(&scale, &scale, &mul);
  1737. obs_sceneitem_setscale(item, &scale);
  1738. SetItemTL(item, tl);
  1739. UNUSED_PARAMETER(scene);
  1740. return true;
  1741. }
  1742. void OBSBasic::on_actionFlipHorizontal_triggered()
  1743. {
  1744. vec2 scale;
  1745. vec2_set(&scale, -1.0f, 1.0f);
  1746. obs_scene_enum_items(GetCurrentScene(), MultiplySelectedItemScale,
  1747. &scale);
  1748. }
  1749. void OBSBasic::on_actionFlipVertical_triggered()
  1750. {
  1751. vec2 scale;
  1752. vec2_set(&scale, 1.0f, -1.0f);
  1753. obs_scene_enum_items(GetCurrentScene(), MultiplySelectedItemScale,
  1754. &scale);
  1755. }
  1756. static bool CenterAlignSelectedItems(obs_scene_t scene, obs_sceneitem_t item,
  1757. void *param)
  1758. {
  1759. obs_bounds_type boundsType = *reinterpret_cast<obs_bounds_type*>(param);
  1760. if (!obs_sceneitem_selected(item))
  1761. return true;
  1762. obs_video_info ovi;
  1763. obs_get_video_info(&ovi);
  1764. obs_sceneitem_info itemInfo;
  1765. vec2_set(&itemInfo.pos, 0.0f, 0.0f);
  1766. vec2_set(&itemInfo.scale, 1.0f, 1.0f);
  1767. itemInfo.alignment = OBS_ALIGN_LEFT | OBS_ALIGN_TOP;
  1768. itemInfo.rot = 0.0f;
  1769. vec2_set(&itemInfo.bounds,
  1770. float(ovi.base_width), float(ovi.base_height));
  1771. itemInfo.bounds_type = boundsType;
  1772. itemInfo.bounds_alignment = OBS_ALIGN_CENTER;
  1773. obs_sceneitem_set_info(item, &itemInfo);
  1774. UNUSED_PARAMETER(scene);
  1775. return true;
  1776. }
  1777. void OBSBasic::on_actionFitToScreen_triggered()
  1778. {
  1779. obs_bounds_type boundsType = OBS_BOUNDS_SCALE_INNER;
  1780. obs_scene_enum_items(GetCurrentScene(), CenterAlignSelectedItems,
  1781. &boundsType);
  1782. }
  1783. void OBSBasic::on_actionStretchToScreen_triggered()
  1784. {
  1785. obs_bounds_type boundsType = OBS_BOUNDS_STRETCH;
  1786. obs_scene_enum_items(GetCurrentScene(), CenterAlignSelectedItems,
  1787. &boundsType);
  1788. }
  1789. void OBSBasic::on_actionCenterToScreen_triggered()
  1790. {
  1791. auto func = [] (obs_scene_t scene, obs_sceneitem_t item, void *param)
  1792. {
  1793. vec3 tl, br, itemCenter, screenCenter, offset;
  1794. obs_video_info ovi;
  1795. if (!obs_sceneitem_selected(item))
  1796. return true;
  1797. obs_get_video_info(&ovi);
  1798. vec3_set(&screenCenter, float(ovi.base_width),
  1799. float(ovi.base_height), 0.0f);
  1800. vec3_mulf(&screenCenter, &screenCenter, 0.5f);
  1801. GetItemBox(item, tl, br);
  1802. vec3_sub(&itemCenter, &br, &tl);
  1803. vec3_mulf(&itemCenter, &itemCenter, 0.5f);
  1804. vec3_add(&itemCenter, &itemCenter, &tl);
  1805. vec3_sub(&offset, &screenCenter, &itemCenter);
  1806. vec3_add(&tl, &tl, &offset);
  1807. SetItemTL(item, tl);
  1808. UNUSED_PARAMETER(scene);
  1809. UNUSED_PARAMETER(param);
  1810. return true;
  1811. };
  1812. obs_scene_enum_items(GetCurrentScene(), func, nullptr);
  1813. }