2003-05-24 16:53:40 +00:00
|
|
|
/*
|
2002-10-12 11:37:38 +00:00
|
|
|
* $Id$
|
|
|
|
*
|
2008-04-16 22:40:48 +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-04-16 22:40:48 +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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
*/
|
2003-05-24 16:53:40 +00:00
|
|
|
/**
|
|
|
|
* \file BLO_readblenfile.c
|
|
|
|
* \brief This file handles the loading if .blend files
|
2011-02-27 19:59:59 +00:00
|
|
|
* \ingroup blo
|
2003-05-24 16:53:40 +00:00
|
|
|
*/
|
2002-10-12 11:37:38 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
2010-07-04 23:26:55 +00:00
|
|
|
#include <errno.h>
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <io.h> // read, open
|
2009-09-06 13:20:05 +00:00
|
|
|
#include "BLI_winstuff.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#else // ! WIN32
|
|
|
|
#include <unistd.h> // read
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "BLO_readfile.h"
|
|
|
|
#include "BLO_readblenfile.h"
|
|
|
|
|
|
|
|
#include "BKE_blender.h"
|
2008-12-19 00:50:21 +00:00
|
|
|
#include "BKE_report.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
This commit removes the glue from Blender, and with it
the directories decrypt, deflate, encrypt, inflate, readstreamglue,
sign, writeblenfile and writestreamglue.
Sirdude was so kind to modify the makefiles, so SCons and
Make are ready to build with the new Blender.
Visual Studio workspaces, solutions and projectfiles still need
to be updated (I'll do the .vcprojs and .sln myself after this commit).
Runtimes created with the Blender Publisher are not anymore
recognised - if you want these available, you'll have to convert
them first to .blends with the Publisher.
2004-04-16 15:55:16 +00:00
|
|
|
#include "BLI_blenlib.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2003-05-24 16:53:40 +00:00
|
|
|
/** Magic number for the file header */
|
2010-12-03 17:05:21 +00:00
|
|
|
const char *headerMagic = "BLENDFI";
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2003-05-24 16:53:40 +00:00
|
|
|
/**
|
|
|
|
* \brief Set the version number into the array.
|
|
|
|
*
|
|
|
|
* version contains the integer number of the version
|
|
|
|
* i.e. 227
|
|
|
|
* array[1] gets set to the div of the number by 100 i.e. 2
|
|
|
|
* array[2] gets the remainder i.e. 27
|
|
|
|
*/
|
2002-10-12 11:37:38 +00:00
|
|
|
void BLO_setversionnumber(char array[4], int version)
|
|
|
|
{
|
2009-01-26 08:34:40 +00:00
|
|
|
memset(array, 0, sizeof(char)*4);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
array[1] = version / 100;
|
|
|
|
array[2] = version % 100;
|
|
|
|
}
|
|
|
|
|
2003-05-24 16:53:40 +00:00
|
|
|
/**
|
|
|
|
* Sets version number using BLENDER_VERSION
|
|
|
|
* Function that calls the setversionnumber(char[],int) with
|
|
|
|
* the BLENDER_VERSION constant and sets the resultant array
|
|
|
|
* with the version parts.
|
|
|
|
* see BLO_setversionnumber(char[],int).
|
|
|
|
*/
|
2002-10-12 11:37:38 +00:00
|
|
|
void BLO_setcurrentversionnumber(char array[4])
|
|
|
|
{
|
|
|
|
BLO_setversionnumber(array, BLENDER_VERSION);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
This commit removes the glue from Blender, and with it
the directories decrypt, deflate, encrypt, inflate, readstreamglue,
sign, writeblenfile and writestreamglue.
Sirdude was so kind to modify the makefiles, so SCons and
Make are ready to build with the new Blender.
Visual Studio workspaces, solutions and projectfiles still need
to be updated (I'll do the .vcprojs and .sln myself after this commit).
Runtimes created with the Blender Publisher are not anymore
recognised - if you want these available, you'll have to convert
them first to .blends with the Publisher.
2004-04-16 15:55:16 +00:00
|
|
|
/* Runtime reading */
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
static int handle_read_msb_int(int handle) {
|
|
|
|
unsigned char buf[4];
|
|
|
|
|
|
|
|
if (read(handle, buf, 4)!=4)
|
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
return (buf[0]<<24) + (buf[1]<<16) + (buf[2]<<8) + (buf[3]<<0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int blo_is_a_runtime(char *path) {
|
|
|
|
int res= 0, fd= open(path, O_BINARY|O_RDONLY, 0);
|
|
|
|
int datastart;
|
|
|
|
char buf[8];
|
|
|
|
|
|
|
|
if (fd==-1)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
lseek(fd, -12, SEEK_END);
|
|
|
|
|
|
|
|
datastart= handle_read_msb_int(fd);
|
|
|
|
if (datastart==-1)
|
|
|
|
goto cleanup;
|
|
|
|
else if (read(fd, buf, 8)!=8)
|
|
|
|
goto cleanup;
|
|
|
|
else if (memcmp(buf, "BRUNTIME", 8)!=0)
|
|
|
|
goto cleanup;
|
|
|
|
else
|
|
|
|
res= 1;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (fd!=-1)
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
BlendFileData *
|
|
|
|
blo_read_runtime(
|
|
|
|
char *path,
|
2008-12-19 00:50:21 +00:00
|
|
|
ReportList *reports)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
BlendFileData *bfd= NULL;
|
2010-09-15 06:43:36 +00:00
|
|
|
size_t actualsize;
|
|
|
|
int fd, datastart;
|
2002-10-12 11:37:38 +00:00
|
|
|
char buf[8];
|
|
|
|
|
|
|
|
fd= open(path, O_BINARY|O_RDONLY, 0);
|
|
|
|
if (fd==-1) {
|
2010-07-04 23:26:55 +00:00
|
|
|
BKE_reportf(reports, RPT_ERROR, "Unable to open \"%s\": %s.", path, strerror(errno));
|
2002-10-12 11:37:38 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
This commit removes the glue from Blender, and with it
the directories decrypt, deflate, encrypt, inflate, readstreamglue,
sign, writeblenfile and writestreamglue.
Sirdude was so kind to modify the makefiles, so SCons and
Make are ready to build with the new Blender.
Visual Studio workspaces, solutions and projectfiles still need
to be updated (I'll do the .vcprojs and .sln myself after this commit).
Runtimes created with the Blender Publisher are not anymore
recognised - if you want these available, you'll have to convert
them first to .blends with the Publisher.
2004-04-16 15:55:16 +00:00
|
|
|
|
|
|
|
actualsize= BLI_filesize(fd);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
lseek(fd, -12, SEEK_END);
|
|
|
|
|
|
|
|
datastart= handle_read_msb_int(fd);
|
|
|
|
if (datastart==-1) {
|
2010-07-04 23:26:55 +00:00
|
|
|
BKE_reportf(reports, RPT_ERROR, "Unable to read \"%s\" (problem seeking)", path);
|
2002-10-12 11:37:38 +00:00
|
|
|
goto cleanup;
|
|
|
|
} else if (read(fd, buf, 8)!=8) {
|
2010-07-04 23:26:55 +00:00
|
|
|
BKE_reportf(reports, RPT_ERROR, "Unable to read \"%s\" (truncated header)", path);
|
2002-10-12 11:37:38 +00:00
|
|
|
goto cleanup;
|
|
|
|
} else if (memcmp(buf, "BRUNTIME", 8)!=0) {
|
2010-07-04 23:26:55 +00:00
|
|
|
BKE_reportf(reports, RPT_ERROR, "Unable to read \"%s\" (not a blend file)", path);
|
2002-10-12 11:37:38 +00:00
|
|
|
goto cleanup;
|
|
|
|
} else {
|
2004-04-24 06:29:51 +00:00
|
|
|
//printf("starting to read runtime from %s at datastart %d\n", path, datastart);
|
2002-10-12 11:37:38 +00:00
|
|
|
lseek(fd, datastart, SEEK_SET);
|
2008-12-19 00:50:21 +00:00
|
|
|
bfd = blo_read_blendafterruntime(fd, path, actualsize-datastart, reports);
|
2005-01-20 10:33:11 +00:00
|
|
|
fd= -1; // file was closed in blo_read_blendafterruntime()
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (fd!=-1)
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return bfd;
|
|
|
|
}
|
|
|
|
|