window-basic-main.cpp 58 KB

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