platform-osx.mm 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /******************************************************************************
  2. Copyright (C) 2013 by Hugh Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #include <sstream>
  15. #include <dlfcn.h>
  16. #include <util/base.h>
  17. #include <obs-config.h>
  18. #include "platform.hpp"
  19. #include "obs-app.hpp"
  20. #include <unistd.h>
  21. #import <AppKit/AppKit.h>
  22. using namespace std;
  23. bool GetDataFilePath(const char *data, string &output)
  24. {
  25. stringstream str;
  26. str << OBS_DATA_PATH "/obs-studio/" << data;
  27. output = str.str();
  28. return !access(output.c_str(), R_OK);
  29. }
  30. bool InitApplicationBundle()
  31. {
  32. #ifdef OBS_OSX_BUNDLE
  33. static bool initialized = false;
  34. if (initialized)
  35. return true;
  36. try {
  37. NSBundle *bundle = [NSBundle mainBundle];
  38. if (!bundle)
  39. throw "Could not find main bundle";
  40. NSString *exe_path = [bundle executablePath];
  41. if (!exe_path)
  42. throw "Could not find executable path";
  43. NSString *path = [exe_path stringByDeletingLastPathComponent];
  44. if (chdir([path fileSystemRepresentation]))
  45. throw "Could not change working directory to "
  46. "bundle path";
  47. } catch (const char *error) {
  48. blog(LOG_ERROR, "InitBundle: %s", error);
  49. return false;
  50. }
  51. return initialized = true;
  52. #else
  53. return true;
  54. #endif
  55. }
  56. string GetDefaultVideoSavePath()
  57. {
  58. NSFileManager *fm = [NSFileManager defaultManager];
  59. NSURL *url = [fm URLForDirectory:NSMoviesDirectory
  60. inDomain:NSUserDomainMask
  61. appropriateForURL:nil
  62. create:true
  63. error:nil];
  64. if (!url)
  65. return getenv("HOME");
  66. return url.path.fileSystemRepresentation;
  67. }
  68. vector<string> GetPreferredLocales()
  69. {
  70. NSArray *preferred = [NSLocale preferredLanguages];
  71. auto locales = GetLocaleNames();
  72. auto lang_to_locale = [&locales](string lang) -> string {
  73. string lang_match = "";
  74. for (const auto &locale : locales) {
  75. if (locale.first == lang.substr(0, locale.first.size()))
  76. return locale.first;
  77. if (!lang_match.size() &&
  78. locale.first.substr(0, 2) == lang.substr(0, 2))
  79. lang_match = locale.first;
  80. }
  81. return lang_match;
  82. };
  83. vector<string> result;
  84. result.reserve(preferred.count);
  85. for (NSString *lang in preferred) {
  86. string locale = lang_to_locale(lang.UTF8String);
  87. if (!locale.size())
  88. continue;
  89. if (find(begin(result), end(result), locale) != end(result))
  90. continue;
  91. result.emplace_back(locale);
  92. }
  93. return result;
  94. }
  95. bool IsAlwaysOnTop(QWidget *window)
  96. {
  97. return (window->windowFlags() & Qt::WindowStaysOnTopHint) != 0;
  98. }
  99. void SetAlwaysOnTop(QWidget *window, bool enable)
  100. {
  101. Qt::WindowFlags flags = window->windowFlags();
  102. if (enable)
  103. flags |= Qt::WindowStaysOnTopHint;
  104. else
  105. flags &= ~Qt::WindowStaysOnTopHint;
  106. window->setWindowFlags(flags);
  107. window->show();
  108. }
  109. typedef void (*set_int_t)(int);
  110. void EnableOSXVSync(bool enable)
  111. {
  112. static bool initialized = false;
  113. static bool valid = false;
  114. static set_int_t set_debug_options = nullptr;
  115. static set_int_t deferred_updates = nullptr;
  116. if (!initialized) {
  117. void *quartzCore = dlopen("/System/Library/Frameworks/"
  118. "QuartzCore.framework/QuartzCore",
  119. RTLD_LAZY);
  120. if (quartzCore) {
  121. set_debug_options = (set_int_t)dlsym(
  122. quartzCore, "CGSSetDebugOptions");
  123. deferred_updates = (set_int_t)dlsym(
  124. quartzCore, "CGSDeferredUpdates");
  125. valid = set_debug_options && deferred_updates;
  126. }
  127. initialized = true;
  128. }
  129. if (valid) {
  130. set_debug_options(enable ? 0 : 0x08000000);
  131. deferred_updates(enable ? 1 : 0);
  132. }
  133. }
  134. void EnableOSXDockIcon(bool enable)
  135. {
  136. if (enable)
  137. [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
  138. else
  139. [NSApp setActivationPolicy:
  140. NSApplicationActivationPolicyProhibited];
  141. }