platform-osx.mm 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 isInBundle()
  24. {
  25. NSRunningApplication *app = [NSRunningApplication currentApplication];
  26. return [app bundleIdentifier] != nil;
  27. }
  28. bool GetDataFilePath(const char *data, string &output)
  29. {
  30. if (isInBundle()) {
  31. NSRunningApplication *app =
  32. [NSRunningApplication currentApplication];
  33. NSURL *bundleURL = [app bundleURL];
  34. NSString *path = [NSString
  35. stringWithFormat:@"Contents/Resources/data/obs-studio/%@",
  36. [NSString stringWithUTF8String:data]];
  37. NSURL *dataURL = [bundleURL URLByAppendingPathComponent:path];
  38. output = [[dataURL path] UTF8String];
  39. } else {
  40. stringstream str;
  41. str << OBS_DATA_PATH "/obs-studio/" << data;
  42. output = str.str();
  43. }
  44. return !access(output.c_str(), R_OK);
  45. }
  46. bool InitApplicationBundle()
  47. {
  48. #ifdef OBS_OSX_BUNDLE
  49. static bool initialized = false;
  50. if (initialized)
  51. return true;
  52. try {
  53. NSBundle *bundle = [NSBundle mainBundle];
  54. if (!bundle)
  55. throw "Could not find main bundle";
  56. NSString *exe_path = [bundle executablePath];
  57. if (!exe_path)
  58. throw "Could not find executable path";
  59. NSString *path = [exe_path stringByDeletingLastPathComponent];
  60. if (chdir([path fileSystemRepresentation]))
  61. throw "Could not change working directory to "
  62. "bundle path";
  63. } catch (const char *error) {
  64. blog(LOG_ERROR, "InitBundle: %s", error);
  65. return false;
  66. }
  67. return initialized = true;
  68. #else
  69. return true;
  70. #endif
  71. }
  72. string GetDefaultVideoSavePath()
  73. {
  74. NSFileManager *fm = [NSFileManager defaultManager];
  75. NSURL *url = [fm URLForDirectory:NSMoviesDirectory
  76. inDomain:NSUserDomainMask
  77. appropriateForURL:nil
  78. create:true
  79. error:nil];
  80. if (!url)
  81. return getenv("HOME");
  82. return url.path.fileSystemRepresentation;
  83. }
  84. vector<string> GetPreferredLocales()
  85. {
  86. NSArray *preferred = [NSLocale preferredLanguages];
  87. auto locales = GetLocaleNames();
  88. auto lang_to_locale = [&locales](string lang) -> string {
  89. string lang_match = "";
  90. for (const auto &locale : locales) {
  91. if (locale.first == lang.substr(0, locale.first.size()))
  92. return locale.first;
  93. if (!lang_match.size() &&
  94. locale.first.substr(0, 2) == lang.substr(0, 2))
  95. lang_match = locale.first;
  96. }
  97. return lang_match;
  98. };
  99. vector<string> result;
  100. result.reserve(preferred.count);
  101. for (NSString *lang in preferred) {
  102. string locale = lang_to_locale(lang.UTF8String);
  103. if (!locale.size())
  104. continue;
  105. if (find(begin(result), end(result), locale) != end(result))
  106. continue;
  107. result.emplace_back(locale);
  108. }
  109. return result;
  110. }
  111. bool IsAlwaysOnTop(QWidget *window)
  112. {
  113. return (window->windowFlags() & Qt::WindowStaysOnTopHint) != 0;
  114. }
  115. void SetAlwaysOnTop(QWidget *window, bool enable)
  116. {
  117. Qt::WindowFlags flags = window->windowFlags();
  118. if (enable)
  119. flags |= Qt::WindowStaysOnTopHint;
  120. else
  121. flags &= ~Qt::WindowStaysOnTopHint;
  122. window->setWindowFlags(flags);
  123. window->show();
  124. }
  125. typedef void (*set_int_t)(int);
  126. void EnableOSXVSync(bool enable)
  127. {
  128. static bool initialized = false;
  129. static bool valid = false;
  130. static set_int_t set_debug_options = nullptr;
  131. static set_int_t deferred_updates = nullptr;
  132. if (!initialized) {
  133. void *quartzCore = dlopen("/System/Library/Frameworks/"
  134. "QuartzCore.framework/QuartzCore",
  135. RTLD_LAZY);
  136. if (quartzCore) {
  137. set_debug_options = (set_int_t)dlsym(
  138. quartzCore, "CGSSetDebugOptions");
  139. deferred_updates = (set_int_t)dlsym(
  140. quartzCore, "CGSDeferredUpdates");
  141. valid = set_debug_options && deferred_updates;
  142. }
  143. initialized = true;
  144. }
  145. if (valid) {
  146. set_debug_options(enable ? 0 : 0x08000000);
  147. deferred_updates(enable ? 1 : 0);
  148. }
  149. }
  150. void EnableOSXDockIcon(bool enable)
  151. {
  152. if (enable)
  153. [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
  154. else
  155. [NSApp setActivationPolicy:
  156. NSApplicationActivationPolicyProhibited];
  157. }