SDL  2.0
SDL_sysfilesystem.m
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "../../SDL_internal.h"
22 
23 #ifdef SDL_FILESYSTEM_COCOA
24 
25 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
26 /* System dependent filesystem routines */
27 
28 #include <Foundation/Foundation.h>
29 #include <sys/stat.h>
30 #include <sys/types.h>
31 
32 #include "SDL_error.h"
33 #include "SDL_stdinc.h"
34 #include "SDL_filesystem.h"
35 
36 char *
37 SDL_GetBasePath(void)
38 { @autoreleasepool
39 {
40  NSBundle *bundle = [NSBundle mainBundle];
41  const char* baseType = [[[bundle infoDictionary] objectForKey:@"SDL_FILESYSTEM_BASE_DIR_TYPE"] UTF8String];
42  const char *base = NULL;
43  char *retval = NULL;
44 
45  if (baseType == NULL) {
46  baseType = "resource";
47  }
48  if (SDL_strcasecmp(baseType, "bundle")==0) {
49  base = [[bundle bundlePath] fileSystemRepresentation];
50  } else if (SDL_strcasecmp(baseType, "parent")==0) {
51  base = [[[bundle bundlePath] stringByDeletingLastPathComponent] fileSystemRepresentation];
52  } else {
53  /* this returns the exedir for non-bundled and the resourceDir for bundled apps */
54  base = [[bundle resourcePath] fileSystemRepresentation];
55  }
56 
57  if (base) {
58  const size_t len = SDL_strlen(base) + 2;
59  retval = (char *) SDL_malloc(len);
60  if (retval == NULL) {
62  } else {
63  SDL_snprintf(retval, len, "%s/", base);
64  }
65  }
66 
67  return retval;
68 }}
69 
70 char *
71 SDL_GetPrefPath(const char *org, const char *app)
72 { @autoreleasepool
73 {
74  char *retval = NULL;
75 
76  NSArray *array = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
77 
78  if ([array count] > 0) { /* we only want the first item in the list. */
79  NSString *str = [array objectAtIndex:0];
80  const char *base = [str fileSystemRepresentation];
81  if (base) {
82  const size_t len = SDL_strlen(base) + SDL_strlen(org) + SDL_strlen(app) + 4;
83  retval = (char *) SDL_malloc(len);
84  if (retval == NULL) {
86  } else {
87  char *ptr;
88  SDL_snprintf(retval, len, "%s/%s/%s/", base, org, app);
89  for (ptr = retval+1; *ptr; ptr++) {
90  if (*ptr == '/') {
91  *ptr = '\0';
92  mkdir(retval, 0700);
93  *ptr = '/';
94  }
95  }
96  mkdir(retval, 0700);
97  }
98  }
99  }
100 
101  return retval;
102 }}
103 
104 #endif /* SDL_FILESYSTEM_COCOA */
105 
106 /* vi: set ts=4 sw=4 expandtab: */
GLuint GLuint GLsizei count
Definition: SDL_opengl.h:1564
set set set set set set set set set set set set set set set set set set set set *set set set macro pixldst op &r &cond WK op &r &cond WK op &r &cond WK else op &m &cond &ia op &r &cond WK else op &m &cond &ia elseif elseif else error unsupported base if elseif elseif else error unsupported unaligned pixldst unaligned endm macro pixst base base else pixldst base endif endm macro PF ptr
#define SDL_strcasecmp
GLenum GLsizei len
set set set set set set set set set set set set set set set set set set set set *set set set macro pixldst base
SDL_bool retval
#define NULL
Definition: begin_code.h:143
#define SDL_OutOfMemory()
Definition: SDL_error.h:52
#define SDL_strlen
#define SDL_GetPrefPath
Include file for filesystem SDL API functions.
#define SDL_snprintf
GLenum array
#define SDL_malloc
char * SDL_GetBasePath(void)
Get the path where the application resides.