diff --git a/Limelight/AppDelegate.h b/Limelight/AppDelegate.h index 7ff0ec2..0985139 100644 --- a/Limelight/AppDelegate.h +++ b/Limelight/AppDelegate.h @@ -6,19 +6,11 @@ // Copyright (c) 2014 Moonlight Stream. All rights reserved. // -#if TARGET_OS_IPHONE #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; -#else -#import -@interface AppDelegate : NSObject - -@property (readonly, strong) NSPersistentContainer *persistentContainer; -@property (strong, nonatomic) NSWindow *window; -#endif @property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext; @property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel; diff --git a/Limelight/AppDelegate.m b/Limelight/AppDelegate.m index a09735f..65c97cf 100644 --- a/Limelight/AppDelegate.m +++ b/Limelight/AppDelegate.m @@ -18,13 +18,10 @@ static NSOperationQueue* mainQueue; #if TARGET_OS_TV static NSString* DB_NAME = @"Moonlight_tvOS.bin"; -#elif TARGET_OS_IPHONE -static NSString* DB_NAME = @"Limelight_iOS.sqlite"; #else -static NSString* DB_NAME = @"moonlight_mac.sqlite"; +static NSString* DB_NAME = @"Limelight_iOS.sqlite"; #endif -#if TARGET_OS_IPHONE - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { @@ -58,17 +55,6 @@ static NSString* DB_NAME = @"moonlight_mac.sqlite"; // Saves changes in the application's managed object context before the application terminates. [self saveContext]; } -#else -- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { - // Insert code here to initialize your application -} - -- (void)applicationWillTerminate:(NSNotification *)aNotification { - // Insert code here to tear down your application - [self saveContext]; -} - -#endif - (void)saveContext { diff --git a/Limelight/Input/ControllerSupport.h b/Limelight/Input/ControllerSupport.h index c175246..15bb1ad 100644 --- a/Limelight/Input/ControllerSupport.h +++ b/Limelight/Input/ControllerSupport.h @@ -6,10 +6,6 @@ // Copyright (c) 2014 Moonlight Stream. All rights reserved. // -// Swift -#if !TARGET_OS_IPHONE -#import "Gamepad.h" -#endif #import "StreamConfiguration.h" #import "Controller.h" @@ -19,15 +15,9 @@ -(id) initWithConfig:(StreamConfiguration*)streamConfig; -#if TARGET_OS_IPHONE -(void) initAutoOnScreenControlMode:(OnScreenControls*)osc; -(void) cleanup; -(Controller*) getOscController; -#else --(void) assignGamepad:(struct Gamepad_device *)gamepad; --(void) removeGamepad:(struct Gamepad_device *)gamepad; --(NSMutableDictionary*) getControllers; -#endif -(void) updateLeftStick:(Controller*)controller x:(short)x y:(short)y; -(void) updateRightStick:(Controller*)controller x:(short)x y:(short)y; diff --git a/Limelight/Input/ControllerSupport.m b/Limelight/Input/ControllerSupport.m index 79b0617..2e4ccde 100644 --- a/Limelight/Input/ControllerSupport.m +++ b/Limelight/Input/ControllerSupport.m @@ -10,10 +10,6 @@ #import "Controller.h" #import "OnScreenControls.h" -#if !TARGET_OS_IPHONE -#import "Gamepad.h" -#import "Control.h" -#endif #import "DataManager.h" #include "Limelight.h" @@ -364,9 +360,7 @@ } } -#if TARGET_OS_IPHONE [_osc setLevel:level]; -#endif } -(void) initAutoOnScreenControlMode:(OnScreenControls*)osc @@ -402,40 +396,9 @@ } } -#if TARGET_OS_IPHONE -(Controller*) getOscController { return _player0osc; } -#else --(NSMutableDictionary*) getControllers { - return _controllers; -} - --(void) assignGamepad:(struct Gamepad_device *)gamepad { - for (int i = 0; i < 4; i++) { - if (!(_controllerNumbers & (1 << i))) { - _controllerNumbers |= (1 << i); - gamepad->deviceID = i; - NSLog(@"Gamepad device id: %u assigned", gamepad->deviceID); - Controller* limeController; - limeController = [[Controller alloc] init]; - limeController.playerIndex = i; - - [_controllers setObject:limeController forKey:[NSNumber numberWithInteger:i]]; - break; - } - } -} - --(void) removeGamepad:(struct Gamepad_device *)gamepad { - _controllerNumbers &= ~(1 << gamepad->deviceID); - Log(LOG_I, @"Unassigning controller index: %ld", (long)gamepad->deviceID); - - // Inform the server of the updated active gamepads before removing this controller - [self updateFinished:[_controllers objectForKey:[NSNumber numberWithInteger:gamepad->deviceID]]]; - [_controllers removeObjectForKey:[NSNumber numberWithInteger:gamepad->deviceID]]; -} -#endif +(bool) isSupportedGamepad:(GCController*) controller { return controller.extendedGamepad != nil || controller.gamepad != nil; @@ -472,7 +435,6 @@ mask = 0x1; } -#if TARGET_OS_IPHONE DataManager* dataMan = [[DataManager alloc] init]; OnScreenControlsLevel level = (OnScreenControlsLevel)[[dataMan getSettings].onscreenControls integerValue]; @@ -481,7 +443,6 @@ if (level != OnScreenControlsLevelOff) { mask |= 0x1; } -#endif return mask; } @@ -515,14 +476,8 @@ _player0osc = [[Controller alloc] init]; _player0osc.playerIndex = 0; -#if TARGET_OS_IPHONE DataManager* dataMan = [[DataManager alloc] init]; _oscEnabled = (OnScreenControlsLevel)[[dataMan getSettings].onscreenControls integerValue] != OnScreenControlsLevelOff; -#else - _oscEnabled = false; - initGamepad(self); - Gamepad_detectDevices(); -#endif _rumbleTimer = [NSTimer scheduledTimerWithTimeInterval:0.20 target:self diff --git a/Limelight/Input/OnScreenControls.h b/Limelight/Input/OnScreenControls.h index 8a438b0..90167d3 100644 --- a/Limelight/Input/OnScreenControls.h +++ b/Limelight/Input/OnScreenControls.h @@ -25,12 +25,10 @@ typedef NS_ENUM(NSInteger, OnScreenControlsLevel) { OnScreenControlsLevelAutoGCExtendedGamepadWithStickButtons }; -#if TARGET_OS_IPHONE - (id) initWithView:(UIView*)view controllerSup:(ControllerSupport*)controllerSupport swipeDelegate:(id)edgeDelegate; - (BOOL) handleTouchDownEvent:(NSSet*)touches; - (BOOL) handleTouchUpEvent:(NSSet*)touches; - (BOOL) handleTouchMovedEvent:(NSSet*)touches; - (void) setLevel:(OnScreenControlsLevel)level; -#endif @end diff --git a/Limelight/Network/AppAssetResponse.m b/Limelight/Network/AppAssetResponse.m index 8def731..fce1e09 100644 --- a/Limelight/Network/AppAssetResponse.m +++ b/Limelight/Network/AppAssetResponse.m @@ -17,12 +17,7 @@ self.statusCode = -1; } - (OSImage*) getImage { -#if TARGET_OS_IPHONE - OSImage* appImage = [[OSImage alloc] initWithData:self.data]; -#else - OSImage* appImage = nil; -#endif - return appImage; + return [[OSImage alloc] initWithData:self.data]; } @end diff --git a/Limelight/Network/AppAssetRetriever.m b/Limelight/Network/AppAssetRetriever.m index 6888383..f17aa5f 100644 --- a/Limelight/Network/AppAssetRetriever.m +++ b/Limelight/Network/AppAssetRetriever.m @@ -24,16 +24,12 @@ static const int MAX_ATTEMPTS = 5; AppAssetResponse* appAssetResp = [[AppAssetResponse alloc] init]; [hMan executeRequestSynchronously:[HttpRequest requestForResponse:appAssetResp withUrlRequest:[hMan newAppAssetRequestWithAppId:self.app.id]]]; -#if TARGET_OS_IPHONE if (appAssetResp.data != nil) { NSString* boxArtPath = [AppAssetManager boxArtPathForApp:self.app]; [[NSFileManager defaultManager] createDirectoryAtPath:[boxArtPath stringByDeletingLastPathComponent] withIntermediateDirectories:YES attributes:nil error:nil]; [appAssetResp.data writeToFile:boxArtPath atomically:NO]; break; } -#else - -#endif if (![self isCancelled]) { [NSThread sleepForTimeInterval:RETRY_DELAY]; diff --git a/Limelight/Stream/Connection.m b/Limelight/Stream/Connection.m index 1442ae9..75d5530 100644 --- a/Limelight/Stream/Connection.m +++ b/Limelight/Stream/Connection.m @@ -110,7 +110,6 @@ int ArInit(int audioConfiguration, POPUS_MULTISTREAM_CONFIGURATION opusConfig, v opusConfig->mapping, &err); -#if TARGET_OS_IPHONE // Configure the audio session for our app NSError *audioSessionError = nil; AVAudioSession* audioSession = [AVAudioSession sharedInstance]; @@ -122,7 +121,6 @@ int ArInit(int audioConfiguration, POPUS_MULTISTREAM_CONFIGURATION opusConfig, v // FIXME: Calling this breaks surround audio for some reason //[audioSession setPreferredOutputNumberOfChannels:opusConfig->channelCount error:&audioSessionError]; -#endif OSStatus status; @@ -203,10 +201,8 @@ void ArCleanup(void) audioCircularBuffer = NULL; } -#if TARGET_OS_IPHONE // Audio session is now inactive [[AVAudioSession sharedInstance] setActive: NO error: nil]; -#endif } void ArDecodeAndPlaySample(char* sampleData, int sampleLength) @@ -358,7 +354,6 @@ void ClConnectionStatusUpdate(int status) config.allowHevc = YES; } -#if TARGET_OS_IPHONE // On iOS 11, we can use HEVC if the server supports encoding it // and this device has hardware decode for it (A9 and later). // Additionally, iPhone X had a bug which would cause video @@ -367,13 +362,6 @@ void ClConnectionStatusUpdate(int status) if (@available(iOS 11.3, tvOS 11.3, *)) { _streamConfig.supportsHevc = config.allowHevc && VTIsHardwareDecodeSupported(kCMVideoCodecType_HEVC); } -#else - if (@available(macOS 10.13, *)) { - // Streaming with limited bandwidth will result in better quality with HEVC - if (VTIsHardwareDecodeSupported(kCMVideoCodecType_HEVC) || _streamConfig.streamingRemotely != 0) - _streamConfig.supportsHevc = config.allowHevc; - } -#endif // HEVC must be supported when HDR is enabled assert(!_streamConfig.enableHdr || _streamConfig.supportsHevc); diff --git a/Limelight/Stream/StreamManager.m b/Limelight/Stream/StreamManager.m index 6008f50..b2f3589 100644 --- a/Limelight/Stream/StreamManager.m +++ b/Limelight/Stream/StreamManager.m @@ -78,14 +78,12 @@ } } -#if TARGET_OS_IPHONE // Set mouse delta factors from the screen resolution and stream size CGFloat screenScale = [[UIScreen mainScreen] scale]; CGRect screenBounds = [[UIScreen mainScreen] bounds]; CGSize screenSize = CGSizeMake(screenBounds.size.width * screenScale, screenBounds.size.height * screenScale); [((StreamView*)_renderView) setMouseDeltaFactors:_config.width / screenSize.width y:_config.height / screenSize.height]; -#endif // Populate the config's version fields from serverinfo _config.appVersion = appversion; diff --git a/Limelight/Stream/VideoDecoderRenderer.m b/Limelight/Stream/VideoDecoderRenderer.m index 14f561c..95802c7 100644 --- a/Limelight/Stream/VideoDecoderRenderer.m +++ b/Limelight/Stream/VideoDecoderRenderer.m @@ -75,9 +75,6 @@ - (void)setupWithVideoFormat:(int)videoFormat refreshRate:(int)refreshRate { self->videoFormat = videoFormat; -#if !TARGET_OS_IPHONE - _view.codec = videoFormat; -#endif if (refreshRate > 60) { // HACK: We seem to just get 60 Hz screen updates even with a 120 FPS stream if @@ -255,11 +252,7 @@ Log(LOG_I, @"Constructing new HEVC format description"); -#if TARGET_OS_IPHONE if (@available(iOS 11.0, *)) { -#else - if (@available(macOS 10.13, *)) { -#endif status = CMVideoFormatDescriptionCreateFromHEVCParameterSets(kCFAllocatorDefault, 3, /* count of parameter sets */ parameterSetPointers, @@ -370,10 +363,6 @@ CFDictionarySetValue(dict, kCMSampleAttachmentKey_DependsOnOthers, kCFBooleanFalse); } -#if !TARGET_OS_IPHONE - _view.frameCount++; -#endif - // Enqueue video samples on the main thread dispatch_async(dispatch_get_main_queue(), ^{ // Enqueue the next frame diff --git a/Mac.storyboard b/Mac.storyboard deleted file mode 100644 index 74e6cbe..0000000 --- a/Mac.storyboard +++ /dev/null @@ -1,1157 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Default - - - - - - - Left to Right - - - - - - - Right to Left - - - - - - - - - - - Default - - - - - - - Left to Right - - - - - - - Right to Left - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Any resolution different from 1080p/720p may not be supported by the host and could result in worse picture quality. Setup a custom resolution on the host PC that matches the aspect ratio of the client PC to get full-screen rendering. - - - - - - - - - This will be the bitrate for the video stream. Note that if not streaming remotely and using HEVC the effective video bitrate will be lower. Also note that this is only the video bitrate and there will be ~1Mbps for audio traffic. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -YnBsaXN0MDDUAQIDBAUGVVZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3ASAAGGoK8QEgcI -ExQZHh8jJCsuMTtDR0tPUlUkbnVsbNUJCgsMDQ4PEBESVk5TU2l6ZVYkY2xhc3NcTlNJbWFnZUZsYWdz -Vk5TUmVwc1dOU0NvbG9ygAKAERIgwwAAgAOAC1Z7MSwgMX3SFQoWGFpOUy5vYmplY3RzoReABIAK0hUK -Gh2iGxyABYAGgAkQANIgCiEiXxAUTlNUSUZGUmVwcmVzZW50YXRpb26AB4AITxEIxE1NACoAAAAKAAAA -EAEAAAMAAAABAAEAAAEBAAMAAAABAAEAAAECAAMAAAACAAgACAEDAAMAAAABAAEAAAEGAAMAAAABAAEA -AAEKAAMAAAABAAEAAAERAAQAAAABAAAACAESAAMAAAABAAEAAAEVAAMAAAABAAIAAAEWAAMAAAABAAEA -AAEXAAQAAAABAAAAAgEcAAMAAAABAAEAAAEoAAMAAAABAAIAAAFSAAMAAAABAAEAAAFTAAMAAAACAAEA -AYdzAAcAAAf0AAAA0AAAAAAAAAf0YXBwbAIgAABtbnRyR1JBWVhZWiAH0AACAA4ADAAAAABhY3NwQVBQ -TAAAAABub25lAAAAAAAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLWFwcGwAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVkZXNjAAAAwAAAAG9kc2NtAAABMAAABmZjcHJ0AAAH -mAAAADh3dHB0AAAH0AAAABRrVFJDAAAH5AAAAA5kZXNjAAAAAAAAABVHZW5lcmljIEdyYXkgUHJvZmls -ZQAAAAAAAAAAAAAAFUdlbmVyaWMgR3JheSBQcm9maWxlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAbWx1YwAAAAAAAAAfAAAADHNrU0sAAAAqAAABhGVuVVMAAAAoAAAB -rmNhRVMAAAAsAAAB1nZpVk4AAAAsAAACAnB0QlIAAAAqAAACLnVrVUEAAAAsAAACWGZyRlUAAAAqAAAC -hGh1SFUAAAAuAAACrnpoVFcAAAAQAAAC3G5iTk8AAAAsAAAC7GtvS1IAAAAYAAADGGNzQ1oAAAAkAAAD -MGhlSUwAAAAgAAADVHJvUk8AAAAkAAADdGRlREUAAAA6AAADmGl0SVQAAAAuAAAD0nN2U0UAAAAuAAAE -AHpoQ04AAAAQAAAELmphSlAAAAAWAAAEPmVsR1IAAAAkAAAEVHB0UE8AAAA4AAAEeG5sTkwAAAAqAAAE -sGVzRVMAAAAoAAAE2nRoVEgAAAAkAAAFAnRyVFIAAAAiAAAFJmZpRkkAAAAsAAAFSGhySFIAAAA6AAAF -dHBsUEwAAAA2AAAFrnJ1UlUAAAAmAAAF5GFyRUcAAAAoAAAGCmRhREsAAAA0AAAGMgBWAWEAZQBvAGIA -ZQBjAG4A/QAgAHMAaQB2AP0AIABwAHIAbwBmAGkAbABHAGUAbgBlAHIAaQBjACAARwByAGEAeQAgAFAA -cgBvAGYAaQBsAGUAUABlAHIAZgBpAGwAIABkAGUAIABnAHIAaQBzACAAZwBlAG4A6AByAGkAYwBDHqUA -dQAgAGgA7ABuAGgAIABNAOAAdQAgAHgA4QBtACAAQwBoAHUAbgBnAFAAZQByAGYAaQBsACAAQwBpAG4A -egBhACAARwBlAG4A6QByAGkAYwBvBBcEMAQzBDAEOwRMBD0EOAQ5ACAEPwRABD4ERAQwBDkEOwAgAEcA -cgBhAHkAUAByAG8AZgBpAGwAIABnAOkAbgDpAHIAaQBxAHUAZQAgAGcAcgBpAHMAwQBsAHQAYQBsAOEA -bgBvAHMAIABzAHoA/AByAGsAZQAgAHAAcgBvAGYAaQBskBp1KHBwlo6Ccl9pY8+P8ABHAGUAbgBlAHIA -aQBzAGsAIABnAHIA5QB0AG8AbgBlAHAAcgBvAGYAaQBsx3y8GAAgAEcAcgBhAHkAINUEuFzTDMd8AE8A -YgBlAGMAbgD9ACABYQBlAGQA/QAgAHAAcgBvAGYAaQBsBeQF6AXVBeQF2QXcACAARwByAGEAeQAgBdsF -3AXcBdkAUAByAG8AZgBpAGwAIABnAHIAaQAgAGcAZQBuAGUAcgBpAGMAQQBsAGwAZwBlAG0AZQBpAG4A -ZQBzACAARwByAGEAdQBzAHQAdQBmAGUAbgAtAFAAcgBvAGYAaQBsAFAAcgBvAGYAaQBsAG8AIABnAHIA -aQBnAGkAbwAgAGcAZQBuAGUAcgBpAGMAbwBHAGUAbgBlAHIAaQBzAGsAIABnAHIA5QBzAGsAYQBsAGUA -cAByAG8AZgBpAGxmbpAacHBepmPPj/Blh072TgCCLDCwMOwwpDDXMO0w1TChMKQw6wOTA7UDvQO5A7oD -zAAgA8ADwQO/A8YDrwO7ACADswO6A8EDuQBQAGUAcgBmAGkAbAAgAGcAZQBuAOkAcgBpAGMAbwAgAGQA -ZQAgAGMAaQBuAHoAZQBuAHQAbwBzAEEAbABnAGUAbQBlAGUAbgAgAGcAcgBpAGoAcwBwAHIAbwBmAGkA -ZQBsAFAAZQByAGYAaQBsACAAZwByAGkAcwAgAGcAZQBuAOkAcgBpAGMAbw5CDhsOIw5EDh8OJQ5MDioO -NQ5ADhcOMg4XDjEOSA4nDkQOGwBHAGUAbgBlAGwAIABHAHIAaQAgAFAAcgBvAGYAaQBsAGkAWQBsAGUA -aQBuAGUAbgAgAGgAYQByAG0AYQBhAHAAcgBvAGYAaQBpAGwAaQBHAGUAbgBlAHIAaQENAGsAaQAgAHAA -cgBvAGYAaQBsACAAcwBpAHYAaQBoACAAdABvAG4AbwB2AGEAVQBuAGkAdwBlAHIAcwBhAGwAbgB5ACAA -cAByAG8AZgBpAGwAIABzAHoAYQByAG8BWwBjAGkEHgQxBEkEOAQ5ACAEQQQ1BEAESwQ5ACAEPwRABD4E -RAQ4BDsETAZFBkQGQQAgBioGOQYxBkoGQQAgAEcAcgBhAHkAIAYnBkQGOQYnBkUARwBlAG4AZQByAGUA -bAAgAGcAcgDlAHQAbwBuAGUAYgBlAHMAawByAGkAdgBlAGwAcwBlAAB0ZXh0AAAAAENvcHlyaWdodCAy -MDA3IEFwcGxlIEluYy4sIGFsbCByaWdodHMgcmVzZXJ2ZWQuAFhZWiAAAAAAAADzUQABAAAAARbMY3Vy -dgAAAAAAAAABAc0AANIlJicoWiRjbGFzc25hbWVYJGNsYXNzZXNfEBBOU0JpdG1hcEltYWdlUmVwoycp -KlpOU0ltYWdlUmVwWE5TT2JqZWN00iUmLC1XTlNBcnJheaIsKtIlJi8wXk5TTXV0YWJsZUFycmF5oy8s -KtUyMzQ1CjY3ODk6V05TV2hpdGVcTlNDb21wb25lbnRzXE5TQ29sb3JTcGFjZV8QEk5TQ3VzdG9tQ29s -b3JTcGFjZUQwIDAAQzAgMBADgAyAENQ8PT4KP0BBQlROU0lEVU5TSUNDV05TTW9kZWwQCYANEACAD9JE -CkVGV05TLmRhdGFPERFoAAARaGFwcGwCAAAAbW50ckdSQVlYWVogB9wACAAXAA8ALgAPYWNzcEFQUEwA -AAAAbm9uZQAAAAAAAAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFZGVzYwAAAMAAAAB5ZHNjbQAAATwAAAfoY3BydAAACSQA -AAAjd3RwdAAACUgAAAAUa1RSQwAACVwAAAgMZGVzYwAAAAAAAAAfR2VuZXJpYyBHcmF5IEdhbW1hIDIu -MiBQcm9maWxlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG1sdWMAAAAAAAAAHwAAAAxza1NLAAAALgAAAYRk -YURLAAAAOAAAAbJjYUVTAAAAOAAAAep2aVZOAAAAQAAAAiJwdEJSAAAASgAAAmJ1a1VBAAAALAAAAqxm -ckZVAAAAPgAAAthodUhVAAAANAAAAxZ6aFRXAAAAHgAAA0puYk5PAAAAOgAAA2hjc0NaAAAAKAAAA6Jo -ZUlMAAAAJAAAA8ppdElUAAAATgAAA+5yb1JPAAAAKgAABDxkZURFAAAATgAABGZrb0tSAAAAIgAABLRz -dlNFAAAAOAAAAbJ6aENOAAAAHgAABNZqYUpQAAAAJgAABPRlbEdSAAAAKgAABRpwdFBPAAAAUgAABURu -bE5MAAAAQAAABZZlc0VTAAAATAAABdZ0aFRIAAAAMgAABiJ0clRSAAAAJAAABlRmaUZJAAAARgAABnho -ckhSAAAAPgAABr5wbFBMAAAASgAABvxydVJVAAAAOgAAB0ZlblVTAAAAPAAAB4BhckVHAAAALAAAB7wA -VgFhAGUAbwBiAGUAYwBuAOEAIABzAGkAdgDhACAAZwBhAG0AYQAgADIALAAyAEcAZQBuAGUAcgBpAHMA -awAgAGcAcgDlACAAMgAsADIAIABnAGEAbQBtAGEAcAByAG8AZgBpAGwARwBhAG0AbQBhACAAZABlACAA -ZwByAGkAcwBvAHMAIABnAGUAbgDoAHIAaQBjAGEAIAAyAC4AMgBDHqUAdQAgAGgA7ABuAGgAIABNAOAA -dQAgAHgA4QBtACAAQwBoAHUAbgBnACAARwBhAG0AbQBhACAAMgAuADIAUABlAHIAZgBpAGwAIABHAGUA -bgDpAHIAaQBjAG8AIABkAGEAIABHAGEAbQBhACAAZABlACAAQwBpAG4AegBhAHMAIAAyACwAMgQXBDAE -MwQwBDsETAQ9BDAAIABHAHIAYQB5AC0EMwQwBDwEMAAgADIALgAyAFAAcgBvAGYAaQBsACAAZwDpAG4A -6QByAGkAcQB1AGUAIABnAHIAaQBzACAAZwBhAG0AbQBhACAAMgAsADIAwQBsAHQAYQBsAOEAbgBvAHMA -IABzAHoA/AByAGsAZQAgAGcAYQBtAG0AYQAgADIALgAykBp1KHBwlo5RSV6mACAAMgAuADIAIIJyX2lj -z4/wAEcAZQBuAGUAcgBpAHMAawAgAGcAcgDlACAAZwBhAG0AbQBhACAAMgAsADIALQBwAHIAbwBmAGkA -bABPAGIAZQBjAG4A4QAgAWEAZQBkAOEAIABnAGEAbQBhACAAMgAuADIF0gXQBd4F1AAgBdAF5AXVBegA -IAXbBdwF3AXZACAAMgAuADIAUAByAG8AZgBpAGwAbwAgAGcAcgBpAGcAaQBvACAAZwBlAG4AZQByAGkA -YwBvACAAZABlAGwAbABhACAAZwBhAG0AbQBhACAAMgAsADIARwBhAG0AYQAgAGcAcgBpACAAZwBlAG4A -ZQByAGkAYwEDACAAMgAsADIAQQBsAGwAZwBlAG0AZQBpAG4AZQBzACAARwByAGEAdQBzAHQAdQBmAGUA -bgAtAFAAcgBvAGYAaQBsACAARwBhAG0AbQBhACAAMgAsADLHfLwYACDWjMDJACCsELnIACAAMgAuADIA -INUEuFzTDMd8Zm6QGnBwXqZ8+2VwACAAMgAuADIAIGPPj/Blh072TgCCLDCwMOwwpDCsMPMw3gAgADIA -LgAyACAw1zDtMNUwoTCkMOsDkwO1A70DuQO6A8wAIAOTA7oDwQO5ACADkwOsA7wDvAOxACAAMgAuADIA -UABlAHIAZgBpAGwAIABnAGUAbgDpAHIAaQBjAG8AIABkAGUAIABjAGkAbgB6AGUAbgB0AG8AcwAgAGQA -YQAgAEcAYQBtAG0AYQAgADIALAAyAEEAbABnAGUAbQBlAGUAbgAgAGcAcgBpAGoAcwAgAGcAYQBtAG0A -YQAgADIALAAyAC0AcAByAG8AZgBpAGUAbABQAGUAcgBmAGkAbAAgAGcAZQBuAOkAcgBpAGMAbwAgAGQA -ZQAgAGcAYQBtAG0AYQAgAGQAZQAgAGcAcgBpAHMAZQBzACAAMgAsADIOIw4xDgcOKg41DkEOAQ4hDiEO -Mg5ADgEOIw4iDkwOFw4xDkgOJw5EDhsAIAAyAC4AMgBHAGUAbgBlAGwAIABHAHIAaQAgAEcAYQBtAGEA -IAAyACwAMgBZAGwAZQBpAG4AZQBuACAAaABhAHIAbQBhAGEAbgAgAGcAYQBtAG0AYQAgADIALAAyACAA -LQBwAHIAbwBmAGkAaQBsAGkARwBlAG4AZQByAGkBDQBrAGkAIABHAHIAYQB5ACAARwBhAG0AbQBhACAA -MgAuADIAIABwAHIAbwBmAGkAbABVAG4AaQB3AGUAcgBzAGEAbABuAHkAIABwAHIAbwBmAGkAbAAgAHMA -egBhAHIAbwFbAGMAaQAgAGcAYQBtAG0AYQAgADIALAAyBB4EMQRJBDAETwAgBEEENQRABDAETwAgBDME -MAQ8BDwEMAAgADIALAAyAC0EPwRABD4ERAQ4BDsETABHAGUAbgBlAHIAaQBjACAARwByAGEAeQAgAEcA -YQBtAG0AYQAgADIALgAyACAAUAByAG8AZgBpAGwAZQY6BicGRQYnACAAMgAuADIAIAZEBkgGRgAgBjEG -RQYnBi8GSgAgBjkGJwZFdGV4dAAAAABDb3B5cmlnaHQgQXBwbGUgSW5jLiwgMjAxMgAAWFlaIAAAAAAA -APNRAAEAAAABFsxjdXJ2AAAAAAAABAAAAAAFAAoADwAUABkAHgAjACgALQAyADcAOwBAAEUASgBPAFQA -WQBeAGMAaABtAHIAdwB8AIEAhgCLAJAAlQCaAJ8ApACpAK4AsgC3ALwAwQDGAMsA0ADVANsA4ADlAOsA -8AD2APsBAQEHAQ0BEwEZAR8BJQErATIBOAE+AUUBTAFSAVkBYAFnAW4BdQF8AYMBiwGSAZoBoQGpAbEB -uQHBAckB0QHZAeEB6QHyAfoCAwIMAhQCHQImAi8COAJBAksCVAJdAmcCcQJ6AoQCjgKYAqICrAK2AsEC -ywLVAuAC6wL1AwADCwMWAyEDLQM4A0MDTwNaA2YDcgN+A4oDlgOiA64DugPHA9MD4APsA/kEBgQTBCAE -LQQ7BEgEVQRjBHEEfgSMBJoEqAS2BMQE0wThBPAE/gUNBRwFKwU6BUkFWAVnBXcFhgWWBaYFtQXFBdUF -5QX2BgYGFgYnBjcGSAZZBmoGewaMBp0GrwbABtEG4wb1BwcHGQcrBz0HTwdhB3QHhgeZB6wHvwfSB+UH -+AgLCB8IMghGCFoIbgiCCJYIqgi+CNII5wj7CRAJJQk6CU8JZAl5CY8JpAm6Cc8J5Qn7ChEKJwo9ClQK -agqBCpgKrgrFCtwK8wsLCyILOQtRC2kLgAuYC7ALyAvhC/kMEgwqDEMMXAx1DI4MpwzADNkM8w0NDSYN -QA1aDXQNjg2pDcMN3g34DhMOLg5JDmQOfw6bDrYO0g7uDwkPJQ9BD14Peg+WD7MPzw/sEAkQJhBDEGEQ -fhCbELkQ1xD1ERMRMRFPEW0RjBGqEckR6BIHEiYSRRJkEoQSoxLDEuMTAxMjE0MTYxODE6QTxRPlFAYU -JxRJFGoUixStFM4U8BUSFTQVVhV4FZsVvRXgFgMWJhZJFmwWjxayFtYW+hcdF0EXZReJF64X0hf3GBsY -QBhlGIoYrxjVGPoZIBlFGWsZkRm3Gd0aBBoqGlEadxqeGsUa7BsUGzsbYxuKG7Ib2hwCHCocUhx7HKMc -zBz1HR4dRx1wHZkdwx3sHhYeQB5qHpQevh7pHxMfPh9pH5Qfvx/qIBUgQSBsIJggxCDwIRwhSCF1IaEh -ziH7IiciVSKCIq8i3SMKIzgjZiOUI8Ij8CQfJE0kfCSrJNolCSU4JWgllyXHJfcmJyZXJocmtyboJxgn -SSd6J6sn3CgNKD8ocSiiKNQpBik4KWspnSnQKgIqNSpoKpsqzysCKzYraSudK9EsBSw5LG4soizXLQwt -QS12Last4S4WLkwugi63Lu4vJC9aL5Evxy/+MDUwbDCkMNsxEjFKMYIxujHyMioyYzKbMtQzDTNGM38z -uDPxNCs0ZTSeNNg1EzVNNYc1wjX9Njc2cjauNuk3JDdgN5w31zgUOFA4jDjIOQU5Qjl/Obw5+To2OnQ6 -sjrvOy07azuqO+g8JzxlPKQ84z0iPWE9oT3gPiA+YD6gPuA/IT9hP6I/4kAjQGRApkDnQSlBakGsQe5C -MEJyQrVC90M6Q31DwEQDREdEikTORRJFVUWaRd5GIkZnRqtG8Ec1R3tHwEgFSEtIkUjXSR1JY0mpSfBK -N0p9SsRLDEtTS5pL4kwqTHJMuk0CTUpNk03cTiVObk63TwBPSU+TT91QJ1BxULtRBlFQUZtR5lIxUnxS -x1MTU19TqlP2VEJUj1TbVShVdVXCVg9WXFapVvdXRFeSV+BYL1h9WMtZGllpWbhaB1pWWqZa9VtFW5Vb -5Vw1XIZc1l0nXXhdyV4aXmxevV8PX2Ffs2AFYFdgqmD8YU9homH1YklinGLwY0Njl2PrZEBklGTpZT1l -kmXnZj1mkmboZz1nk2fpaD9olmjsaUNpmmnxakhqn2r3a09rp2v/bFdsr20IbWBtuW4SbmtuxG8eb3hv -0XArcIZw4HE6cZVx8HJLcqZzAXNdc7h0FHRwdMx1KHWFdeF2Pnabdvh3VnezeBF4bnjMeSp5iXnnekZ6 -pXsEe2N7wnwhfIF84X1BfaF+AX5ifsJ/I3+Ef+WAR4CogQqBa4HNgjCCkoL0g1eDuoQdhICE44VHhauG -DoZyhteHO4efiASIaYjOiTOJmYn+imSKyoswi5aL/IxjjMqNMY2Yjf+OZo7OjzaPnpAGkG6Q1pE/kaiS -EZJ6kuOTTZO2lCCUipT0lV+VyZY0lp+XCpd1l+CYTJi4mSSZkJn8mmia1ZtCm6+cHJyJnPedZJ3SnkCe -rp8dn4uf+qBpoNihR6G2oiailqMGo3aj5qRWpMelOKWpphqmi6b9p26n4KhSqMSpN6mpqhyqj6sCq3Wr -6axcrNCtRK24ri2uoa8Wr4uwALB1sOqxYLHWskuywrM4s660JbSctRO1irYBtnm28Ldot+C4WbjRuUq5 -wro7urW7LrunvCG8m70VvY++Cr6Evv+/er/1wHDA7MFnwePCX8Lbw1jD1MRRxM7FS8XIxkbGw8dBx7/I -Pci8yTrJuco4yrfLNsu2zDXMtc01zbXONs62zzfPuNA50LrRPNG+0j/SwdNE08bUSdTL1U7V0dZV1tjX -XNfg2GTY6Nls2fHadtr724DcBdyK3RDdlt4c3qLfKd+v4DbgveFE4cziU+Lb42Pj6+Rz5PzlhOYN5pbn -H+ep6DLovOlG6dDqW+rl63Dr++yG7RHtnO4o7rTvQO/M8Fjw5fFy8f/yjPMZ86f0NPTC9VD13vZt9vv3 -ivgZ+Kj5OPnH+lf65/t3/Af8mP0p/br+S/7c/23//4AO0iUmSEldTlNNdXRhYmxlRGF0YaNISipWTlNE -YXRh0iUmTE1cTlNDb2xvclNwYWNlok4qXE5TQ29sb3JTcGFjZdIlJlBRV05TQ29sb3KiUCrSJSZTVFdO -U0ltYWdlolMqXxAPTlNLZXllZEFyY2hpdmVy0VdYVHJvb3SAAQAIABEAGgAjAC0AMgA3AEwAUgBdAGQA -awB4AH8AhwCJAIsAkACSAJQAmwCgAKsArQCvALEAtgC5ALsAvQC/AMEAxgDdAN8A4QmpCa4JuQnCCdUJ -2QnkCe0J8gn6Cf0KAgoRChUKIAooCjUKQgpXClwKYApiCmQKZgpvCnQKegqCCoQKhgqICooKjwqXHAMc -BRwKHBgcHBwjHCgcNRw4HEUcShxSHFUcWhxiHGUcdxx6HH8AAAAAAAACAQAAAAAAAABZAAAAAAAAAAAA -AAAAAAAcgQ - - - - diff --git a/Moonlight macOS.xcodeproj/project.pbxproj b/Moonlight macOS.xcodeproj/project.pbxproj deleted file mode 100644 index 209d475..0000000 --- a/Moonlight macOS.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1289 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 48; - objects = { - -/* Begin PBXBuildFile section */ - 985E7D5520BC9CA20037B0F0 /* Limelight.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 985E7D4E20BC9CA20037B0F0 /* Limelight.xcdatamodeld */; }; - DC0F7508205C04A90087B187 /* keepAlive.m in Sources */ = {isa = PBXBuildFile; fileRef = DC0F7507205C04A90087B187 /* keepAlive.m */; }; - DC2634D4205438DC00D44F88 /* keyboardTranslation.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2634D3205438DC00D44F88 /* keyboardTranslation.m */; }; - DC2F170E205DA33800C3021E /* TemporaryApp.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1702205DA33800C3021E /* TemporaryApp.m */; }; - DC2F170F205DA33800C3021E /* TemporaryHost.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1703205DA33800C3021E /* TemporaryHost.m */; }; - DC2F1737205DA35700C3021E /* IdManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1719205DA35700C3021E /* IdManager.m */; }; - DC2F1738205DA35700C3021E /* mkcert.c in Sources */ = {isa = PBXBuildFile; fileRef = DC2F171A205DA35700C3021E /* mkcert.c */; }; - DC2F1739205DA35700C3021E /* CryptoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F171B205DA35700C3021E /* CryptoManager.m */; }; - DC2F173A205DA35700C3021E /* WakeOnLanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F171D205DA35700C3021E /* WakeOnLanManager.m */; }; - DC2F173B205DA35700C3021E /* ServerInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F171E205DA35700C3021E /* ServerInfoResponse.m */; }; - DC2F173C205DA35700C3021E /* HttpResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F171F205DA35700C3021E /* HttpResponse.m */; }; - DC2F173D205DA35700C3021E /* DiscoveryWorker.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1721205DA35700C3021E /* DiscoveryWorker.m */; }; - DC2F173E205DA35700C3021E /* MDNSManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1723205DA35700C3021E /* MDNSManager.m */; }; - DC2F173F205DA35700C3021E /* AppAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1725205DA35700C3021E /* AppAssetManager.m */; }; - DC2F1740205DA35700C3021E /* HttpRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1726205DA35700C3021E /* HttpRequest.m */; }; - DC2F1741205DA35700C3021E /* AppAssetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1727205DA35700C3021E /* AppAssetResponse.m */; }; - DC2F1742205DA35700C3021E /* AppListResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1728205DA35700C3021E /* AppListResponse.m */; }; - DC2F1743205DA35700C3021E /* DiscoveryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1729205DA35700C3021E /* DiscoveryManager.m */; }; - DC2F1744205DA35700C3021E /* HttpManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F172D205DA35700C3021E /* HttpManager.m */; }; - DC2F1745205DA35700C3021E /* AppAssetRetriever.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1732205DA35700C3021E /* AppAssetRetriever.m */; }; - DC2F1746205DA35700C3021E /* PairManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F1734205DA35700C3021E /* PairManager.m */; }; - DC2F174E205DA39600C3021E /* Utils.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F174A205DA39600C3021E /* Utils.m */; }; - DC2F174F205DA39600C3021E /* Logger.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2F174C205DA39600C3021E /* Logger.m */; }; - DC381F8E206D74F600E0931A /* NetworkTraffic.m in Sources */ = {isa = PBXBuildFile; fileRef = DC381F8D206D74F600E0931A /* NetworkTraffic.m */; }; - DC38D540205ACC360045FE93 /* Control.m in Sources */ = {isa = PBXBuildFile; fileRef = DC38D53F205ACC360045FE93 /* Control.m */; }; - DC38D548205AD8D00045FE93 /* libstem_gamepad.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DC38D544205AD8D00045FE93 /* libstem_gamepad.a */; }; - DC38D549205AD9860045FE93 /* libstem_gamepad.a in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DC38D544205AD8D00045FE93 /* libstem_gamepad.a */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DC3911882057D650001F895F /* libxml2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = DCAF13D72053059C00896C35 /* libxml2.tbd */; }; - DC39118D2057DD38001F895F /* libxml2.tbd in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DCAF13D72053059C00896C35 /* libxml2.tbd */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DC39118F2057DD38001F895F /* libcrypto.a in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DC5EF6232052FC8B00C9BF55 /* libcrypto.a */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DC3911902057DD38001F895F /* libssl.a in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DC5EF6242052FC8B00C9BF55 /* libssl.a */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DC4522D0205316D8003A7AF4 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DC5EF6232052FC8B00C9BF55 /* libcrypto.a */; }; - DC4522D1205316D8003A7AF4 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DC5EF6242052FC8B00C9BF55 /* libssl.a */; }; - DC4522D720531714003A7AF4 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC4522D220531714003A7AF4 /* CoreData.framework */; }; - DC4522D820531714003A7AF4 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC4522D320531714003A7AF4 /* AppKit.framework */; }; - DC4522D920531714003A7AF4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC4522D420531714003A7AF4 /* Foundation.framework */; }; - DC4522DA20531714003A7AF4 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC4522D520531714003A7AF4 /* CoreFoundation.framework */; }; - DC4522DB20531714003A7AF4 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC4522D620531714003A7AF4 /* CoreGraphics.framework */; }; - DC5EF54D2052FBDB00C9BF55 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5EF54C2052FBDB00C9BF55 /* ViewController.m */; }; - DC5EF5522052FBDB00C9BF55 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DC5EF5512052FBDB00C9BF55 /* Assets.xcassets */; }; - DC5EF5582052FBDB00C9BF55 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5EF5572052FBDB00C9BF55 /* main.m */; }; - DC5FA8FC205DBEE3008B7054 /* StreamConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5FA8F6205DBEE3008B7054 /* StreamConfiguration.m */; }; - DC5FA8FD205DBEE3008B7054 /* StreamManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5FA8F8205DBEE3008B7054 /* StreamManager.m */; }; - DC5FA8FE205DBEE3008B7054 /* Connection.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5FA8F9205DBEE3008B7054 /* Connection.m */; }; - DC5FA8FF205DBEE3008B7054 /* VideoDecoderRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5FA8FB205DBEE3008B7054 /* VideoDecoderRenderer.m */; }; - DC5FA900205DC0AF008B7054 /* libmoonlight-common.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DCECF42F205DBBAC00831862 /* libmoonlight-common.a */; }; - DC62AC29205D9D3800FE4681 /* libopus_mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DC62AC28205D9D3800FE4681 /* libopus_mac.a */; }; - DC6A60862064299700A0673D /* ConnectionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6A60852064299700A0673D /* ConnectionHelper.m */; }; - DC7029D5205B28340016D44B /* LICENSE.txt in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DC7029D4205B28340016D44B /* LICENSE.txt */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DC9CD51F20601658001A5DCD /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9CD51E20601658001A5DCD /* AppDelegate.m */; }; - DCA3B3F22070EED0006565D9 /* OverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA3B3F02070EED0006565D9 /* OverlayView.m */; }; - DCAF0522205FCADB00AD1DBA /* Controller.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCAF051F205FCADA00AD1DBA /* Controller.swift */; }; - DCAF0523205FCADB00AD1DBA /* ControllerSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = DCAF0521205FCADA00AD1DBA /* ControllerSupport.m */; }; - DCAF13E620530BE100896C35 /* StreamView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCAF13E120530BE100896C35 /* StreamView.m */; }; - DCC01DF12055BD0D00D1D8CE /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC01DEF2055BD0D00D1D8CE /* SettingsViewController.m */; }; - DCC05DA5205D9DB90011DBBD /* libopus_mac.a in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DC62AC28205D9D3800FE4681 /* libopus_mac.a */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DCC23C25205DAC5C00BF3C25 /* DataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC23C20205DAC5B00BF3C25 /* DataManager.m */; }; - DCC23C27205DAC5C00BF3C25 /* TemporarySettings.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC23C23205DAC5C00BF3C25 /* TemporarySettings.m */; }; - DCC23C29205DAEB600BF3C25 /* Mac.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DCC23C28205DAEB600BF3C25 /* Mac.storyboard */; }; - DCD464E22053417800CC8950 /* StreamFrameViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCD464E12053417800CC8950 /* StreamFrameViewController.m */; }; - DCECF432205DBBD200831862 /* libmoonlight-common.a in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DCECF42F205DBBAC00831862 /* libmoonlight-common.a */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - DC5EF55F2052FBDB00C9BF55 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = DC5EF53D2052FBDB00C9BF55 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC5EF5442052FBDB00C9BF55; - remoteInfo = "Moonlight macOS"; - }; - DC5EF56A2052FBDB00C9BF55 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = DC5EF53D2052FBDB00C9BF55 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC5EF5442052FBDB00C9BF55; - remoteInfo = "Moonlight macOS"; - }; - DCECF42E205DBBAC00831862 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = DCECF42A205DBBAB00831862 /* moonlight-common_mac.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = FB290E2E19B37A4E004C83CF; - remoteInfo = "moonlight-common"; - }; - DCECF430205DBBCA00831862 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = DCECF42A205DBBAB00831862 /* moonlight-common_mac.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = FB290E2D19B37A4E004C83CF; - remoteInfo = "moonlight-common"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - DC39118B2057DCDC001F895F /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - DCECF432205DBBD200831862 /* libmoonlight-common.a in Embed Frameworks */, - DCC05DA5205D9DB90011DBBD /* libopus_mac.a in Embed Frameworks */, - DC7029D5205B28340016D44B /* LICENSE.txt in Embed Frameworks */, - DC38D549205AD9860045FE93 /* libstem_gamepad.a in Embed Frameworks */, - DC39118D2057DD38001F895F /* libxml2.tbd in Embed Frameworks */, - DC39118F2057DD38001F895F /* libcrypto.a in Embed Frameworks */, - DC3911902057DD38001F895F /* libssl.a in Embed Frameworks */, - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 985E7D4F20BC9CA20037B0F0 /* Limelight.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Limelight.xcdatamodel; sourceTree = ""; }; - 985E7D5020BC9CA20037B0F0 /* Moonlight v1.1.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "Moonlight v1.1.xcdatamodel"; sourceTree = ""; }; - 985E7D5120BC9CA20037B0F0 /* Moonlight v1.0-2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "Moonlight v1.0-2.xcdatamodel"; sourceTree = ""; }; - 985E7D5220BC9CA20037B0F0 /* Limelight 0.3.1.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "Limelight 0.3.1.xcdatamodel"; sourceTree = ""; }; - 985E7D5320BC9CA20037B0F0 /* Moonlight v1.0.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "Moonlight v1.0.xcdatamodel"; sourceTree = ""; }; - 985E7D5420BC9CA20037B0F0 /* Limelight 0.3.0.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "Limelight 0.3.0.xcdatamodel"; sourceTree = ""; }; - 98878AE1206A261F00586E90 /* OSPortabilityDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OSPortabilityDefs.h; path = Limelight/OSPortabilityDefs.h; sourceTree = SOURCE_ROOT; }; - DC0F7506205C04A90087B187 /* keepAlive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = keepAlive.h; sourceTree = ""; }; - DC0F7507205C04A90087B187 /* keepAlive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = keepAlive.m; sourceTree = ""; }; - DC153B34205A990800E7559B /* Moonlight macOS-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Moonlight macOS-Bridging-Header.h"; sourceTree = ""; }; - DC2634D3205438DC00D44F88 /* keyboardTranslation.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = keyboardTranslation.m; sourceTree = ""; }; - DC2634D5205438FD00D44F88 /* keyboardTranslation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = keyboardTranslation.h; sourceTree = ""; }; - DC2F1702205DA33800C3021E /* TemporaryApp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TemporaryApp.m; sourceTree = ""; }; - DC2F1703205DA33800C3021E /* TemporaryHost.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TemporaryHost.m; sourceTree = ""; }; - DC2F170B205DA33800C3021E /* TemporaryHost.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemporaryHost.h; sourceTree = ""; }; - DC2F170C205DA33800C3021E /* TemporaryApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemporaryApp.h; sourceTree = ""; }; - DC2F1716205DA35700C3021E /* mkcert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mkcert.h; sourceTree = ""; }; - DC2F1717205DA35700C3021E /* IdManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IdManager.h; sourceTree = ""; }; - DC2F1718205DA35700C3021E /* CryptoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CryptoManager.h; sourceTree = ""; }; - DC2F1719205DA35700C3021E /* IdManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IdManager.m; sourceTree = ""; }; - DC2F171A205DA35700C3021E /* mkcert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mkcert.c; sourceTree = ""; }; - DC2F171B205DA35700C3021E /* CryptoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CryptoManager.m; sourceTree = ""; }; - DC2F171D205DA35700C3021E /* WakeOnLanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WakeOnLanManager.m; sourceTree = ""; }; - DC2F171E205DA35700C3021E /* ServerInfoResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServerInfoResponse.m; sourceTree = ""; }; - DC2F171F205DA35700C3021E /* HttpResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpResponse.m; sourceTree = ""; }; - DC2F1720205DA35700C3021E /* HttpManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpManager.h; sourceTree = ""; }; - DC2F1721205DA35700C3021E /* DiscoveryWorker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DiscoveryWorker.m; sourceTree = ""; }; - DC2F1722205DA35700C3021E /* PairManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PairManager.h; sourceTree = ""; }; - DC2F1723205DA35700C3021E /* MDNSManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MDNSManager.m; sourceTree = ""; }; - DC2F1724205DA35700C3021E /* AppAssetRetriever.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppAssetRetriever.h; sourceTree = ""; }; - DC2F1725205DA35700C3021E /* AppAssetManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppAssetManager.m; sourceTree = ""; }; - DC2F1726205DA35700C3021E /* HttpRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpRequest.m; sourceTree = ""; }; - DC2F1727205DA35700C3021E /* AppAssetResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppAssetResponse.m; sourceTree = ""; }; - DC2F1728205DA35700C3021E /* AppListResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppListResponse.m; sourceTree = ""; }; - DC2F1729205DA35700C3021E /* DiscoveryManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DiscoveryManager.m; sourceTree = ""; }; - DC2F172A205DA35700C3021E /* ServerInfoResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServerInfoResponse.h; sourceTree = ""; }; - DC2F172B205DA35700C3021E /* WakeOnLanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WakeOnLanManager.h; sourceTree = ""; }; - DC2F172C205DA35700C3021E /* DiscoveryWorker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiscoveryWorker.h; sourceTree = ""; }; - DC2F172D205DA35700C3021E /* HttpManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HttpManager.m; sourceTree = ""; }; - DC2F172E205DA35700C3021E /* HttpResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpResponse.h; sourceTree = ""; }; - DC2F172F205DA35700C3021E /* AppAssetResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppAssetResponse.h; sourceTree = ""; }; - DC2F1730205DA35700C3021E /* HttpRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HttpRequest.h; sourceTree = ""; }; - DC2F1731205DA35700C3021E /* AppAssetManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppAssetManager.h; sourceTree = ""; }; - DC2F1732205DA35700C3021E /* AppAssetRetriever.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppAssetRetriever.m; sourceTree = ""; }; - DC2F1733205DA35700C3021E /* MDNSManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MDNSManager.h; sourceTree = ""; }; - DC2F1734205DA35700C3021E /* PairManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PairManager.m; sourceTree = ""; }; - DC2F1735205DA35700C3021E /* DiscoveryManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiscoveryManager.h; sourceTree = ""; }; - DC2F1736205DA35700C3021E /* AppListResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppListResponse.h; sourceTree = ""; }; - DC2F174A205DA39600C3021E /* Utils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Utils.m; path = Limelight/Utility/Utils.m; sourceTree = SOURCE_ROOT; }; - DC2F174B205DA39600C3021E /* Logger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = Limelight/Utility/Logger.h; sourceTree = SOURCE_ROOT; }; - DC2F174C205DA39600C3021E /* Logger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Logger.m; path = Limelight/Utility/Logger.m; sourceTree = SOURCE_ROOT; }; - DC2F174D205DA39600C3021E /* Utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = Limelight/Utility/Utils.h; sourceTree = SOURCE_ROOT; }; - DC2F1751205DA48D00C3021E /* Limelight-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Limelight-Prefix.pch"; path = "Limelight/Limelight-Prefix.pch"; sourceTree = SOURCE_ROOT; }; - DC381F8C206D74F600E0931A /* NetworkTraffic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NetworkTraffic.h; path = "Moonlight macOS/Network/NetworkTraffic.h"; sourceTree = SOURCE_ROOT; }; - DC381F8D206D74F600E0931A /* NetworkTraffic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NetworkTraffic.m; path = "Moonlight macOS/Network/NetworkTraffic.m"; sourceTree = SOURCE_ROOT; }; - DC38D53E205ACC360045FE93 /* Control.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Control.h; sourceTree = ""; }; - DC38D53F205ACC360045FE93 /* Control.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Control.m; sourceTree = ""; }; - DC38D544205AD8D00045FE93 /* libstem_gamepad.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libstem_gamepad.a; sourceTree = ""; }; - DC38D547205AD8D00045FE93 /* Gamepad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Gamepad.h; sourceTree = ""; }; - DC390F2B2053E5BE0047EA70 /* Moonlight macOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Moonlight macOS.entitlements"; sourceTree = ""; }; - DC4522D220531714003A7AF4 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; - DC4522D320531714003A7AF4 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; - DC4522D420531714003A7AF4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - DC4522D520531714003A7AF4 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; - DC4522D620531714003A7AF4 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - DC5EF5452052FBDB00C9BF55 /* Moonlight macOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Moonlight macOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - DC5EF54B2052FBDB00C9BF55 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; - DC5EF54C2052FBDB00C9BF55 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; - DC5EF5512052FBDB00C9BF55 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - DC5EF5562052FBDB00C9BF55 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - DC5EF5572052FBDB00C9BF55 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - DC5EF55E2052FBDB00C9BF55 /* Moonlight macOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Moonlight macOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - DC5EF5692052FBDB00C9BF55 /* Moonlight macOSUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Moonlight macOSUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - DC5EF5CE2052FC8B00C9BF55 /* opus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = opus.h; sourceTree = ""; }; - DC5EF5CF2052FC8B00C9BF55 /* opus_multistream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = opus_multistream.h; sourceTree = ""; }; - DC5EF5D02052FC8B00C9BF55 /* opus_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = opus_types.h; sourceTree = ""; }; - DC5EF5D12052FC8B00C9BF55 /* opus_defines.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = opus_defines.h; sourceTree = ""; }; - DC5EF5D72052FC8B00C9BF55 /* pem2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = ""; }; - DC5EF5D82052FC8B00C9BF55 /* pem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = ""; }; - DC5EF5D92052FC8B00C9BF55 /* ssl3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = ""; }; - DC5EF5DA2052FC8B00C9BF55 /* ossl_typ.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = ""; }; - DC5EF5DB2052FC8B00C9BF55 /* dtls1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = ""; }; - DC5EF5DC2052FC8B00C9BF55 /* err.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = ""; }; - DC5EF5DD2052FC8B00C9BF55 /* bn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = ""; }; - DC5EF5DE2052FC8B00C9BF55 /* blowfish.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = ""; }; - DC5EF5DF2052FC8B00C9BF55 /* cms.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = ""; }; - DC5EF5E02052FC8B00C9BF55 /* engine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = ""; }; - DC5EF5E12052FC8B00C9BF55 /* conf_api.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = ""; }; - DC5EF5E22052FC8B00C9BF55 /* x509.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = ""; }; - DC5EF5E32052FC8B00C9BF55 /* asn1_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = ""; }; - DC5EF5E42052FC8B00C9BF55 /* ui.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = ""; }; - DC5EF5E52052FC8B00C9BF55 /* kssl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = kssl.h; sourceTree = ""; }; - DC5EF5E62052FC8B00C9BF55 /* sha.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = ""; }; - DC5EF5E72052FC8B00C9BF55 /* symhacks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = ""; }; - DC5EF5E82052FC8B00C9BF55 /* asn1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = ""; }; - DC5EF5E92052FC8B00C9BF55 /* opensslconf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = ""; }; - DC5EF5EA2052FC8B00C9BF55 /* bio.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = ""; }; - DC5EF5EB2052FC8B00C9BF55 /* rc2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = ""; }; - DC5EF5EC2052FC8B00C9BF55 /* dh.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = ""; }; - DC5EF5ED2052FC8B00C9BF55 /* ui_compat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ui_compat.h; sourceTree = ""; }; - DC5EF5EE2052FC8B00C9BF55 /* x509v3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = ""; }; - DC5EF5EF2052FC8B00C9BF55 /* ssl23.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ssl23.h; sourceTree = ""; }; - DC5EF5F02052FC8B00C9BF55 /* conf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = ""; }; - DC5EF5F12052FC8B00C9BF55 /* md5.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = ""; }; - DC5EF5F22052FC8B00C9BF55 /* x509_vfy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = ""; }; - DC5EF5F32052FC8B00C9BF55 /* txt_db.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = ""; }; - DC5EF5F42052FC8B00C9BF55 /* safestack.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = ""; }; - DC5EF5F52052FC8B00C9BF55 /* ecdsa.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = ""; }; - DC5EF5F62052FC8B00C9BF55 /* objects.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = ""; }; - DC5EF5F72052FC8B00C9BF55 /* pkcs12.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = ""; }; - DC5EF5F82052FC8B00C9BF55 /* crypto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = ""; }; - DC5EF5F92052FC8B00C9BF55 /* opensslv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = ""; }; - DC5EF5FA2052FC8B00C9BF55 /* pkcs7.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = ""; }; - DC5EF5FB2052FC8B00C9BF55 /* obj_mac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = ""; }; - DC5EF5FC2052FC8B00C9BF55 /* buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = ""; }; - DC5EF5FD2052FC8B00C9BF55 /* ssl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = ""; }; - DC5EF5FE2052FC8B00C9BF55 /* srp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = ""; }; - DC5EF5FF2052FC8B00C9BF55 /* camellia.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = ""; }; - DC5EF6002052FC8B00C9BF55 /* evp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = ""; }; - DC5EF6012052FC8B00C9BF55 /* e_os2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = ""; }; - DC5EF6022052FC8B00C9BF55 /* md4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = ""; }; - DC5EF6032052FC8B00C9BF55 /* hmac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = ""; }; - DC5EF6042052FC8B00C9BF55 /* aes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = ""; }; - DC5EF6052052FC8B00C9BF55 /* comp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = ""; }; - DC5EF6062052FC8B00C9BF55 /* cast.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = ""; }; - DC5EF6072052FC8B00C9BF55 /* rc4.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = ""; }; - DC5EF6082052FC8B00C9BF55 /* stack.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = ""; }; - DC5EF6092052FC8B00C9BF55 /* des.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = ""; }; - DC5EF60A2052FC8B00C9BF55 /* ocsp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = ""; }; - DC5EF60B2052FC8B00C9BF55 /* ec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = ""; }; - DC5EF60C2052FC8B00C9BF55 /* ecdh.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = ""; }; - DC5EF60D2052FC8B00C9BF55 /* rand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = ""; }; - DC5EF60E2052FC8B00C9BF55 /* ts.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = ""; }; - DC5EF60F2052FC8B00C9BF55 /* pqueue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pqueue.h; sourceTree = ""; }; - DC5EF6102052FC8B00C9BF55 /* dso.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dso.h; sourceTree = ""; }; - DC5EF6112052FC8B00C9BF55 /* seed.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = ""; }; - DC5EF6122052FC8B00C9BF55 /* modes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = ""; }; - DC5EF6132052FC8B00C9BF55 /* ssl2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = ""; }; - DC5EF6142052FC8B00C9BF55 /* rsa.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = ""; }; - DC5EF6152052FC8B00C9BF55 /* krb5_asn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = krb5_asn.h; sourceTree = ""; }; - DC5EF6162052FC8B00C9BF55 /* des_old.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = des_old.h; sourceTree = ""; }; - DC5EF6172052FC8B00C9BF55 /* ripemd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = ""; }; - DC5EF6182052FC8B00C9BF55 /* whrlpool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = ""; }; - DC5EF6192052FC8B00C9BF55 /* tls1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = ""; }; - DC5EF61A2052FC8B00C9BF55 /* mdc2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = ""; }; - DC5EF61B2052FC8B00C9BF55 /* dsa.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = ""; }; - DC5EF61C2052FC8B00C9BF55 /* srtp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = ""; }; - DC5EF61D2052FC8B00C9BF55 /* asn1t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = ""; }; - DC5EF61E2052FC8B00C9BF55 /* cmac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = ""; }; - DC5EF61F2052FC8B00C9BF55 /* ebcdic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = ""; }; - DC5EF6202052FC8B00C9BF55 /* idea.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = ""; }; - DC5EF6212052FC8B00C9BF55 /* lhash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = ""; }; - DC5EF6232052FC8B00C9BF55 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = ""; }; - DC5EF6242052FC8B00C9BF55 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = ""; }; - DC5FA8F4205DBEE3008B7054 /* Connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = ""; }; - DC5FA8F5205DBEE3008B7054 /* StreamManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StreamManager.h; sourceTree = ""; }; - DC5FA8F6205DBEE3008B7054 /* StreamConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StreamConfiguration.m; sourceTree = ""; }; - DC5FA8F7205DBEE3008B7054 /* VideoDecoderRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoDecoderRenderer.h; sourceTree = ""; }; - DC5FA8F8205DBEE3008B7054 /* StreamManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StreamManager.m; sourceTree = ""; }; - DC5FA8F9205DBEE3008B7054 /* Connection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Connection.m; sourceTree = ""; }; - DC5FA8FA205DBEE3008B7054 /* StreamConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StreamConfiguration.h; sourceTree = ""; }; - DC5FA8FB205DBEE3008B7054 /* VideoDecoderRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoDecoderRenderer.m; sourceTree = ""; }; - DC62AC28205D9D3800FE4681 /* libopus_mac.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libopus_mac.a; sourceTree = ""; }; - DC6A60842064298700A0673D /* ConnectionHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ConnectionHelper.h; sourceTree = ""; }; - DC6A60852064299700A0673D /* ConnectionHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ConnectionHelper.m; sourceTree = ""; }; - DC7029D4205B28340016D44B /* LICENSE.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE.txt; sourceTree = ""; }; - DC9CD51E20601658001A5DCD /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Limelight/AppDelegate.m; sourceTree = SOURCE_ROOT; }; - DCA3B3F02070EED0006565D9 /* OverlayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OverlayView.m; sourceTree = ""; }; - DCA3B3F12070EED0006565D9 /* OverlayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OverlayView.h; sourceTree = ""; }; - DCAF04FD205F38B100AD1DBA /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Limelight/AppDelegate.h; sourceTree = SOURCE_ROOT; }; - DCAF051F205FCADA00AD1DBA /* Controller.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Controller.swift; path = Limelight/Input/Controller.swift; sourceTree = SOURCE_ROOT; }; - DCAF0520205FCADA00AD1DBA /* ControllerSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ControllerSupport.h; path = Limelight/Input/ControllerSupport.h; sourceTree = SOURCE_ROOT; }; - DCAF0521205FCADA00AD1DBA /* ControllerSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ControllerSupport.m; path = Limelight/Input/ControllerSupport.m; sourceTree = SOURCE_ROOT; }; - DCAF13D72053059C00896C35 /* libxml2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libxml2.tbd; path = usr/lib/libxml2.tbd; sourceTree = SDKROOT; }; - DCAF13DD20530BE100896C35 /* StreamView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StreamView.h; sourceTree = ""; }; - DCAF13E120530BE100896C35 /* StreamView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StreamView.m; sourceTree = ""; }; - DCC01DEE2055BD0D00D1D8CE /* SettingsViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SettingsViewController.h; sourceTree = ""; }; - DCC01DEF2055BD0D00D1D8CE /* SettingsViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingsViewController.m; sourceTree = ""; }; - DCC23C20205DAC5B00BF3C25 /* DataManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataManager.m; sourceTree = ""; }; - DCC23C22205DAC5C00BF3C25 /* TemporarySettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemporarySettings.h; sourceTree = ""; }; - DCC23C23205DAC5C00BF3C25 /* TemporarySettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TemporarySettings.m; sourceTree = ""; }; - DCC23C24205DAC5C00BF3C25 /* DataManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataManager.h; sourceTree = ""; }; - DCC23C28205DAEB600BF3C25 /* Mac.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Mac.storyboard; sourceTree = SOURCE_ROOT; }; - DCD464E02053417800CC8950 /* StreamFrameViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StreamFrameViewController.h; sourceTree = ""; }; - DCD464E12053417800CC8950 /* StreamFrameViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StreamFrameViewController.m; sourceTree = ""; }; - DCECF42A205DBBAB00831862 /* moonlight-common_mac.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "moonlight-common_mac.xcodeproj"; path = "moonlight-common/moonlight-common_mac.xcodeproj"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - DC5EF5422052FBDB00C9BF55 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - DC5FA900205DC0AF008B7054 /* libmoonlight-common.a in Frameworks */, - DC38D548205AD8D00045FE93 /* libstem_gamepad.a in Frameworks */, - DC3911882057D650001F895F /* libxml2.tbd in Frameworks */, - DC4522D720531714003A7AF4 /* CoreData.framework in Frameworks */, - DC4522D820531714003A7AF4 /* AppKit.framework in Frameworks */, - DC4522D920531714003A7AF4 /* Foundation.framework in Frameworks */, - DC4522DA20531714003A7AF4 /* CoreFoundation.framework in Frameworks */, - DC4522DB20531714003A7AF4 /* CoreGraphics.framework in Frameworks */, - DC4522D0205316D8003A7AF4 /* libcrypto.a in Frameworks */, - DC62AC29205D9D3800FE4681 /* libopus_mac.a in Frameworks */, - DC4522D1205316D8003A7AF4 /* libssl.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC5EF55B2052FBDB00C9BF55 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC5EF5662052FBDB00C9BF55 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - DC2F16FD205DA33800C3021E /* Database */ = { - isa = PBXGroup; - children = ( - DCC23C24205DAC5C00BF3C25 /* DataManager.h */, - DCC23C20205DAC5B00BF3C25 /* DataManager.m */, - DCC23C22205DAC5C00BF3C25 /* TemporarySettings.h */, - DCC23C23205DAC5C00BF3C25 /* TemporarySettings.m */, - DC2F1702205DA33800C3021E /* TemporaryApp.m */, - DC2F1703205DA33800C3021E /* TemporaryHost.m */, - DC2F170B205DA33800C3021E /* TemporaryHost.h */, - DC2F170C205DA33800C3021E /* TemporaryApp.h */, - ); - name = Database; - path = Limelight/Database; - sourceTree = SOURCE_ROOT; - }; - DC2F1715205DA35700C3021E /* Crypto */ = { - isa = PBXGroup; - children = ( - DC2F1716205DA35700C3021E /* mkcert.h */, - DC2F1717205DA35700C3021E /* IdManager.h */, - DC2F1718205DA35700C3021E /* CryptoManager.h */, - DC2F1719205DA35700C3021E /* IdManager.m */, - DC2F171A205DA35700C3021E /* mkcert.c */, - DC2F171B205DA35700C3021E /* CryptoManager.m */, - ); - name = Crypto; - path = Limelight/Crypto; - sourceTree = SOURCE_ROOT; - }; - DC2F171C205DA35700C3021E /* Network */ = { - isa = PBXGroup; - children = ( - DC381F8C206D74F600E0931A /* NetworkTraffic.h */, - DC381F8D206D74F600E0931A /* NetworkTraffic.m */, - DC2F171D205DA35700C3021E /* WakeOnLanManager.m */, - DC2F171E205DA35700C3021E /* ServerInfoResponse.m */, - DC2F171F205DA35700C3021E /* HttpResponse.m */, - DC2F1720205DA35700C3021E /* HttpManager.h */, - DC2F1721205DA35700C3021E /* DiscoveryWorker.m */, - DC2F1722205DA35700C3021E /* PairManager.h */, - DC2F1723205DA35700C3021E /* MDNSManager.m */, - DC2F1724205DA35700C3021E /* AppAssetRetriever.h */, - DC2F1725205DA35700C3021E /* AppAssetManager.m */, - DC2F1726205DA35700C3021E /* HttpRequest.m */, - DC2F1727205DA35700C3021E /* AppAssetResponse.m */, - DC2F1728205DA35700C3021E /* AppListResponse.m */, - DC2F1729205DA35700C3021E /* DiscoveryManager.m */, - DC2F172A205DA35700C3021E /* ServerInfoResponse.h */, - DC2F172B205DA35700C3021E /* WakeOnLanManager.h */, - DC2F172C205DA35700C3021E /* DiscoveryWorker.h */, - DC2F172D205DA35700C3021E /* HttpManager.m */, - DC2F172E205DA35700C3021E /* HttpResponse.h */, - DC2F172F205DA35700C3021E /* AppAssetResponse.h */, - DC2F1730205DA35700C3021E /* HttpRequest.h */, - DC2F1731205DA35700C3021E /* AppAssetManager.h */, - DC2F1732205DA35700C3021E /* AppAssetRetriever.m */, - DC2F1733205DA35700C3021E /* MDNSManager.h */, - DC2F1734205DA35700C3021E /* PairManager.m */, - DC2F1735205DA35700C3021E /* DiscoveryManager.h */, - DC2F1736205DA35700C3021E /* AppListResponse.h */, - DC6A60842064298700A0673D /* ConnectionHelper.h */, - DC6A60852064299700A0673D /* ConnectionHelper.m */, - ); - name = Network; - path = Limelight/Network; - sourceTree = SOURCE_ROOT; - }; - DC38D543205AD8D00045FE93 /* gamepad */ = { - isa = PBXGroup; - children = ( - DC7029D4205B28340016D44B /* LICENSE.txt */, - DC38D544205AD8D00045FE93 /* libstem_gamepad.a */, - DC38D545205AD8D00045FE93 /* include */, - ); - path = gamepad; - sourceTree = ""; - }; - DC38D545205AD8D00045FE93 /* include */ = { - isa = PBXGroup; - children = ( - DC38D546205AD8D00045FE93 /* gamepad */, - ); - path = include; - sourceTree = ""; - }; - DC38D546205AD8D00045FE93 /* gamepad */ = { - isa = PBXGroup; - children = ( - DC38D547205AD8D00045FE93 /* Gamepad.h */, - ); - path = gamepad; - sourceTree = ""; - }; - DC5EF53C2052FBDB00C9BF55 = { - isa = PBXGroup; - children = ( - DCECF42A205DBBAB00831862 /* moonlight-common_mac.xcodeproj */, - DC5EF5472052FBDB00C9BF55 /* Moonlight macOS */, - DC5EF5462052FBDB00C9BF55 /* Products */, - DC5EF5C92052FC8B00C9BF55 /* Frameworks */, - ); - sourceTree = ""; - }; - DC5EF5462052FBDB00C9BF55 /* Products */ = { - isa = PBXGroup; - children = ( - DC5EF5452052FBDB00C9BF55 /* Moonlight macOS.app */, - DC5EF55E2052FBDB00C9BF55 /* Moonlight macOSTests.xctest */, - DC5EF5692052FBDB00C9BF55 /* Moonlight macOSUITests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - DC5EF5472052FBDB00C9BF55 /* Moonlight macOS */ = { - isa = PBXGroup; - children = ( - 985E7D4E20BC9CA20037B0F0 /* Limelight.xcdatamodeld */, - 98878AE1206A261F00586E90 /* OSPortabilityDefs.h */, - DC9CD51E20601658001A5DCD /* AppDelegate.m */, - DCAF04FD205F38B100AD1DBA /* AppDelegate.h */, - DC5FA8F3205DBEE3008B7054 /* Stream */, - DCC23C28205DAEB600BF3C25 /* Mac.storyboard */, - DC2F1751205DA48D00C3021E /* Limelight-Prefix.pch */, - DC2F1715205DA35700C3021E /* Crypto */, - DC2F171C205DA35700C3021E /* Network */, - DC2F16FD205DA33800C3021E /* Database */, - DC390F2B2053E5BE0047EA70 /* Moonlight macOS.entitlements */, - DCD464DD2053413000CC8950 /* ViewController */, - DCAF13DB20530BE100896C35 /* Input */, - DC5EF5962052FC4300C9BF55 /* Utility */, - DC5EF5512052FBDB00C9BF55 /* Assets.xcassets */, - DC5EF5562052FBDB00C9BF55 /* Info.plist */, - DC5EF5572052FBDB00C9BF55 /* main.m */, - ); - path = "Moonlight macOS"; - sourceTree = ""; - }; - DC5EF5962052FC4300C9BF55 /* Utility */ = { - isa = PBXGroup; - children = ( - DC2F174B205DA39600C3021E /* Logger.h */, - DC2F174C205DA39600C3021E /* Logger.m */, - DC2F174D205DA39600C3021E /* Utils.h */, - DC2F174A205DA39600C3021E /* Utils.m */, - DC0F7506205C04A90087B187 /* keepAlive.h */, - DC0F7507205C04A90087B187 /* keepAlive.m */, - DC2634D3205438DC00D44F88 /* keyboardTranslation.m */, - DC2634D5205438FD00D44F88 /* keyboardTranslation.h */, - ); - path = Utility; - sourceTree = ""; - }; - DC5EF5C92052FC8B00C9BF55 /* Frameworks */ = { - isa = PBXGroup; - children = ( - DC4522D320531714003A7AF4 /* AppKit.framework */, - DC4522D220531714003A7AF4 /* CoreData.framework */, - DC4522D520531714003A7AF4 /* CoreFoundation.framework */, - DC4522D620531714003A7AF4 /* CoreGraphics.framework */, - DC4522D420531714003A7AF4 /* Foundation.framework */, - DCAF13D72053059C00896C35 /* libxml2.tbd */, - DC5EF5CA2052FC8B00C9BF55 /* libs */, - ); - name = Frameworks; - sourceTree = ""; - }; - DC5EF5CA2052FC8B00C9BF55 /* libs */ = { - isa = PBXGroup; - children = ( - DC38D543205AD8D00045FE93 /* gamepad */, - DC5EF5CB2052FC8B00C9BF55 /* opus */, - DC5EF5D42052FC8B00C9BF55 /* openssl */, - ); - path = libs; - sourceTree = ""; - }; - DC5EF5CB2052FC8B00C9BF55 /* opus */ = { - isa = PBXGroup; - children = ( - DC5EF5CC2052FC8B00C9BF55 /* include */, - DC5EF5D22052FC8B00C9BF55 /* lib */, - ); - path = opus; - sourceTree = ""; - }; - DC5EF5CC2052FC8B00C9BF55 /* include */ = { - isa = PBXGroup; - children = ( - DC5EF5CD2052FC8B00C9BF55 /* opus */, - ); - path = include; - sourceTree = ""; - }; - DC5EF5CD2052FC8B00C9BF55 /* opus */ = { - isa = PBXGroup; - children = ( - DC5EF5CE2052FC8B00C9BF55 /* opus.h */, - DC5EF5CF2052FC8B00C9BF55 /* opus_multistream.h */, - DC5EF5D02052FC8B00C9BF55 /* opus_types.h */, - DC5EF5D12052FC8B00C9BF55 /* opus_defines.h */, - ); - path = opus; - sourceTree = ""; - }; - DC5EF5D22052FC8B00C9BF55 /* lib */ = { - isa = PBXGroup; - children = ( - DC62AC28205D9D3800FE4681 /* libopus_mac.a */, - ); - path = lib; - sourceTree = ""; - }; - DC5EF5D42052FC8B00C9BF55 /* openssl */ = { - isa = PBXGroup; - children = ( - DC5EF5D52052FC8B00C9BF55 /* include */, - DC5EF6222052FC8B00C9BF55 /* lib */, - ); - path = openssl; - sourceTree = ""; - }; - DC5EF5D52052FC8B00C9BF55 /* include */ = { - isa = PBXGroup; - children = ( - DC5EF5D62052FC8B00C9BF55 /* openssl */, - ); - path = include; - sourceTree = ""; - }; - DC5EF5D62052FC8B00C9BF55 /* openssl */ = { - isa = PBXGroup; - children = ( - DC5EF5D72052FC8B00C9BF55 /* pem2.h */, - DC5EF5D82052FC8B00C9BF55 /* pem.h */, - DC5EF5D92052FC8B00C9BF55 /* ssl3.h */, - DC5EF5DA2052FC8B00C9BF55 /* ossl_typ.h */, - DC5EF5DB2052FC8B00C9BF55 /* dtls1.h */, - DC5EF5DC2052FC8B00C9BF55 /* err.h */, - DC5EF5DD2052FC8B00C9BF55 /* bn.h */, - DC5EF5DE2052FC8B00C9BF55 /* blowfish.h */, - DC5EF5DF2052FC8B00C9BF55 /* cms.h */, - DC5EF5E02052FC8B00C9BF55 /* engine.h */, - DC5EF5E12052FC8B00C9BF55 /* conf_api.h */, - DC5EF5E22052FC8B00C9BF55 /* x509.h */, - DC5EF5E32052FC8B00C9BF55 /* asn1_mac.h */, - DC5EF5E42052FC8B00C9BF55 /* ui.h */, - DC5EF5E52052FC8B00C9BF55 /* kssl.h */, - DC5EF5E62052FC8B00C9BF55 /* sha.h */, - DC5EF5E72052FC8B00C9BF55 /* symhacks.h */, - DC5EF5E82052FC8B00C9BF55 /* asn1.h */, - DC5EF5E92052FC8B00C9BF55 /* opensslconf.h */, - DC5EF5EA2052FC8B00C9BF55 /* bio.h */, - DC5EF5EB2052FC8B00C9BF55 /* rc2.h */, - DC5EF5EC2052FC8B00C9BF55 /* dh.h */, - DC5EF5ED2052FC8B00C9BF55 /* ui_compat.h */, - DC5EF5EE2052FC8B00C9BF55 /* x509v3.h */, - DC5EF5EF2052FC8B00C9BF55 /* ssl23.h */, - DC5EF5F02052FC8B00C9BF55 /* conf.h */, - DC5EF5F12052FC8B00C9BF55 /* md5.h */, - DC5EF5F22052FC8B00C9BF55 /* x509_vfy.h */, - DC5EF5F32052FC8B00C9BF55 /* txt_db.h */, - DC5EF5F42052FC8B00C9BF55 /* safestack.h */, - DC5EF5F52052FC8B00C9BF55 /* ecdsa.h */, - DC5EF5F62052FC8B00C9BF55 /* objects.h */, - DC5EF5F72052FC8B00C9BF55 /* pkcs12.h */, - DC5EF5F82052FC8B00C9BF55 /* crypto.h */, - DC5EF5F92052FC8B00C9BF55 /* opensslv.h */, - DC5EF5FA2052FC8B00C9BF55 /* pkcs7.h */, - DC5EF5FB2052FC8B00C9BF55 /* obj_mac.h */, - DC5EF5FC2052FC8B00C9BF55 /* buffer.h */, - DC5EF5FD2052FC8B00C9BF55 /* ssl.h */, - DC5EF5FE2052FC8B00C9BF55 /* srp.h */, - DC5EF5FF2052FC8B00C9BF55 /* camellia.h */, - DC5EF6002052FC8B00C9BF55 /* evp.h */, - DC5EF6012052FC8B00C9BF55 /* e_os2.h */, - DC5EF6022052FC8B00C9BF55 /* md4.h */, - DC5EF6032052FC8B00C9BF55 /* hmac.h */, - DC5EF6042052FC8B00C9BF55 /* aes.h */, - DC5EF6052052FC8B00C9BF55 /* comp.h */, - DC5EF6062052FC8B00C9BF55 /* cast.h */, - DC5EF6072052FC8B00C9BF55 /* rc4.h */, - DC5EF6082052FC8B00C9BF55 /* stack.h */, - DC5EF6092052FC8B00C9BF55 /* des.h */, - DC5EF60A2052FC8B00C9BF55 /* ocsp.h */, - DC5EF60B2052FC8B00C9BF55 /* ec.h */, - DC5EF60C2052FC8B00C9BF55 /* ecdh.h */, - DC5EF60D2052FC8B00C9BF55 /* rand.h */, - DC5EF60E2052FC8B00C9BF55 /* ts.h */, - DC5EF60F2052FC8B00C9BF55 /* pqueue.h */, - DC5EF6102052FC8B00C9BF55 /* dso.h */, - DC5EF6112052FC8B00C9BF55 /* seed.h */, - DC5EF6122052FC8B00C9BF55 /* modes.h */, - DC5EF6132052FC8B00C9BF55 /* ssl2.h */, - DC5EF6142052FC8B00C9BF55 /* rsa.h */, - DC5EF6152052FC8B00C9BF55 /* krb5_asn.h */, - DC5EF6162052FC8B00C9BF55 /* des_old.h */, - DC5EF6172052FC8B00C9BF55 /* ripemd.h */, - DC5EF6182052FC8B00C9BF55 /* whrlpool.h */, - DC5EF6192052FC8B00C9BF55 /* tls1.h */, - DC5EF61A2052FC8B00C9BF55 /* mdc2.h */, - DC5EF61B2052FC8B00C9BF55 /* dsa.h */, - DC5EF61C2052FC8B00C9BF55 /* srtp.h */, - DC5EF61D2052FC8B00C9BF55 /* asn1t.h */, - DC5EF61E2052FC8B00C9BF55 /* cmac.h */, - DC5EF61F2052FC8B00C9BF55 /* ebcdic.h */, - DC5EF6202052FC8B00C9BF55 /* idea.h */, - DC5EF6212052FC8B00C9BF55 /* lhash.h */, - ); - path = openssl; - sourceTree = ""; - }; - DC5EF6222052FC8B00C9BF55 /* lib */ = { - isa = PBXGroup; - children = ( - DC5EF6232052FC8B00C9BF55 /* libcrypto.a */, - DC5EF6242052FC8B00C9BF55 /* libssl.a */, - ); - path = lib; - sourceTree = ""; - }; - DC5FA8F3205DBEE3008B7054 /* Stream */ = { - isa = PBXGroup; - children = ( - DC5FA8F4205DBEE3008B7054 /* Connection.h */, - DC5FA8F5205DBEE3008B7054 /* StreamManager.h */, - DC5FA8F6205DBEE3008B7054 /* StreamConfiguration.m */, - DC5FA8F7205DBEE3008B7054 /* VideoDecoderRenderer.h */, - DC5FA8F8205DBEE3008B7054 /* StreamManager.m */, - DC5FA8F9205DBEE3008B7054 /* Connection.m */, - DC5FA8FA205DBEE3008B7054 /* StreamConfiguration.h */, - DC5FA8FB205DBEE3008B7054 /* VideoDecoderRenderer.m */, - ); - name = Stream; - path = Limelight/Stream; - sourceTree = SOURCE_ROOT; - }; - DCAF13DB20530BE100896C35 /* Input */ = { - isa = PBXGroup; - children = ( - DCA3B3F12070EED0006565D9 /* OverlayView.h */, - DCA3B3F02070EED0006565D9 /* OverlayView.m */, - DCAF051F205FCADA00AD1DBA /* Controller.swift */, - DCAF0520205FCADA00AD1DBA /* ControllerSupport.h */, - DCAF0521205FCADA00AD1DBA /* ControllerSupport.m */, - DCAF13DD20530BE100896C35 /* StreamView.h */, - DCAF13E120530BE100896C35 /* StreamView.m */, - DC153B34205A990800E7559B /* Moonlight macOS-Bridging-Header.h */, - DC38D53E205ACC360045FE93 /* Control.h */, - DC38D53F205ACC360045FE93 /* Control.m */, - ); - path = Input; - sourceTree = ""; - }; - DCD464DD2053413000CC8950 /* ViewController */ = { - isa = PBXGroup; - children = ( - DC5EF54B2052FBDB00C9BF55 /* ViewController.h */, - DC5EF54C2052FBDB00C9BF55 /* ViewController.m */, - DCD464E02053417800CC8950 /* StreamFrameViewController.h */, - DCD464E12053417800CC8950 /* StreamFrameViewController.m */, - DCC01DEE2055BD0D00D1D8CE /* SettingsViewController.h */, - DCC01DEF2055BD0D00D1D8CE /* SettingsViewController.m */, - ); - path = ViewController; - sourceTree = ""; - }; - DCECF42B205DBBAB00831862 /* Products */ = { - isa = PBXGroup; - children = ( - DCECF42F205DBBAC00831862 /* libmoonlight-common.a */, - ); - name = Products; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - DC5EF5442052FBDB00C9BF55 /* Moonlight macOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = DC5EF5722052FBDB00C9BF55 /* Build configuration list for PBXNativeTarget "Moonlight macOS" */; - buildPhases = ( - DC5EF5412052FBDB00C9BF55 /* Sources */, - DC5EF5422052FBDB00C9BF55 /* Frameworks */, - DC5EF5432052FBDB00C9BF55 /* Resources */, - DC39118B2057DCDC001F895F /* Embed Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - DCECF431205DBBCA00831862 /* PBXTargetDependency */, - ); - name = "Moonlight macOS"; - productName = "Moonlight macOS"; - productReference = DC5EF5452052FBDB00C9BF55 /* Moonlight macOS.app */; - productType = "com.apple.product-type.application"; - }; - DC5EF55D2052FBDB00C9BF55 /* Moonlight macOSTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = DC5EF5752052FBDB00C9BF55 /* Build configuration list for PBXNativeTarget "Moonlight macOSTests" */; - buildPhases = ( - DC5EF55A2052FBDB00C9BF55 /* Sources */, - DC5EF55B2052FBDB00C9BF55 /* Frameworks */, - DC5EF55C2052FBDB00C9BF55 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - DC5EF5602052FBDB00C9BF55 /* PBXTargetDependency */, - ); - name = "Moonlight macOSTests"; - productName = "Moonlight macOSTests"; - productReference = DC5EF55E2052FBDB00C9BF55 /* Moonlight macOSTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - DC5EF5682052FBDB00C9BF55 /* Moonlight macOSUITests */ = { - isa = PBXNativeTarget; - buildConfigurationList = DC5EF5782052FBDB00C9BF55 /* Build configuration list for PBXNativeTarget "Moonlight macOSUITests" */; - buildPhases = ( - DC5EF5652052FBDB00C9BF55 /* Sources */, - DC5EF5662052FBDB00C9BF55 /* Frameworks */, - DC5EF5672052FBDB00C9BF55 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - DC5EF56B2052FBDB00C9BF55 /* PBXTargetDependency */, - ); - name = "Moonlight macOSUITests"; - productName = "Moonlight macOSUITests"; - productReference = DC5EF5692052FBDB00C9BF55 /* Moonlight macOSUITests.xctest */; - productType = "com.apple.product-type.bundle.ui-testing"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - DC5EF53D2052FBDB00C9BF55 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0930; - ORGANIZATIONNAME = "Moonlight Game Streaming Project"; - TargetAttributes = { - DC5EF5442052FBDB00C9BF55 = { - CreatedOnToolsVersion = 9.2; - LastSwiftMigration = 0920; - ProvisioningStyle = Automatic; - SystemCapabilities = { - com.apple.Sandbox = { - enabled = 1; - }; - }; - }; - DC5EF55D2052FBDB00C9BF55 = { - CreatedOnToolsVersion = 9.2; - ProvisioningStyle = Automatic; - TestTargetID = DC5EF5442052FBDB00C9BF55; - }; - DC5EF5682052FBDB00C9BF55 = { - CreatedOnToolsVersion = 9.2; - ProvisioningStyle = Automatic; - TestTargetID = DC5EF5442052FBDB00C9BF55; - }; - }; - }; - buildConfigurationList = DC5EF5402052FBDB00C9BF55 /* Build configuration list for PBXProject "Moonlight macOS" */; - compatibilityVersion = "Xcode 8.0"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = DC5EF53C2052FBDB00C9BF55; - productRefGroup = DC5EF5462052FBDB00C9BF55 /* Products */; - projectDirPath = ""; - projectReferences = ( - { - ProductGroup = DCECF42B205DBBAB00831862 /* Products */; - ProjectRef = DCECF42A205DBBAB00831862 /* moonlight-common_mac.xcodeproj */; - }, - ); - projectRoot = ""; - targets = ( - DC5EF5442052FBDB00C9BF55 /* Moonlight macOS */, - DC5EF55D2052FBDB00C9BF55 /* Moonlight macOSTests */, - DC5EF5682052FBDB00C9BF55 /* Moonlight macOSUITests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXReferenceProxy section */ - DCECF42F205DBBAC00831862 /* libmoonlight-common.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = "libmoonlight-common.a"; - remoteRef = DCECF42E205DBBAC00831862 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; -/* End PBXReferenceProxy section */ - -/* Begin PBXResourcesBuildPhase section */ - DC5EF5432052FBDB00C9BF55 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DCC23C29205DAEB600BF3C25 /* Mac.storyboard in Resources */, - DC5EF5522052FBDB00C9BF55 /* Assets.xcassets in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC5EF55C2052FBDB00C9BF55 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC5EF5672052FBDB00C9BF55 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - DC5EF5412052FBDB00C9BF55 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DC2F1737205DA35700C3021E /* IdManager.m in Sources */, - DC5EF54D2052FBDB00C9BF55 /* ViewController.m in Sources */, - DC2F173F205DA35700C3021E /* AppAssetManager.m in Sources */, - DC2F173E205DA35700C3021E /* MDNSManager.m in Sources */, - DC2F1745205DA35700C3021E /* AppAssetRetriever.m in Sources */, - DCAF0523205FCADB00AD1DBA /* ControllerSupport.m in Sources */, - DCAF0522205FCADB00AD1DBA /* Controller.swift in Sources */, - DC2F1739205DA35700C3021E /* CryptoManager.m in Sources */, - DCC01DF12055BD0D00D1D8CE /* SettingsViewController.m in Sources */, - DC2F173C205DA35700C3021E /* HttpResponse.m in Sources */, - DC5FA8FF205DBEE3008B7054 /* VideoDecoderRenderer.m in Sources */, - DC2F173D205DA35700C3021E /* DiscoveryWorker.m in Sources */, - DC5FA8FC205DBEE3008B7054 /* StreamConfiguration.m in Sources */, - DC2F1742205DA35700C3021E /* AppListResponse.m in Sources */, - DC2F1741205DA35700C3021E /* AppAssetResponse.m in Sources */, - DC6A60862064299700A0673D /* ConnectionHelper.m in Sources */, - DC381F8E206D74F600E0931A /* NetworkTraffic.m in Sources */, - DCD464E22053417800CC8950 /* StreamFrameViewController.m in Sources */, - DC5EF5582052FBDB00C9BF55 /* main.m in Sources */, - DC2F173A205DA35700C3021E /* WakeOnLanManager.m in Sources */, - DCA3B3F22070EED0006565D9 /* OverlayView.m in Sources */, - DC0F7508205C04A90087B187 /* keepAlive.m in Sources */, - DC2634D4205438DC00D44F88 /* keyboardTranslation.m in Sources */, - DC2F1743205DA35700C3021E /* DiscoveryManager.m in Sources */, - DC2F174F205DA39600C3021E /* Logger.m in Sources */, - DC2F170F205DA33800C3021E /* TemporaryHost.m in Sources */, - DC5FA8FD205DBEE3008B7054 /* StreamManager.m in Sources */, - DC2F173B205DA35700C3021E /* ServerInfoResponse.m in Sources */, - DC38D540205ACC360045FE93 /* Control.m in Sources */, - DC2F174E205DA39600C3021E /* Utils.m in Sources */, - DC2F170E205DA33800C3021E /* TemporaryApp.m in Sources */, - DCAF13E620530BE100896C35 /* StreamView.m in Sources */, - DCC23C25205DAC5C00BF3C25 /* DataManager.m in Sources */, - DC2F1744205DA35700C3021E /* HttpManager.m in Sources */, - 985E7D5520BC9CA20037B0F0 /* Limelight.xcdatamodeld in Sources */, - DC2F1738205DA35700C3021E /* mkcert.c in Sources */, - DC2F1740205DA35700C3021E /* HttpRequest.m in Sources */, - DCC23C27205DAC5C00BF3C25 /* TemporarySettings.m in Sources */, - DC2F1746205DA35700C3021E /* PairManager.m in Sources */, - DC5FA8FE205DBEE3008B7054 /* Connection.m in Sources */, - DC9CD51F20601658001A5DCD /* AppDelegate.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC5EF55A2052FBDB00C9BF55 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC5EF5652052FBDB00C9BF55 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - DC5EF5602052FBDB00C9BF55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DC5EF5442052FBDB00C9BF55 /* Moonlight macOS */; - targetProxy = DC5EF55F2052FBDB00C9BF55 /* PBXContainerItemProxy */; - }; - DC5EF56B2052FBDB00C9BF55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = DC5EF5442052FBDB00C9BF55 /* Moonlight macOS */; - targetProxy = DC5EF56A2052FBDB00C9BF55 /* PBXContainerItemProxy */; - }; - DCECF431205DBBCA00831862 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "moonlight-common"; - targetProxy = DCECF430205DBBCA00831862 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - DC5EF5702052FBDB00C9BF55 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "Mac Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx; - }; - name = Debug; - }; - DC5EF5712052FBDB00C9BF55 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "Mac Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_COMPILATION_MODE = wholemodule; - }; - name = Release; - }; - DC5EF5732052FBDB00C9BF55 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = "Moonlight macOS/Moonlight macOS.entitlements"; - CODE_SIGN_IDENTITY = "Mac Developer"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEVELOPMENT_TEAM = DQ6R9YE8BF; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "Limelight/Limelight-Prefix.pch"; - HEADER_SEARCH_PATHS = ( - "${SDKROOT}/usr/include/libxml2/**", - "$(PROJECT_DIR)/libs/**", - "$(PROJECT_DIR)/moonlight-common/moonlight-common-c/src", - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, - "$(inherited)", - ); - INFOPLIST_FILE = "Moonlight macOS/Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/libs/openssl/lib", - "$(PROJECT_DIR)/libs/opus/lib", - "$(PROJECT_DIR)", - "$(PROJECT_DIR)/libs/gamepad", - ); - MACOSX_DEPLOYMENT_TARGET = 10.13; - OTHER_LDFLAGS = ""; - PRODUCT_BUNDLE_IDENTIFIER = "com.moonlight-stream.Moonlight-macOS"; - PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_OBJC_BRIDGING_HEADER = "Moonlight macOS/Input/Moonlight macOS-Bridging-Header.h"; - SWIFT_OBJC_INTERFACE_HEADER_NAME = "Moonlight-Swift.h"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 4.0; - VALIDATE_PRODUCT = YES; - }; - name = Debug; - }; - DC5EF5742052FBDB00C9BF55 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = "Moonlight macOS/Moonlight macOS.entitlements"; - CODE_SIGN_IDENTITY = "Mac Developer"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEVELOPMENT_TEAM = DQ6R9YE8BF; - ENABLE_NS_ASSERTIONS = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)", - ); - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "Limelight/Limelight-Prefix.pch"; - HEADER_SEARCH_PATHS = ( - "${SDKROOT}/usr/include/libxml2/**", - "$(PROJECT_DIR)/libs/**", - "$(PROJECT_DIR)/moonlight-common/moonlight-common-c/src", - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, - "$(inherited)", - ); - INFOPLIST_FILE = "Moonlight macOS/Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/libs/openssl/lib", - "$(PROJECT_DIR)/libs/opus/lib", - "$(PROJECT_DIR)", - "$(PROJECT_DIR)/libs/gamepad", - ); - MACOSX_DEPLOYMENT_TARGET = 10.13; - ONLY_ACTIVE_ARCH = YES; - OTHER_LDFLAGS = ""; - PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO; - PRODUCT_BUNDLE_IDENTIFIER = "com.moonlight-stream.Moonlight-macOS"; - PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE_SPECIFIER = ""; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OBJC_BRIDGING_HEADER = "Moonlight macOS/Input/Moonlight macOS-Bridging-Header.h"; - SWIFT_OBJC_INTERFACE_HEADER_NAME = "Moonlight-Swift.h"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 4.0; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - DC5EF5762052FBDB00C9BF55 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEVELOPMENT_TEAM = DQ6R9YE8BF; - INFOPLIST_FILE = "Moonlight macOSTests/Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "fkx.Moonlight-macOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Moonlight macOS.app/Contents/MacOS/Moonlight macOS"; - }; - name = Debug; - }; - DC5EF5772052FBDB00C9BF55 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEVELOPMENT_TEAM = DQ6R9YE8BF; - INFOPLIST_FILE = "Moonlight macOSTests/Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "fkx.Moonlight-macOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Moonlight macOS.app/Contents/MacOS/Moonlight macOS"; - }; - name = Release; - }; - DC5EF5792052FBDB00C9BF55 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEVELOPMENT_TEAM = DQ6R9YE8BF; - INFOPLIST_FILE = "Moonlight macOSUITests/Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "fkx.Moonlight-macOSUITests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_TARGET_NAME = "Moonlight macOS"; - }; - name = Debug; - }; - DC5EF57A2052FBDB00C9BF55 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEVELOPMENT_TEAM = DQ6R9YE8BF; - INFOPLIST_FILE = "Moonlight macOSUITests/Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "fkx.Moonlight-macOSUITests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_TARGET_NAME = "Moonlight macOS"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - DC5EF5402052FBDB00C9BF55 /* Build configuration list for PBXProject "Moonlight macOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC5EF5702052FBDB00C9BF55 /* Debug */, - DC5EF5712052FBDB00C9BF55 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - DC5EF5722052FBDB00C9BF55 /* Build configuration list for PBXNativeTarget "Moonlight macOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC5EF5732052FBDB00C9BF55 /* Debug */, - DC5EF5742052FBDB00C9BF55 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - DC5EF5752052FBDB00C9BF55 /* Build configuration list for PBXNativeTarget "Moonlight macOSTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC5EF5762052FBDB00C9BF55 /* Debug */, - DC5EF5772052FBDB00C9BF55 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - DC5EF5782052FBDB00C9BF55 /* Build configuration list for PBXNativeTarget "Moonlight macOSUITests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC5EF5792052FBDB00C9BF55 /* Debug */, - DC5EF57A2052FBDB00C9BF55 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - -/* Begin XCVersionGroup section */ - 985E7D4E20BC9CA20037B0F0 /* Limelight.xcdatamodeld */ = { - isa = XCVersionGroup; - children = ( - 985E7D4F20BC9CA20037B0F0 /* Limelight.xcdatamodel */, - 985E7D5020BC9CA20037B0F0 /* Moonlight v1.1.xcdatamodel */, - 985E7D5120BC9CA20037B0F0 /* Moonlight v1.0-2.xcdatamodel */, - 985E7D5220BC9CA20037B0F0 /* Limelight 0.3.1.xcdatamodel */, - 985E7D5320BC9CA20037B0F0 /* Moonlight v1.0.xcdatamodel */, - 985E7D5420BC9CA20037B0F0 /* Limelight 0.3.0.xcdatamodel */, - ); - currentVersion = 985E7D5020BC9CA20037B0F0 /* Moonlight v1.1.xcdatamodel */; - name = Limelight.xcdatamodeld; - path = ../Limelight/Limelight.xcdatamodeld; - sourceTree = ""; - versionGroupType = wrapper.xcdatamodel; - }; -/* End XCVersionGroup section */ - }; - rootObject = DC5EF53D2052FBDB00C9BF55 /* Project object */; -} diff --git a/Moonlight macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Moonlight macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 92e5e95..0000000 --- a/Moonlight macOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Moonlight macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Moonlight macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/Moonlight macOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/1024x icon-1.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/1024x icon-1.png deleted file mode 100644 index 36ed61b..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/1024x icon-1.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/128x icon.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/128x icon.png deleted file mode 100644 index 6b71d11..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/128x icon.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/16x icon.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/16x icon.png deleted file mode 100644 index 896545d..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/16x icon.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/256x icon-1.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/256x icon-1.png deleted file mode 100644 index 3b15677..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/256x icon-1.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/256x icon.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/256x icon.png deleted file mode 100644 index 3b15677..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/256x icon.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/32x icon-1.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/32x icon-1.png deleted file mode 100644 index bc06d78..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/32x icon-1.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/32x icon.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/32x icon.png deleted file mode 100644 index bc06d78..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/32x icon.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/512x icon-1.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/512x icon-1.png deleted file mode 100644 index 0af5e22..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/512x icon-1.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/512x icon.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/512x icon.png deleted file mode 100644 index 0af5e22..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/512x icon.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/64x icon.png b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/64x icon.png deleted file mode 100644 index 51d3d2c..0000000 Binary files a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/64x icon.png and /dev/null differ diff --git a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/Contents.json b/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 388933b..0000000 --- a/Moonlight macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "images" : [ - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "16x icon.png", - "scale" : "1x" - }, - { - "size" : "16x16", - "idiom" : "mac", - "filename" : "32x icon-1.png", - "scale" : "2x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "32x icon.png", - "scale" : "1x" - }, - { - "size" : "32x32", - "idiom" : "mac", - "filename" : "64x icon.png", - "scale" : "2x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "128x icon.png", - "scale" : "1x" - }, - { - "size" : "128x128", - "idiom" : "mac", - "filename" : "256x icon-1.png", - "scale" : "2x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "256x icon.png", - "scale" : "1x" - }, - { - "size" : "256x256", - "idiom" : "mac", - "filename" : "512x icon-1.png", - "scale" : "2x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "512x icon.png", - "scale" : "1x" - }, - { - "size" : "512x512", - "idiom" : "mac", - "filename" : "1024x icon-1.png", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Moonlight macOS/Info.plist b/Moonlight macOS/Info.plist deleted file mode 100644 index cb58548..0000000 --- a/Moonlight macOS/Info.plist +++ /dev/null @@ -1,39 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - LSApplicationCategoryType - public.app-category.entertainment - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSAppTransportSecurity - - NSAllowsArbitraryLoads - - - NSHighResolutionCapable - - NSHumanReadableCopyright - Copyright © 2018 Moonlight Game Streaming Project. All rights reserved. - NSMainStoryboardFile - Mac - NSPrincipalClass - NSApplication - - diff --git a/Moonlight macOS/Input/Control.h b/Moonlight macOS/Input/Control.h deleted file mode 100644 index b0fb0e7..0000000 --- a/Moonlight macOS/Input/Control.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// Control.h -// Moonlight macOS -// -// Created by Felix Kratz on 15.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#ifndef Control_h -#define Control_h - -#include -#import "ControllerSupport.h" - -extern void initGamepad(ControllerSupport* controllerSupport); - -#endif /* Control_h */ diff --git a/Moonlight macOS/Input/Control.m b/Moonlight macOS/Input/Control.m deleted file mode 100644 index 2d2cfa0..0000000 --- a/Moonlight macOS/Input/Control.m +++ /dev/null @@ -1,223 +0,0 @@ -// -// Control.m -// Moonlight macOS -// -// Created by Felix Kratz on 15.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - - -#include "Gamepad.h" -#include "Control.h" -#include -#include -#include -#include -#include "Limelight.h" - -#import "Moonlight-Swift.h" -@class Controller; - -#ifdef _MSC_VER -#define snprintf _snprintf -#endif - - -Controller* _controller; -ControllerSupport* _controllerSupport; -NSMutableDictionary* _controllers; - -typedef enum { - SELECT, - L3, - R3, - START, - UP, - RIGHT, - DOWN, - LEFT, - LB = 10, - RB, - Y, - B, - A, - X, -} ControllerKeys; - -typedef enum { - LEFT_X, - LEFT_Y, - RIGHT_X, - RIGHT_Y, - LT = 14, - RT, -} ControllerAxis; - - -void onButtonDown(struct Gamepad_device * device, unsigned int buttonID, double timestamp, void * context) { - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - switch (buttonID) { - case SELECT: - [_controllerSupport setButtonFlag:_controller flags:BACK_FLAG]; - break; - case L3: - [_controllerSupport setButtonFlag:_controller flags:LS_CLK_FLAG]; - break; - case R3: - [_controllerSupport setButtonFlag:_controller flags:RS_CLK_FLAG]; - break; - case START: - [_controllerSupport setButtonFlag:_controller flags:PLAY_FLAG]; - break; - case UP: - [_controllerSupport setButtonFlag:_controller flags:UP_FLAG]; - break; - case RIGHT: - [_controllerSupport setButtonFlag:_controller flags:RIGHT_FLAG]; - break; - case DOWN: - [_controllerSupport setButtonFlag:_controller flags:DOWN_FLAG]; - break; - case LEFT: - [_controllerSupport setButtonFlag:_controller flags:LEFT_FLAG]; - break; - case LB: - [_controllerSupport setButtonFlag:_controller flags:LB_FLAG]; - break; - case RB: - [_controllerSupport setButtonFlag:_controller flags:RB_FLAG]; - break; - case Y: - [_controllerSupport setButtonFlag:_controller flags:Y_FLAG]; - break; - case B: - [_controllerSupport setButtonFlag:_controller flags:B_FLAG]; - break; - case A: - [_controllerSupport setButtonFlag:_controller flags:A_FLAG]; - break; - case X: - [_controllerSupport setButtonFlag:_controller flags:X_FLAG]; - break; - - default: - break; - } - [_controllerSupport updateFinished:_controller]; -} - -void onButtonUp(struct Gamepad_device * device, unsigned int buttonID, double timestamp, void * context) { - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - switch (buttonID) { - case SELECT: - [_controllerSupport clearButtonFlag:_controller flags:BACK_FLAG]; - break; - case L3: - [_controllerSupport clearButtonFlag:_controller flags:LS_CLK_FLAG]; - break; - case R3: - [_controllerSupport clearButtonFlag:_controller flags:RS_CLK_FLAG]; - break; - case START: - [_controllerSupport clearButtonFlag:_controller flags:PLAY_FLAG]; - break; - case UP: - [_controllerSupport clearButtonFlag:_controller flags:UP_FLAG]; - break; - case RIGHT: - [_controllerSupport clearButtonFlag:_controller flags:RIGHT_FLAG]; - break; - case DOWN: - [_controllerSupport clearButtonFlag:_controller flags:DOWN_FLAG]; - break; - case LEFT: - [_controllerSupport clearButtonFlag:_controller flags:LEFT_FLAG]; - break; - case LB: - [_controllerSupport clearButtonFlag:_controller flags:LB_FLAG]; - break; - case RB: - [_controllerSupport clearButtonFlag:_controller flags:RB_FLAG]; - break; - case Y: - [_controllerSupport clearButtonFlag:_controller flags:Y_FLAG]; - break; - case B: - [_controllerSupport clearButtonFlag:_controller flags:B_FLAG]; - break; - case A: - [_controllerSupport clearButtonFlag:_controller flags:A_FLAG]; - break; - case X: - [_controllerSupport clearButtonFlag:_controller flags:X_FLAG]; - break; - - default: - break; - } - [_controllerSupport updateFinished:_controller]; -} - -void onAxisMoved(struct Gamepad_device * device, unsigned int axisID, float value, float lastValue, double timestamp, void * context) { - if (fabsf(lastValue - value) > 0.01) { - // The dualshock controller has much more than these axis because of the motion axis, so it - // is better to call the updateFinished in the cases, because otherwise all of these - // motion axis will also trigger an updateFinished event. - switch (axisID) { - case LEFT_X: - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - _controller.lastLeftStickX = value * 0X7FFE; - [_controllerSupport updateFinished:_controller]; - break; - case LEFT_Y: - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - _controller.lastLeftStickY = -value * 0X7FFE; - [_controllerSupport updateFinished:_controller]; - break; - case RIGHT_X: - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - _controller.lastRightStickX = value * 0X7FFE; - [_controllerSupport updateFinished:_controller]; - break; - case RIGHT_Y: - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - _controller.lastRightStickY = -value * 0X7FFE; - [_controllerSupport updateFinished:_controller]; - break; - case LT: - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - _controller.lastLeftTrigger = value * 0xFF; - [_controllerSupport updateFinished:_controller]; - break; - case RT: - _controller = [_controllers objectForKey:[NSNumber numberWithInteger:device->deviceID]]; - _controller.lastRightTrigger = value * 0xFF; - [_controllerSupport updateFinished:_controller]; - break; - - default: - break; - } - } -} - -void onDeviceAttached(struct Gamepad_device * device, void * context) { - [_controllerSupport assignGamepad:device]; - _controllers = [_controllerSupport getControllers]; -} - -void onDeviceRemoved(struct Gamepad_device * device, void * context) { - [_controllerSupport removeGamepad:device]; - _controllers = [_controllerSupport getControllers]; -} - -void initGamepad(ControllerSupport* controllerSupport) { - _controllerSupport = controllerSupport; - _controller = [[Controller alloc] init]; - Gamepad_deviceAttachFunc(onDeviceAttached, NULL); - Gamepad_deviceRemoveFunc(onDeviceRemoved, NULL); - Gamepad_buttonDownFunc(onButtonDown, NULL); - Gamepad_buttonUpFunc(onButtonUp, NULL); - Gamepad_axisMoveFunc(onAxisMoved, NULL); - Gamepad_init(); -} diff --git a/Moonlight macOS/Input/Moonlight macOS-Bridging-Header.h b/Moonlight macOS/Input/Moonlight macOS-Bridging-Header.h deleted file mode 100644 index 1b2cb5d..0000000 --- a/Moonlight macOS/Input/Moonlight macOS-Bridging-Header.h +++ /dev/null @@ -1,4 +0,0 @@ -// -// Use this file to import your target's public headers that you would like to expose to Swift. -// - diff --git a/Moonlight macOS/Input/OverlayView.h b/Moonlight macOS/Input/OverlayView.h deleted file mode 100644 index 534f016..0000000 --- a/Moonlight macOS/Input/OverlayView.h +++ /dev/null @@ -1,16 +0,0 @@ -// -// OverlayView.h -// Moonlight macOS -// -// Created by Felix Kratz on 01.04.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import - -@interface OverlayView : NSView - -- (id)initWithFrame:(NSRect)frame sender:(StreamView*)sender; -- (void)toggleOverlay:(int)codec; - -@end diff --git a/Moonlight macOS/Input/OverlayView.m b/Moonlight macOS/Input/OverlayView.m deleted file mode 100644 index 39d3a75..0000000 --- a/Moonlight macOS/Input/OverlayView.m +++ /dev/null @@ -1,98 +0,0 @@ -// -// OverlayView.m -// Moonlight macOS -// -// Created by Felix Kratz on 01.04.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import "StreamView.h" -#import "OverlayView.h" -#import "NetworkTraffic.h" - -@implementation OverlayView { - StreamView* _streamView; - bool statsDisplayed; - unsigned long lastNetworkDown; - unsigned long lastNetworkUp; - NSTextField* _textFieldIncomingBitrate; - NSTextField* _textFieldOutgoingBitrate; - NSTextField* _textFieldCodec; - NSTextField* _textFieldFramerate; - NSTextField* _stageLabel; - - NSTimer* _statTimer; -} - -- (id)initWithFrame:(NSRect)frame sender:(StreamView*)sender -{ - self = [super initWithFrame:frame]; - if (self) { - _streamView = sender; - } - return self; -} - -- (void)initStats { - _textFieldCodec = [[NSTextField alloc] initWithFrame:NSMakeRect(5, NSScreen.mainScreen.frame.size.height - 22, 200, 17)]; - _textFieldIncomingBitrate = [[NSTextField alloc] initWithFrame:NSMakeRect(5, 5, 250, 17)]; - _textFieldOutgoingBitrate = [[NSTextField alloc] initWithFrame:NSMakeRect(5, 5 + 20, 250, 17)]; - _textFieldFramerate = [[NSTextField alloc] initWithFrame:NSMakeRect(NSScreen.mainScreen.frame.size.width - 50, NSScreen.mainScreen.frame.size.height - 22, 50, 17)]; - - [self setupTextField:_textFieldOutgoingBitrate]; - [self setupTextField:_textFieldIncomingBitrate]; - [self setupTextField:_textFieldCodec]; - [self setupTextField:_textFieldFramerate]; -} - -- (void)setupTextField:(NSTextField*)textField { - textField.drawsBackground = false; - textField.bordered = false; - textField.editable = false; - textField.alignment = NSTextAlignmentLeft; - textField.textColor = [NSColor whiteColor]; - [self addSubview:textField]; -} - -- (void)toggleOverlay:(int)codec { - statsDisplayed = !statsDisplayed; - if (statsDisplayed) { - _streamView.frameCount = 0; - if (_textFieldIncomingBitrate == nil || _textFieldCodec == nil || _textFieldOutgoingBitrate == nil || _textFieldFramerate == nil) { - [self initStats]; - } - _statTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(statTimerTick) userInfo:nil repeats:true]; - NSLog(@"display stats"); - if (codec == 1) { - _textFieldCodec.stringValue = @"Codec: H.264"; - } - else if (codec == 256) { - _textFieldCodec.stringValue = @"Codec: HEVC/H.265"; - } - else { - _textFieldCodec.stringValue = @"Codec: Unknown"; - } - [self statTimerTick]; - } - else { - [_statTimer invalidate]; - _textFieldCodec.stringValue = @""; - _textFieldIncomingBitrate.stringValue = @""; - _textFieldOutgoingBitrate.stringValue = @""; - _textFieldFramerate.stringValue = @""; - } -} - -- (void)statTimerTick { - _textFieldFramerate.stringValue = [NSString stringWithFormat:@"%i fps", _streamView.frameCount]; - _streamView.frameCount = 0; - - unsigned long currentNetworkDown = getBytesDown(); - _textFieldIncomingBitrate.stringValue = [NSString stringWithFormat:@"Incoming Bitrate (System): %lu kbps", (currentNetworkDown - lastNetworkDown)*8 / 1000]; - lastNetworkDown = currentNetworkDown; - - unsigned long currentNetworkUp = getBytesUp(); - _textFieldOutgoingBitrate.stringValue = [NSString stringWithFormat:@"Outgoing Bitrate (System): %lu kbps", (currentNetworkUp - lastNetworkUp)*8 / 1000]; - lastNetworkUp = currentNetworkUp; -} -@end diff --git a/Moonlight macOS/Input/StreamView.h b/Moonlight macOS/Input/StreamView.h deleted file mode 100644 index 7123668..0000000 --- a/Moonlight macOS/Input/StreamView.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// StreamView.h -// Moonlight macOS -// -// Created by Felix Kratz on 10.03.18. -// Copyright (c) 2018 Felix Kratz. All rights reserved. -// - -@interface StreamView : NSView - -- (void)drawMessage:(NSString*)message; - -@property int codec; -@property unsigned short frameCount; - - -@end diff --git a/Moonlight macOS/Input/StreamView.m b/Moonlight macOS/Input/StreamView.m deleted file mode 100644 index 955124c..0000000 --- a/Moonlight macOS/Input/StreamView.m +++ /dev/null @@ -1,140 +0,0 @@ -// -// StreamView.m -// Moonlight macOS -// -// Created by Felix Kratz on 10.3.18. -// Copyright (c) 2018 Felix Kratz. All rights reserved. -// - -#import "StreamView.h" -#include -#import "DataManager.h" -#include -#include "keyboardTranslation.h" -#import "OverlayView.h" - -@implementation StreamView { - bool isDragging; - NSTrackingArea* _trackingArea; - OverlayView* _overlay; - NSTextField* _stageLabel; -} - -- (void) updateTrackingAreas { - if (_trackingArea != nil) { - [self removeTrackingArea:_trackingArea]; - } - NSTrackingAreaOptions options = (NSTrackingActiveAlways | NSTrackingInVisibleRect | - NSTrackingMouseEnteredAndExited | NSTrackingMouseMoved); - - _trackingArea = [[NSTrackingArea alloc] initWithRect:[self bounds] - options:options - owner:self - userInfo:nil]; - [self addTrackingArea:_trackingArea]; -} - --(void)mouseDragged:(NSEvent *)event { - if (isDragging) { - [self mouseMoved:event]; - } - else { - [self mouseDown:event]; - isDragging = true; - } -} - --(void)rightMouseDragged:(NSEvent *)event { - if (isDragging) { - [self mouseMoved:event]; - } - else { - [self rightMouseDown:event]; - isDragging = true; - } -} - --(void)scrollWheel:(NSEvent *)event { - LiSendScrollEvent(event.scrollingDeltaY); -} - -- (void)mouseDown:(NSEvent *)mouseEvent { - LiSendMouseButtonEvent(BUTTON_ACTION_PRESS, BUTTON_LEFT); -} - -- (void)mouseUp:(NSEvent *)mouseEvent { - isDragging = false; - LiSendMouseButtonEvent(BUTTON_ACTION_RELEASE, BUTTON_LEFT); -} - -- (void)rightMouseUp:(NSEvent *)mouseEvent { - isDragging = false; - LiSendMouseButtonEvent(BUTTON_ACTION_RELEASE, BUTTON_RIGHT); -} - -- (void)rightMouseDown:(NSEvent *)mouseEvent { - LiSendMouseButtonEvent(BUTTON_ACTION_PRESS, BUTTON_RIGHT); -} - -- (void)mouseMoved:(NSEvent *)mouseEvent { - LiSendMouseMoveEvent(mouseEvent.deltaX, mouseEvent.deltaY); -} - --(void)keyDown:(NSEvent *)event { - unsigned char keyChar = keyCharFromKeyCode(event.keyCode); - NSLog(@"DOWN: KeyCode: %hu, keyChar: %d, keyModifier: %lu \n", event.keyCode, keyChar, event.modifierFlags); - - LiSendKeyboardEvent(keyChar, KEY_ACTION_DOWN, modifierFlagForKeyModifier(event.modifierFlags)); - if (event.modifierFlags & kCGEventFlagMaskCommand && event.keyCode == kVK_ANSI_I) { - [self toggleStats]; - } -} - --(void)keyUp:(NSEvent *)event { - unsigned char keyChar = keyCharFromKeyCode(event.keyCode); - NSLog(@"UP: KeyChar: %d \n‚", keyChar); - LiSendKeyboardEvent(keyChar, KEY_ACTION_UP, modifierFlagForKeyModifier(event.modifierFlags)); -} - -- (void)flagsChanged:(NSEvent *)event { - unsigned char keyChar = keyCodeFromModifierKey(event.modifierFlags); - if(keyChar) { - NSLog(@"DOWN: FlagChanged: %hhu \n", keyChar); - LiSendKeyboardEvent(keyChar, KEY_ACTION_DOWN, 0x00); - } - else { - LiSendKeyboardEvent(58, KEY_ACTION_UP, 0x00); - } -} - -- (void)initStageLabel { - _stageLabel = [[NSTextField alloc] initWithFrame:NSMakeRect(NSScreen.mainScreen.frame.size.width/2 - 100, NSScreen.mainScreen.frame.size.height/2 - 8, 200, 17)]; - _stageLabel.drawsBackground = false; - _stageLabel.bordered = false; - _stageLabel.alignment = NSTextAlignmentCenter; - _stageLabel.textColor = [NSColor blackColor]; - - [self addSubview:_stageLabel]; -} - -- (void)toggleStats { - if (_overlay == nil) { - _overlay = [[OverlayView alloc] initWithFrame:self.frame sender:self]; - [self addSubview:_overlay]; - } - [_overlay toggleOverlay:_codec]; -} - -- (void)drawMessage:(NSString*)message { - dispatch_async(dispatch_get_main_queue(), ^{ - if (self->_stageLabel == nil) { - [self initStageLabel]; - } - self->_stageLabel.stringValue = message; - }); -} - -- (BOOL)acceptsFirstResponder { - return YES; -} -@end diff --git a/Moonlight macOS/Moonlight macOS.entitlements b/Moonlight macOS/Moonlight macOS.entitlements deleted file mode 100644 index b6f9416..0000000 --- a/Moonlight macOS/Moonlight macOS.entitlements +++ /dev/null @@ -1,18 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.device.bluetooth - - com.apple.security.device.usb - - com.apple.security.files.user-selected.read-only - - com.apple.security.network.client - - com.apple.security.network.server - - - diff --git a/Moonlight macOS/Network/NetworkTraffic.h b/Moonlight macOS/Network/NetworkTraffic.h deleted file mode 100644 index 9d228a8..0000000 --- a/Moonlight macOS/Network/NetworkTraffic.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// NetworkTraffic.h -// Moonlight macOS -// -// Created by Felix Kratz on 28.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#ifndef NetworkTraffic_h -#define NetworkTraffic_h - -unsigned long getBytesDown(void); -unsigned long getBytesUp(void); - -#endif /* NetworkTraffic_h */ diff --git a/Moonlight macOS/Network/NetworkTraffic.m b/Moonlight macOS/Network/NetworkTraffic.m deleted file mode 100644 index ffa23f4..0000000 --- a/Moonlight macOS/Network/NetworkTraffic.m +++ /dev/null @@ -1,50 +0,0 @@ -// -// NetworkTraffic.m -// Moonlight macOS -// -// Created by Felix Kratz on 28.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import "NetworkTraffic.h" -#include -#include - -struct ifaddrs *ifap, *ifa; -unsigned long da; - -unsigned long getBytesDown() { - da = 0; - getifaddrs (&ifap); - ifa = ifap; - while (ifa != NULL) { - if (ifa->ifa_addr->sa_family == AF_LINK) { - const struct if_data *ifa_data = (struct if_data *)ifa->ifa_data; - if (ifa_data != NULL) { - da += ifa_data->ifi_ibytes; - } - } - ifa = ifa->ifa_next; - } - - freeifaddrs(ifap); - return da; -} - -unsigned long getBytesUp() { - da = 0; - getifaddrs (&ifap); - ifa = ifap; - while (ifa != NULL) { - if (ifa->ifa_addr->sa_family == AF_LINK) { - const struct if_data *ifa_data = (struct if_data *)ifa->ifa_data; - if (ifa_data != NULL) { - da += ifa_data->ifi_obytes; - } - } - ifa = ifa->ifa_next; - } - - freeifaddrs(ifap); - return da; -} diff --git a/Moonlight macOS/Utility/keepAlive.h b/Moonlight macOS/Utility/keepAlive.h deleted file mode 100644 index 4fa3800..0000000 --- a/Moonlight macOS/Utility/keepAlive.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// keepAlive.h -// LittleHelper -// -// Created by Felix Kratz on 31.10.17. -// Copyright © 2017 Felix Kratz. All rights reserved. -// -#ifndef keepAlive_h -#define keepAlive_h - -@interface keepAlive : NSObject - -+(void) keepSystemAlive; -+(void) allowSleep; - -@end - -#endif /* keepAlive_h */ - diff --git a/Moonlight macOS/Utility/keepAlive.m b/Moonlight macOS/Utility/keepAlive.m deleted file mode 100644 index 5249e0f..0000000 --- a/Moonlight macOS/Utility/keepAlive.m +++ /dev/null @@ -1,30 +0,0 @@ -// -// keepAlive.m -// LittleHelper -// -// Created by Felix Kratz on 31.10.17. -// Copyright © 2017 Felix Kratz. All rights reserved. -// - -#import -#import -#import "keepAlive.h" - - -@implementation keepAlive - -CFStringRef reasonForActivity= CFSTR("Moonlight keeps the system awake"); -IOPMAssertionID assertionID; - -+(void) keepSystemAlive -{ - - IOPMAssertionCreateWithName(kIOPMAssertionTypeNoDisplaySleep, - kIOPMAssertionLevelOn, reasonForActivity, &assertionID); -} - -+(void) allowSleep -{ - IOPMAssertionRelease(assertionID); -} -@end diff --git a/Moonlight macOS/Utility/keyboardTranslation.h b/Moonlight macOS/Utility/keyboardTranslation.h deleted file mode 100644 index 6be2b23..0000000 --- a/Moonlight macOS/Utility/keyboardTranslation.h +++ /dev/null @@ -1,18 +0,0 @@ -// -// keyboardTranslation.h -// Moonlight macOS -// -// Created by Felix Kratz on 10.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// -#include -#include - -#ifndef keyboardTranslation_h -#define keyboardTranslation_h - -CGKeyCode keyCharFromKeyCode(CGKeyCode keyCode); -CGKeyCode keyCodeFromModifierKey(NSEventModifierFlags keyModifier); -char modifierFlagForKeyModifier(NSEventModifierFlags keyModifier); - -#endif /* keyboardTranslation_h */ diff --git a/Moonlight macOS/Utility/keyboardTranslation.m b/Moonlight macOS/Utility/keyboardTranslation.m deleted file mode 100644 index bb98b33..0000000 --- a/Moonlight macOS/Utility/keyboardTranslation.m +++ /dev/null @@ -1,142 +0,0 @@ -// -// keyboardTranslation.m -// Moonlight macOS -// -// Created by Felix Kratz on 10.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import "keyboardTranslation.h" -#import - -typedef enum { - NOKEY, - VK_BACKSPACE = 0x08, - VK_TAB = 0x09, - VK_ENTER = 0x0D, - VK_SPACE = 0x20, - VK_LEFT = 0x25, - VK_UP, - VK_RIGHT, - VK_DOWN, - VK_SHIFT = 0xA0, - VK_CTRL = 0xA2, - VK_ALT = 0xA4, - VK_COMMA = 0xBC, - VK_MINUS = 0xBD, - VK_PERIOD = 0xBE, - VK_ESC = 0x1B, - VK_F1 = 0x70, - VK_F2, - VK_F3, - VK_F4, - VK_F5, - VK_F6, - VK_F7, - VK_F8, - VK_F9, - VK_F10, - VK_F11, - VK_F12, - VK_F13, - VK_F14, - VK_F15, - VK_DEL = 0x7F, -} SpecialKeyCodes; - -CGKeyCode keyCodeFromModifierKey(NSEventModifierFlags keyModifier) { - if (keyModifier & kCGEventFlagMaskShift) { - return VK_SHIFT; - } - if (keyModifier & kCGEventFlagMaskAlternate) { - return VK_ALT; - } - if (keyModifier & kCGEventFlagMaskControl) { - return VK_CTRL; - } - return NOKEY; -} - -char modifierFlagForKeyModifier(NSEventModifierFlags keyModifier) { - if (keyModifier & kCGEventFlagMaskShift) { - return MODIFIER_SHIFT; - } - if (keyModifier & kCGEventFlagMaskAlternate) { - return MODIFIER_ALT; - } - if (keyModifier & kCGEventFlagMaskControl) { - return MODIFIER_CTRL; - } - return NOKEY; -} - -CGKeyCode keyCharFromKeyCode(CGKeyCode keyCode) { - switch (keyCode) { - case kVK_ANSI_A: return 'A'; - case kVK_ANSI_S: return 'S'; - case kVK_ANSI_D: return 'D'; - case kVK_ANSI_F: return 'F'; - case kVK_ANSI_H: return 'H'; - case kVK_ANSI_G: return 'G'; - case kVK_ANSI_Y: return 'Y'; - case kVK_ANSI_X: return 'X'; - case kVK_ANSI_C: return 'C'; - case kVK_ANSI_V: return 'V'; - case kVK_ANSI_B: return 'B'; - case kVK_ANSI_Q: return 'Q'; - case kVK_ANSI_W: return 'W'; - case kVK_ANSI_E: return 'E'; - case kVK_ANSI_R: return 'R'; - case kVK_ANSI_Z: return 'Z'; - case kVK_ANSI_T: return 'T'; - case kVK_ANSI_1: return '1'; - case kVK_ANSI_2: return '2'; - case kVK_ANSI_3: return '3'; - case kVK_ANSI_4: return '4'; - case kVK_ANSI_6: return '6'; - case kVK_ANSI_5: return '5'; - case kVK_ANSI_9: return '9'; - case kVK_ANSI_7: return '7'; - case kVK_ANSI_8: return '8'; - case kVK_ANSI_0: return '0'; - case kVK_ANSI_O: return 'O'; - case kVK_ANSI_U: return 'U'; - case kVK_ANSI_I: return 'I'; - case kVK_ANSI_P: return 'P'; - case kVK_ANSI_L: return 'L'; - case kVK_ANSI_J: return 'J'; - case kVK_ANSI_K: return 'K'; - case kVK_ANSI_N: return 'N'; - case kVK_ANSI_M: return 'M'; - case kVK_Return: return VK_ENTER; - case kVK_ANSI_Period: return VK_PERIOD; - case kVK_ANSI_Comma: return VK_COMMA; - case kVK_ANSI_Minus: return VK_MINUS; - case kVK_Tab: return VK_TAB; - case kVK_Space: return VK_SPACE; - case kVK_Delete: return VK_BACKSPACE; - case kVK_Escape: return VK_ESC; - case kVK_F1: return VK_F1; - case kVK_F2: return VK_F2; - case kVK_F3: return VK_F3; - case kVK_F4: return VK_F4; - case kVK_F5: return VK_F5; - case kVK_F6: return VK_F6; - case kVK_F7: return VK_F7; - case kVK_F8: return VK_F8; - case kVK_F9: return VK_F9; - case kVK_F10: return VK_F10; - case kVK_F11: return VK_F11; - case kVK_F12: return VK_F12; - case kVK_F13: return VK_F13; - case kVK_F14: return VK_F14; - case kVK_F15: return VK_F15; - case kVK_LeftArrow: return VK_LEFT; - case kVK_RightArrow: return VK_RIGHT; - case kVK_DownArrow: return VK_DOWN; - case kVK_UpArrow: return VK_UP; - - default: - return NOKEY; - } -} diff --git a/Moonlight macOS/ViewController/SettingsViewController.h b/Moonlight macOS/ViewController/SettingsViewController.h deleted file mode 100644 index 1c71d26..0000000 --- a/Moonlight macOS/ViewController/SettingsViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// SettingsViewController.h -// Moonlight macOS -// -// Created by Felix Kratz on 11.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import - -@interface SettingsViewController : NSViewController -@property (weak) IBOutlet NSTextField *textFieldResolutionHeight; -@property (weak) IBOutlet NSTextField *textFieldResolutionWidth; -@property (weak) IBOutlet NSTextField *textFieldBitrate; -@property (weak) IBOutlet NSTextField *textFieldFPS; -@property (weak) IBOutlet NSButton *buttonStreamingRemotelyToggle; -- (NSString*) getCurrentHost; -- (NSInteger) getChosenBitrate; -- (NSInteger) getChosenStreamWidth; -- (NSInteger) getChosenStreamHeight; -- (NSInteger) getChosenFrameRate; -- (NSInteger) getRemoteOptions; -@end diff --git a/Moonlight macOS/ViewController/SettingsViewController.m b/Moonlight macOS/ViewController/SettingsViewController.m deleted file mode 100644 index b138f30..0000000 --- a/Moonlight macOS/ViewController/SettingsViewController.m +++ /dev/null @@ -1,71 +0,0 @@ -// -// SettingsViewController.m -// Moonlight macOS -// -// Created by Felix Kratz on 11.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import "SettingsViewController.h" -#import "DataManager.h" - -@interface SettingsViewController () - -@end - -@implementation SettingsViewController - -NSString* host; - -- (void)viewDidLoad { - [super viewDidLoad]; - [self loadSettings]; - // Do view setup here. -} - -- (void) controlTextDidChange:(NSNotification *)obj { - //[self saveSettings]; -} - -- (NSInteger) getRemoteOptions { - return _buttonStreamingRemotelyToggle.state == NSOnState ? 1 : 0; -} - -- (NSInteger) getChosenFrameRate { - return _textFieldFPS.integerValue; -} - -- (NSInteger) getChosenStreamHeight { - return _textFieldResolutionHeight.integerValue; -} - -- (NSInteger) getChosenStreamWidth { - return _textFieldResolutionWidth.integerValue; -} - -- (NSInteger) getChosenBitrate { - return _textFieldBitrate.integerValue; -} - -- (void) loadSettings { - DataManager* dataMan = [[DataManager alloc] init]; - TemporarySettings* currentSettings = [dataMan getSettings]; - - // Bitrate is persisted in kbps - _textFieldBitrate.integerValue = [currentSettings.bitrate integerValue]; - _textFieldFPS.integerValue = [currentSettings.framerate integerValue]; - _textFieldResolutionHeight.integerValue = [currentSettings.height integerValue]; - _textFieldResolutionWidth.integerValue = [currentSettings.width integerValue]; - _buttonStreamingRemotelyToggle.state = [currentSettings.streamingRemotely integerValue] == 0 ? NSOffState: NSOnState; -} - -- (void)didReceiveMemoryWarning { - // Dispose of any resources that can be recreated. -} - --(NSString*) getCurrentHost { - return host; -} - - -@end diff --git a/Moonlight macOS/ViewController/StreamFrameViewController.h b/Moonlight macOS/ViewController/StreamFrameViewController.h deleted file mode 100644 index 410bbc1..0000000 --- a/Moonlight macOS/ViewController/StreamFrameViewController.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// StreamFrameViewController.h -// Moonlight macOS -// -// Created by Felix Kratz on 09.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import -#import "Connection.h" -#import "StreamConfiguration.h" -#import "StreamView.h" -#import "ViewController.h" - -@interface StreamFrameViewController : NSViewController - -- (ViewController*) _origin; - -- (void)setOrigin: (ViewController*) viewController; - -@property (nonatomic) StreamConfiguration* streamConfig; -@property (strong) IBOutlet StreamView *streamView; -@property (weak) IBOutlet NSProgressIndicator *progressIndicator; - -@end diff --git a/Moonlight macOS/ViewController/StreamFrameViewController.m b/Moonlight macOS/ViewController/StreamFrameViewController.m deleted file mode 100644 index c18d7c2..0000000 --- a/Moonlight macOS/ViewController/StreamFrameViewController.m +++ /dev/null @@ -1,144 +0,0 @@ -// -// StreamFrameViewController.m -// Moonlight macOS -// -// Created by Felix Kratz on 09.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import "StreamFrameViewController.h" -#import "VideoDecoderRenderer.h" -#import "StreamManager.h" -#import "Gamepad.h" -#import "keepAlive.h" -#import "ControllerSupport.h" -#import "StreamView.h" - -@interface StreamFrameViewController () -@end - -@implementation StreamFrameViewController { - StreamManager *_streamMan; - StreamConfiguration *_streamConfig; - NSTimer* _eventTimer; - NSTimer* _searchTimer; - ViewController* _origin; - ControllerSupport* _controllerSupport; -} - --(ViewController*) _origin { - return _origin; -} - -- (void)viewDidLoad { - [super viewDidLoad]; - [keepAlive keepSystemAlive]; - self.streamConfig = _streamConfig; - - _streamMan = [[StreamManager alloc] initWithConfig:self.streamConfig - renderView:self.view - connectionCallbacks:self]; - NSOperationQueue* opQueue = [[NSOperationQueue alloc] init]; - [opQueue addOperation:_streamMan]; - - // Initialize the controllers (GC and IOHID) - // I have not tested it, but i think there will be a bug, when mixing GC and IOHID Controllers, because all GCControllers also register as IOHID Controllers. - // To fix this, we need to get the IOHIDDeviceRef for the GCController and compare it with every IOHID Controller. - // This shouldn't be a problem as long as this will not be put on the mac app store, as the IOHIDDeviceRef is a private field. - // The other "fix" would be to disable explicit GC support for the mac version for now. - // Can someone test this? - _controllerSupport = [[ControllerSupport alloc] init]; - - // The gamepad currently gets polled at 1/Framerate. - _eventTimer = [NSTimer scheduledTimerWithTimeInterval:1.0/_streamConfig.frameRate target:self selector:@selector(eventTimerTick) userInfo:nil repeats:true]; - - // We search for new devices every 2 seconds. - _searchTimer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(searchTimerTick) userInfo:nil repeats:true]; -} - -- (void)eventTimerTick { - Gamepad_processEvents(); -} - -- (void)searchTimerTick { - Gamepad_detectDevices(); -} - -- (void) viewDidAppear { - [super viewDidAppear]; - - // Hide the cursor and disconnect it from the mouse movement - [NSCursor hide]; - CGAssociateMouseAndMouseCursorPosition(false); - - //During the setup the window should not be resizable, but to use the fullscreen feature of macOS it has to be resizable. - [self.view.window setStyleMask:[self.view.window styleMask] | NSWindowStyleMaskResizable]; - - if (self.view.bounds.size.height != NSScreen.mainScreen.frame.size.height || self.view.bounds.size.width != NSScreen.mainScreen.frame.size.width) { - [self.view.window toggleFullScreen:self]; - } - [_progressIndicator startAnimation:nil]; - [_origin dismissController:nil]; - _origin = nil; -} - --(void)viewWillDisappear { - [NSCursor unhide]; - [keepAlive allowSleep]; - [_streamMan stopStream]; - CGAssociateMouseAndMouseCursorPosition(true); - if (self.view.bounds.size.height == NSScreen.mainScreen.frame.size.height && self.view.bounds.size.width == NSScreen.mainScreen.frame.size.width) { - [self.view.window toggleFullScreen:self]; - [self.view.window setStyleMask:[self.view.window styleMask] & ~NSWindowStyleMaskResizable]; - } -} - -- (void)connectionStarted { - dispatch_async(dispatch_get_main_queue(), ^{ - [self->_progressIndicator stopAnimation:nil]; - self->_progressIndicator.hidden = true; - }); -} - -- (void)connectionTerminated:(long)errorCode { - [_streamMan stopStream]; - [self transitionToSetupView:1]; -} - -- (void)transitionToSetupView:(long)errorCode { - dispatch_async(dispatch_get_main_queue(), ^{ - NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Mac" bundle:nil]; - ViewController* view = (ViewController*)[storyBoard instantiateControllerWithIdentifier :@"setupFrameVC"]; - [view setError:errorCode]; - self.view.window.contentViewController = view; - }); -} - -- (void)setOrigin: (ViewController*) viewController { - _origin = viewController; -} - -- (void)displayMessage:(const char *)message { - //[_streamView drawMessage:[NSString stringWithFormat:@"%s", message]]; -} - -- (void)displayTransientMessage:(const char *)message { -} - -- (void)launchFailed:(NSString *)message { - -} - -- (void)stageComplete:(const char *)stageName { - -} - -- (void)stageFailed:(const char *)stageName withError:(long)errorCode { - //[_streamView drawMessage:[NSString stringWithFormat:@"Stage: %s failed with code: %li", stageName, errorCode]]; -} - -- (void)stageStarting:(const char *)stageName { - //[_streamView drawMessage:[NSString stringWithFormat:@"%s", stageName]]; -} - -@end diff --git a/Moonlight macOS/ViewController/ViewController.h b/Moonlight macOS/ViewController/ViewController.h deleted file mode 100644 index 225ee7f..0000000 --- a/Moonlight macOS/ViewController/ViewController.h +++ /dev/null @@ -1,34 +0,0 @@ -// -// ViewController.h -// Moonlight macOS -// -// Created by Felix Kratz on 09.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import -#import "PairManager.h" -#import "StreamConfiguration.h" - -@interface ViewController : NSViewController - -- (IBAction)buttonLaunchPressed:(id)sender; -- (IBAction)textFieldAction:(id)sender; -- (IBAction)buttonConnectPressed:(id)sender; -- (IBAction)buttonSettingsPressed:(id)sender; -- (IBAction)popupButtonSelectionPressed:(id)sender; - -- (void)setError:(long)errorCode; -- (long) error; - -@property (weak) IBOutlet NSLayoutConstraint *layoutConstraintSetupFrame; -@property (weak) IBOutlet NSButton *buttonConnect; -@property (weak) IBOutlet NSTextField *textFieldHost; -@property (weak) IBOutlet NSButton *buttonSettings; -@property (weak) IBOutlet NSButton *buttonLaunch; -@property (weak) IBOutlet NSPopUpButton *popupButtonSelection; -@property (weak) IBOutlet NSView *containerViewController; - - -@end - diff --git a/Moonlight macOS/ViewController/ViewController.m b/Moonlight macOS/ViewController/ViewController.m deleted file mode 100644 index 5d008da..0000000 --- a/Moonlight macOS/ViewController/ViewController.m +++ /dev/null @@ -1,236 +0,0 @@ -// -// ViewController.m -// Moonlight macOS -// -// Created by Felix Kratz on 09.03.18. -// Copyright © 2018 Felix Kratz. All rights reserved. -// - -#import "ViewController.h" - -#import "CryptoManager.h" -#import "HttpManager.h" -#import "Connection.h" -#import "StreamManager.h" -#import "Utils.h" -#import "DataManager.h" -#import "TemporarySettings.h" -#import "WakeOnLanManager.h" -#import "AppListResponse.h" -#import "ServerInfoResponse.h" -#import "StreamFrameViewController.h" -#import "TemporaryApp.h" -#import "IdManager.h" -#import "SettingsViewController.h" -#import "ConnectionHelper.h" - -@implementation ViewController{ - NSOperationQueue* _opQueue; - TemporaryHost* _selectedHost; - NSString* _uniqueId; - NSData* _cert; - StreamConfiguration* _streamConfig; - NSArray* _sortedAppList; - NSSet* _appList; - NSString* _host; - SettingsViewController *_settingsView; - CGFloat settingsFrameHeight; - bool showSettings; - NSAlert* _alert; - long error; -} - -- (long)error { - return error; -} - -- (void)setError:(long)errorCode { - error = errorCode; -} - -- (void)viewDidLoad { - [super viewDidLoad]; - [CryptoManager generateKeyPairUsingSSl]; - _uniqueId = [IdManager getUniqueId]; - _cert = [CryptoManager readCertFromFile]; - - _opQueue = [[NSOperationQueue alloc] init]; - - // Do any additional setup after loading the view. -} - -- (void)viewWillAppear { - [super viewWillAppear]; - if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AppleInterfaceStyle"] isEqual: @"Dark"]) { - [self.view.window setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]]; - } -} - -- (void)viewDidAppear { - [super viewDidAppear]; - - if (self.view.bounds.size.height == NSScreen.mainScreen.frame.size.height && self.view.bounds.size.width == NSScreen.mainScreen.frame.size.width) - { - [self.view.window toggleFullScreen:self]; - [self.view.window setStyleMask:[self.view.window styleMask] & ~NSWindowStyleMaskResizable]; - return; - } - [_buttonLaunch setEnabled:false]; - [_popupButtonSelection removeAllItems]; - _settingsView = [self.childViewControllers lastObject]; - - if (_settingsView.getCurrentHost != nil) - _textFieldHost.stringValue = _settingsView.getCurrentHost; - settingsFrameHeight = _layoutConstraintSetupFrame.constant; - _layoutConstraintSetupFrame.constant = 0; - showSettings = false; - - if (error != 0) { - [self showAlert:[NSString stringWithFormat: @"The connection terminated."]]; - } -} - --(void) showAlert:(NSString*) message { - dispatch_async(dispatch_get_main_queue(), ^{ - self->_alert = [NSAlert new]; - self->_alert.messageText = message; - [self->_alert beginSheetModalForWindow:[self.view window] completionHandler:^(NSInteger result) { - NSLog(@"Success"); - }]; - }); -} - - -- (void)setRepresentedObject:(id)representedObject { - [super setRepresentedObject:representedObject]; - - // Update the view, if already loaded. -} - -- (void) saveSettings { - DataManager* dataMan = [[DataManager alloc] init]; - NSInteger framerate = [_settingsView getChosenFrameRate]; - NSInteger height = [_settingsView getChosenStreamHeight]; - NSInteger width = [_settingsView getChosenStreamWidth]; - NSInteger streamingRemotely = [_settingsView getRemoteOptions]; - NSInteger bitrate = [_settingsView getChosenBitrate]; - [dataMan saveSettingsWithBitrate:bitrate framerate:framerate height:height width:width - onscreenControls:0 remote:streamingRemotely]; -} - - -- (void)controlTextDidChange:(NSNotification *)obj { - -} - -- (IBAction)buttonLaunchPressed:(id)sender { - [self saveSettings]; - DataManager* dataMan = [[DataManager alloc] init]; - TemporarySettings* streamSettings = [dataMan getSettings]; - _streamConfig = [[StreamConfiguration alloc] init]; - _streamConfig.frameRate = [streamSettings.framerate intValue]; - _streamConfig.bitRate = [streamSettings.bitrate intValue]; - _streamConfig.height = [streamSettings.height intValue]; - _streamConfig.width = [streamSettings.width intValue]; - _streamConfig.streamingRemotely = [streamSettings.streamingRemotely intValue]; - _streamConfig.host = _textFieldHost.stringValue; - _streamConfig.appID = [_sortedAppList[_popupButtonSelection.indexOfSelectedItem] id]; - [self transitionToStreamView]; -} - -- (IBAction)textFieldAction:(id)sender { - [self buttonConnectPressed:self]; -} - -- (IBAction)buttonConnectPressed:(id)sender { - _host = _textFieldHost.stringValue; - HttpManager* hMan = [[HttpManager alloc] initWithHost:_textFieldHost.stringValue - uniqueId:_uniqueId - deviceName:deviceName - cert:_cert]; - - ServerInfoResponse* serverInfoResp = [[ServerInfoResponse alloc] init]; - [hMan executeRequestSynchronously:[HttpRequest requestForResponse:serverInfoResp withUrlRequest:[hMan newServerInfoRequest] - fallbackError:401 fallbackRequest:[hMan newHttpServerInfoRequest]]]; - - if ([[serverInfoResp getStringTag:@"PairStatus"] isEqualToString:@"1"]) { - NSLog(@"alreadyPaired"); - [self alreadyPaired]; - } else { - // Polling the server while pairing causes the server to screw up - NSLog(@"Pairing"); - dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ - HttpManager* hMan = [[HttpManager alloc] initWithHost:self->_host uniqueId:self->_uniqueId deviceName:deviceName cert:self->_cert]; - PairManager* pMan = [[PairManager alloc] initWithManager:hMan andCert:self->_cert callback:self]; - [self->_opQueue addOperation:pMan]; - }); - } -} - -- (IBAction)buttonSettingsPressed:(id)sender { - showSettings = !showSettings; - if(showSettings) { - _layoutConstraintSetupFrame.constant = settingsFrameHeight; - } - else { - _layoutConstraintSetupFrame.constant = 0; - } -} - -- (IBAction)popupButtonSelectionPressed:(id)sender { -} - -- (void)alreadyPaired { - dispatch_async(dispatch_get_main_queue(), ^{ - [self->_popupButtonSelection setEnabled:true]; - [self->_popupButtonSelection setHidden:false]; - [self->_buttonConnect setEnabled:false]; - [self->_buttonConnect setHidden:true]; - [self->_buttonLaunch setEnabled:true]; - [self->_textFieldHost setEnabled:false]; - }); - [self searchForHost:_host]; - [self updateAppsForHost]; - [self populatePopupButton]; -} - -- (void)searchForHost:(NSString*) hostAddress { - _appList = [ConnectionHelper getAppListForHostWithHostIP:_textFieldHost.stringValue deviceName:deviceName cert:_cert uniqueID:_uniqueId].getAppList; -} - -- (void)populatePopupButton { - for (int i = 0; i < _appList.count; i++) { - [_popupButtonSelection addItemWithTitle:[_sortedAppList[i] name]]; - } -} - -- (void)pairFailed:(NSString *)message { - [self showAlert:[NSString stringWithFormat: @"%@", message]]; -} - -- (void)pairSuccessful { - dispatch_async(dispatch_get_main_queue(), ^{ - [self.view.window endSheet:self->_alert.window]; - self->_alert = nil; - [self alreadyPaired]; - }); -} - -- (void)showPIN:(NSString *)PIN { - [self showAlert:[NSString stringWithFormat: @"PIN: %@", PIN]]; -} - -- (void) updateAppsForHost { - _sortedAppList = [_appList allObjects]; - _sortedAppList = [_sortedAppList sortedArrayUsingSelector:@selector(compareName:)]; -} - -- (void)transitionToStreamView { - NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Mac" bundle:nil]; - StreamFrameViewController* streamFrame = (StreamFrameViewController*)[storyBoard instantiateControllerWithIdentifier :@"streamFrameVC"]; - streamFrame.streamConfig = _streamConfig; - [streamFrame setOrigin:self]; - self.view.window.contentViewController = streamFrame; -} - -@end diff --git a/Moonlight macOS/main.m b/Moonlight macOS/main.m deleted file mode 100644 index 898a17e..0000000 --- a/Moonlight macOS/main.m +++ /dev/null @@ -1,13 +0,0 @@ -// -// main.m -// Moonlight macOS -// -// Created by Felix on 09.03.18. -// Copyright © 2018 Felix. All rights reserved. -// - -#import - -int main(int argc, const char * argv[]) { - return NSApplicationMain(argc, argv); -} diff --git a/libs/gamepad/LICENSE.txt b/libs/gamepad/LICENSE.txt deleted file mode 100644 index c13ad5f..0000000 --- a/libs/gamepad/LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/* -The MIT License (MIT) - -Copyright (c) 2014 Tim Caswell - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -*/ diff --git a/libs/gamepad/include/gamepad/Gamepad.h b/libs/gamepad/include/gamepad/Gamepad.h deleted file mode 100755 index 3e2acf1..0000000 --- a/libs/gamepad/include/gamepad/Gamepad.h +++ /dev/null @@ -1,134 +0,0 @@ -/* - Copyright (c) 2014 Alex Diener - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Alex Diener alex@ludobloom.com -*/ - -#ifndef __GAMEPAD_H__ -#define __GAMEPAD_H__ -#ifdef __cplusplus -extern "C" { -#endif - -#if _MSC_VER && _MSC_VER <= 1600 -#define bool int -#define true 1 -#define false 0 -#else -#include -#endif - -struct Gamepad_device { - // Unique device identifier for application session, starting at 0 for the first device attached and - // incrementing by 1 for each additional device. If a device is removed and subsequently reattached - // during the same application session, it will have a new deviceID. - unsigned int deviceID; - - // Human-readable device name - const char * description; - - // USB vendor/product IDs as returned by the driver. Can be used to determine the particular model of device represented. - int vendorID; - int productID; - - // Number of axis elements belonging to the device - unsigned int numAxes; - - // Number of button elements belonging to the device - unsigned int numButtons; - - // Array[numAxes] of values representing the current state of each axis, in the range [-1..1] - float * axisStates; - - // Array[numButtons] of values representing the current state of each button - bool * buttonStates; - - // Platform-specific device data storage. Don't touch unless you know what you're doing and don't - // mind your code breaking in future versions of this library. - void * privateData; -}; - -/* Initializes gamepad library and detects initial devices. Call this before any other Gamepad_*() - function, other than callback registration functions. If you want to receive deviceAttachFunc - callbacks from devices detected in Gamepad_init(), you must call Gamepad_deviceAttachFunc() - before calling Gamepad_init(). - - This function must be called from the same thread that will be calling Gamepad_processEvents() - and Gamepad_detectDevices(). */ -void Gamepad_init(void); - -/* Tears down all data structures created by the gamepad library and releases any memory that was - allocated. It is not necessary to call this function at application termination, but it's - provided in case you want to free memory associated with gamepads at some earlier time. */ -void Gamepad_shutdown(void); - -/* Returns the number of currently attached gamepad devices. */ -unsigned int Gamepad_numDevices(void); - -/* Returns the specified Gamepad_device struct, or NULL if deviceIndex is out of bounds. */ -struct Gamepad_device * Gamepad_deviceAtIndex(unsigned int deviceIndex); - -/* Polls for any devices that have been attached since the last call to Gamepad_detectDevices() or - Gamepad_init(). If any new devices are found, the callback registered with - Gamepad_deviceAttachFunc() (if any) will be called once per newly detected device. - - Note that depending on implementation, you may receive button and axis event callbacks for - devices that have not yet been detected with Gamepad_detectDevices(). You can safely ignore - these events, but be aware that your callbacks might receive a device ID that hasn't been seen - by your deviceAttachFunc. */ -void Gamepad_detectDevices(void); - -/* Reads pending input from all attached devices and calls the appropriate input callbacks, if any - have been registered. */ -void Gamepad_processEvents(void); - -/* Registers a function to be called whenever a device is attached. The specified function will be - called only during calls to Gamepad_init() and Gamepad_detectDevices(), in the thread from - which those functions were called. Calling this function with a NULL argument will stop any - previously registered callback from being called subsequently. */ -void Gamepad_deviceAttachFunc(void (* callback)(struct Gamepad_device * device, void * context), void * context); - -/* Registers a function to be called whenever a device is detached. The specified function can be - called at any time, and will not necessarily be called from the main thread. Calling this - function with a NULL argument will stop any previously registered callback from being called - subsequently. */ -void Gamepad_deviceRemoveFunc(void (* callback)(struct Gamepad_device * device, void * context), void * context); - -/* Registers a function to be called whenever a button on any attached device is pressed. The - specified function will be called only during calls to Gamepad_processEvents(), in the - thread from which Gamepad_processEvents() was called. Calling this function with a NULL - argument will stop any previously registered callback from being called subsequently. */ -void Gamepad_buttonDownFunc(void (* callback)(struct Gamepad_device * device, unsigned int buttonID, double timestamp, void * context), void * context); - -/* Registers a function to be called whenever a button on any attached device is released. The - specified function will be called only during calls to Gamepad_processEvents(), in the - thread from which Gamepad_processEvents() was called. Calling this function with a NULL - argument will stop any previously registered callback from being called subsequently. */ -void Gamepad_buttonUpFunc(void (* callback)(struct Gamepad_device * device, unsigned int buttonID, double timestamp, void * context), void * context); - -/* Registers a function to be called whenever an axis on any attached device is moved. The - specified function will be called only during calls to Gamepad_processEvents(), in the - thread from which Gamepad_processEvents() was called. Calling this function with a NULL - argument will stop any previously registered callback from being called subsequently. */ -void Gamepad_axisMoveFunc(void (* callback)(struct Gamepad_device * device, unsigned int axisID, float value, float lastValue, double timestamp, void * context), void * context); - -#ifdef __cplusplus -} -#endif -#endif diff --git a/libs/gamepad/libstem_gamepad.a b/libs/gamepad/libstem_gamepad.a deleted file mode 100644 index 94860d8..0000000 Binary files a/libs/gamepad/libstem_gamepad.a and /dev/null differ diff --git a/libs/openssl/lib/macOS/libcrypto.a b/libs/openssl/lib/macOS/libcrypto.a deleted file mode 100644 index 82538e7..0000000 Binary files a/libs/openssl/lib/macOS/libcrypto.a and /dev/null differ diff --git a/libs/openssl/lib/macOS/libssl.a b/libs/openssl/lib/macOS/libssl.a deleted file mode 100644 index 6b4dda1..0000000 Binary files a/libs/openssl/lib/macOS/libssl.a and /dev/null differ diff --git a/libs/opus/lib/macOS/libopus.a b/libs/opus/lib/macOS/libopus.a deleted file mode 100644 index 1f97e62..0000000 Binary files a/libs/opus/lib/macOS/libopus.a and /dev/null differ diff --git a/moonlight-common/moonlight-common_mac.xcodeproj/project.pbxproj b/moonlight-common/moonlight-common_mac.xcodeproj/project.pbxproj deleted file mode 100644 index 4806abf..0000000 --- a/moonlight-common/moonlight-common_mac.xcodeproj/project.pbxproj +++ /dev/null @@ -1,514 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 48; - objects = { - -/* Begin PBXBuildFile section */ - 9857AEEA1EBE85A20084F99E /* RtpFecQueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 9857AEE91EBE85A20084F99E /* RtpFecQueue.c */; }; - 9857AEF01EBE85E10084F99E /* rs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9857AEEE1EBE85E10084F99E /* rs.c */; }; - 98AB2E401CAD425A0089BB98 /* AudioStream.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E1A1CAD423B0089BB98 /* AudioStream.c */; }; - 98AB2E411CAD425A0089BB98 /* ByteBuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E1B1CAD423B0089BB98 /* ByteBuffer.c */; }; - 98AB2E421CAD425A0089BB98 /* Connection.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E1D1CAD423B0089BB98 /* Connection.c */; }; - 98AB2E431CAD425A0089BB98 /* ControlStream.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E1E1CAD423B0089BB98 /* ControlStream.c */; }; - 98AB2E441CAD425A0089BB98 /* FakeCallbacks.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E1F1CAD423B0089BB98 /* FakeCallbacks.c */; }; - 98AB2E451CAD425A0089BB98 /* InputStream.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E211CAD423B0089BB98 /* InputStream.c */; }; - 98AB2E461CAD425A0089BB98 /* LinkedBlockingQueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E241CAD423B0089BB98 /* LinkedBlockingQueue.c */; }; - 98AB2E471CAD425A0089BB98 /* Misc.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E261CAD423B0089BB98 /* Misc.c */; }; - 98AB2E481CAD425A0089BB98 /* Platform.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E311CAD423B0089BB98 /* Platform.c */; }; - 98AB2E491CAD425A0089BB98 /* PlatformSockets.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E331CAD423B0089BB98 /* PlatformSockets.c */; }; - 98AB2E4A1CAD425A0089BB98 /* RtpReorderQueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E361CAD423B0089BB98 /* RtpReorderQueue.c */; }; - 98AB2E4B1CAD425A0089BB98 /* RtspConnection.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E391CAD423B0089BB98 /* RtspConnection.c */; }; - 98AB2E4C1CAD425A0089BB98 /* RtspParser.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E3A1CAD423B0089BB98 /* RtspParser.c */; }; - 98AB2E4D1CAD425A0089BB98 /* SdpGenerator.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E3B1CAD423B0089BB98 /* SdpGenerator.c */; }; - 98AB2E4E1CAD425A0089BB98 /* VideoDepacketizer.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E3D1CAD423B0089BB98 /* VideoDepacketizer.c */; }; - 98AB2E4F1CAD425A0089BB98 /* VideoStream.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E3E1CAD423B0089BB98 /* VideoStream.c */; }; - 98AB2E501CAD427A0089BB98 /* callbacks.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2DF01CAD422B0089BB98 /* callbacks.c */; }; - 98AB2E511CAD427A0089BB98 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2DF31CAD422B0089BB98 /* compress.c */; }; - 98AB2E521CAD427A0089BB98 /* host.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E001CAD422B0089BB98 /* host.c */; }; - 98AB2E531CAD427A0089BB98 /* list.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E0E1CAD422B0089BB98 /* list.c */; }; - 98AB2E541CAD427A0089BB98 /* packet.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E121CAD422B0089BB98 /* packet.c */; }; - 98AB2E551CAD427A0089BB98 /* peer.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E131CAD422B0089BB98 /* peer.c */; }; - 98AB2E561CAD427A0089BB98 /* protocol.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E151CAD422B0089BB98 /* protocol.c */; }; - 98AB2E571CAD427A0089BB98 /* unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E171CAD422B0089BB98 /* unix.c */; }; - 98AB2E581CAD427A0089BB98 /* win32.c in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2E181CAD422B0089BB98 /* win32.c */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 9857AEE91EBE85A20084F99E /* RtpFecQueue.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RtpFecQueue.c; sourceTree = ""; }; - 9857AEEB1EBE85AB0084F99E /* RtpFecQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RtpFecQueue.h; sourceTree = ""; }; - 9857AEEE1EBE85E10084F99E /* rs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rs.c; path = "moonlight-common-c/reedsolomon/rs.c"; sourceTree = ""; }; - 9857AEEF1EBE85E10084F99E /* rs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rs.h; path = "moonlight-common-c/reedsolomon/rs.h"; sourceTree = ""; }; - 98AB2DF01CAD422B0089BB98 /* callbacks.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = callbacks.c; sourceTree = ""; }; - 98AB2DF11CAD422B0089BB98 /* ChangeLog */ = {isa = PBXFileReference; lastKnownFileType = text; path = ChangeLog; sourceTree = ""; }; - 98AB2DF21CAD422B0089BB98 /* CMakeLists.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = ""; }; - 98AB2DF31CAD422B0089BB98 /* compress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = ""; }; - 98AB2DF41CAD422B0089BB98 /* configure.ac */ = {isa = PBXFileReference; lastKnownFileType = text; path = configure.ac; sourceTree = ""; }; - 98AB2DF61CAD422B0089BB98 /* design.dox */ = {isa = PBXFileReference; lastKnownFileType = text; path = design.dox; sourceTree = ""; }; - 98AB2DF71CAD422B0089BB98 /* FAQ.dox */ = {isa = PBXFileReference; lastKnownFileType = text; path = FAQ.dox; sourceTree = ""; }; - 98AB2DF81CAD422B0089BB98 /* install.dox */ = {isa = PBXFileReference; lastKnownFileType = text; path = install.dox; sourceTree = ""; }; - 98AB2DF91CAD422B0089BB98 /* license.dox */ = {isa = PBXFileReference; lastKnownFileType = text; path = license.dox; sourceTree = ""; }; - 98AB2DFA1CAD422B0089BB98 /* mainpage.dox */ = {isa = PBXFileReference; lastKnownFileType = text; path = mainpage.dox; sourceTree = ""; }; - 98AB2DFB1CAD422B0089BB98 /* tutorial.dox */ = {isa = PBXFileReference; lastKnownFileType = text; path = tutorial.dox; sourceTree = ""; }; - 98AB2DFC1CAD422B0089BB98 /* Doxyfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Doxyfile; sourceTree = ""; }; - 98AB2DFD1CAD422B0089BB98 /* DoxygenLayout.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = DoxygenLayout.xml; sourceTree = ""; }; - 98AB2DFE1CAD422B0089BB98 /* enet.dsp */ = {isa = PBXFileReference; lastKnownFileType = text; path = enet.dsp; sourceTree = ""; }; - 98AB2DFF1CAD422B0089BB98 /* enet_dll.cbp */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = enet_dll.cbp; sourceTree = ""; }; - 98AB2E001CAD422B0089BB98 /* host.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = host.c; sourceTree = ""; }; - 98AB2E031CAD422B0089BB98 /* callbacks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = callbacks.h; sourceTree = ""; }; - 98AB2E041CAD422B0089BB98 /* enet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = enet.h; sourceTree = ""; }; - 98AB2E051CAD422B0089BB98 /* list.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = list.h; sourceTree = ""; }; - 98AB2E061CAD422B0089BB98 /* protocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = ""; }; - 98AB2E071CAD422B0089BB98 /* time.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = ""; }; - 98AB2E081CAD422B0089BB98 /* types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = ""; }; - 98AB2E091CAD422B0089BB98 /* unix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = unix.h; sourceTree = ""; }; - 98AB2E0A1CAD422B0089BB98 /* utility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = utility.h; sourceTree = ""; }; - 98AB2E0B1CAD422B0089BB98 /* win32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = win32.h; sourceTree = ""; }; - 98AB2E0C1CAD422B0089BB98 /* libenet.pc.in */ = {isa = PBXFileReference; lastKnownFileType = text; path = libenet.pc.in; sourceTree = ""; }; - 98AB2E0D1CAD422B0089BB98 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - 98AB2E0E1CAD422B0089BB98 /* list.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = list.c; sourceTree = ""; }; - 98AB2E101CAD422B0089BB98 /* .keep */ = {isa = PBXFileReference; lastKnownFileType = text; path = .keep; sourceTree = ""; }; - 98AB2E111CAD422B0089BB98 /* Makefile.am */ = {isa = PBXFileReference; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; - 98AB2E121CAD422B0089BB98 /* packet.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = packet.c; sourceTree = ""; }; - 98AB2E131CAD422B0089BB98 /* peer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = peer.c; sourceTree = ""; }; - 98AB2E141CAD422B0089BB98 /* premake4.lua */ = {isa = PBXFileReference; lastKnownFileType = text; path = premake4.lua; sourceTree = ""; }; - 98AB2E151CAD422B0089BB98 /* protocol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = protocol.c; sourceTree = ""; }; - 98AB2E161CAD422B0089BB98 /* README */ = {isa = PBXFileReference; lastKnownFileType = text; path = README; sourceTree = ""; }; - 98AB2E171CAD422B0089BB98 /* unix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = unix.c; sourceTree = ""; }; - 98AB2E181CAD422B0089BB98 /* win32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = win32.c; sourceTree = ""; }; - 98AB2E1A1CAD423B0089BB98 /* AudioStream.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = AudioStream.c; sourceTree = ""; }; - 98AB2E1B1CAD423B0089BB98 /* ByteBuffer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ByteBuffer.c; sourceTree = ""; }; - 98AB2E1C1CAD423B0089BB98 /* ByteBuffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ByteBuffer.h; sourceTree = ""; }; - 98AB2E1D1CAD423B0089BB98 /* Connection.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Connection.c; sourceTree = ""; }; - 98AB2E1E1CAD423B0089BB98 /* ControlStream.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ControlStream.c; sourceTree = ""; }; - 98AB2E1F1CAD423B0089BB98 /* FakeCallbacks.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = FakeCallbacks.c; sourceTree = ""; }; - 98AB2E201CAD423B0089BB98 /* Input.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Input.h; sourceTree = ""; }; - 98AB2E211CAD423B0089BB98 /* InputStream.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = InputStream.c; sourceTree = ""; }; - 98AB2E221CAD423B0089BB98 /* Limelight-internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Limelight-internal.h"; sourceTree = ""; }; - 98AB2E231CAD423B0089BB98 /* Limelight.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Limelight.h; sourceTree = ""; }; - 98AB2E241CAD423B0089BB98 /* LinkedBlockingQueue.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = LinkedBlockingQueue.c; sourceTree = ""; }; - 98AB2E251CAD423B0089BB98 /* LinkedBlockingQueue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LinkedBlockingQueue.h; sourceTree = ""; }; - 98AB2E261CAD423B0089BB98 /* Misc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Misc.c; sourceTree = ""; }; - 98AB2E311CAD423B0089BB98 /* Platform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = Platform.c; sourceTree = ""; }; - 98AB2E321CAD423B0089BB98 /* Platform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Platform.h; sourceTree = ""; }; - 98AB2E331CAD423B0089BB98 /* PlatformSockets.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = PlatformSockets.c; sourceTree = ""; }; - 98AB2E341CAD423B0089BB98 /* PlatformSockets.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformSockets.h; sourceTree = ""; }; - 98AB2E351CAD423B0089BB98 /* PlatformThreads.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlatformThreads.h; sourceTree = ""; }; - 98AB2E361CAD423B0089BB98 /* RtpReorderQueue.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RtpReorderQueue.c; sourceTree = ""; }; - 98AB2E371CAD423B0089BB98 /* RtpReorderQueue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RtpReorderQueue.h; sourceTree = ""; }; - 98AB2E381CAD423B0089BB98 /* Rtsp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Rtsp.h; sourceTree = ""; }; - 98AB2E391CAD423B0089BB98 /* RtspConnection.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RtspConnection.c; sourceTree = ""; }; - 98AB2E3A1CAD423B0089BB98 /* RtspParser.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = RtspParser.c; sourceTree = ""; }; - 98AB2E3B1CAD423B0089BB98 /* SdpGenerator.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SdpGenerator.c; sourceTree = ""; }; - 98AB2E3C1CAD423B0089BB98 /* Video.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Video.h; sourceTree = ""; }; - 98AB2E3D1CAD423B0089BB98 /* VideoDepacketizer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VideoDepacketizer.c; sourceTree = ""; }; - 98AB2E3E1CAD423B0089BB98 /* VideoStream.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = VideoStream.c; sourceTree = ""; }; - FB290E2E19B37A4E004C83CF /* libmoonlight-common.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libmoonlight-common.a"; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - FB290E2B19B37A4E004C83CF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 9857AEED1EBE85D50084F99E /* reedsolomon */ = { - isa = PBXGroup; - children = ( - 9857AEEE1EBE85E10084F99E /* rs.c */, - 9857AEEF1EBE85E10084F99E /* rs.h */, - ); - name = reedsolomon; - sourceTree = ""; - }; - 98AB2DEF1CAD422B0089BB98 /* enet */ = { - isa = PBXGroup; - children = ( - 98AB2DF01CAD422B0089BB98 /* callbacks.c */, - 98AB2DF11CAD422B0089BB98 /* ChangeLog */, - 98AB2DF21CAD422B0089BB98 /* CMakeLists.txt */, - 98AB2DF31CAD422B0089BB98 /* compress.c */, - 98AB2DF41CAD422B0089BB98 /* configure.ac */, - 98AB2DF51CAD422B0089BB98 /* docs */, - 98AB2DFC1CAD422B0089BB98 /* Doxyfile */, - 98AB2DFD1CAD422B0089BB98 /* DoxygenLayout.xml */, - 98AB2DFE1CAD422B0089BB98 /* enet.dsp */, - 98AB2DFF1CAD422B0089BB98 /* enet_dll.cbp */, - 98AB2E001CAD422B0089BB98 /* host.c */, - 98AB2E011CAD422B0089BB98 /* include */, - 98AB2E0C1CAD422B0089BB98 /* libenet.pc.in */, - 98AB2E0D1CAD422B0089BB98 /* LICENSE */, - 98AB2E0E1CAD422B0089BB98 /* list.c */, - 98AB2E0F1CAD422B0089BB98 /* m4 */, - 98AB2E111CAD422B0089BB98 /* Makefile.am */, - 98AB2E121CAD422B0089BB98 /* packet.c */, - 98AB2E131CAD422B0089BB98 /* peer.c */, - 98AB2E141CAD422B0089BB98 /* premake4.lua */, - 98AB2E151CAD422B0089BB98 /* protocol.c */, - 98AB2E161CAD422B0089BB98 /* README */, - 98AB2E171CAD422B0089BB98 /* unix.c */, - 98AB2E181CAD422B0089BB98 /* win32.c */, - ); - name = enet; - path = "moonlight-common-c/enet"; - sourceTree = ""; - }; - 98AB2DF51CAD422B0089BB98 /* docs */ = { - isa = PBXGroup; - children = ( - 98AB2DF61CAD422B0089BB98 /* design.dox */, - 98AB2DF71CAD422B0089BB98 /* FAQ.dox */, - 98AB2DF81CAD422B0089BB98 /* install.dox */, - 98AB2DF91CAD422B0089BB98 /* license.dox */, - 98AB2DFA1CAD422B0089BB98 /* mainpage.dox */, - 98AB2DFB1CAD422B0089BB98 /* tutorial.dox */, - ); - path = docs; - sourceTree = ""; - }; - 98AB2E011CAD422B0089BB98 /* include */ = { - isa = PBXGroup; - children = ( - 98AB2E021CAD422B0089BB98 /* enet */, - ); - path = include; - sourceTree = ""; - }; - 98AB2E021CAD422B0089BB98 /* enet */ = { - isa = PBXGroup; - children = ( - 98AB2E031CAD422B0089BB98 /* callbacks.h */, - 98AB2E041CAD422B0089BB98 /* enet.h */, - 98AB2E051CAD422B0089BB98 /* list.h */, - 98AB2E061CAD422B0089BB98 /* protocol.h */, - 98AB2E071CAD422B0089BB98 /* time.h */, - 98AB2E081CAD422B0089BB98 /* types.h */, - 98AB2E091CAD422B0089BB98 /* unix.h */, - 98AB2E0A1CAD422B0089BB98 /* utility.h */, - 98AB2E0B1CAD422B0089BB98 /* win32.h */, - ); - path = enet; - sourceTree = ""; - }; - 98AB2E0F1CAD422B0089BB98 /* m4 */ = { - isa = PBXGroup; - children = ( - 98AB2E101CAD422B0089BB98 /* .keep */, - ); - path = m4; - sourceTree = ""; - }; - 98AB2E191CAD423B0089BB98 /* src */ = { - isa = PBXGroup; - children = ( - 9857AEEB1EBE85AB0084F99E /* RtpFecQueue.h */, - 9857AEE91EBE85A20084F99E /* RtpFecQueue.c */, - 98AB2E1A1CAD423B0089BB98 /* AudioStream.c */, - 98AB2E1B1CAD423B0089BB98 /* ByteBuffer.c */, - 98AB2E1C1CAD423B0089BB98 /* ByteBuffer.h */, - 98AB2E1D1CAD423B0089BB98 /* Connection.c */, - 98AB2E1E1CAD423B0089BB98 /* ControlStream.c */, - 98AB2E1F1CAD423B0089BB98 /* FakeCallbacks.c */, - 98AB2E201CAD423B0089BB98 /* Input.h */, - 98AB2E211CAD423B0089BB98 /* InputStream.c */, - 98AB2E221CAD423B0089BB98 /* Limelight-internal.h */, - 98AB2E231CAD423B0089BB98 /* Limelight.h */, - 98AB2E241CAD423B0089BB98 /* LinkedBlockingQueue.c */, - 98AB2E251CAD423B0089BB98 /* LinkedBlockingQueue.h */, - 98AB2E261CAD423B0089BB98 /* Misc.c */, - 98AB2E311CAD423B0089BB98 /* Platform.c */, - 98AB2E321CAD423B0089BB98 /* Platform.h */, - 98AB2E331CAD423B0089BB98 /* PlatformSockets.c */, - 98AB2E341CAD423B0089BB98 /* PlatformSockets.h */, - 98AB2E351CAD423B0089BB98 /* PlatformThreads.h */, - 98AB2E361CAD423B0089BB98 /* RtpReorderQueue.c */, - 98AB2E371CAD423B0089BB98 /* RtpReorderQueue.h */, - 98AB2E381CAD423B0089BB98 /* Rtsp.h */, - 98AB2E391CAD423B0089BB98 /* RtspConnection.c */, - 98AB2E3A1CAD423B0089BB98 /* RtspParser.c */, - 98AB2E3B1CAD423B0089BB98 /* SdpGenerator.c */, - 98AB2E3C1CAD423B0089BB98 /* Video.h */, - 98AB2E3D1CAD423B0089BB98 /* VideoDepacketizer.c */, - 98AB2E3E1CAD423B0089BB98 /* VideoStream.c */, - ); - name = src; - path = "moonlight-common-c/src"; - sourceTree = ""; - }; - FB290E2519B37A4E004C83CF = { - isa = PBXGroup; - children = ( - 9857AEED1EBE85D50084F99E /* reedsolomon */, - 98AB2E191CAD423B0089BB98 /* src */, - 98AB2DEF1CAD422B0089BB98 /* enet */, - FB290E2F19B37A4E004C83CF /* Products */, - ); - sourceTree = ""; - }; - FB290E2F19B37A4E004C83CF /* Products */ = { - isa = PBXGroup; - children = ( - FB290E2E19B37A4E004C83CF /* libmoonlight-common.a */, - ); - name = Products; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - FB290E2D19B37A4E004C83CF /* moonlight-common */ = { - isa = PBXNativeTarget; - buildConfigurationList = FB290E3219B37A4E004C83CF /* Build configuration list for PBXNativeTarget "moonlight-common" */; - buildPhases = ( - FB290E2A19B37A4E004C83CF /* Sources */, - FB290E2B19B37A4E004C83CF /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "moonlight-common"; - productName = "limelight-common"; - productReference = FB290E2E19B37A4E004C83CF /* libmoonlight-common.a */; - productType = "com.apple.product-type.library.static"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - FB290E2619B37A4E004C83CF /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0930; - ORGANIZATIONNAME = "Moonlight Stream"; - }; - buildConfigurationList = FB290E2919B37A4E004C83CF /* Build configuration list for PBXProject "moonlight-common_mac" */; - compatibilityVersion = "Xcode 8.0"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = FB290E2519B37A4E004C83CF; - productRefGroup = FB290E2F19B37A4E004C83CF /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - FB290E2D19B37A4E004C83CF /* moonlight-common */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXSourcesBuildPhase section */ - FB290E2A19B37A4E004C83CF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 98AB2E401CAD425A0089BB98 /* AudioStream.c in Sources */, - 98AB2E411CAD425A0089BB98 /* ByteBuffer.c in Sources */, - 98AB2E421CAD425A0089BB98 /* Connection.c in Sources */, - 98AB2E431CAD425A0089BB98 /* ControlStream.c in Sources */, - 98AB2E441CAD425A0089BB98 /* FakeCallbacks.c in Sources */, - 98AB2E451CAD425A0089BB98 /* InputStream.c in Sources */, - 98AB2E461CAD425A0089BB98 /* LinkedBlockingQueue.c in Sources */, - 98AB2E471CAD425A0089BB98 /* Misc.c in Sources */, - 98AB2E481CAD425A0089BB98 /* Platform.c in Sources */, - 98AB2E491CAD425A0089BB98 /* PlatformSockets.c in Sources */, - 98AB2E4A1CAD425A0089BB98 /* RtpReorderQueue.c in Sources */, - 98AB2E4B1CAD425A0089BB98 /* RtspConnection.c in Sources */, - 98AB2E4C1CAD425A0089BB98 /* RtspParser.c in Sources */, - 98AB2E4D1CAD425A0089BB98 /* SdpGenerator.c in Sources */, - 98AB2E4E1CAD425A0089BB98 /* VideoDepacketizer.c in Sources */, - 9857AEEA1EBE85A20084F99E /* RtpFecQueue.c in Sources */, - 98AB2E4F1CAD425A0089BB98 /* VideoStream.c in Sources */, - 98AB2E501CAD427A0089BB98 /* callbacks.c in Sources */, - 98AB2E511CAD427A0089BB98 /* compress.c in Sources */, - 98AB2E521CAD427A0089BB98 /* host.c in Sources */, - 98AB2E531CAD427A0089BB98 /* list.c in Sources */, - 98AB2E541CAD427A0089BB98 /* packet.c in Sources */, - 98AB2E551CAD427A0089BB98 /* peer.c in Sources */, - 98AB2E561CAD427A0089BB98 /* protocol.c in Sources */, - 9857AEF01EBE85E10084F99E /* rs.c in Sources */, - 98AB2E571CAD427A0089BB98 /* unix.c in Sources */, - 98AB2E581CAD427A0089BB98 /* win32.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - FB290E3019B37A4E004C83CF /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "Mac Developer"; - COPY_PHASE_STRIP = NO; - DEFINES_MODULE = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - LC_DEBUG, - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACOSX_DEPLOYMENT_TARGET = 10.10; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - FB290E3119B37A4E004C83CF /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "3rd Party Mac Developer Application"; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACOSX_DEPLOYMENT_TARGET = 10.10; - PROVISIONING_PROFILE = ""; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = Release; - }; - FB290E3319B37A4E004C83CF /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "Mac Developer"; - EXECUTABLE_PREFIX = lib; - HEADER_SEARCH_PATHS = ( - "moonlight-common-c/enet/include", - "../libs/**", - ); - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.13; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - SUPPORTED_PLATFORMS = macosx; - }; - name = Debug; - }; - FB290E3419B37A4E004C83CF /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "Mac Developer"; - EXECUTABLE_PREFIX = lib; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - "moonlight-common-c/enet/include", - "../libs/**", - ); - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.13; - ONLY_ACTIVE_ARCH = NO; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - SUPPORTED_PLATFORMS = macosx; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - FB290E2919B37A4E004C83CF /* Build configuration list for PBXProject "moonlight-common_mac" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - FB290E3019B37A4E004C83CF /* Debug */, - FB290E3119B37A4E004C83CF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - FB290E3219B37A4E004C83CF /* Build configuration list for PBXNativeTarget "moonlight-common" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - FB290E3319B37A4E004C83CF /* Debug */, - FB290E3419B37A4E004C83CF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = FB290E2619B37A4E004C83CF /* Project object */; -} diff --git a/moonlight-common/moonlight-common_mac.xcodeproj/project.xcworkspace/xcshareddata/limelight-common.xccheckout b/moonlight-common/moonlight-common_mac.xcodeproj/project.xcworkspace/xcshareddata/limelight-common.xccheckout deleted file mode 100644 index f13cb96..0000000 --- a/moonlight-common/moonlight-common_mac.xcodeproj/project.xcworkspace/xcshareddata/limelight-common.xccheckout +++ /dev/null @@ -1,41 +0,0 @@ - - - - - IDESourceControlProjectFavoriteDictionaryKey - - IDESourceControlProjectIdentifier - 662F3EBE-A540-4F33-A434-3BBB22ECCB12 - IDESourceControlProjectName - limelight-common - IDESourceControlProjectOriginsDictionary - - 151E8452-E928-4FE9-BF31-5F5C490B9DD4 - ssh://github.com/limelight-stream/limelight-common-c.git - - IDESourceControlProjectPath - limelight-common.xcodeproj/project.xcworkspace - IDESourceControlProjectRelativeInstallPathDictionary - - 151E8452-E928-4FE9-BF31-5F5C490B9DD4 - ../.. - - IDESourceControlProjectURL - ssh://github.com/limelight-stream/limelight-common-c.git - IDESourceControlProjectVersion - 110 - IDESourceControlProjectWCCIdentifier - 151E8452-E928-4FE9-BF31-5F5C490B9DD4 - IDESourceControlProjectWCConfigurations - - - IDESourceControlRepositoryExtensionIdentifierKey - public.vcs.git - IDESourceControlWCCIdentifierKey - 151E8452-E928-4FE9-BF31-5F5C490B9DD4 - IDESourceControlWCCName - limelight-common-c - - - - diff --git a/moonlight-common/moonlight-common_mac.xcodeproj/project.xcworkspace/xcshareddata/moonlight-common.xcscmblueprint b/moonlight-common/moonlight-common_mac.xcodeproj/project.xcworkspace/xcshareddata/moonlight-common.xcscmblueprint deleted file mode 100644 index bed931f..0000000 --- a/moonlight-common/moonlight-common_mac.xcodeproj/project.xcworkspace/xcshareddata/moonlight-common.xcscmblueprint +++ /dev/null @@ -1,37 +0,0 @@ -{ - "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "A4B0849259F9566B0CBA84A6D3D4A0F895C03123", - "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { - - }, - "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { - "584110FE5ABD5BCB5065B76A98D3F8000D0644EC" : 0, - "A4B0849259F9566B0CBA84A6D3D4A0F895C03123" : 0, - "EB99D631D5149240E91F8D168F0F298D7A5BAA89" : 0 - }, - "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "40250820-914C-4FB3-9CF1-3DB8A02E7012", - "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { - "584110FE5ABD5BCB5065B76A98D3F8000D0644EC" : "moonlight-ios\/moonlight-common\/moonlight-common-c\/enet\/", - "A4B0849259F9566B0CBA84A6D3D4A0F895C03123" : "moonlight-ios\/", - "EB99D631D5149240E91F8D168F0F298D7A5BAA89" : "moonlight-ios\/moonlight-common\/moonlight-common-c\/" - }, - "DVTSourceControlWorkspaceBlueprintNameKey" : "moonlight-common", - "DVTSourceControlWorkspaceBlueprintVersion" : 204, - "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "moonlight-common\/moonlight-common.xcodeproj", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/cgutman\/enet.git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "584110FE5ABD5BCB5065B76A98D3F8000D0644EC" - }, - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "github.com:moonlight-stream\/moonlight-ios.git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "A4B0849259F9566B0CBA84A6D3D4A0F895C03123" - }, - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/moonlight-stream\/moonlight-common-c.git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "EB99D631D5149240E91F8D168F0F298D7A5BAA89" - } - ] -} \ No newline at end of file