From 58c713f7c643680b047f3db3aad1d1a1518b0aed Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Sun, 1 Dec 2013 13:05:47 +0000 Subject: [PATCH] Set working directory to Application Support on Mac OS, fixes #191 --- SDLMain.m | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/SDLMain.m b/SDLMain.m index 82ed518b0..50c4b890f 100644 --- a/SDLMain.m +++ b/SDLMain.m @@ -84,17 +84,21 @@ static NSString *getApplicationName(void) /* Set the working directory to the .app's parent directory */ - (void) setupWorkingDirectory:(BOOL)shouldChdir { - if (shouldChdir) - { - char parentdir[MAXPATHLEN]; - CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); - CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); - if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { - chdir(parentdir); /* chdir to the binary app's parent */ + NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES); + if([paths count] < 1) return; + + NSString *appSupportPath = [paths objectAtIndex:0]; + BOOL isDir = NO; + NSError *error = nil; + NSString *appPath = [appSupportPath stringByAppendingPathComponent:@"The Powder Toy"]; + if (![[NSFileManager defaultManager] fileExistsAtPath:appPath isDirectory:&isDir] && isDir == NO) { + if(![[NSFileManager defaultManager] createDirectoryAtPath:appPath withIntermediateDirectories:YES attributes:nil error:&error]) + { + NSLog(@"Could not set up working dir. Error: %@", error); + return; } - CFRelease(url); - CFRelease(url2); } + chdir([appPath UTF8String]); } #if SDL_USE_NIB_FILE