platform-osx.mm 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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. /* Force the level of the window high so it sits on top of
  120. * full-screen applications like Keynote */
  121. NSView *nsv = (__bridge NSView *)reinterpret_cast<void *>(
  122. window->winId());
  123. NSWindow *nsw = nsv.window;
  124. [nsw setLevel:1024];
  125. flags |= Qt::WindowStaysOnTopHint;
  126. } else {
  127. flags &= ~Qt::WindowStaysOnTopHint;
  128. }
  129. window->setWindowFlags(flags);
  130. window->show();
  131. }
  132. typedef void (*set_int_t)(int);
  133. void EnableOSXVSync(bool enable)
  134. {
  135. static bool initialized = false;
  136. static bool valid = false;
  137. static set_int_t set_debug_options = nullptr;
  138. static set_int_t deferred_updates = nullptr;
  139. if (!initialized) {
  140. void *quartzCore = dlopen("/System/Library/Frameworks/"
  141. "QuartzCore.framework/QuartzCore",
  142. RTLD_LAZY);
  143. if (quartzCore) {
  144. set_debug_options = (set_int_t)dlsym(
  145. quartzCore, "CGSSetDebugOptions");
  146. deferred_updates = (set_int_t)dlsym(
  147. quartzCore, "CGSDeferredUpdates");
  148. valid = set_debug_options && deferred_updates;
  149. }
  150. initialized = true;
  151. }
  152. if (valid) {
  153. set_debug_options(enable ? 0 : 0x08000000);
  154. deferred_updates(enable ? 1 : 0);
  155. }
  156. }
  157. void EnableOSXDockIcon(bool enable)
  158. {
  159. if (enable)
  160. [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
  161. else
  162. [NSApp setActivationPolicy:
  163. NSApplicationActivationPolicyProhibited];
  164. }
  165. /*
  166. * This custom NSApplication subclass makes the app compatible with CEF. Qt
  167. * also has an NSApplication subclass, but it doesn't conflict thanks to Qt
  168. * using arcane magic to hook into the NSApplication superclass itself if the
  169. * program has its own NSApplication subclass.
  170. */
  171. @protocol CrAppProtocol
  172. - (BOOL)isHandlingSendEvent;
  173. @end
  174. @interface OBSApplication : NSApplication <CrAppProtocol>
  175. @property (nonatomic, getter=isHandlingSendEvent) BOOL handlingSendEvent;
  176. @end
  177. @implementation OBSApplication
  178. - (void)sendEvent:(NSEvent *)event
  179. {
  180. _handlingSendEvent = YES;
  181. [super sendEvent:event];
  182. _handlingSendEvent = NO;
  183. }
  184. @end
  185. void InstallNSApplicationSubclass()
  186. {
  187. [OBSApplication sharedApplication];
  188. }