starting from version 2.64. Unless you have a special system setup, this means the will be in ~/.config/blender rather than ~/.blender. When the version number is changed to 2.64, the "Copy Previous Settings" operator in the splash will copy the settings to the new location. XDG base directory specification: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
89 lines
2.4 KiB
C++
89 lines
2.4 KiB
C++
/*
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* The Original Code is Copyright (C) 2009 Blender Foundation.
|
|
* All rights reserved.
|
|
*
|
|
*
|
|
* Contributor(s): Damien Plisson 2010
|
|
*
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
*/
|
|
|
|
/** \file ghost/intern/GHOST_SystemPathsCarbon.cpp
|
|
* \ingroup GHOST
|
|
*/
|
|
|
|
|
|
#include <Carbon/Carbon.h>
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
#include "GHOST_SystemPathsCarbon.h"
|
|
|
|
|
|
/***/
|
|
|
|
GHOST_SystemPathsCarbon::GHOST_SystemPathsCarbon()
|
|
{
|
|
}
|
|
|
|
GHOST_SystemPathsCarbon::~GHOST_SystemPathsCarbon()
|
|
{
|
|
}
|
|
|
|
const GHOST_TUns8 *GHOST_SystemPathsCarbon::getSystemDir(int, const char *versionstr) const
|
|
{
|
|
static char systemPath[1024];
|
|
|
|
snprintf(systemPath, sizeof(systemPath), "/Library/Application Support/Blender/%s", versionstr);
|
|
|
|
return (GHOST_TUns8*)systemPath;
|
|
}
|
|
|
|
const GHOST_TUns8 *GHOST_SystemPathsCarbon::getUserDir(int, const char *versionstr) const
|
|
{
|
|
static char usrPath[1024];
|
|
char *env = getenv("HOME");
|
|
|
|
if (env) {
|
|
snprintf(usrPath, sizeof(usrPath), "%s/Library/Application Support/Blender/%s", env, versionstr);
|
|
return (GHOST_TUns8*)usrPath;
|
|
}
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
const GHOST_TUns8 *GHOST_SystemPathsCarbon::getBinaryDir() const
|
|
{
|
|
CFURLRef bundleURL;
|
|
CFStringRef pathStr;
|
|
static char path[256];
|
|
CFBundleRef mainBundle = CFBundleGetMainBundle();
|
|
|
|
bundleURL = CFBundleCopyBundleURL(mainBundle);
|
|
pathStr = CFURLCopyFileSystemPath(bundleURL, kCFURLPOSIXPathStyle);
|
|
CFStringGetCString(pathStr, path, 255, kCFStringEncodingASCII);
|
|
CFRelease(pathStr);
|
|
CFRelease(bundleURL);
|
|
return (GHOST_TUns8 *)path;
|
|
}
|
|
|
|
void GHOST_SystemPathsCarbon::addToSystemRecentFiles(const char *filename) const
|
|
{
|
|
/* XXXXX TODO: Implementation for Carbon if possible */
|
|
|
|
}
|