2003-04-26 16:02:26 +00:00
|
|
|
/* util.c
|
|
|
|
*
|
|
|
|
* various string, file, list operations.
|
|
|
|
*
|
|
|
|
*
|
2002-10-12 11:37:38 +00:00
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-07 19:13:47 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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
|
2008-01-07 19:13:47 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
2008-01-07 19:13:47 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2003-04-26 16:02:26 +00:00
|
|
|
*
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2007-03-19 19:34:04 +00:00
|
|
|
#include <stdarg.h>
|
2008-04-11 15:47:21 +00:00
|
|
|
#include <math.h> /* for log10 */
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "DNA_listBase.h"
|
2008-02-13 13:55:22 +00:00
|
|
|
#include "DNA_userdef_types.h"
|
|
|
|
|
|
|
|
#include "BLI_blenlib.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BLI_storage.h"
|
|
|
|
#include "BLI_storage_types.h"
|
2006-08-20 15:22:56 +00:00
|
|
|
#include "BLI_dynamiclist.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "BLI_util.h"
|
2007-02-22 10:20:27 +00:00
|
|
|
#include "BKE_utildefines.h"
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2002-11-25 12:02:15 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#ifndef WIN32
|
|
|
|
#include <unistd.h>
|
|
|
|
#else
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2008-04-21 15:53:32 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32_IE
|
|
|
|
#undef _WIN32_IE
|
|
|
|
#endif
|
|
|
|
#define _WIN32_IE 0x0501
|
|
|
|
#include <windows.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BLI_winstuff.h"
|
2007-03-19 19:34:04 +00:00
|
|
|
|
|
|
|
/* for duplicate_defgroup */
|
|
|
|
#if !(defined vsnprintf)
|
|
|
|
#define vsnprintf _vsnprintf
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2003-05-12 14:59:08 +00:00
|
|
|
#ifdef __APPLE__
|
2003-05-12 17:13:12 +00:00
|
|
|
#include <sys/param.h>
|
2003-05-12 14:59:08 +00:00
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
#endif
|
|
|
|
|
2008-01-18 15:10:17 +00:00
|
|
|
#ifdef __linux__
|
|
|
|
#include "binreloc.h"
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* local */
|
|
|
|
|
|
|
|
static int add_win32_extension(char *name);
|
|
|
|
|
|
|
|
/* implementation */
|
|
|
|
|
2007-10-04 10:50:15 +00:00
|
|
|
int BLI_stringdec(char *string, char *kop, char *start, unsigned short *numlen)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
unsigned short len, len2, nums = 0, nume = 0;
|
|
|
|
short i, found = 0;
|
|
|
|
|
2007-10-04 10:50:15 +00:00
|
|
|
len2 = len = strlen(string);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (len > 6) {
|
2005-04-02 15:36:57 +00:00
|
|
|
if (BLI_strncasecmp(string + len - 6, ".blend", 6) == 0) len -= 6;
|
|
|
|
else if (BLI_strncasecmp(string + len - 6, ".trace", 6) == 0) len -= 6;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
Patch provided by Shaul Kedem: Compressed files are back!
He even made a nice doc in wiki:
http://wiki.blender.org/bin/view.pl/Blenderdev/Blendgz
Usage: set the option "Compress File" in the main "File" pulldown menu.
This setting is a user-def, meaning it is not changed on reading files.
If you want it default, save it with CTRL+U.
The longest debate went over the file naming convention. Shaul started
with .blend.gz files, which gave issues in Blender because of the code
hanging out everywhere that detects blender files, and that appends the
.blend extension if needed.
Daniel Dunbar proposed to just save it as .blend, and not bother users
with such details. This is indeed the most elegant solution, with as
only drawback that old Blender executables cannot read it.
This drawback isn't very relevant at the moment, since we're heading
towards a release that isn't upward compatible anyway... the recode
going on on Meshes, Modfiers, Armatures, Poses, Actions, NLA already
have upward compatibility issues.
We might check - during the next month(s) - on a builtin system to
warn users in the future when we change things that make a file risky
to read in an older release.
2005-07-27 19:46:06 +00:00
|
|
|
if (len > 9) {
|
|
|
|
if (BLI_strncasecmp(string + len - 9, ".blend.gz", 9) == 0) len -= 9;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (len == len2) {
|
|
|
|
if (len > 4) {
|
2003-04-26 16:02:26 +00:00
|
|
|
/* handle .jf0 en .jf1 for jstreams */
|
2005-04-02 15:36:57 +00:00
|
|
|
if (BLI_strncasecmp(string + len - 4, ".jf", 3) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".tga", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".jpg", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".png", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".txt", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".cyc", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".enh", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".rgb", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".psx", 4) == 0) len -= 4;
|
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".ble", 4) == 0) len -= 4;
|
Orange branch: OpenEXR finally in Blender!
Credits go to Gernot Ziegler, who originally coded EXR support, and to
Austin Benesh for bringing it further. Kent Mein provided a lot of code
for integrating float buffers in Blender imbuf and ImBuf API cleanup,
and provided Make and Scons and static linking.
At this moment; the EXR libraries are a *dependency*, so you cannot get
the Orange branch compiled without having OpenEXR installed. Get the
(precompiled or sources) stuff from www.openexr.com. Current default is
that the headers and lib resides in /user/local/
Several changes/additions/fixes were added:
- EXR code only supported 'half' format (16 bits per channel). I've added
float writing, but for reading it I need tomorrow. :)
- Quite some clumsy copying of data happened in EXR code.
- cleaned up the api calls already a bit, preparing for more advanced
support
- Zbuffers were saved 16 bits, now 32 bits
- automatic adding of .exr extensions went wrong
Imbuf:
- added proper imbuf->flags and imbuf->mall support for float buffers, it
was created for *each* imbuf. :)
- found bugs for float buffers in scaling and flipping. Code there will
need more checks still
- imbuf also needs to be verified to behave properly when no 32 bits
rect exists (for saving for example)
TODO:
- support internal float images for textures, backbuf, AO probes, and
display in Image window
Hope this commit won't screwup syncing with bf-blender... :/
2006-01-09 00:40:35 +00:00
|
|
|
else if (BLI_strncasecmp(string + len - 4, ".exr", 4) == 0) len -= 4;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-04 10:50:15 +00:00
|
|
|
for (i = len - 1; i >= 0; i--) {
|
2002-10-12 11:37:38 +00:00
|
|
|
if (string[i] == '/') break;
|
|
|
|
if (isdigit(string[i])) {
|
|
|
|
if (found){
|
|
|
|
nums = i;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
nume = i;
|
|
|
|
nums = i;
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
}
|
2007-10-04 10:50:15 +00:00
|
|
|
else {
|
2002-10-12 11:37:38 +00:00
|
|
|
if (found) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found){
|
2007-10-04 10:50:15 +00:00
|
|
|
if (start) strcpy(start,&string[nume+1]);
|
2002-10-12 11:37:38 +00:00
|
|
|
if (kop) {
|
|
|
|
strcpy(kop,string);
|
|
|
|
kop[nums]=0;
|
|
|
|
}
|
|
|
|
if (numlen) *numlen = nume-nums+1;
|
|
|
|
return ((int)atoi(&(string[nums])));
|
|
|
|
}
|
2007-10-04 10:50:15 +00:00
|
|
|
if (start) strcpy(start, string + len);
|
2002-10-12 11:37:38 +00:00
|
|
|
if (kop) {
|
|
|
|
strncpy(kop, string, len);
|
|
|
|
kop[len] = 0;
|
|
|
|
}
|
|
|
|
if (numlen) *numlen=0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-04 10:50:15 +00:00
|
|
|
void BLI_stringenc(char *string, char *kop, char *start, unsigned short numlen, int pic)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
char numstr[10]="";
|
|
|
|
unsigned short len,i;
|
|
|
|
|
|
|
|
strcpy(string,kop);
|
|
|
|
|
|
|
|
if (pic>0 || numlen==4) {
|
|
|
|
len= sprintf(numstr,"%d",pic);
|
2007-10-04 10:50:15 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
for(i=len;i<numlen;i++){
|
|
|
|
strcat(string,"0");
|
|
|
|
}
|
|
|
|
strcat(string,numstr);
|
|
|
|
}
|
2007-10-04 10:50:15 +00:00
|
|
|
strcat(string, start);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-04 10:50:15 +00:00
|
|
|
void BLI_newname(char *name, int add)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
char head[128], tail[128];
|
|
|
|
int pic;
|
|
|
|
unsigned short digits;
|
|
|
|
|
|
|
|
pic = BLI_stringdec(name, head, tail, &digits);
|
|
|
|
|
2003-04-26 16:02:26 +00:00
|
|
|
/* are we going from 100 -> 99 or from 10 -> 9 */
|
2002-10-12 11:37:38 +00:00
|
|
|
if (add < 0 && digits < 4 && digits > 0) {
|
|
|
|
int i, exp;
|
|
|
|
exp = 1;
|
|
|
|
for (i = digits; i > 1; i--) exp *= 10;
|
|
|
|
if (pic >= exp && (pic + add) < exp) digits--;
|
|
|
|
}
|
|
|
|
|
|
|
|
pic += add;
|
|
|
|
|
2007-10-04 10:50:15 +00:00
|
|
|
if (digits==4 && pic<0) pic= 0;
|
2002-10-12 11:37:38 +00:00
|
|
|
BLI_stringenc(name, head, tail, digits, pic);
|
|
|
|
}
|
|
|
|
|
2008-01-20 23:53:13 +00:00
|
|
|
/* little helper macro for BLI_uniquename */
|
|
|
|
#ifndef GIVE_STRADDR
|
|
|
|
#define GIVE_STRADDR(data, offset) ( ((char *)data) + offset )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Generic function to set a unique name. It is only designed to be used in situations
|
|
|
|
* where the name is part of the struct, and also that the name is at most 128 chars long.
|
|
|
|
*
|
|
|
|
* For places where this is used, see constraint.c for example...
|
|
|
|
*
|
|
|
|
* name_offs: should be calculated using offsetof(structname, membername) macro from stddef.h
|
|
|
|
* len: maximum length of string (to prevent overflows, etc.)
|
|
|
|
* defname: the name that should be used by default if none is specified already
|
2009-04-16 13:10:08 +00:00
|
|
|
* delim: the character which acts as a delimeter between parts of the name
|
2008-01-20 23:53:13 +00:00
|
|
|
*/
|
2009-04-16 13:10:08 +00:00
|
|
|
void BLI_uniquename(ListBase *list, void *vlink, char defname[], char delim, short name_offs, short len)
|
2008-01-20 23:53:13 +00:00
|
|
|
{
|
|
|
|
Link *link;
|
|
|
|
char tempname[128];
|
|
|
|
int number = 1, exists = 0;
|
|
|
|
char *dot;
|
|
|
|
|
|
|
|
/* Make sure length can be handled */
|
|
|
|
if ((len < 0) || (len > 128))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* See if we are given an empty string */
|
|
|
|
if (ELEM(NULL, vlink, defname))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (GIVE_STRADDR(vlink, name_offs) == '\0') {
|
|
|
|
/* give it default name first */
|
|
|
|
BLI_strncpy(GIVE_STRADDR(vlink, name_offs), defname, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* See if we even need to do this */
|
|
|
|
if (list == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (link = list->first; link; link= link->next) {
|
|
|
|
if (link != vlink) {
|
|
|
|
if (!strcmp(GIVE_STRADDR(link, name_offs), GIVE_STRADDR(vlink, name_offs))) {
|
|
|
|
exists = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (exists == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Strip off the suffix */
|
2009-04-16 13:10:08 +00:00
|
|
|
dot = strchr(GIVE_STRADDR(vlink, name_offs), delim);
|
2008-01-20 23:53:13 +00:00
|
|
|
if (dot)
|
|
|
|
*dot=0;
|
|
|
|
|
|
|
|
for (number = 1; number <= 999; number++) {
|
2009-04-16 13:10:08 +00:00
|
|
|
BLI_snprintf(tempname, 128, "%s%c%03d", GIVE_STRADDR(vlink, name_offs), delim, number);
|
2008-01-20 23:53:13 +00:00
|
|
|
|
|
|
|
exists = 0;
|
|
|
|
for (link= list->first; link; link= link->next) {
|
|
|
|
if (vlink != link) {
|
|
|
|
if (!strcmp(GIVE_STRADDR(link, name_offs), tempname)) {
|
|
|
|
exists = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (exists == 0) {
|
|
|
|
BLI_strncpy(GIVE_STRADDR(vlink, name_offs), tempname, len);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-14 13:21:32 +00:00
|
|
|
/* ******************** string encoding ***************** */
|
|
|
|
|
|
|
|
/* This is quite an ugly function... its purpose is to
|
|
|
|
* take the dir name, make it absolute, and clean it up, replacing
|
|
|
|
* excess file entry stuff (like /tmp/../tmp/../)
|
|
|
|
* note that dir isn't protected for max string names...
|
2008-04-28 21:29:15 +00:00
|
|
|
*
|
|
|
|
* If relbase is NULL then its ignored
|
2005-12-14 13:21:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
void BLI_cleanup_dir(const char *relabase, char *dir)
|
2007-12-31 12:03:26 +00:00
|
|
|
{
|
|
|
|
BLI_cleanup_file(relabase, dir);
|
2008-06-05 13:02:00 +00:00
|
|
|
BLI_add_slash(dir);
|
|
|
|
|
2007-12-31 12:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BLI_cleanup_file(const char *relabase, char *dir)
|
2005-12-14 13:21:32 +00:00
|
|
|
{
|
|
|
|
short a;
|
|
|
|
char *start, *eind;
|
2008-04-28 21:29:15 +00:00
|
|
|
if (relabase) {
|
2008-05-04 09:41:15 +00:00
|
|
|
BLI_convertstringcode(dir, relabase);
|
2008-06-05 13:02:00 +00:00
|
|
|
} else {
|
|
|
|
if (dir[0]=='/' && dir[1]=='/') {
|
|
|
|
if (dir[2]== '\0') {
|
|
|
|
return; /* path is "//" - cant clean it */
|
|
|
|
}
|
|
|
|
dir = dir+2; /* skip the first // */
|
|
|
|
}
|
2008-04-28 21:29:15 +00:00
|
|
|
}
|
2005-12-14 13:21:32 +00:00
|
|
|
|
2008-06-11 09:04:41 +00:00
|
|
|
/* Note
|
|
|
|
* memmove( start, eind, strlen(eind)+1 );
|
|
|
|
* is the same as
|
|
|
|
* strcpy( start, eind );
|
|
|
|
* except strcpy should not be used because there is overlap,
|
|
|
|
* so use memmove's slightly more obscure syntax - Campbell
|
|
|
|
*/
|
2005-12-14 13:21:32 +00:00
|
|
|
|
|
|
|
#ifdef WIN32
|
2008-10-06 08:02:35 +00:00
|
|
|
|
|
|
|
/* Note, this should really be moved to the file selector,
|
|
|
|
* since this function is used in many areas */
|
|
|
|
if(strcmp(dir, ".")==0) { /* happens for example in FILE_MAIN */
|
2006-08-20 14:41:13 +00:00
|
|
|
get_default_root(dir);
|
2005-12-14 13:21:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ( (start = strstr(dir, "\\..\\")) ) {
|
|
|
|
eind = start + strlen("\\..\\") - 1;
|
|
|
|
a = start-dir-1;
|
|
|
|
while (a>0) {
|
|
|
|
if (dir[a] == '\\') break;
|
|
|
|
a--;
|
|
|
|
}
|
2008-06-14 16:54:46 +00:00
|
|
|
if (a<0) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
memmove( dir+a, eind, strlen(eind)+1 );
|
|
|
|
}
|
2005-12-14 13:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while ( (start = strstr(dir,"\\.\\")) ){
|
|
|
|
eind = start + strlen("\\.\\") - 1;
|
2008-06-11 09:04:41 +00:00
|
|
|
memmove( start, eind, strlen(eind)+1 );
|
2005-12-14 13:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while ( (start = strstr(dir,"\\\\" )) ){
|
|
|
|
eind = start + strlen("\\\\") - 1;
|
2008-06-11 09:04:41 +00:00
|
|
|
memmove( start, eind, strlen(eind)+1 );
|
2005-12-14 13:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if((a = strlen(dir))){ /* remove the '\\' at the end */
|
|
|
|
while(a>0 && dir[a-1] == '\\'){
|
|
|
|
a--;
|
|
|
|
dir[a] = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-12-31 12:03:26 +00:00
|
|
|
#else
|
2005-12-14 13:21:32 +00:00
|
|
|
if(dir[0]=='.') { /* happens, for example in FILE_MAIN */
|
|
|
|
dir[0]= '/';
|
|
|
|
dir[1]= 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ( (start = strstr(dir, "/../")) ) {
|
|
|
|
eind = start + strlen("/../") - 1;
|
|
|
|
a = start-dir-1;
|
|
|
|
while (a>0) {
|
|
|
|
if (dir[a] == '/') break;
|
|
|
|
a--;
|
|
|
|
}
|
2008-06-14 16:54:46 +00:00
|
|
|
if (a<0) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
memmove( dir+a, eind, strlen(eind)+1 );
|
|
|
|
}
|
2005-12-14 13:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while ( (start = strstr(dir,"/./")) ){
|
|
|
|
eind = start + strlen("/./") - 1;
|
2008-06-11 09:04:41 +00:00
|
|
|
memmove( start, eind, strlen(eind)+1 );
|
2005-12-14 13:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while ( (start = strstr(dir,"//" )) ){
|
|
|
|
eind = start + strlen("//") - 1;
|
2008-06-11 09:04:41 +00:00
|
|
|
memmove( start, eind, strlen(eind)+1 );
|
2005-12-14 13:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( (a = strlen(dir)) ){ /* remove all '/' at the end */
|
|
|
|
while(dir[a-1] == '/'){
|
|
|
|
a--;
|
|
|
|
dir[a] = 0;
|
|
|
|
if (a<=0) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-24 20:52:51 +00:00
|
|
|
void BLI_makestringcode(const char *relfile, char *file)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2005-10-24 20:52:51 +00:00
|
|
|
char * p;
|
|
|
|
char * q;
|
|
|
|
char * lslash;
|
|
|
|
char temp[FILE_MAXDIR+FILE_MAXFILE];
|
|
|
|
char res[FILE_MAXDIR+FILE_MAXFILE];
|
2008-04-28 21:29:15 +00:00
|
|
|
|
2005-12-11 22:03:04 +00:00
|
|
|
/* if file is already relative, bail out */
|
|
|
|
if(file[0]=='/' && file[1]=='/') return;
|
|
|
|
|
2006-08-20 14:41:13 +00:00
|
|
|
/* also bail out if relative path is not set */
|
|
|
|
if (relfile[0] == 0) return;
|
|
|
|
|
2007-02-21 20:00:03 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
if (strlen(relfile) > 2 && relfile[1] != ':') {
|
|
|
|
char* ptemp;
|
|
|
|
/* fix missing volume name in relative base,
|
|
|
|
can happen with old .Blog files */
|
|
|
|
get_default_root(temp);
|
|
|
|
ptemp = &temp[2];
|
|
|
|
if (relfile[0] != '\\' && relfile[0] != '/') {
|
|
|
|
ptemp++;
|
|
|
|
}
|
|
|
|
BLI_strncpy(ptemp, relfile, FILE_MAXDIR + FILE_MAXFILE-3);
|
|
|
|
} else {
|
|
|
|
BLI_strncpy(temp, relfile, FILE_MAXDIR + FILE_MAXFILE);
|
|
|
|
}
|
|
|
|
|
2005-10-24 20:52:51 +00:00
|
|
|
if (strlen(file) > 2) {
|
|
|
|
if ( temp[1] == ':' && file[1] == ':' && temp[0] != file[0] )
|
|
|
|
return;
|
|
|
|
}
|
2007-02-21 20:00:03 +00:00
|
|
|
#else
|
|
|
|
BLI_strncpy(temp, relfile, FILE_MAX);
|
2005-05-20 12:18:11 +00:00
|
|
|
#endif
|
2005-10-24 20:52:51 +00:00
|
|
|
|
|
|
|
BLI_char_switch(temp, '\\', '/');
|
|
|
|
BLI_char_switch(file, '\\', '/');
|
2008-04-28 21:29:15 +00:00
|
|
|
|
|
|
|
/* remove /./ which confuse the following slash counting... */
|
|
|
|
BLI_cleanup_file(NULL, file);
|
|
|
|
BLI_cleanup_file(NULL, temp);
|
|
|
|
|
2005-10-24 20:52:51 +00:00
|
|
|
/* the last slash in the file indicates where the path part ends */
|
|
|
|
lslash = BLI_last_slash(temp);
|
|
|
|
|
|
|
|
if (lslash)
|
|
|
|
{
|
|
|
|
/* find the prefix of the filename that is equal for both filenames.
|
|
|
|
This is replaced by the two slashes at the beginning */
|
|
|
|
p = temp;
|
|
|
|
q = file;
|
|
|
|
while (*p == *q) {
|
|
|
|
++p; ++q;
|
|
|
|
}
|
|
|
|
/* we might have passed the slash when the beginning of a dir matches
|
|
|
|
so we rewind. Only check on the actual filename
|
|
|
|
*/
|
|
|
|
if (*q != '/') {
|
|
|
|
while ( (q >= file) && (*q != '/') ) { --q; --p; }
|
|
|
|
}
|
|
|
|
else if (*p != '/') {
|
|
|
|
while ( (p >= temp) && (*p != '/') ) { --p; --q; }
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(res, "//");
|
|
|
|
|
|
|
|
/* p now points to the slash that is at the beginning of the part
|
|
|
|
where the path is different from the relative path.
|
|
|
|
We count the number of directories we need to go up in the
|
|
|
|
hierarchy to arrive at the common 'prefix' of the path
|
|
|
|
*/
|
|
|
|
while (p && p < lslash) {
|
|
|
|
if (*p == '/')
|
|
|
|
strcat(res, "../");
|
|
|
|
++p;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2005-10-24 20:52:51 +00:00
|
|
|
|
|
|
|
strcat(res, q+1); /* don't copy the slash at the beginning */
|
2005-12-14 13:21:32 +00:00
|
|
|
|
2005-10-24 20:52:51 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
BLI_char_switch(res+2, '/', '\\');
|
|
|
|
#endif
|
|
|
|
strcpy(file, res);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-10 19:19:54 +00:00
|
|
|
int BLI_has_parent(char *path)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
int slashes = 0;
|
|
|
|
BLI_clean(path);
|
|
|
|
BLI_add_slash(path);
|
|
|
|
|
|
|
|
len = strlen(path)-1;
|
2009-07-12 13:06:52 +00:00
|
|
|
while (len>=0) {
|
2009-07-10 19:19:54 +00:00
|
|
|
if ((path[len] == '\\') || (path[len] == '/'))
|
|
|
|
slashes++;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
return slashes > 1;
|
|
|
|
}
|
|
|
|
|
2008-09-22 15:37:32 +00:00
|
|
|
int BLI_parent_dir(char *path)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2008-09-22 21:15:48 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
static char *parent_dir="..\\";
|
|
|
|
#else
|
|
|
|
static char *parent_dir="../";
|
|
|
|
#endif
|
2008-09-22 15:37:32 +00:00
|
|
|
char tmp[FILE_MAXDIR+FILE_MAXFILE+4];
|
|
|
|
BLI_strncpy(tmp, path, sizeof(tmp));
|
|
|
|
BLI_add_slash(tmp);
|
2008-09-22 21:15:48 +00:00
|
|
|
strcat(tmp, parent_dir);
|
2008-09-22 15:37:32 +00:00
|
|
|
BLI_cleanup_dir(NULL, tmp);
|
|
|
|
|
2008-09-22 21:15:48 +00:00
|
|
|
if (!BLI_testextensie(tmp, parent_dir)) {
|
2008-09-22 15:37:32 +00:00
|
|
|
BLI_strncpy(path, tmp, sizeof(tmp));
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2008-05-04 09:41:15 +00:00
|
|
|
|
|
|
|
int BLI_convertstringframe(char *path, int frame)
|
|
|
|
{
|
|
|
|
int ch_sta, ch_end, i;
|
|
|
|
/* Insert current frame: file### -> file001 */
|
|
|
|
ch_sta = ch_end = 0;
|
|
|
|
for (i = 0; path[i] != '\0'; i++) {
|
|
|
|
if (path[i] == '\\' || path[i] == '/') {
|
|
|
|
ch_end = 0; /* this is a directory name, dont use any hashes we found */
|
|
|
|
} else if (path[i] == '#') {
|
|
|
|
ch_sta = i;
|
|
|
|
ch_end = ch_sta+1;
|
|
|
|
while (path[ch_end] == '#') {
|
|
|
|
ch_end++;
|
|
|
|
}
|
|
|
|
i = ch_end-1; /* keep searching */
|
|
|
|
|
|
|
|
/* dont break, there may be a slash after this that invalidates the previous #'s */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ch_end) { /* warning, ch_end is the last # +1 */
|
|
|
|
/* Add the frame number? */
|
|
|
|
short numlen, hashlen;
|
|
|
|
char tmp[FILE_MAX];
|
|
|
|
|
|
|
|
char format[16]; /* 6 is realistically the maxframe (300000), so 8 should be enough, but 16 to be safe. */
|
|
|
|
if (((ch_end-1)-ch_sta) >= 16) {
|
|
|
|
ch_end = ch_sta+15; /* disallow values longer then 'format' can hold */
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(tmp, path);
|
|
|
|
|
|
|
|
numlen = 1 + (int)log10((double)frame); /* this is the number of chars in the number */
|
|
|
|
hashlen = ch_end - ch_sta;
|
|
|
|
|
|
|
|
sprintf(format, "%d", frame);
|
|
|
|
|
|
|
|
if (numlen==hashlen) { /* simple case */
|
|
|
|
memcpy(tmp+ch_sta, format, numlen);
|
|
|
|
} else if (numlen < hashlen) {
|
|
|
|
memcpy(tmp+ch_sta + (hashlen-numlen), format, numlen); /*dont copy the string terminator */
|
|
|
|
memset(tmp+ch_sta, '0', hashlen-numlen);
|
|
|
|
} else {
|
|
|
|
/* number is longer then number of #'s */
|
|
|
|
if (tmp[ch_end] == '\0') { /* hashes are last, no need to move any string*/
|
|
|
|
/* bad juju - not testing string length here :/ */
|
|
|
|
memcpy(tmp+ch_sta, format, numlen+1); /* add 1 to get the string terminator \0 */
|
|
|
|
} else {
|
|
|
|
/* we need to move the end characters, reuse i */
|
|
|
|
int j;
|
|
|
|
|
|
|
|
i = strlen(tmp); /* +1 to copy the string terminator */
|
|
|
|
j = i + (numlen-hashlen); /* from/to */
|
|
|
|
|
|
|
|
while (i >= ch_end) {
|
|
|
|
tmp[j] = tmp[i];
|
|
|
|
i--;
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
memcpy(tmp + ch_sta, format, numlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
strcpy(path, tmp);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2006-09-16 11:42:37 +00:00
|
|
|
|
2006-08-20 14:41:13 +00:00
|
|
|
|
2008-05-04 09:41:15 +00:00
|
|
|
int BLI_convertstringcode(char *path, const char *basepath)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2008-09-30 04:08:00 +00:00
|
|
|
int wasrelative = (strncmp(path, "//", 2)==0);
|
2008-03-30 16:18:01 +00:00
|
|
|
char tmp[FILE_MAX];
|
|
|
|
char base[FILE_MAX];
|
2006-08-20 14:41:13 +00:00
|
|
|
#ifdef WIN32
|
2006-09-16 11:42:37 +00:00
|
|
|
char vol[3] = {'\0', '\0', '\0'};
|
|
|
|
|
2006-10-02 16:11:57 +00:00
|
|
|
BLI_strncpy(vol, path, 3);
|
2006-09-16 11:42:37 +00:00
|
|
|
/* we are checking here if we have an absolute path that is not in the current
|
|
|
|
blend file as a lib main - we are basically checking for the case that a
|
|
|
|
UNIX root '/' is passed.
|
|
|
|
*/
|
|
|
|
if (!wasrelative && (vol[1] != ':' && (vol[0] == '\0' || vol[0] == '/' || vol[0] == '\\'))) {
|
|
|
|
char *p = path;
|
2006-08-20 14:41:13 +00:00
|
|
|
get_default_root(tmp);
|
|
|
|
// get rid of the slashes at the beginning of the path
|
2006-09-16 11:42:37 +00:00
|
|
|
while (*p == '\\' || *p == '/') {
|
|
|
|
p++;
|
2006-08-20 14:41:13 +00:00
|
|
|
}
|
2006-09-16 11:42:37 +00:00
|
|
|
strcat(tmp, p);
|
2006-08-20 14:41:13 +00:00
|
|
|
}
|
|
|
|
else {
|
2008-03-30 16:18:01 +00:00
|
|
|
BLI_strncpy(tmp, path, FILE_MAX);
|
2006-08-20 14:41:13 +00:00
|
|
|
}
|
|
|
|
#else
|
2008-03-30 16:18:01 +00:00
|
|
|
BLI_strncpy(tmp, path, FILE_MAX);
|
2008-09-30 04:08:00 +00:00
|
|
|
|
|
|
|
/* Check for loading a windows path on a posix system
|
|
|
|
* in this case, there is no use in trying C:/ since it
|
|
|
|
* will never exist on a unix os.
|
|
|
|
*
|
|
|
|
* Add a / prefix and lowercase the driveletter, remove the :
|
|
|
|
* C:\foo.JPG -> /c/foo.JPG */
|
|
|
|
|
2008-10-03 19:30:45 +00:00
|
|
|
if (isalpha(tmp[0]) && tmp[1] == ':' && (tmp[2]=='\\' || tmp[2]=='/') ) {
|
2008-09-30 04:08:00 +00:00
|
|
|
tmp[1] = tolower(tmp[0]); /* replace ':' with driveletter */
|
|
|
|
tmp[0] = '/';
|
|
|
|
/* '\' the slash will be converted later */
|
|
|
|
}
|
|
|
|
|
2006-08-20 14:41:13 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-30 16:18:01 +00:00
|
|
|
BLI_strncpy(base, basepath, FILE_MAX);
|
2005-05-20 12:18:11 +00:00
|
|
|
|
2008-04-28 21:29:15 +00:00
|
|
|
BLI_cleanup_file(NULL, base);
|
2005-05-20 12:18:11 +00:00
|
|
|
|
|
|
|
/* push slashes into unix mode - strings entering this part are
|
|
|
|
potentially messed up: having both back- and forward slashes.
|
|
|
|
Here we push into one conform direction, and at the end we
|
|
|
|
push them into the system specific dir. This ensures uniformity
|
|
|
|
of paths and solving some problems (and prevent potential future
|
|
|
|
ones) -jesterKing. */
|
|
|
|
BLI_char_switch(tmp, '\\', '/');
|
2006-08-20 14:41:13 +00:00
|
|
|
BLI_char_switch(base, '\\', '/');
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2008-06-05 13:02:00 +00:00
|
|
|
/* Paths starting with // will get the blend file as their base,
|
|
|
|
* this isnt standard in any os but is uesed in blender all over the place */
|
2008-06-14 16:54:46 +00:00
|
|
|
if (wasrelative) {
|
2005-05-20 12:18:11 +00:00
|
|
|
char *lslash= BLI_last_slash(base);
|
2002-10-12 11:37:38 +00:00
|
|
|
if (lslash) {
|
2005-05-20 12:18:11 +00:00
|
|
|
int baselen= (int) (lslash-base) + 1;
|
2008-06-05 13:02:00 +00:00
|
|
|
/* use path for for temp storage here, we copy back over it right away */
|
|
|
|
BLI_strncpy(path, tmp+2, FILE_MAX);
|
|
|
|
|
2005-05-20 12:18:11 +00:00
|
|
|
memcpy(tmp, base, baselen);
|
2008-06-05 13:02:00 +00:00
|
|
|
strcpy(tmp+baselen, path);
|
|
|
|
strcpy(path, tmp);
|
2002-10-12 11:37:38 +00:00
|
|
|
} else {
|
2008-06-05 13:02:00 +00:00
|
|
|
strcpy(path, tmp+2);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2008-06-05 13:02:00 +00:00
|
|
|
} else {
|
|
|
|
strcpy(path, tmp);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2008-04-11 15:47:21 +00:00
|
|
|
|
2008-06-05 13:12:17 +00:00
|
|
|
if (path[0]!='\0') {
|
|
|
|
if ( path[strlen(path)-1]=='/') {
|
|
|
|
BLI_cleanup_dir(NULL, path);
|
|
|
|
} else {
|
|
|
|
BLI_cleanup_file(NULL, path);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2008-05-04 09:41:15 +00:00
|
|
|
|
2005-05-20 12:18:11 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
/* skip first two chars, which in case of
|
|
|
|
absolute path will be drive:/blabla and
|
|
|
|
in case of relpath //blabla/. So relpath
|
|
|
|
// will be retained, rest will be nice and
|
|
|
|
shiny win32 backward slashes :) -jesterKing
|
|
|
|
*/
|
|
|
|
BLI_char_switch(path+2, '/', '\\');
|
|
|
|
#endif
|
2008-04-28 21:29:15 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return wasrelative;
|
|
|
|
}
|
|
|
|
|
2008-09-15 01:32:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Should only be done with command line paths.
|
|
|
|
* this is NOT somthing blenders internal paths support like the // prefix
|
|
|
|
*/
|
|
|
|
int BLI_convertstringcwd(char *path)
|
|
|
|
{
|
|
|
|
int wasrelative = 1;
|
|
|
|
int filelen = strlen(path);
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
if (filelen >= 3 && path[1] == ':' && (path[2] == '\\' || path[2] == '/'))
|
|
|
|
wasrelative = 0;
|
|
|
|
#else
|
|
|
|
if (filelen >= 2 && path[0] == '/')
|
|
|
|
wasrelative = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (wasrelative==1) {
|
|
|
|
char cwd[FILE_MAXDIR + FILE_MAXFILE];
|
|
|
|
BLI_getwdN(cwd); /* incase the full path to the blend isnt used */
|
|
|
|
|
|
|
|
if (cwd[0] == '\0') {
|
|
|
|
printf( "Could not get the current working directory - $PWD for an unknown reason.");
|
|
|
|
} else {
|
|
|
|
/* uses the blend path relative to cwd important for loading relative linked files.
|
|
|
|
*
|
|
|
|
* cwd should contain c:\ etc on win32 so the relbase can be NULL
|
|
|
|
* relbase being NULL also prevents // being misunderstood as relative to the current
|
|
|
|
* blend file which isnt a feature we want to use in this case since were dealing
|
|
|
|
* with a path from the command line, rather then from inside Blender */
|
|
|
|
|
|
|
|
char origpath[FILE_MAXDIR + FILE_MAXFILE];
|
|
|
|
BLI_strncpy(origpath, path, FILE_MAXDIR + FILE_MAXFILE);
|
|
|
|
|
|
|
|
BLI_make_file_string(NULL, path, cwd, origpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return wasrelative;
|
|
|
|
}
|
|
|
|
|
2008-09-15 01:32:53 +00:00
|
|
|
|
2008-03-06 21:25:15 +00:00
|
|
|
/* copy di to fi, filename only */
|
2006-12-01 19:52:04 +00:00
|
|
|
void BLI_splitdirstring(char *di, char *fi)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
char *lslash= BLI_last_slash(di);
|
|
|
|
|
|
|
|
if (lslash) {
|
2006-12-01 19:52:04 +00:00
|
|
|
BLI_strncpy(fi, lslash+1, FILE_MAXFILE);
|
2002-10-12 11:37:38 +00:00
|
|
|
*(lslash+1)=0;
|
|
|
|
} else {
|
2006-12-01 19:52:04 +00:00
|
|
|
BLI_strncpy(fi, di, FILE_MAXFILE);
|
2002-10-12 11:37:38 +00:00
|
|
|
di[0]= 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-30 20:34:00 +00:00
|
|
|
void BLI_getlastdir(const char* dir, char *last, int maxlen)
|
|
|
|
{
|
2009-07-09 15:40:04 +00:00
|
|
|
const char *s = dir;
|
|
|
|
const char *lslash = NULL;
|
|
|
|
const char *prevslash = NULL;
|
2009-06-30 20:34:00 +00:00
|
|
|
while (*s) {
|
|
|
|
if ((*s == '\\') || (*s == '/')) {
|
|
|
|
prevslash = lslash;
|
|
|
|
lslash = s;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (prevslash) {
|
|
|
|
BLI_strncpy(last, prevslash+1, maxlen);
|
|
|
|
} else {
|
|
|
|
BLI_strncpy(last, dir, maxlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
char *BLI_gethome(void) {
|
2009-06-21 16:18:38 +00:00
|
|
|
#if !defined(WIN32)
|
2002-10-12 11:37:38 +00:00
|
|
|
return getenv("HOME");
|
|
|
|
|
|
|
|
#else /* Windows */
|
|
|
|
char * ret;
|
|
|
|
static char dir[512];
|
2008-04-21 15:53:32 +00:00
|
|
|
static char appdatapath[MAXPATHLEN];
|
|
|
|
HRESULT hResult;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2004-07-11 21:54:18 +00:00
|
|
|
/* Check for %HOME% env var */
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ret = getenv("HOME");
|
|
|
|
if(ret) {
|
2005-03-03 20:40:48 +00:00
|
|
|
sprintf(dir, "%s\\.blender", ret);
|
2004-05-10 20:35:46 +00:00
|
|
|
if (BLI_exists(dir)) return dir;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2004-07-11 21:54:18 +00:00
|
|
|
|
|
|
|
/* else, check install dir (path containing blender.exe) */
|
|
|
|
|
|
|
|
BLI_getInstallationDir(dir);
|
|
|
|
|
|
|
|
if (BLI_exists(dir))
|
|
|
|
{
|
2005-03-03 20:40:48 +00:00
|
|
|
strcat(dir,"\\.blender");
|
2004-07-11 21:54:18 +00:00
|
|
|
if (BLI_exists(dir)) return(dir);
|
|
|
|
}
|
|
|
|
|
2003-08-11 18:53:23 +00:00
|
|
|
|
|
|
|
/* add user profile support for WIN 2K / NT */
|
2008-04-21 15:53:32 +00:00
|
|
|
hResult = SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, SHGFP_TYPE_CURRENT, appdatapath);
|
|
|
|
|
|
|
|
if (hResult == S_OK)
|
|
|
|
{
|
|
|
|
if (BLI_exists(appdatapath)) { /* from fop, also below... */
|
|
|
|
sprintf(dir, "%s\\Blender Foundation\\Blender", appdatapath);
|
|
|
|
BLI_recurdir_fileops(dir);
|
|
|
|
if (BLI_exists(dir)) {
|
|
|
|
strcat(dir,"\\.blender");
|
|
|
|
if(BLI_exists(dir)) return(dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
hResult = SHGetFolderPath(NULL, CSIDL_COMMON_APPDATA, NULL, SHGFP_TYPE_CURRENT, appdatapath);
|
|
|
|
if (hResult == S_OK)
|
|
|
|
{
|
|
|
|
if (BLI_exists(appdatapath))
|
|
|
|
{ /* from fop, also below... */
|
|
|
|
sprintf(dir, "%s\\Blender Foundation\\Blender", appdatapath);
|
|
|
|
BLI_recurdir_fileops(dir);
|
|
|
|
if (BLI_exists(dir)) {
|
|
|
|
strcat(dir,"\\.blender");
|
|
|
|
if(BLI_exists(dir)) return(dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-24 21:35:56 +00:00
|
|
|
#if 0
|
2002-10-12 11:37:38 +00:00
|
|
|
ret = getenv("USERPROFILE");
|
|
|
|
if (ret) {
|
2008-04-24 21:35:56 +00:00
|
|
|
if (BLI_exists(ret)) { /* from fop, also below... */
|
2005-03-03 20:40:48 +00:00
|
|
|
sprintf(dir, "%s\\Application Data\\Blender Foundation\\Blender", ret);
|
2002-10-12 11:37:38 +00:00
|
|
|
BLI_recurdir_fileops(dir);
|
|
|
|
if (BLI_exists(dir)) {
|
2005-03-03 20:40:48 +00:00
|
|
|
strcat(dir,"\\.blender");
|
2004-04-20 19:12:48 +00:00
|
|
|
if(BLI_exists(dir)) return(dir);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-24 21:35:56 +00:00
|
|
|
#endif
|
2003-08-11 18:53:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Saving in the Windows dir is less than desirable.
|
|
|
|
Use as a last resort ONLY! (aphex)
|
|
|
|
*/
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
ret = getenv("WINDOWS");
|
|
|
|
if (ret) {
|
|
|
|
if(BLI_exists(ret)) return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = getenv("WINDIR");
|
|
|
|
if (ret) {
|
|
|
|
if(BLI_exists(ret)) return ret;
|
|
|
|
}
|
|
|
|
|
2003-08-11 18:53:23 +00:00
|
|
|
return "C:\\Temp"; /* sheesh! bad, bad, bad! (aphex) */
|
2002-10-12 11:37:38 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-04-11 02:18:24 +00:00
|
|
|
/* this function returns the path to a blender folder, if it exists,
|
|
|
|
* trying in this order:
|
|
|
|
*
|
2009-04-16 13:01:50 +00:00
|
|
|
* path_to_executable/release/folder_name (in svn)
|
|
|
|
* ./release/folder_name (in svn)
|
2009-04-16 21:39:45 +00:00
|
|
|
* $HOME/.blender/folder_name
|
|
|
|
* path_to_executable/.blender/folder_name
|
2009-04-11 02:18:24 +00:00
|
|
|
*
|
|
|
|
* returns NULL if none is found. */
|
|
|
|
|
|
|
|
char *BLI_gethome_folder(char *folder_name)
|
|
|
|
{
|
|
|
|
extern char bprogname[]; /* argv[0] from creator.c */
|
|
|
|
static char homedir[FILE_MAXDIR] = "";
|
|
|
|
static char fulldir[FILE_MAXDIR] = "";
|
|
|
|
char tmpdir[FILE_MAXDIR];
|
|
|
|
char bprogdir[FILE_MAXDIR];
|
|
|
|
char *s;
|
|
|
|
int i;
|
|
|
|
|
2009-04-19 13:37:59 +00:00
|
|
|
/* use argv[0] (bprogname) to get the path to the executable */
|
|
|
|
s = BLI_last_slash(bprogname);
|
|
|
|
|
|
|
|
i = s - bprogname + 1;
|
|
|
|
BLI_strncpy(bprogdir, bprogname, i);
|
|
|
|
|
2009-04-16 21:39:45 +00:00
|
|
|
/* try path_to_executable/release/folder_name (in svn) */
|
|
|
|
if (folder_name) {
|
|
|
|
BLI_snprintf(tmpdir, sizeof(tmpdir), "release/%s", folder_name);
|
|
|
|
BLI_make_file_string("/", fulldir, bprogdir, tmpdir);
|
|
|
|
if (BLI_exists(fulldir)) return fulldir;
|
|
|
|
else fulldir[0] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* try ./release/folder_name (in svn) */
|
2009-04-11 02:18:24 +00:00
|
|
|
if(folder_name) {
|
2009-04-16 21:39:45 +00:00
|
|
|
BLI_snprintf(fulldir, sizeof(fulldir), "./release/%s", folder_name);
|
|
|
|
if (BLI_exists(fulldir)) return fulldir;
|
|
|
|
else fulldir[0] = '\0';
|
2009-04-11 02:18:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* BLI_gethome() can return NULL if env vars are not set */
|
|
|
|
s = BLI_gethome();
|
|
|
|
|
|
|
|
if(!s) { /* bail if no $HOME */
|
|
|
|
printf("$HOME is NOT set\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(strstr(s, ".blender"))
|
|
|
|
BLI_strncpy(homedir, s, FILE_MAXDIR);
|
|
|
|
else
|
|
|
|
BLI_make_file_string("/", homedir, s, ".blender");
|
|
|
|
|
|
|
|
/* if $HOME/.blender/folder_name exists, return it */
|
|
|
|
if(BLI_exists(homedir)) {
|
|
|
|
if (folder_name) {
|
|
|
|
BLI_make_file_string("/", fulldir, homedir, folder_name);
|
|
|
|
if(BLI_exists(fulldir))
|
|
|
|
return fulldir;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return homedir;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
homedir[0] = '\0';
|
|
|
|
|
|
|
|
/* using tmpdir to preserve homedir (if) found above:
|
|
|
|
* the ideal is to have a home dir with folder_name dir inside
|
|
|
|
* it, but if that isn't available, it's possible to
|
|
|
|
* have a 'broken' home dir somewhere and a folder_name dir in the
|
|
|
|
* svn sources */
|
|
|
|
BLI_make_file_string("/", tmpdir, bprogdir, ".blender");
|
|
|
|
|
|
|
|
if(BLI_exists(tmpdir)) {
|
|
|
|
if(folder_name) {
|
|
|
|
BLI_make_file_string("/", fulldir, tmpdir, folder_name);
|
|
|
|
if(BLI_exists(fulldir)) {
|
|
|
|
BLI_strncpy(homedir, tmpdir, FILE_MAXDIR);
|
|
|
|
return fulldir;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
homedir[0] = '\0';
|
|
|
|
fulldir[0] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else return homedir;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-20 12:18:11 +00:00
|
|
|
void BLI_clean(char *path)
|
|
|
|
{
|
2005-05-20 12:37:48 +00:00
|
|
|
if(path==0) return;
|
2005-05-20 12:18:11 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
if(path && strlen(path)>2) {
|
|
|
|
BLI_char_switch(path+2, '/', '\\');
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
BLI_char_switch(path, '\\', '/');
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void BLI_char_switch(char *string, char from, char to)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2005-05-20 12:37:48 +00:00
|
|
|
if(string==0) return;
|
2002-10-12 11:37:38 +00:00
|
|
|
while (*string != 0) {
|
|
|
|
if (*string == from) *string = to;
|
|
|
|
string++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-20 12:18:11 +00:00
|
|
|
void BLI_make_exist(char *dir) {
|
2002-10-12 11:37:38 +00:00
|
|
|
int a;
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2005-05-20 12:18:11 +00:00
|
|
|
BLI_char_switch(dir, '/', '\\');
|
2002-10-12 11:37:38 +00:00
|
|
|
#else
|
2005-05-20 12:18:11 +00:00
|
|
|
BLI_char_switch(dir, '\\', '/');
|
2002-10-12 11:37:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
a = strlen(dir);
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
while(BLI_exists(dir) == 0){
|
|
|
|
a --;
|
|
|
|
while(dir[a] != '\\'){
|
|
|
|
a--;
|
|
|
|
if (a <= 0) break;
|
|
|
|
}
|
|
|
|
if (a >= 0) dir[a+1] = 0;
|
|
|
|
else {
|
2007-02-28 20:11:10 +00:00
|
|
|
/* defaulting to drive (usually 'C:') of Windows installation */
|
2006-08-20 14:41:13 +00:00
|
|
|
get_default_root(dir);
|
2002-10-12 11:37:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
while(BLI_exist(dir) == 0){
|
|
|
|
a --;
|
|
|
|
while(dir[a] != '/'){
|
|
|
|
a--;
|
|
|
|
if (a <= 0) break;
|
|
|
|
}
|
|
|
|
if (a >= 0) dir[a+1] = 0;
|
|
|
|
else {
|
|
|
|
strcpy(dir,"/");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
Giant commit!
A full detailed description of this will be done later... is several days
of work. Here's a summary:
Render:
- Full cleanup of render code, removing *all* globals and bad level calls
all over blender. Render module is now not called abusive anymore
- API-fied calls to rendering
- Full recode of internal render pipeline. Is now rendering tiles by
default, prepared for much smarter 'bucket' render later.
- Each thread now can render a full part
- Renders were tested with 4 threads, goes fine, apart from some lookup
tables in softshadow and AO still
- Rendering is prepared to do multiple layers and passes
- No single 32 bits trick in render code anymore, all 100% floats now.
Writing images/movies
- moved writing images to blender kernel (bye bye 'schrijfplaatje'!)
- made a new Movie handle system, also in kernel. This will enable much
easier use of movies in Blender
PreviewRender:
- Using new render API, previewrender (in buttons) now uses regular render
code to generate images.
- new datafile 'preview.blend.c' has the preview scenes in it
- previews get rendered in exact displayed size (1 pixel = 1 pixel)
3D Preview render
- new; press Pkey in 3d window, for a panel that continuously renders
(pkey is for games, i know... but we dont do that in orange now!)
- this render works nearly identical to buttons-preview render, so it stops
rendering on any event (mouse, keyboard, etc)
- on moving/scaling the panel, the render code doesn't recreate all geometry
- same for shifting/panning view
- all other operations (now) regenerate the full render database still.
- this is WIP... but big fun, especially for simple scenes!
Compositor
- Using same node system as now in use for shaders, you can composit images
- works pretty straightforward... needs much more options/tools and integration
with rendering still
- is not threaded yet, nor is so smart to only recalculate changes... will be
done soon!
- the "Render Result" node will get all layers/passes as output sockets
- The "Output" node renders to a builtin image, which you can view in the Image
window. (yes, output nodes to render-result, and to files, is on the list!)
The Bad News
- "Unified Render" is removed. It might come back in some stage, but this
system should be built from scratch. I can't really understand this code...
I expect it is not much needed, especially with advanced layer/passes
control
- Panorama render, Field render, Motion blur, is not coded yet... (I had to
recode every single feature in render, so...!)
- Lens Flare is also not back... needs total revision, might become composit
effect though (using zbuffer for visibility)
- Part render is gone! (well, thats obvious, its default now).
- The render window is only restored with limited functionality... I am going
to check first the option to render to a Image window, so Blender can become
a true single-window application. :)
For example, the 'Spare render buffer' (jkey) doesnt work.
- Render with border, now default creates a smaller image
- No zbuffers are written yet... on the todo!
- Scons files and MSVC will need work to get compiling again
OK... thats what I can quickly recall. Now go compiling!
2006-01-23 22:05:47 +00:00
|
|
|
void BLI_make_existing_file(char *name)
|
|
|
|
{
|
|
|
|
char di[FILE_MAXDIR], fi[FILE_MAXFILE];
|
|
|
|
|
|
|
|
strcpy(di, name);
|
|
|
|
BLI_splitdirstring(di, fi);
|
|
|
|
|
|
|
|
/* test exist */
|
|
|
|
if (BLI_exists(di) == 0) {
|
|
|
|
BLI_recurdir_fileops(di);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-05 13:09:43 +00:00
|
|
|
void BLI_make_file_string(const char *relabase, char *string, const char *dir, const char *file)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2006-02-11 15:02:23 +00:00
|
|
|
int sl;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
if (!string || !dir || !file) return; /* We don't want any NULLs */
|
|
|
|
|
|
|
|
string[0]= 0; /* ton */
|
2005-06-10 13:12:59 +00:00
|
|
|
|
2005-05-20 12:18:11 +00:00
|
|
|
/* we first push all slashes into unix mode, just to make sure we don't get
|
|
|
|
any mess with slashes later on. -jesterKing */
|
2005-11-05 13:09:43 +00:00
|
|
|
/* constant strings can be passed for those parameters - don't change them - elubie */
|
|
|
|
/*
|
2005-05-20 12:18:11 +00:00
|
|
|
BLI_char_switch(relabase, '\\', '/');
|
|
|
|
BLI_char_switch(dir, '\\', '/');
|
|
|
|
BLI_char_switch(file, '\\', '/');
|
2005-11-05 13:09:43 +00:00
|
|
|
*/
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
/* Resolve relative references */
|
|
|
|
if (relabase && dir[0] == '/' && dir[1] == '/') {
|
|
|
|
char *lslash;
|
|
|
|
|
|
|
|
/* Get the file name, chop everything past the last slash (ie. the filename) */
|
|
|
|
strcpy(string, relabase);
|
|
|
|
|
|
|
|
lslash= (strrchr(string, '/')>strrchr(string, '\\'))?strrchr(string, '/'):strrchr(string, '\\');
|
|
|
|
|
|
|
|
if(lslash) *(lslash+1)= 0;
|
|
|
|
|
|
|
|
dir+=2; /* Skip over the relative reference */
|
|
|
|
}
|
2006-08-20 14:41:13 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
else {
|
|
|
|
if (strlen(dir) >= 2 && dir[1] == ':' ) {
|
|
|
|
BLI_strncpy(string, dir, 3);
|
|
|
|
dir += 2;
|
|
|
|
}
|
|
|
|
else { /* no drive specified */
|
|
|
|
/* first option: get the drive from the relabase if it has one */
|
|
|
|
if (relabase && strlen(relabase) >= 2 && relabase[1] == ':' ) {
|
|
|
|
BLI_strncpy(string, relabase, 3);
|
|
|
|
string[2] = '\\';
|
|
|
|
string[3] = '\0';
|
|
|
|
}
|
|
|
|
else { /* we're out of luck here, guessing the first valid drive, usually c:\ */
|
|
|
|
get_default_root(string);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ignore leading slashes */
|
|
|
|
while (*dir == '/' || *dir == '\\') dir++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
strcat(string, dir);
|
|
|
|
|
2006-02-11 15:02:23 +00:00
|
|
|
/* Make sure string ends in one (and only one) slash */
|
|
|
|
/* first trim all slashes from the end of the string */
|
|
|
|
sl = strlen(string);
|
|
|
|
while (sl>0 && ( string[sl-1] == '/' || string[sl-1] == '\\') ) {
|
|
|
|
string[sl-1] = '\0';
|
|
|
|
sl--;
|
|
|
|
}
|
|
|
|
/* since we've now removed all slashes, put back one slash at the end. */
|
|
|
|
strcat(string, "/");
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
while (*file && (*file == '/' || *file == '\\')) /* Trim slashes from the front of file */
|
|
|
|
file++;
|
|
|
|
|
|
|
|
strcat (string, file);
|
|
|
|
|
|
|
|
/* Push all slashes to the system preferred direction */
|
2005-06-10 13:12:59 +00:00
|
|
|
BLI_clean(string);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2006-12-20 17:57:56 +00:00
|
|
|
int BLI_testextensie(const char *str, const char *ext)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
short a, b;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
a= strlen(str);
|
|
|
|
b= strlen(ext);
|
|
|
|
|
|
|
|
if(a==0 || b==0 || b>=a) {
|
|
|
|
retval = 0;
|
2005-04-02 15:36:57 +00:00
|
|
|
} else if (BLI_strcasecmp(ext, str + a - b)) {
|
2002-10-12 11:37:38 +00:00
|
|
|
retval = 0;
|
|
|
|
} else {
|
|
|
|
retval = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
2008-04-26 13:08:57 +00:00
|
|
|
/*
|
|
|
|
* This is a simple version of BLI_split_dirfile that has the following advantages...
|
|
|
|
*
|
|
|
|
* Converts "/foo/bar.txt" to "/foo/" and "bar.txt"
|
|
|
|
* - wont change 'string'
|
|
|
|
* - wont create any directories
|
|
|
|
* - dosnt use CWD, or deal with relative paths.
|
|
|
|
* - Only fill's in *dir and *file when they are non NULL
|
|
|
|
* */
|
|
|
|
void BLI_split_dirfile_basic(const char *string, char *dir, char *file)
|
|
|
|
{
|
|
|
|
int lslash=0, i = 0;
|
|
|
|
for (i=0; string[i]!='\0'; i++) {
|
|
|
|
if (string[i]=='\\' || string[i]=='/')
|
|
|
|
lslash = i+1;
|
|
|
|
}
|
|
|
|
if (dir) {
|
|
|
|
if (lslash) {
|
|
|
|
BLI_strncpy( dir, string, lslash+1); /* +1 to include the slash and the last char */
|
|
|
|
} else {
|
|
|
|
dir[0] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
strcpy( file, string+lslash);
|
|
|
|
}
|
|
|
|
}
|
2005-03-28 15:29:59 +00:00
|
|
|
|
|
|
|
|
2008-04-26 13:08:57 +00:00
|
|
|
/* Warning,
|
|
|
|
* - May modify 'string' variable
|
|
|
|
* - May create the directory if it dosnt exist
|
|
|
|
* if this is not needed use BLI_split_dirfile_basic(...)
|
|
|
|
*/
|
2008-03-06 21:25:15 +00:00
|
|
|
void BLI_split_dirfile(char *string, char *dir, char *file)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
int a;
|
2007-03-17 14:46:04 +00:00
|
|
|
#ifdef WIN32
|
2006-08-20 14:41:13 +00:00
|
|
|
int sl;
|
|
|
|
short is_relative = 0;
|
2007-11-10 11:45:25 +00:00
|
|
|
char path[FILE_MAX];
|
2007-03-17 14:46:04 +00:00
|
|
|
#endif
|
2006-08-20 14:41:13 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
dir[0]= 0;
|
|
|
|
file[0]= 0;
|
|
|
|
|
|
|
|
#ifdef WIN32
|
2007-11-10 11:45:25 +00:00
|
|
|
BLI_strncpy(path, string, FILE_MAX);
|
|
|
|
BLI_char_switch(path, '/', '\\'); /* make sure we have a valid path format */
|
|
|
|
sl = strlen(path);
|
2006-08-20 14:41:13 +00:00
|
|
|
if (sl) {
|
2005-04-02 18:20:03 +00:00
|
|
|
int len;
|
2007-11-10 11:45:25 +00:00
|
|
|
if (path[0] == '/' || path[0] == '\\') {
|
|
|
|
BLI_strncpy(dir, path, FILE_MAXDIR);
|
|
|
|
if (sl > 1 && path[0] == '\\' && path[1] == '\\') is_relative = 1;
|
|
|
|
} else if (sl > 2 && path[1] == ':' && path[2] == '\\') {
|
|
|
|
BLI_strncpy(dir, path, FILE_MAXDIR);
|
2006-08-20 14:41:13 +00:00
|
|
|
} else {
|
|
|
|
BLI_getwdN(dir);
|
|
|
|
strcat(dir,"\\");
|
2007-11-10 11:45:25 +00:00
|
|
|
strcat(dir,path);
|
|
|
|
BLI_strncpy(path,dir,FILE_MAXDIR+FILE_MAXFILE);
|
2006-08-20 14:41:13 +00:00
|
|
|
}
|
2007-10-04 10:50:15 +00:00
|
|
|
|
2006-08-20 14:41:13 +00:00
|
|
|
// BLI_exist doesn't recognize a slashed dirname as a dir
|
|
|
|
// check if a trailing slash exists, and remove it. Do not do this
|
|
|
|
// when we are already at root. -jesterKing
|
|
|
|
a = strlen(dir);
|
|
|
|
if(a>=4 && dir[a-1]=='\\') dir[a-1] = 0;
|
|
|
|
|
|
|
|
if (is_relative) {
|
2007-09-18 08:29:18 +00:00
|
|
|
printf("WARNING: BLI_split_dirfile needs absolute dir\n");
|
2006-08-20 14:41:13 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
BLI_make_exist(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (S_ISDIR(BLI_exist(dir))) {
|
|
|
|
|
|
|
|
/* copy from end of string into file, to ensure filename itself isn't truncated
|
|
|
|
if string is too long. (aphex) */
|
|
|
|
|
2007-11-10 11:45:25 +00:00
|
|
|
len = FILE_MAXFILE - strlen(path);
|
2006-08-20 14:41:13 +00:00
|
|
|
|
|
|
|
if (len < 0)
|
2007-11-10 11:45:25 +00:00
|
|
|
BLI_strncpy(file,path + abs(len),FILE_MAXFILE);
|
2006-08-20 14:41:13 +00:00
|
|
|
else
|
2007-11-10 11:45:25 +00:00
|
|
|
BLI_strncpy(file,path,FILE_MAXFILE);
|
2006-08-20 14:41:13 +00:00
|
|
|
|
2007-11-10 11:45:25 +00:00
|
|
|
if (strrchr(path,'\\')) {
|
|
|
|
BLI_strncpy(file,strrchr(path,'\\')+1,FILE_MAXFILE);
|
2006-08-20 14:41:13 +00:00
|
|
|
}
|
2007-10-04 10:50:15 +00:00
|
|
|
|
|
|
|
if ( (a = strlen(dir)) ) {
|
2006-08-20 14:41:13 +00:00
|
|
|
if (dir[a-1] != '\\') strcat(dir,"\\");
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
a = strlen(dir) - 1;
|
|
|
|
while(a>0 && dir[a] != '\\') a--;
|
|
|
|
dir[a + 1] = 0;
|
2007-11-10 11:45:25 +00:00
|
|
|
BLI_strncpy(file, path + strlen(dir),FILE_MAXFILE);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2006-08-20 14:41:13 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
else {
|
2006-08-20 14:41:13 +00:00
|
|
|
/* defaulting to first valid drive hoping it's not empty CD and DVD drives */
|
|
|
|
get_default_root(dir);
|
2002-10-12 11:37:38 +00:00
|
|
|
file[0]=0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (strlen(string)) {
|
|
|
|
if (string[0] == '/') {
|
|
|
|
strcpy(dir, string);
|
|
|
|
} else if (string[1] == ':' && string[2] == '\\') {
|
|
|
|
string+=2;
|
|
|
|
strcpy(dir, string);
|
|
|
|
} else {
|
|
|
|
BLI_getwdN(dir);
|
|
|
|
strcat(dir,"/");
|
|
|
|
strcat(dir,string);
|
2007-03-17 14:46:04 +00:00
|
|
|
strcpy((char *)string,dir);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BLI_make_exist(dir);
|
|
|
|
|
|
|
|
if (S_ISDIR(BLI_exist(dir))) {
|
|
|
|
strcpy(file,string + strlen(dir));
|
|
|
|
|
|
|
|
if (strrchr(file,'/')) strcpy(file,strrchr(file,'/')+1);
|
|
|
|
|
|
|
|
if ( (a = strlen(dir)) ) {
|
|
|
|
if (dir[a-1] != '/') strcat(dir,"/");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
a = strlen(dir) - 1;
|
|
|
|
while(dir[a] != '/') a--;
|
|
|
|
dir[a + 1] = 0;
|
|
|
|
strcpy(file, string + strlen(dir));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BLI_getwdN(dir);
|
|
|
|
strcat(dir, "/");
|
|
|
|
file[0] = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2007-02-28 21:37:14 +00:00
|
|
|
|
|
|
|
/* simple appending of filename to dir, does not check for valid path! */
|
|
|
|
void BLI_join_dirfile(char *string, const char *dir, const char *file)
|
|
|
|
{
|
|
|
|
int sl_dir = strlen(dir);
|
|
|
|
BLI_strncpy(string, dir, FILE_MAX);
|
|
|
|
if (sl_dir > FILE_MAX-1) sl_dir = FILE_MAX-1;
|
2008-02-29 15:50:28 +00:00
|
|
|
|
|
|
|
/* only add seperator if needed */
|
2007-02-28 21:37:14 +00:00
|
|
|
#ifdef WIN32
|
2008-02-29 15:50:28 +00:00
|
|
|
if (string[sl_dir-1] != '\\') {
|
|
|
|
string[sl_dir] = '\\';
|
|
|
|
sl_dir++;
|
|
|
|
}
|
2007-02-28 21:37:14 +00:00
|
|
|
#else
|
2008-02-29 15:50:28 +00:00
|
|
|
if (string[sl_dir-1] != '/') {
|
|
|
|
string[sl_dir] = '/';
|
|
|
|
sl_dir++;
|
|
|
|
}
|
2007-02-28 21:37:14 +00:00
|
|
|
#endif
|
2008-02-29 15:50:28 +00:00
|
|
|
|
2007-02-28 21:37:14 +00:00
|
|
|
if (sl_dir <FILE_MAX) {
|
|
|
|
BLI_strncpy(string + sl_dir, file, FILE_MAX-sl_dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
static int add_win32_extension(char *name)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
type = BLI_exist(name);
|
|
|
|
if ((type == 0) || S_ISDIR(type)) {
|
|
|
|
#ifdef _WIN32
|
|
|
|
char filename[FILE_MAXDIR+FILE_MAXFILE];
|
|
|
|
char ext[FILE_MAXDIR+FILE_MAXFILE];
|
|
|
|
char *extensions = getenv("PATHEXT");
|
|
|
|
if (extensions) {
|
|
|
|
char *temp;
|
|
|
|
do {
|
|
|
|
strcpy(filename, name);
|
|
|
|
temp = strstr(extensions, ";");
|
|
|
|
if (temp) {
|
|
|
|
strncpy(ext, extensions, temp - extensions);
|
|
|
|
ext[temp - extensions] = 0;
|
|
|
|
extensions = temp + 1;
|
|
|
|
strcat(filename, ext);
|
|
|
|
} else {
|
|
|
|
strcat(filename, extensions);
|
|
|
|
}
|
|
|
|
|
|
|
|
type = BLI_exist(filename);
|
|
|
|
if (type && (! S_ISDIR(type))) {
|
|
|
|
retval = 1;
|
|
|
|
strcpy(name, filename);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (temp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
retval = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
2008-01-18 15:10:17 +00:00
|
|
|
void BLI_where_am_i(char *fullname, const char *name)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
char filename[FILE_MAXDIR+FILE_MAXFILE];
|
2008-01-18 15:10:17 +00:00
|
|
|
char *path = NULL, *temp;
|
2002-10-12 11:37:38 +00:00
|
|
|
int len;
|
|
|
|
#ifdef _WIN32
|
|
|
|
char *seperator = ";";
|
|
|
|
char *slash = "\\";
|
|
|
|
#else
|
|
|
|
char *seperator = ":";
|
|
|
|
char *slash = "/";
|
|
|
|
#endif
|
|
|
|
|
2008-01-18 15:10:17 +00:00
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
/* linux uses binreloc since argv[0] is not relyable, call br_init( NULL ) first */
|
|
|
|
path = br_find_exe( NULL );
|
|
|
|
if (path) {
|
|
|
|
strcpy(fullname, path);
|
2008-07-11 14:11:55 +00:00
|
|
|
free(path);
|
2008-01-18 15:10:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* unix and non linux */
|
2002-10-12 11:37:38 +00:00
|
|
|
if (name && fullname && strlen(name)) {
|
|
|
|
strcpy(fullname, name);
|
|
|
|
if (name[0] == '.') {
|
|
|
|
// relative path, prepend cwd
|
|
|
|
BLI_getwdN(fullname);
|
|
|
|
len = strlen(fullname);
|
|
|
|
if (len && fullname[len -1] != slash[0]) {
|
|
|
|
strcat(fullname, slash);
|
|
|
|
}
|
|
|
|
strcat(fullname, name);
|
|
|
|
add_win32_extension(fullname);
|
|
|
|
} else if (BLI_last_slash(name)) {
|
|
|
|
// full path
|
|
|
|
strcpy(fullname, name);
|
|
|
|
add_win32_extension(fullname);
|
|
|
|
} else {
|
|
|
|
// search for binary in $PATH
|
|
|
|
path = getenv("PATH");
|
|
|
|
if (path) {
|
|
|
|
do {
|
|
|
|
temp = strstr(path, seperator);
|
|
|
|
if (temp) {
|
|
|
|
strncpy(filename, path, temp - path);
|
|
|
|
filename[temp - path] = 0;
|
|
|
|
path = temp + 1;
|
|
|
|
} else {
|
|
|
|
strncpy(filename, path, sizeof(filename));
|
|
|
|
}
|
|
|
|
len = strlen(filename);
|
|
|
|
if (len && filename[len - 1] != slash[0]) {
|
|
|
|
strcat(filename, slash);
|
|
|
|
}
|
|
|
|
strcat(filename, name);
|
|
|
|
if (add_win32_extension(filename)) {
|
|
|
|
strcpy(fullname, filename);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (strcmp(name, fullname)) {
|
|
|
|
printf("guessing '%s' == '%s'\n", name, fullname);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
// in windows change long filename to short filename because
|
|
|
|
// win2k doesn't know how to parse a commandline with lots of
|
|
|
|
// spaces and double-quotes. There's another solution to this
|
|
|
|
// with spawnv(P_WAIT, bprogname, argv) instead of system() but
|
|
|
|
// that's even uglier
|
|
|
|
GetShortPathName(fullname, fullname, FILE_MAXDIR+FILE_MAXFILE);
|
|
|
|
#ifndef NDEBUG
|
|
|
|
printf("Shortname = '%s'\n", fullname);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-13 13:55:22 +00:00
|
|
|
void BLI_where_is_temp(char *fullname, int usertemp)
|
|
|
|
{
|
|
|
|
fullname[0] = '\0';
|
|
|
|
|
|
|
|
if (usertemp && BLI_exists(U.tempdir)) {
|
|
|
|
strcpy(fullname, U.tempdir);
|
|
|
|
}
|
|
|
|
|
2008-02-21 08:43:13 +00:00
|
|
|
|
2008-02-20 20:07:37 +00:00
|
|
|
#ifdef WIN32
|
2008-02-21 08:43:13 +00:00
|
|
|
if (fullname[0] == '\0') {
|
2008-02-20 20:07:37 +00:00
|
|
|
char *tmp = getenv("TEMP"); /* Windows */
|
|
|
|
if (tmp && BLI_exists(tmp)) {
|
|
|
|
strcpy(fullname, tmp);
|
|
|
|
}
|
2008-02-21 08:43:13 +00:00
|
|
|
}
|
2008-02-20 20:07:37 +00:00
|
|
|
#else
|
2008-02-21 08:43:13 +00:00
|
|
|
/* Other OS's - Try TMP and TMPDIR */
|
|
|
|
if (fullname[0] == '\0') {
|
|
|
|
char *tmp = getenv("TMP");
|
2008-02-13 13:55:22 +00:00
|
|
|
if (tmp && BLI_exists(tmp)) {
|
|
|
|
strcpy(fullname, tmp);
|
|
|
|
}
|
2008-02-21 08:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fullname[0] == '\0') {
|
|
|
|
char *tmp = getenv("TMPDIR");
|
|
|
|
if (tmp && BLI_exists(tmp)) {
|
|
|
|
strcpy(fullname, tmp);
|
2008-02-20 20:07:37 +00:00
|
|
|
}
|
2008-02-13 13:55:22 +00:00
|
|
|
}
|
2008-02-21 08:43:13 +00:00
|
|
|
#endif
|
2008-02-13 13:55:22 +00:00
|
|
|
|
|
|
|
if (fullname[0] == '\0') {
|
|
|
|
strcpy(fullname, "/tmp/");
|
|
|
|
} else {
|
|
|
|
/* add a trailing slash if needed */
|
|
|
|
BLI_add_slash(fullname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-20 10:02:00 +00:00
|
|
|
char *get_install_dir(void) {
|
|
|
|
extern char bprogname[];
|
|
|
|
char *tmpname = BLI_strdup(bprogname);
|
|
|
|
char *cut;
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
cut = strstr(tmpname, ".app");
|
|
|
|
if (cut) cut[0] = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
cut = BLI_last_slash(tmpname);
|
|
|
|
|
|
|
|
if (cut) {
|
|
|
|
cut[0] = 0;
|
|
|
|
return tmpname;
|
|
|
|
} else {
|
|
|
|
MEM_freeN(tmpname);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-12 14:59:08 +00:00
|
|
|
/*
|
|
|
|
* returns absolute path to the app bundle
|
|
|
|
* only useful on OS X
|
|
|
|
*/
|
|
|
|
#ifdef __APPLE__
|
|
|
|
char* BLI_getbundle(void) {
|
|
|
|
CFURLRef bundleURL;
|
|
|
|
CFStringRef pathStr;
|
2004-12-12 13:29:54 +00:00
|
|
|
static char path[MAXPATHLEN];
|
2003-05-12 14:59:08 +00:00
|
|
|
CFBundleRef mainBundle = CFBundleGetMainBundle();
|
|
|
|
|
|
|
|
bundleURL = CFBundleCopyBundleURL(mainBundle);
|
|
|
|
pathStr = CFURLCopyFileSystemPath(bundleURL, kCFURLPOSIXPathStyle);
|
|
|
|
CFStringGetCString(pathStr, path, MAXPATHLEN, kCFStringEncodingASCII);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-09-02 17:25:03 +00:00
|
|
|
#ifdef WITH_ICONV
|
|
|
|
#include "iconv.h"
|
|
|
|
#include "localcharset.h"
|
|
|
|
|
2008-09-20 11:08:35 +00:00
|
|
|
void BLI_string_to_utf8(char *original, char *utf_8, const char *code)
|
2007-09-02 17:25:03 +00:00
|
|
|
{
|
|
|
|
size_t inbytesleft=strlen(original);
|
|
|
|
size_t outbytesleft=512;
|
|
|
|
size_t rv=0;
|
|
|
|
iconv_t cd;
|
|
|
|
|
|
|
|
if (NULL == code) {
|
|
|
|
code = locale_charset();
|
|
|
|
}
|
|
|
|
cd=iconv_open("UTF-8", code);
|
|
|
|
|
|
|
|
if (cd == (iconv_t)(-1)) {
|
|
|
|
printf("iconv_open Error");
|
|
|
|
*utf_8='\0';
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
rv=iconv(cd, &original, &inbytesleft, &utf_8, &outbytesleft);
|
|
|
|
if (rv == (size_t) -1) {
|
|
|
|
printf("iconv Error\n");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
*utf_8 = '\0';
|
|
|
|
iconv_close(cd);
|
|
|
|
}
|
|
|
|
#endif // WITH_ICONV
|
|
|
|
|
Giant commit!
A full detailed description of this will be done later... is several days
of work. Here's a summary:
Render:
- Full cleanup of render code, removing *all* globals and bad level calls
all over blender. Render module is now not called abusive anymore
- API-fied calls to rendering
- Full recode of internal render pipeline. Is now rendering tiles by
default, prepared for much smarter 'bucket' render later.
- Each thread now can render a full part
- Renders were tested with 4 threads, goes fine, apart from some lookup
tables in softshadow and AO still
- Rendering is prepared to do multiple layers and passes
- No single 32 bits trick in render code anymore, all 100% floats now.
Writing images/movies
- moved writing images to blender kernel (bye bye 'schrijfplaatje'!)
- made a new Movie handle system, also in kernel. This will enable much
easier use of movies in Blender
PreviewRender:
- Using new render API, previewrender (in buttons) now uses regular render
code to generate images.
- new datafile 'preview.blend.c' has the preview scenes in it
- previews get rendered in exact displayed size (1 pixel = 1 pixel)
3D Preview render
- new; press Pkey in 3d window, for a panel that continuously renders
(pkey is for games, i know... but we dont do that in orange now!)
- this render works nearly identical to buttons-preview render, so it stops
rendering on any event (mouse, keyboard, etc)
- on moving/scaling the panel, the render code doesn't recreate all geometry
- same for shifting/panning view
- all other operations (now) regenerate the full render database still.
- this is WIP... but big fun, especially for simple scenes!
Compositor
- Using same node system as now in use for shaders, you can composit images
- works pretty straightforward... needs much more options/tools and integration
with rendering still
- is not threaded yet, nor is so smart to only recalculate changes... will be
done soon!
- the "Render Result" node will get all layers/passes as output sockets
- The "Output" node renders to a builtin image, which you can view in the Image
window. (yes, output nodes to render-result, and to files, is on the list!)
The Bad News
- "Unified Render" is removed. It might come back in some stage, but this
system should be built from scratch. I can't really understand this code...
I expect it is not much needed, especially with advanced layer/passes
control
- Panorama render, Field render, Motion blur, is not coded yet... (I had to
recode every single feature in render, so...!)
- Lens Flare is also not back... needs total revision, might become composit
effect though (using zbuffer for visibility)
- Part render is gone! (well, thats obvious, its default now).
- The render window is only restored with limited functionality... I am going
to check first the option to render to a Image window, so Blender can become
a true single-window application. :)
For example, the 'Spare render buffer' (jkey) doesnt work.
- Render with border, now default creates a smaller image
- No zbuffers are written yet... on the todo!
- Scons files and MSVC will need work to get compiling again
OK... thats what I can quickly recall. Now go compiling!
2006-01-23 22:05:47 +00:00
|
|
|
|