2003-04-26 18:01:01 +00:00
|
|
|
/* writefile.c
|
|
|
|
*
|
|
|
|
* .blend file writing
|
|
|
|
*
|
2002-10-12 11:37:38 +00:00
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* ***** BEGIN GPL/BL DUAL 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. The Blender
|
|
|
|
* Foundation also sells licenses for use in proprietary software under
|
|
|
|
* the Blender License. See http://www.blender.org/BL/ for information
|
|
|
|
* about this.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2003-04-26 18:01:01 +00:00
|
|
|
FILEFORMAT: IFF-style structure (but not IFF compatible!)
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
start file:
|
|
|
|
BLENDER_V100 12 bytes (versie 1.00)
|
|
|
|
V = big endian, v = little endian
|
|
|
|
_ = 4 byte pointer, - = 8 byte pointer
|
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
datablocks: also see struct BHead
|
2002-10-12 11:37:38 +00:00
|
|
|
<bh.code> 4 chars
|
2003-04-26 18:01:01 +00:00
|
|
|
<bh.len> int, len data after BHead
|
|
|
|
<bh.old> void, old pointer
|
2002-10-12 11:37:38 +00:00
|
|
|
<bh.SDNAnr> int
|
2003-04-26 18:01:01 +00:00
|
|
|
<bh.nr> int, in case of array: amount of structs
|
2004-06-23 18:22:51 +00:00
|
|
|
data
|
2002-10-12 11:37:38 +00:00
|
|
|
...
|
|
|
|
...
|
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
Almost all data in Blender are structures. Each struct saved
|
|
|
|
gets a BHead header. With BHead the struct can be linked again
|
|
|
|
and compared with StructDNA .
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
WRITE
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
Preferred writing order: (not really a must, but why would you do it random?)
|
|
|
|
Any case: direct data is ALWAYS after the lib block
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
(Local file data)
|
|
|
|
- for each LibBlock
|
|
|
|
- write LibBlock
|
|
|
|
- write associated direct data
|
|
|
|
(External file data)
|
2002-10-12 11:37:38 +00:00
|
|
|
- per library
|
2003-04-26 18:01:01 +00:00
|
|
|
- write library block
|
2002-10-12 11:37:38 +00:00
|
|
|
- per LibBlock
|
2003-04-26 18:01:01 +00:00
|
|
|
- write the ID of LibBlock
|
|
|
|
- write FileGlobal (some global vars)
|
|
|
|
- write SDNA
|
|
|
|
- write USER if filename is ~/.B.blend
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* for version 2.2+
|
|
|
|
Important to know is that 'streaming' has been added to files, for Blender Publisher
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
|
2002-11-25 12:02:15 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2004-06-23 18:22:51 +00:00
|
|
|
#ifndef WIN32
|
2002-10-12 11:37:38 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#else
|
|
|
|
#include "winsock2.h"
|
|
|
|
#include "BLI_winstuff.h"
|
|
|
|
#include <io.h>
|
|
|
|
#include <process.h> // for getpid
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "nla.h" // __NLA is defined
|
|
|
|
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_armature_types.h"
|
|
|
|
#include "DNA_action_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_actuator_types.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_controller_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_curve_types.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_constraint_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_camera_types.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_effect_types.h"
|
|
|
|
#include "DNA_group_types.h"
|
|
|
|
#include "DNA_image_types.h"
|
|
|
|
#include "DNA_ipo_types.h"
|
|
|
|
#include "DNA_fileglobal_types.h"
|
|
|
|
#include "DNA_key_types.h"
|
|
|
|
#include "DNA_lattice_types.h"
|
|
|
|
#include "DNA_listBase.h" /* for Listbase, the type of samples, ...*/
|
|
|
|
#include "DNA_lamp_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_meta_types.h"
|
|
|
|
#include "DNA_mesh_types.h"
|
2004-03-20 22:55:42 +00:00
|
|
|
#include "DNA_meshdata_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_material_types.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_nla_types.h"
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
#include "DNA_object_force.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_oops_types.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_packedFile_types.h"
|
|
|
|
#include "DNA_property_types.h"
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
#include "DNA_sdna_types.h"
|
|
|
|
#include "DNA_sequence_types.h"
|
|
|
|
#include "DNA_sensor_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "DNA_space_types.h"
|
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
#include "DNA_sound_types.h"
|
|
|
|
#include "DNA_texture_types.h"
|
|
|
|
#include "DNA_text_types.h"
|
2005-05-02 13:28:13 +00:00
|
|
|
#include "DNA_view3d_types.h"
|
|
|
|
#include "DNA_vfont_types.h"
|
|
|
|
#include "DNA_userdef_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2004-06-23 18:22:51 +00:00
|
|
|
#include "MEM_guardedalloc.h" // MEM_freeN
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
#include "BLI_linklist.h"
|
|
|
|
|
|
|
|
#include "BKE_action.h"
|
|
|
|
#include "BKE_bad_level_calls.h" // build_seqar (from WHILE_SEQ) free_oops error
|
Biiig commit! Thanks to 2-3 weeks of cvs freeze...
Render:
- New; support for dual CPU render (SDL thread)
Currently only works with alternating scanlines, but gives excellent
performance. For both normal render as unified implemented.
Note the "mutex" locks on z-transp buffer render and imbuf loads.
- This has been made possible by major cleanups in render code, especially
getting rid of globals (example Tin Tr Tg Tb Ta for textures) or struct
OSA or using Materials or Texture data to write to.
- Made normal render fully 4x32 floats too, and removed all old optimizes
with chars or shorts.
- Made normal render and unified render use same code for sky and halo
render, giving equal (and better) results for halo render. Old render
now also uses PostProcess options (brightness, mul, gamma)
- Added option ("FBuf") in F10 Output Panel, this keeps a 4x32 bits buffer
after render. Using PostProcess menu you will note an immediate re-
display of image too (32 bits RGBA)
- Added "Hue" and "Saturation" sliders to PostProcess options
- Render module is still not having a "nice" API, but amount of dependencies
went down a lot. Next todo: remove abusive "previewrender" code.
The last main global in Render (struct Render) now can be re-used for fully
controlling a render, to allow multiple "instances" of render to open.
- Renderwindow now displays a smal bar on top with the stats, and keeps the
stats after render too. Including "spare" page support.
Not only easier visible that way, but also to remove the awkward code that
was drawing stats in the Info header (extreme slow on some ATIs too)
- Cleaned up blendef.h and BKE_utildefines.h, these two had overlapping
defines.
- I might have forgotten stuff... and will write a nice doc on the architecture!
2004-12-27 19:28:52 +00:00
|
|
|
#include "BKE_curve.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BKE_constraint.h"
|
|
|
|
#include "BKE_global.h" // for G
|
|
|
|
#include "BKE_library.h" // for set_listbasepointers
|
Biiig commit! Thanks to 2-3 weeks of cvs freeze...
Render:
- New; support for dual CPU render (SDL thread)
Currently only works with alternating scanlines, but gives excellent
performance. For both normal render as unified implemented.
Note the "mutex" locks on z-transp buffer render and imbuf loads.
- This has been made possible by major cleanups in render code, especially
getting rid of globals (example Tin Tr Tg Tb Ta for textures) or struct
OSA or using Materials or Texture data to write to.
- Made normal render fully 4x32 floats too, and removed all old optimizes
with chars or shorts.
- Made normal render and unified render use same code for sky and halo
render, giving equal (and better) results for halo render. Old render
now also uses PostProcess options (brightness, mul, gamma)
- Added option ("FBuf") in F10 Output Panel, this keeps a 4x32 bits buffer
after render. Using PostProcess menu you will note an immediate re-
display of image too (32 bits RGBA)
- Added "Hue" and "Saturation" sliders to PostProcess options
- Render module is still not having a "nice" API, but amount of dependencies
went down a lot. Next todo: remove abusive "previewrender" code.
The last main global in Render (struct Render) now can be re-used for fully
controlling a render, to allow multiple "instances" of render to open.
- Renderwindow now displays a smal bar on top with the stats, and keeps the
stats after render too. Including "spare" page support.
Not only easier visible that way, but also to remove the awkward code that
was drawing stats in the Info header (extreme slow on some ATIs too)
- Cleaned up blendef.h and BKE_utildefines.h, these two had overlapping
defines.
- I might have forgotten stuff... and will write a nice doc on the architecture!
2004-12-27 19:28:52 +00:00
|
|
|
#include "BKE_main.h" // G.main
|
|
|
|
#include "BKE_packedFile.h" // for packAll
|
|
|
|
#include "BKE_screen.h" // for waitcursor
|
|
|
|
#include "BKE_scene.h" // for do_seq
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BKE_sound.h" /* ... and for samples */
|
Biiig commit! Thanks to 2-3 weeks of cvs freeze...
Render:
- New; support for dual CPU render (SDL thread)
Currently only works with alternating scanlines, but gives excellent
performance. For both normal render as unified implemented.
Note the "mutex" locks on z-transp buffer render and imbuf loads.
- This has been made possible by major cleanups in render code, especially
getting rid of globals (example Tin Tr Tg Tb Ta for textures) or struct
OSA or using Materials or Texture data to write to.
- Made normal render fully 4x32 floats too, and removed all old optimizes
with chars or shorts.
- Made normal render and unified render use same code for sky and halo
render, giving equal (and better) results for halo render. Old render
now also uses PostProcess options (brightness, mul, gamma)
- Added option ("FBuf") in F10 Output Panel, this keeps a 4x32 bits buffer
after render. Using PostProcess menu you will note an immediate re-
display of image too (32 bits RGBA)
- Added "Hue" and "Saturation" sliders to PostProcess options
- Render module is still not having a "nice" API, but amount of dependencies
went down a lot. Next todo: remove abusive "previewrender" code.
The last main global in Render (struct Render) now can be re-used for fully
controlling a render, to allow multiple "instances" of render to open.
- Renderwindow now displays a smal bar on top with the stats, and keeps the
stats after render too. Including "spare" page support.
Not only easier visible that way, but also to remove the awkward code that
was drawing stats in the Info header (extreme slow on some ATIs too)
- Cleaned up blendef.h and BKE_utildefines.h, these two had overlapping
defines.
- I might have forgotten stuff... and will write a nice doc on the architecture!
2004-12-27 19:28:52 +00:00
|
|
|
#include "BKE_utildefines.h" // for defines
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "GEN_messaging.h"
|
|
|
|
|
|
|
|
#include "BLO_writefile.h"
|
|
|
|
#include "BLO_readfile.h"
|
2004-09-05 13:43:51 +00:00
|
|
|
#include "BLO_undofile.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "readfile.h"
|
|
|
|
#include "genfile.h"
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* ********* my write, buffered writing with minimum 50k chunks ************ */
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
typedef struct {
|
|
|
|
struct SDNA *sdna;
|
|
|
|
|
|
|
|
int file;
|
|
|
|
unsigned char *buf;
|
2004-09-05 13:43:51 +00:00
|
|
|
MemFile *compare, *current;
|
|
|
|
|
|
|
|
int tot, count, error, memsize;
|
2002-10-12 11:37:38 +00:00
|
|
|
} WriteData;
|
|
|
|
|
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
|
|
|
static WriteData *writedata_new(int file)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
extern char DNAstr[]; /* DNA.c */
|
|
|
|
extern int DNAlen;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
WriteData *wd= MEM_callocN(sizeof(*wd), "writedata");
|
|
|
|
|
|
|
|
/* XXX, see note about this in readfile.c, remove
|
|
|
|
* once we have an xp lock - zr
|
|
|
|
*/
|
|
|
|
wd->sdna= dna_sdna_from_data(DNAstr, DNAlen, 0);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
wd->file= file;
|
|
|
|
|
|
|
|
wd->buf= MEM_mallocN(100000, "wd->buf");
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return wd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void writedata_do_write(WriteData *wd, void *mem, int memlen)
|
|
|
|
{
|
|
|
|
if (wd->error) return;
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* memory based save */
|
|
|
|
if(wd->current) {
|
|
|
|
add_memfilechunk(NULL, wd->current, mem, memlen);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (write(wd->file, mem, memlen) != memlen)
|
|
|
|
wd->error= 1;
|
|
|
|
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2004-06-23 18:22:51 +00:00
|
|
|
static void writedata_free(WriteData *wd)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
dna_freestructDNA(wd->sdna);
|
|
|
|
|
|
|
|
MEM_freeN(wd->buf);
|
|
|
|
MEM_freeN(wd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
|
|
|
int mywfile;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Low level WRITE(2) wrapper that buffers data
|
|
|
|
* @param adr Pointer to new chunk of data
|
|
|
|
* @param len Length of new chunk of data
|
|
|
|
* @warning Talks to other functions with global parameters
|
|
|
|
*/
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
#define MYWRITE_FLUSH NULL
|
|
|
|
|
|
|
|
static void mywrite( WriteData *wd, void *adr, int len)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
if (wd->error) return;
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
if(adr==MYWRITE_FLUSH) {
|
|
|
|
if(wd->count) {
|
|
|
|
writedata_do_write(wd, wd->buf, wd->count);
|
|
|
|
wd->count= 0;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
wd->tot+= len;
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(len>50000) {
|
|
|
|
if(wd->count) {
|
|
|
|
writedata_do_write(wd, wd->buf, wd->count);
|
|
|
|
wd->count= 0;
|
|
|
|
}
|
|
|
|
writedata_do_write(wd, adr, len);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(len+wd->count>99999) {
|
|
|
|
writedata_do_write(wd, wd->buf, wd->count);
|
2004-06-23 18:22:51 +00:00
|
|
|
wd->count= 0;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
memcpy(&wd->buf[wd->count], adr, len);
|
|
|
|
wd->count+= len;
|
2004-09-05 13:43:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* BeGiN initializer for mywrite
|
|
|
|
* @param file File descriptor
|
|
|
|
* @param write_flags Write parameters
|
|
|
|
* @warning Talks to other functions with global parameters
|
|
|
|
*/
|
2004-09-05 13:43:51 +00:00
|
|
|
static WriteData *bgnwrite(int file, MemFile *compare, MemFile *current, int write_flags)
|
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
|
|
|
WriteData *wd= writedata_new(file);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
wd->compare= compare;
|
|
|
|
wd->current= current;
|
|
|
|
/* this inits comparing */
|
|
|
|
add_memfilechunk(compare, NULL, NULL, 0);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return wd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* END the mywrite wrapper
|
|
|
|
* @return 1 if write failed
|
|
|
|
* @return unknown global variable otherwise
|
|
|
|
* @warning Talks to other functions with global parameters
|
|
|
|
*/
|
2004-09-05 13:43:51 +00:00
|
|
|
static int endwrite(WriteData *wd)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
int err;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (wd->count) {
|
|
|
|
writedata_do_write(wd, wd->buf, wd->count);
|
2004-06-23 18:22:51 +00:00
|
|
|
wd->count= 0;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
err= wd->error;
|
|
|
|
writedata_free(wd);
|
2004-09-07 20:45:09 +00:00
|
|
|
/* blender gods may live forever but this parent pointer died in the statement above
|
2004-09-05 13:43:51 +00:00
|
|
|
if(wd->current) printf("undo size %d\n", wd->current->size);
|
2004-09-07 20:45:09 +00:00
|
|
|
*/
|
2002-10-12 11:37:38 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ********** WRITE FILE ****************** */
|
|
|
|
|
|
|
|
static void writestruct(WriteData *wd, int filecode, char *structname, int nr, void *adr)
|
|
|
|
{
|
|
|
|
BHead bh;
|
|
|
|
short *sp;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(adr==0 || nr==0) return;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* init BHead */
|
2002-10-12 11:37:38 +00:00
|
|
|
bh.code= filecode;
|
|
|
|
bh.old= adr;
|
|
|
|
bh.nr= nr;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
bh.SDNAnr= dna_findstruct_nr(wd->sdna, structname);
|
|
|
|
if(bh.SDNAnr== -1) {
|
|
|
|
printf("error: can't find SDNA code %s\n", structname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
sp= wd->sdna->structs[bh.SDNAnr];
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
bh.len= nr*wd->sdna->typelens[sp[0]];
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(bh.len==0) return;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
mywrite(wd, &bh, sizeof(BHead));
|
|
|
|
mywrite(wd, adr, bh.len);
|
|
|
|
}
|
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
static void writedata(WriteData *wd, int filecode, int len, void *adr) /* do not use for structs */
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
BHead bh;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(adr==0) return;
|
|
|
|
if(len==0) return;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
len+= 3;
|
|
|
|
len-= ( len % 4);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* init BHead */
|
2002-10-12 11:37:38 +00:00
|
|
|
bh.code= filecode;
|
|
|
|
bh.old= adr;
|
|
|
|
bh.nr= 1;
|
2004-06-23 18:22:51 +00:00
|
|
|
bh.SDNAnr= 0;
|
2002-10-12 11:37:38 +00:00
|
|
|
bh.len= len;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
mywrite(wd, &bh, sizeof(BHead));
|
|
|
|
if(len) mywrite(wd, adr, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_scriptlink(WriteData *wd, ScriptLink *slink)
|
|
|
|
{
|
2004-06-23 18:22:51 +00:00
|
|
|
writedata(wd, DATA, sizeof(void *)*slink->totscript, slink->scripts);
|
|
|
|
writedata(wd, DATA, sizeof(short)*slink->totscript, slink->flag);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
static void write_renderinfo(WriteData *wd) /* for renderdaemon */
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
Scene *sce;
|
|
|
|
int data[8];
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sce= G.main->scene.first;
|
|
|
|
while(sce) {
|
|
|
|
if(sce->id.lib==0 && ( sce==G.scene || (sce->r.scemode & R_BG_RENDER)) ) {
|
|
|
|
data[0]= sce->r.sfra;
|
|
|
|
data[1]= sce->r.efra;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
strncpy((char *)(data+2), sce->id.name+2, 23);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, REND, 32, data);
|
|
|
|
}
|
|
|
|
sce= sce->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_userdef(WriteData *wd)
|
|
|
|
{
|
- The basic layer for Themes in place!
- currently only implemented for 3d window
- create as many themes you like, and name them
- default theme is not editable, and always will be defined at startup
(initTheme)
- saves in .B.blend
- themes for spaces can become local too, so you can set individual
3d windows at theme 'Maya' or so. (to be implemented)
- it uses alpha as well...!
API:
This doesnt use the old method with BFCOLORID blahblah. The API is copied
from OpenGL conventions (naming) as much as possible:
- void BIF_ThemeColor(ScrArea *sa, int colorid)
sets a color... id's are in BIF_resources.h (TH_GRID, TH_WIRE, etc)
- void BIF_ThemeColorShade(ScrArea *sa, int colorid, int offset)
sets a color with offset, no more weird COLORSHADE_LGREY stuff
- void BIF_GetThemeColor3fv(ScrArea *sa, int colorid, float *col)
like opengl, this gives you in *col the three rgb values
- void BIF_GetThemeColor4ubv(ScrArea *sa, int colorid, char *col)
or the one to get 4 bytes
ThemeColor calls for globals (UI etc) can also call NULL for *sa... this
is to be implemented still.
Next step: cleaning up interface.c for all weird colorcalls.
2003-10-17 14:02:08 +00:00
|
|
|
bTheme *btheme;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, USER, "UserDef", 1, &U);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
- The basic layer for Themes in place!
- currently only implemented for 3d window
- create as many themes you like, and name them
- default theme is not editable, and always will be defined at startup
(initTheme)
- saves in .B.blend
- themes for spaces can become local too, so you can set individual
3d windows at theme 'Maya' or so. (to be implemented)
- it uses alpha as well...!
API:
This doesnt use the old method with BFCOLORID blahblah. The API is copied
from OpenGL conventions (naming) as much as possible:
- void BIF_ThemeColor(ScrArea *sa, int colorid)
sets a color... id's are in BIF_resources.h (TH_GRID, TH_WIRE, etc)
- void BIF_ThemeColorShade(ScrArea *sa, int colorid, int offset)
sets a color with offset, no more weird COLORSHADE_LGREY stuff
- void BIF_GetThemeColor3fv(ScrArea *sa, int colorid, float *col)
like opengl, this gives you in *col the three rgb values
- void BIF_GetThemeColor4ubv(ScrArea *sa, int colorid, char *col)
or the one to get 4 bytes
ThemeColor calls for globals (UI etc) can also call NULL for *sa... this
is to be implemented still.
Next step: cleaning up interface.c for all weird colorcalls.
2003-10-17 14:02:08 +00:00
|
|
|
btheme= U.themes.first;
|
|
|
|
while(btheme) {
|
|
|
|
writestruct(wd, DATA, "bTheme", 1, btheme);
|
|
|
|
btheme= btheme->next;
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_effects(WriteData *wd, ListBase *lb)
|
|
|
|
{
|
|
|
|
Effect *eff;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
eff= lb->first;
|
|
|
|
while(eff) {
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
switch(eff->type) {
|
|
|
|
case EFF_BUILD:
|
|
|
|
writestruct(wd, DATA, "BuildEff", 1, eff);
|
2004-06-23 18:22:51 +00:00
|
|
|
break;
|
2002-10-12 11:37:38 +00:00
|
|
|
case EFF_PARTICLE:
|
|
|
|
writestruct(wd, DATA, "PartEff", 1, eff);
|
2004-06-23 18:22:51 +00:00
|
|
|
break;
|
2002-10-12 11:37:38 +00:00
|
|
|
case EFF_WAVE:
|
|
|
|
writestruct(wd, DATA, "WaveEff", 1, eff);
|
2004-06-23 18:22:51 +00:00
|
|
|
break;
|
2002-10-12 11:37:38 +00:00
|
|
|
default:
|
|
|
|
writedata(wd, DATA, MEM_allocN_len(eff), eff);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
eff= eff->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_properties(WriteData *wd, ListBase *lb)
|
|
|
|
{
|
|
|
|
bProperty *prop;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
prop= lb->first;
|
|
|
|
while(prop) {
|
|
|
|
writestruct(wd, DATA, "bProperty", 1, prop);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
|
|
|
if(prop->poin && prop->poin != &prop->data)
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DATA, MEM_allocN_len(prop->poin), prop->poin);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
prop= prop->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_sensors(WriteData *wd, ListBase *lb)
|
|
|
|
{
|
|
|
|
bSensor *sens;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sens= lb->first;
|
|
|
|
while(sens) {
|
|
|
|
writestruct(wd, DATA, "bSensor", 1, sens);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DATA, sizeof(void *)*sens->totlinks, sens->links);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
switch(sens->type) {
|
|
|
|
case SENS_NEAR:
|
|
|
|
writestruct(wd, DATA, "bNearSensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_MOUSE:
|
|
|
|
writestruct(wd, DATA, "bMouseSensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_TOUCH:
|
|
|
|
writestruct(wd, DATA, "bTouchSensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_KEYBOARD:
|
|
|
|
writestruct(wd, DATA, "bKeyboardSensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_PROPERTY:
|
|
|
|
writestruct(wd, DATA, "bPropertySensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_COLLISION:
|
|
|
|
writestruct(wd, DATA, "bCollisionSensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_RADAR:
|
|
|
|
writestruct(wd, DATA, "bRadarSensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_RANDOM:
|
|
|
|
writestruct(wd, DATA, "bRandomSensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_RAY:
|
|
|
|
writestruct(wd, DATA, "bRaySensor", 1, sens->data);
|
|
|
|
break;
|
|
|
|
case SENS_MESSAGE:
|
|
|
|
writestruct(wd, DATA, "bMessageSensor", 1, sens->data);
|
|
|
|
break;
|
2005-01-23 01:36:29 +00:00
|
|
|
case SENS_JOYSTICK:
|
|
|
|
writestruct(wd, DATA, "bJoystickSensor", 1, sens->data);
|
|
|
|
break;
|
2002-10-12 11:37:38 +00:00
|
|
|
default:
|
|
|
|
; /* error: don't know how to write this file */
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sens= sens->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_controllers(WriteData *wd, ListBase *lb)
|
|
|
|
{
|
|
|
|
bController *cont;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cont= lb->first;
|
|
|
|
while(cont) {
|
|
|
|
writestruct(wd, DATA, "bController", 1, cont);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DATA, sizeof(void *)*cont->totlinks, cont->links);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
switch(cont->type) {
|
|
|
|
case CONT_EXPRESSION:
|
|
|
|
writestruct(wd, DATA, "bExpressionCont", 1, cont->data);
|
|
|
|
break;
|
|
|
|
case CONT_PYTHON:
|
|
|
|
writestruct(wd, DATA, "bPythonCont", 1, cont->data);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
; /* error: don't know how to write this file */
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cont= cont->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_actuators(WriteData *wd, ListBase *lb)
|
|
|
|
{
|
|
|
|
bActuator *act;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
act= lb->first;
|
|
|
|
while(act) {
|
|
|
|
writestruct(wd, DATA, "bActuator", 1, act);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
switch(act->type) {
|
|
|
|
case ACT_ACTION:
|
|
|
|
writestruct(wd, DATA, "bActionActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_SOUND:
|
|
|
|
writestruct(wd, DATA, "bSoundActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_CD:
|
|
|
|
writestruct(wd, DATA, "bCDActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_OBJECT:
|
|
|
|
writestruct(wd, DATA, "bObjectActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_IPO:
|
|
|
|
writestruct(wd, DATA, "bIpoActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_PROPERTY:
|
|
|
|
writestruct(wd, DATA, "bPropertyActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_CAMERA:
|
|
|
|
writestruct(wd, DATA, "bCameraActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_CONSTRAINT:
|
|
|
|
writestruct(wd, DATA, "bConstraintActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_EDIT_OBJECT:
|
|
|
|
writestruct(wd, DATA, "bEditObjectActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_SCENE:
|
|
|
|
writestruct(wd, DATA, "bSceneActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_GROUP:
|
|
|
|
writestruct(wd, DATA, "bGroupActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_RANDOM:
|
|
|
|
writestruct(wd, DATA, "bRandomActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_MESSAGE:
|
|
|
|
writestruct(wd, DATA, "bMessageActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_GAME:
|
|
|
|
writestruct(wd, DATA, "bGameActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
case ACT_VISIBILITY:
|
|
|
|
writestruct(wd, DATA, "bVisibilityActuator", 1, act->data);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
; /* error: don't know how to write this file */
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
act= act->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_nlastrips(WriteData *wd, ListBase *nlabase)
|
|
|
|
{
|
|
|
|
bActionStrip *strip;
|
|
|
|
|
|
|
|
for (strip=nlabase->first; strip; strip=strip->next)
|
|
|
|
writestruct(wd, DATA, "bActionStrip", 1, strip);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_constraints(WriteData *wd, ListBase *conlist)
|
|
|
|
{
|
|
|
|
bConstraint *con;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
for (con=conlist->first; con; con=con->next) {
|
|
|
|
/* Write the specific data */
|
|
|
|
switch (con->type) {
|
|
|
|
case CONSTRAINT_TYPE_NULL:
|
|
|
|
break;
|
|
|
|
case CONSTRAINT_TYPE_TRACKTO:
|
|
|
|
writestruct(wd, DATA, "bTrackToConstraint", 1, con->data);
|
|
|
|
break;
|
|
|
|
case CONSTRAINT_TYPE_KINEMATIC:
|
|
|
|
writestruct(wd, DATA, "bKinematicConstraint", 1, con->data);
|
|
|
|
break;
|
|
|
|
case CONSTRAINT_TYPE_ROTLIKE:
|
|
|
|
writestruct(wd, DATA, "bRotateLikeConstraint", 1, con->data);
|
|
|
|
break;
|
|
|
|
case CONSTRAINT_TYPE_LOCLIKE:
|
|
|
|
writestruct(wd, DATA, "bLocateLikeConstraint", 1, con->data);
|
|
|
|
break;
|
|
|
|
case CONSTRAINT_TYPE_ACTION:
|
|
|
|
writestruct(wd, DATA, "bActionConstraint", 1, con->data);
|
|
|
|
break;
|
2003-10-21 13:22:07 +00:00
|
|
|
case CONSTRAINT_TYPE_LOCKTRACK:
|
|
|
|
writestruct(wd, DATA, "bLockTrackConstraint", 1, con->data);
|
|
|
|
break;
|
|
|
|
case CONSTRAINT_TYPE_FOLLOWPATH:
|
|
|
|
writestruct(wd, DATA, "bFollowPathConstraint", 1, con->data);
|
|
|
|
break;
|
2004-09-05 20:21:16 +00:00
|
|
|
case CONSTRAINT_TYPE_STRETCHTO:
|
|
|
|
writestruct(wd, DATA, "bStretchToConstraint", 1, con->data);
|
|
|
|
break;
|
2002-10-12 11:37:38 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Write the constraint */
|
|
|
|
writestruct(wd, DATA, "bConstraint", 1, con);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_pose(WriteData *wd, bPose *pose)
|
|
|
|
{
|
|
|
|
bPoseChannel *chan;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* Write each channel */
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!pose)
|
|
|
|
return;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
// Write channels
|
|
|
|
for (chan=pose->chanbase.first; chan; chan=chan->next) {
|
|
|
|
write_constraints(wd, &chan->constraints);
|
|
|
|
writestruct(wd, DATA, "bPoseChannel", 1, chan);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
|
|
|
// Write this pose
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "bPose", 1, pose);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_defgroups(WriteData *wd, ListBase *defbase)
|
|
|
|
{
|
|
|
|
bDeformGroup *defgroup;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
for (defgroup=defbase->first; defgroup; defgroup=defgroup->next)
|
|
|
|
writestruct(wd, DATA, "bDeformGroup", 1, defgroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_constraint_channels(WriteData *wd, ListBase *chanbase)
|
|
|
|
{
|
|
|
|
bConstraintChannel *chan;
|
|
|
|
|
|
|
|
for (chan = chanbase->first; chan; chan=chan->next)
|
|
|
|
writestruct(wd, DATA, "bConstraintChannel", 1, chan);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_objects(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Object *ob;
|
2004-09-14 19:03:11 +00:00
|
|
|
ObHook *hook;
|
2005-05-02 13:28:13 +00:00
|
|
|
int a;
|
2004-09-14 19:03:11 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ob= idbase->first;
|
|
|
|
while(ob) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(ob->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_OB, "Object", 1, ob);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DATA, sizeof(void *)*ob->totcol, ob->mat);
|
|
|
|
write_effects(wd, &ob->effect);
|
|
|
|
write_properties(wd, &ob->prop);
|
|
|
|
write_sensors(wd, &ob->sensors);
|
|
|
|
write_controllers(wd, &ob->controllers);
|
|
|
|
write_actuators(wd, &ob->actuators);
|
|
|
|
write_scriptlink(wd, &ob->scriptlink);
|
|
|
|
write_pose(wd, ob->pose);
|
|
|
|
write_defgroups(wd, &ob->defbase);
|
|
|
|
write_constraints(wd, &ob->constraints);
|
|
|
|
write_constraint_channels(wd, &ob->constraintChannels);
|
|
|
|
write_nlastrips(wd, &ob->nlastrips);
|
2004-06-26 18:18:11 +00:00
|
|
|
|
|
|
|
writestruct(wd, DATA, "PartDeflect", 1, ob->pd);
|
2005-04-02 13:57:23 +00:00
|
|
|
writestruct(wd, DATA, "SoftBody", 1, ob->soft);
|
2005-05-02 13:28:13 +00:00
|
|
|
if(ob->soft) {
|
|
|
|
SoftBody *sb= ob->soft;
|
|
|
|
if(sb->keys) {
|
|
|
|
writedata(wd, DATA, sizeof(void *)*sb->totkey, sb->keys);
|
|
|
|
for(a=0; a<sb->totkey; a++) {
|
|
|
|
writestruct(wd, DATA, "SBVertex", sb->totpoint, sb->keys[a]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-09-14 19:03:11 +00:00
|
|
|
|
|
|
|
for(hook= ob->hooks.first; hook; hook= hook->next) {
|
|
|
|
writestruct(wd, DATA, "ObHook", 1, hook);
|
|
|
|
writedata(wd, DATA, sizeof(int)*hook->totindex, hook->indexar);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
ob= ob->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void write_vfonts(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
VFont *vf;
|
|
|
|
PackedFile * pf;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
vf= idbase->first;
|
|
|
|
while(vf) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(vf->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_VF, "VFont", 1, vf);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (vf->packedfile) {
|
|
|
|
pf = vf->packedfile;
|
|
|
|
writestruct(wd, DATA, "PackedFile", 1, pf);
|
|
|
|
writedata(wd, DATA, pf->size, pf->data);
|
|
|
|
}
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
vf= vf->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_ipos(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Ipo *ipo;
|
|
|
|
IpoCurve *icu;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ipo= idbase->first;
|
|
|
|
while(ipo) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(ipo->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_IP, "Ipo", 1, ipo);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
icu= ipo->curve.first;
|
|
|
|
while(icu) {
|
|
|
|
writestruct(wd, DATA, "IpoCurve", 1, icu);
|
|
|
|
icu= icu->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
icu= ipo->curve.first;
|
|
|
|
while(icu) {
|
|
|
|
if(icu->bezt) writestruct(wd, DATA, "BezTriple", icu->totvert, icu->bezt);
|
|
|
|
if(icu->bp) writestruct(wd, DATA, "BPoint", icu->totvert, icu->bp);
|
|
|
|
icu= icu->next;
|
|
|
|
}
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ipo= ipo->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_keys(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Key *key;
|
|
|
|
KeyBlock *kb;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
key= idbase->first;
|
|
|
|
while(key) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(key->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_KE, "Key", 1, key);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
kb= key->block.first;
|
|
|
|
while(kb) {
|
|
|
|
writestruct(wd, DATA, "KeyBlock", 1, kb);
|
|
|
|
if(kb->data) writedata(wd, DATA, kb->totelem*key->elemsize, kb->data);
|
|
|
|
kb= kb->next;
|
|
|
|
}
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
key= key->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_cameras(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Camera *cam;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cam= idbase->first;
|
|
|
|
while(cam) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(cam->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_CA, "Camera", 1, cam);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
write_scriptlink(wd, &cam->scriptlink);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cam= cam->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_mballs(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
MetaBall *mb;
|
|
|
|
MetaElem *ml;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
mb= idbase->first;
|
|
|
|
while(mb) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(mb->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_MB, "MetaBall", 1, mb);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DATA, sizeof(void *)*mb->totcol, mb->mat);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ml= mb->elems.first;
|
|
|
|
while(ml) {
|
|
|
|
writestruct(wd, DATA, "MetaElem", 1, ml);
|
|
|
|
ml= ml->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mb= mb->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_curves(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Curve *cu;
|
|
|
|
Nurb *nu;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cu= idbase->first;
|
|
|
|
while(cu) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(cu->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_CU, "Curve", 1, cu);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DATA, sizeof(void *)*cu->totcol, cu->mat);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(cu->vfont) {
|
|
|
|
writedata(wd, DATA, cu->len+1, cu->str);
|
2005-06-17 21:04:27 +00:00
|
|
|
writestruct(wd, DATA, "CharInfo", cu->len, cu->strinfo);
|
|
|
|
writestruct(wd, DATA, "TextBox", cu->totbox, cu->tb);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
else {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* is also the order of reading */
|
2002-10-12 11:37:38 +00:00
|
|
|
nu= cu->nurb.first;
|
|
|
|
while(nu) {
|
|
|
|
writestruct(wd, DATA, "Nurb", 1, nu);
|
|
|
|
nu= nu->next;
|
|
|
|
}
|
|
|
|
nu= cu->nurb.first;
|
|
|
|
while(nu) {
|
2004-06-23 18:22:51 +00:00
|
|
|
if( (nu->type & 7)==CU_BEZIER)
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "BezTriple", nu->pntsu, nu->bezt);
|
|
|
|
else {
|
|
|
|
writestruct(wd, DATA, "BPoint", nu->pntsu*nu->pntsv, nu->bp);
|
|
|
|
if(nu->knotsu) writedata(wd, DATA, KNOTSU(nu)*sizeof(float), nu->knotsu);
|
|
|
|
if(nu->knotsv) writedata(wd, DATA, KNOTSV(nu)*sizeof(float), nu->knotsv);
|
|
|
|
}
|
|
|
|
nu= nu->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cu= cu->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_dverts(WriteData *wd, int count, MDeformVert *dvlist)
|
|
|
|
{
|
|
|
|
int i;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* Write the dvert list */
|
|
|
|
writestruct(wd, DATA, "MDeformVert", count, dvlist);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* Write deformation data for each dvert */
|
|
|
|
if (dvlist) {
|
|
|
|
for (i=0; i<count; i++) {
|
|
|
|
if (dvlist[i].dw)
|
2004-06-23 18:22:51 +00:00
|
|
|
writestruct(wd, DATA, "MDeformWeight", dvlist[i].totweight, dvlist[i].dw);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_meshs(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Mesh *mesh;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
mesh= idbase->first;
|
|
|
|
while(mesh) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(mesh->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_ME, "Mesh", 1, mesh);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DATA, sizeof(void *)*mesh->totcol, mesh->mat);
|
2004-07-08 20:38:27 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "MVert", mesh->totvert, mesh->mvert);
|
2004-07-08 20:38:27 +00:00
|
|
|
writestruct(wd, DATA, "MEdge", mesh->totedge, mesh->medge);
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "MFace", mesh->totface, mesh->mface);
|
|
|
|
writestruct(wd, DATA, "TFace", mesh->totface, mesh->tface);
|
|
|
|
writestruct(wd, DATA, "MCol", 4*mesh->totface, mesh->mcol);
|
|
|
|
writestruct(wd, DATA, "MSticky", mesh->totvert, mesh->msticky);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2004-07-08 20:38:27 +00:00
|
|
|
write_dverts(wd, mesh->totvert, mesh->dvert);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
mesh= mesh->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_images(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Image *ima;
|
|
|
|
PackedFile * pf;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ima= idbase->first;
|
|
|
|
while(ima) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(ima->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_IM, "Image", 1, ima);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (ima->packedfile) {
|
|
|
|
pf = ima->packedfile;
|
|
|
|
writestruct(wd, DATA, "PackedFile", 1, pf);
|
|
|
|
writedata(wd, DATA, pf->size, pf->data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ima= ima->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_textures(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Tex *tex;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
tex= idbase->first;
|
|
|
|
while(tex) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(tex->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_TE, "Tex", 1, tex);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
if(tex->plugin) writestruct(wd, DATA, "PluginTex", 1, tex->plugin);
|
|
|
|
if(tex->coba) writestruct(wd, DATA, "ColorBand", 1, tex->coba);
|
|
|
|
if(tex->env) writestruct(wd, DATA, "EnvMap", 1, tex->env);
|
|
|
|
}
|
|
|
|
tex= tex->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_materials(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Material *ma;
|
|
|
|
int a;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ma= idbase->first;
|
|
|
|
while(ma) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(ma->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_MA, "Material", 1, ma);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2004-12-04 21:49:02 +00:00
|
|
|
for(a=0; a<MAX_MTEX; a++) {
|
2002-10-12 11:37:38 +00:00
|
|
|
if(ma->mtex[a]) writestruct(wd, DATA, "MTex", 1, ma->mtex[a]);
|
|
|
|
}
|
2004-06-30 18:54:09 +00:00
|
|
|
|
|
|
|
if(ma->ramp_col) writestruct(wd, DATA, "ColorBand", 1, ma->ramp_col);
|
|
|
|
if(ma->ramp_spec) writestruct(wd, DATA, "ColorBand", 1, ma->ramp_spec);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
write_scriptlink(wd, &ma->scriptlink);
|
|
|
|
}
|
|
|
|
ma= ma->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_worlds(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
World *wrld;
|
|
|
|
int a;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
wrld= idbase->first;
|
|
|
|
while(wrld) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(wrld->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_WO, "World", 1, wrld);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2004-12-04 21:49:02 +00:00
|
|
|
for(a=0; a<MAX_MTEX; a++) {
|
2002-10-12 11:37:38 +00:00
|
|
|
if(wrld->mtex[a]) writestruct(wd, DATA, "MTex", 1, wrld->mtex[a]);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
write_scriptlink(wd, &wrld->scriptlink);
|
|
|
|
}
|
|
|
|
wrld= wrld->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_lamps(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Lamp *la;
|
|
|
|
int a;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
la= idbase->first;
|
|
|
|
while(la) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(la->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_LA, "Lamp", 1, la);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2004-12-04 21:49:02 +00:00
|
|
|
for(a=0; a<MAX_MTEX; a++) {
|
2002-10-12 11:37:38 +00:00
|
|
|
if(la->mtex[a]) writestruct(wd, DATA, "MTex", 1, la->mtex[a]);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
write_scriptlink(wd, &la->scriptlink);
|
|
|
|
}
|
|
|
|
la= la->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_lattices(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Lattice *lt;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
lt= idbase->first;
|
|
|
|
while(lt) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(lt->id.us>0 || wd->current) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_LT, "Lattice", 1, lt);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "BPoint", lt->pntsu*lt->pntsv*lt->pntsw, lt->def);
|
|
|
|
}
|
|
|
|
lt= lt->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_scenes(WriteData *wd, ListBase *scebase)
|
|
|
|
{
|
|
|
|
Scene *sce;
|
|
|
|
Base *base;
|
|
|
|
Editing *ed;
|
|
|
|
Sequence *seq;
|
2004-11-13 12:55:59 +00:00
|
|
|
MetaStack *ms;
|
2002-10-12 11:37:38 +00:00
|
|
|
Strip *strip;
|
Added the new Timeline Window, copied from Tuhopuu, coded by Matt Ebb.
Main change is that it's an own Space type now, not part of the Audio
window... the audio window should restrict to own options. This way
functionality is nicely separated.
Since it's the first time I added a new space (since long!) I've made an
extensive tutorial as well. You can find that here:
http://www.blender3d.org/cms/Adding_new_Space_Window.557.0.html
Notes for using timewindow;
- Add time markers with MKey
- CTRL+M gives option to name Marker
- Markers cannot be moved yet...
- Pageup-Pagedown keys moves current frame to next-prev Marker
- Xkey removes Markers
- If an object has Ipos or an Action, it draws key lines
- CTRL+Pageup-Pagedown moves current frame to next-prev Key
- Press S or E to set start/end frame for playback
Notes about the implementation in Tuhopuu:
- Add new Marker now selects new, deselects others
- Selecting Marker didn't work like elsewhere in Blender, on click it
should deselect all, except the indicated Marker. Not when holding SHIFT
of course
- Not exported functions are static now
- Removed unused defines (MARKER_NONE NEXT_AVAIL)
- Drawing order was confusing, doing too many matrix calls
- Removed not needed scrollbar, added new function to draw time values.
(Has advantage the MMB scroll works not confusing on a scrollbar)
- Added proper support for 'frame mapping'
- The string button (name Marker) had a bug (checked str[64] while str
was only 64 long)
- String button itself didn't allow "OK on enter"
- Made frame buttons in header larger, the arrows overlapped
- Removed support for negative frame values, that won't work so simple!
2005-05-05 17:19:21 +00:00
|
|
|
TimeMarker *marker;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sce= scebase->first;
|
|
|
|
while(sce) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_SCE, "Scene", 1, sce);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
base= sce->base.first;
|
|
|
|
while(base) {
|
|
|
|
writestruct(wd, DATA, "Base", 1, base);
|
|
|
|
base= base->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "Radio", 1, sce->radio);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
ed= sce->ed;
|
|
|
|
if(ed) {
|
|
|
|
writestruct(wd, DATA, "Editing", 1, ed);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* reset write flags too */
|
2002-10-12 11:37:38 +00:00
|
|
|
WHILE_SEQ(&ed->seqbase) {
|
|
|
|
if(seq->strip) seq->strip->done= 0;
|
|
|
|
writestruct(wd, DATA, "Sequence", 1, seq);
|
|
|
|
}
|
|
|
|
END_SEQ
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
WHILE_SEQ(&ed->seqbase) {
|
|
|
|
if(seq->strip && seq->strip->done==0) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write strip with 'done' at 0 because readfile */
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(seq->plugin) writestruct(wd, DATA, "PluginSeq", 1, seq->plugin);
|
2004-06-23 18:22:51 +00:00
|
|
|
if(seq->effectdata) {
|
|
|
|
switch(seq->type){
|
2004-08-03 19:36:17 +00:00
|
|
|
case SEQ_WIPE:
|
|
|
|
writestruct(wd, DATA, "WipeVars", 1, seq->effectdata);
|
2004-06-23 18:22:51 +00:00
|
|
|
break;
|
2004-06-23 22:11:57 +00:00
|
|
|
case SEQ_GLOW:
|
|
|
|
writestruct(wd, DATA, "GlowVars", 1, seq->effectdata);
|
|
|
|
break;
|
2004-06-23 18:22:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
strip= seq->strip;
|
|
|
|
writestruct(wd, DATA, "Strip", 1, strip);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
|
|
|
if(seq->type==SEQ_IMAGE)
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "StripElem", strip->len, strip->stripdata);
|
Commit message and the brunt of the code courtesy of intrr, apologies for the
size of this;
Finally, the Sequencer audio support and global audio/animation sync stuff!
(See http://intrr.org/blender/audiosequencer.html)
Stuff that has been done:
./source/blender/blenloader/intern/writefile.c
./source/blender/blenloader/intern/readfile.c
Added code to make it handle sounds used by audio strips, and to convert
Scene data from older (<2.28) versions to init Scene global audio settings
(Scene->audio) to defaults.
./source/blender/include/BSE_seqaudio.h
./source/blender/src/seqaudio.c
The main audio routines that start/stop/scrub the audio stream at
a certain frame position, provide the frame reference for the current
stream position, mix the audio, convert the audio, mixdown the audio
into a file.
./source/blender/makesdna/DNA_sound_types.h
Introduced new variables in the bSound struct to accomodate the sample
data after converted to the scene's global mixing format (stream, streamlen).
Also added a new flag SOUND_FLAGS_SEQUENCE that gets set if the Sound
belongs to a sequence strip.
./source/blender/makesdna/DNA_scene_types.h
Added AudioData struct, which holds scene-global audio settings.
./source/blender/makesdna/DNA_sequence_types.h
Added support for audio strips. Some variables to hold Panning/Attenuation
information, position information, reference to the sample, and some flags.
./source/blender/makesdna/DNA_userdef_types.h
./source/blender/src/usiblender.c
Added a "Mixing buffer size" userpref. Made the versions stuff initialize
it to a default for versions <2.28.
./source/blender/makesdna/DNA_space_types.h
./source/blender/src/filesel.c
Added a Cyan dot to .WAV files. Any other suggestions on a better color? :)
./source/blender/src/editsound.c
Changes (fixes) to the WAV file loader, re-enabled some gameengine code that
is needed for dealing with bSounds and bSamples.
./source/blender/src/editipo.c
./source/blender/src/drawseq.c
./source/blender/src/editnla.c
./source/blender/src/space.c
./source/blender/src/drawview.c
./source/blender/src/renderwin.c
./source/blender/src/headerbuttons.c
- Created two different wrappers for update_for_newframe(), one which scrubs
the audio, one which doesn't.
- Replaced some of the occurences of update_for_newframe() with
update_for_newframe_muted(), which doesn't scrub the audio.
- In drawview.c: Changed the synchronization scheme to get the current audio
position from the audio engine, and use that as a reference for setting
CFRA. Implements a/v sync and framedrop.
- In editipo.c: Changed handling of Fac IPOs to be usable for audio strips as
volume envelopes.
- In space.c: Added the mixing buffer size Userpref, enabled audio scrubbing
(update_for_newframe()) for moving the sequence editor framebar.
./source/blender/src/editseq.c
Added support for audio strips and a default directory for WAV files which
gets saved from the last Shift-A operation.
./source/blender/src/buttons.c
Added Scene-global audio sequencer settings in Sound buttons.
./source/blender/src/sequence.c
Various stuff that deals with handling audio strips differently than
usual strips.
2003-07-13 20:16:56 +00:00
|
|
|
else if(seq->type==SEQ_MOVIE || seq->type==SEQ_SOUND)
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "StripElem", 1, strip->stripdata);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
strip->done= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
END_SEQ
|
2004-11-13 12:55:59 +00:00
|
|
|
|
|
|
|
/* new; meta stack too, even when its nasty restore code */
|
|
|
|
for(ms= ed->metastack.first; ms; ms= ms->next) {
|
|
|
|
writestruct(wd, DATA, "MetaStack", 1, ms);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
write_scriptlink(wd, &sce->scriptlink);
|
|
|
|
|
|
|
|
if (sce->r.avicodecdata) {
|
|
|
|
writestruct(wd, DATA, "AviCodecData", 1, sce->r.avicodecdata);
|
|
|
|
if (sce->r.avicodecdata->lpFormat) writedata(wd, DATA, sce->r.avicodecdata->cbFormat, sce->r.avicodecdata->lpFormat);
|
|
|
|
if (sce->r.avicodecdata->lpParms) writedata(wd, DATA, sce->r.avicodecdata->cbParms, sce->r.avicodecdata->lpParms);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-05-21 01:21:07 +00:00
|
|
|
if (sce->r.qtcodecdata) {
|
|
|
|
writestruct(wd, DATA, "QuicktimeCodecData", 1, sce->r.qtcodecdata);
|
|
|
|
if (sce->r.qtcodecdata->cdParms) writedata(wd, DATA, sce->r.qtcodecdata->cdSize, sce->r.qtcodecdata->cdParms);
|
|
|
|
}
|
|
|
|
|
Added the new Timeline Window, copied from Tuhopuu, coded by Matt Ebb.
Main change is that it's an own Space type now, not part of the Audio
window... the audio window should restrict to own options. This way
functionality is nicely separated.
Since it's the first time I added a new space (since long!) I've made an
extensive tutorial as well. You can find that here:
http://www.blender3d.org/cms/Adding_new_Space_Window.557.0.html
Notes for using timewindow;
- Add time markers with MKey
- CTRL+M gives option to name Marker
- Markers cannot be moved yet...
- Pageup-Pagedown keys moves current frame to next-prev Marker
- Xkey removes Markers
- If an object has Ipos or an Action, it draws key lines
- CTRL+Pageup-Pagedown moves current frame to next-prev Key
- Press S or E to set start/end frame for playback
Notes about the implementation in Tuhopuu:
- Add new Marker now selects new, deselects others
- Selecting Marker didn't work like elsewhere in Blender, on click it
should deselect all, except the indicated Marker. Not when holding SHIFT
of course
- Not exported functions are static now
- Removed unused defines (MARKER_NONE NEXT_AVAIL)
- Drawing order was confusing, doing too many matrix calls
- Removed not needed scrollbar, added new function to draw time values.
(Has advantage the MMB scroll works not confusing on a scrollbar)
- Added proper support for 'frame mapping'
- The string button (name Marker) had a bug (checked str[64] while str
was only 64 long)
- String button itself didn't allow "OK on enter"
- Made frame buttons in header larger, the arrows overlapped
- Removed support for negative frame values, that won't work so simple!
2005-05-05 17:19:21 +00:00
|
|
|
/* writing dynamic list of TimeMarkers to the blend file */
|
|
|
|
marker= sce->markers.first;
|
|
|
|
while(marker){
|
|
|
|
writestruct(wd, DATA, "TimeMarker", 1, marker);
|
|
|
|
marker= marker->next;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sce= sce->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_screens(WriteData *wd, ListBase *scrbase)
|
|
|
|
{
|
|
|
|
bScreen *sc;
|
|
|
|
ScrArea *sa;
|
|
|
|
ScrVert *sv;
|
|
|
|
ScrEdge *se;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sc= scrbase->first;
|
|
|
|
while(sc) {
|
2003-04-26 18:01:01 +00:00
|
|
|
/* write LibData */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_SCR, "Screen", 1, sc);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* direct data */
|
2002-10-12 11:37:38 +00:00
|
|
|
sv= sc->vertbase.first;
|
|
|
|
while(sv) {
|
|
|
|
writestruct(wd, DATA, "ScrVert", 1, sv);
|
|
|
|
sv= sv->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
se= sc->edgebase.first;
|
|
|
|
while(se) {
|
|
|
|
writestruct(wd, DATA, "ScrEdge", 1, se);
|
|
|
|
se= se->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sa= sc->areabase.first;
|
|
|
|
while(sa) {
|
|
|
|
SpaceLink *sl;
|
2003-10-04 20:35:50 +00:00
|
|
|
Panel *pa;
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
writestruct(wd, DATA, "ScrArea", 1, sa);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-10-04 20:35:50 +00:00
|
|
|
pa= sa->panels.first;
|
|
|
|
while(pa) {
|
|
|
|
writestruct(wd, DATA, "Panel", 1, pa);
|
|
|
|
pa= pa->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
BPython:
- Made Blender.event var (previously only used by script links) hold ascii value -- where it applies -- of current event during events callback registered with Draw.Register(gui, events, button_events). Useful for gui scripts like Campbell's Python console. No problem using this var to hold the value, since in gui scripts it was not used (always None).
- Updated Window and Window.Theme with new theme vars and the Time space.
- Script links:
-- Added "Render" event for script links (runs twice, second time as "PostEvent", for clean-up actions). Now FrameChanged links don't run when a single pic is rendered.
-- Added "Enable Script Links" button in the script buttons tab. Now this bit gets saved in .blends along with the rest of G.f, so users can define per .blend if they are on or off by default. "blender -y" also disables all slinks as happened before with OnLoad ones only.
-- Other small changes in the script buttons tab:
When a link is added (button "new"), it becomes the active one for the window, no need to press a button to reach it.
Also, a pupmenu showing all available texts is shown when "new" is pressed, so users can choose a text w/o having to type. Cancel the popup to leave the string button empty (link exists, but has no script assigned). A pulldown would be better UI-wise, but it's kinda weird to show both scripts and normal texts (Blender doesn't differentiate them) in a script links pulldown. With a popup we can show only texts ending in ".py" (not done in this commit, need opinions) and if the script has no or another extension, case of many in old and current .blend's, there's still the string box for writing its name.
-- Implemented Ton's space handler script links:
Right now only for the 3d View, but it's trivial to add for others. There are two types: EVENT, to receive 3d View events from a chosen window and DRAW, to draw on the window. Ton's idea was to give scripts a controlled way to integrate better within Blender.
Here's how it works:
- scripts must have a proper header, like:
# SPACEHANDLER.VIEW3D.EVENT
and then they are shown in 3d View's View menu, "Space Handler Scripts" submenu. Check (mark, click on it) a script to make it active.
EVENT handlers should consult the Blender.event var to get the current event, which can be compared with values from the Draw module:
import Blender
from Blender import Draw
evt = Blender.event
if evt == Draw.AKEY:
print "a"
elif evt == Draw.LEFTMOUSE:
print "left mouse button"
else:
return # ignore, pass event back to Blender
Blender.event = None # tell Blender not to process itself the event
DRAW handlers are free to draw to their owner 3D View. OpenGL attributes and modelview and projection matrices are pushed before running the handler and poped when it finishes.
To communicate between EVENT and DRAW handler scripts we have the Blender.Registry module, as always.
Still need to code some nice example, which should also serve to test properly space handlers. Simple tests went fine.
- doc updates about the additions.
=======
Note: the UI part of the space handlers and script links is of course open for changes, I just tried to make it understandable. Probably we won't use the scriptlinks icon for "None Available" (check 3d View -> View -> Space Handler Scripts), though it hints at what space handlers are. The tooltips may not be accepted either, since other menus don't use them. Opinions welcomed.
2005-05-08 21:20:34 +00:00
|
|
|
/* space handler scriptlinks */
|
|
|
|
write_scriptlink(wd, &sa->scriptlink);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sl= sa->spacedata.first;
|
|
|
|
while(sl) {
|
|
|
|
if(sl->spacetype==SPACE_VIEW3D) {
|
|
|
|
View3D *v3d= (View3D*) sl;
|
|
|
|
writestruct(wd, DATA, "View3D", 1, v3d);
|
|
|
|
if(v3d->bgpic) writestruct(wd, DATA, "BGpic", 1, v3d->bgpic);
|
|
|
|
if(v3d->localvd) writestruct(wd, DATA, "View3D", 1, v3d->localvd);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_IPO) {
|
|
|
|
writestruct(wd, DATA, "SpaceIpo", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_BUTS) {
|
|
|
|
writestruct(wd, DATA, "SpaceButs", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_FILE) {
|
|
|
|
writestruct(wd, DATA, "SpaceFile", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_SEQ) {
|
|
|
|
writestruct(wd, DATA, "SpaceSeq", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_OOPS) {
|
|
|
|
SpaceOops *so= (SpaceOops *)sl;
|
|
|
|
Oops *oops;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* cleanup */
|
|
|
|
oops= so->oops.first;
|
|
|
|
while(oops) {
|
|
|
|
Oops *oopsn= oops->next;
|
|
|
|
if(oops->id==0) {
|
|
|
|
BLI_remlink(&so->oops, oops);
|
|
|
|
free_oops(oops);
|
|
|
|
}
|
|
|
|
oops= oopsn;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* ater cleanup, because of listbase! */
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "SpaceOops", 1, so);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
oops= so->oops.first;
|
|
|
|
while(oops) {
|
|
|
|
writestruct(wd, DATA, "Oops", 1, oops);
|
|
|
|
oops= oops->next;
|
|
|
|
}
|
Version 1.0 of the new Outliner
The outliner is a hierarchical diagram displaying a list of data in Blender
and its dependencies. The 'databrowse' doesn't really show it, and Oops is
too chaotic still. And most of all, the former two don't offer much tools.
After discussions on irc, Matt came with this design proposal;
http://mke3.net/blender/interface/layout/outliner/
Which is closely followed for the implementation.
The current version only shows all 'library data' in Blender (objects,
meshes, ipos, etc) and not the 'direct data' such as vertex groups or NLA.
I decided to make it inside the Oopw window, as an option. You can find the
option in the "View" pulldown, or directly invoke it with ALT+SHIFT+F9
Here's a quick overview of the Outliner GUI:
- Header pulldown has options what it can show (Visible = in current layers)
- click on triangle arrow to open/close
- press AKEY to open/close all
- Leftmouse click on an item activates; and does based on type a couple of
extra things:
- activates a scene
- selects/activates the Object
- enters editmode (if clicked on Mesh, Curve, etc)
- shows the appropriate Shading buttons (Lamp, Material, Texture)
- sets the IpoWindow to the current IPO
- activates the Ipo-channel in an Action
- Selected and Active objects are drawn in its Theme selection color
- SHIFT+click on Object does extend-select
- Press DOTkey to get the current active data in center of view
TODO;
- rightmouse selection; for indicating operations like delete or duplicate
- showing more data types
- icon (re)design...
- lotsof options as described in Matts paper still...
2004-10-06 18:55:00 +00:00
|
|
|
/* outliner */
|
|
|
|
if(so->treestore) {
|
|
|
|
writestruct(wd, DATA, "TreeStore", 1, so->treestore);
|
|
|
|
if(so->treestore->data)
|
|
|
|
writestruct(wd, DATA, "TreeStoreElem", so->treestore->usedelem, so->treestore->data);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_IMAGE) {
|
|
|
|
writestruct(wd, DATA, "SpaceImage", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_IMASEL) {
|
|
|
|
writestruct(wd, DATA, "SpaceImaSel", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_TEXT) {
|
|
|
|
writestruct(wd, DATA, "SpaceText", 1, sl);
|
|
|
|
}
|
2003-12-14 01:18:09 +00:00
|
|
|
else if(sl->spacetype==SPACE_SCRIPT) {
|
|
|
|
writestruct(wd, DATA, "SpaceScript", 1, sl);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
else if(sl->spacetype==SPACE_ACTION) {
|
|
|
|
writestruct(wd, DATA, "SpaceAction", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_SOUND) {
|
|
|
|
writestruct(wd, DATA, "SpaceSound", 1, sl);
|
|
|
|
}
|
|
|
|
else if(sl->spacetype==SPACE_NLA){
|
|
|
|
writestruct(wd, DATA, "SpaceNla", 1, sl);
|
|
|
|
}
|
Added the new Timeline Window, copied from Tuhopuu, coded by Matt Ebb.
Main change is that it's an own Space type now, not part of the Audio
window... the audio window should restrict to own options. This way
functionality is nicely separated.
Since it's the first time I added a new space (since long!) I've made an
extensive tutorial as well. You can find that here:
http://www.blender3d.org/cms/Adding_new_Space_Window.557.0.html
Notes for using timewindow;
- Add time markers with MKey
- CTRL+M gives option to name Marker
- Markers cannot be moved yet...
- Pageup-Pagedown keys moves current frame to next-prev Marker
- Xkey removes Markers
- If an object has Ipos or an Action, it draws key lines
- CTRL+Pageup-Pagedown moves current frame to next-prev Key
- Press S or E to set start/end frame for playback
Notes about the implementation in Tuhopuu:
- Add new Marker now selects new, deselects others
- Selecting Marker didn't work like elsewhere in Blender, on click it
should deselect all, except the indicated Marker. Not when holding SHIFT
of course
- Not exported functions are static now
- Removed unused defines (MARKER_NONE NEXT_AVAIL)
- Drawing order was confusing, doing too many matrix calls
- Removed not needed scrollbar, added new function to draw time values.
(Has advantage the MMB scroll works not confusing on a scrollbar)
- Added proper support for 'frame mapping'
- The string button (name Marker) had a bug (checked str[64] while str
was only 64 long)
- String button itself didn't allow "OK on enter"
- Made frame buttons in header larger, the arrows overlapped
- Removed support for negative frame values, that won't work so simple!
2005-05-05 17:19:21 +00:00
|
|
|
else if(sl->spacetype==SPACE_TIME){
|
|
|
|
writestruct(wd, DATA, "SpaceTime", 1, sl);
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
sl= sl->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sa= sa->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sc= sc->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_libraries(WriteData *wd, Main *main)
|
|
|
|
{
|
|
|
|
ListBase *lbarray[30];
|
|
|
|
ID *id;
|
|
|
|
int a, tot, foundone;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
while(main) {
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
a=tot= set_listbasepointers(main, lbarray);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* test: is lib being used */
|
2002-10-12 11:37:38 +00:00
|
|
|
foundone= 0;
|
|
|
|
while(tot--) {
|
|
|
|
id= lbarray[tot]->first;
|
|
|
|
while(id) {
|
|
|
|
if(id->us>0 && (id->flag & LIB_EXTERN)) {
|
|
|
|
foundone= 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
id= id->next;
|
|
|
|
}
|
|
|
|
if(foundone) break;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
|
|
|
if(foundone) {
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_LI, "Library", 1, main->curlib);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
while(a--) {
|
|
|
|
id= lbarray[a]->first;
|
|
|
|
while(id) {
|
|
|
|
if(id->us>0 && (id->flag & LIB_EXTERN)) {
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_ID, "ID", 1, id);
|
|
|
|
}
|
|
|
|
id= id->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
main= main->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_bone(WriteData *wd, Bone* bone)
|
|
|
|
{
|
|
|
|
Bone* cbone;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2005-07-09 13:41:01 +00:00
|
|
|
// PATCH for upward compatibility after 2.37+ armature recode
|
|
|
|
bone->size[0]= bone->size[1]= bone->size[2]= 1.0f;
|
|
|
|
|
2004-06-23 18:22:51 +00:00
|
|
|
// Write this bone
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, DATA, "Bone", 1, bone);
|
2005-07-09 13:41:01 +00:00
|
|
|
|
2004-06-23 18:22:51 +00:00
|
|
|
// Write Children
|
2002-10-12 11:37:38 +00:00
|
|
|
cbone= bone->childbase.first;
|
|
|
|
while(cbone) {
|
|
|
|
write_bone(wd, cbone);
|
|
|
|
cbone= cbone->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_armatures(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
bArmature *arm;
|
|
|
|
Bone *bone;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
arm=idbase->first;
|
|
|
|
while (arm) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if (arm->id.us>0 || wd->current) {
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_AR, "bArmature", 1, arm);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* Direct data */
|
|
|
|
bone= arm->bonebase.first;
|
|
|
|
while(bone) {
|
|
|
|
write_bone(wd, bone);
|
|
|
|
bone=bone->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
arm=arm->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_actions(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
bAction *act;
|
|
|
|
bActionChannel *chan;
|
|
|
|
act=idbase->first;
|
|
|
|
while (act) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if (act->id.us>0 || wd->current) {
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, ID_AC, "bAction", 1, act);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
for (chan=act->chanbase.first; chan; chan=chan->next) {
|
|
|
|
writestruct(wd, DATA, "bActionChannel", 1, chan);
|
|
|
|
write_constraint_channels(wd, &chan->constraintChannels);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
act=act->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_texts(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Text *text;
|
|
|
|
TextLine *tmp;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
text= idbase->first;
|
|
|
|
while(text) {
|
|
|
|
if ( (text->flags & TXT_ISMEM) && (text->flags & TXT_ISEXT)) text->flags &= ~TXT_ISEXT;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* write LibData */
|
|
|
|
writestruct(wd, ID_TXT, "Text", 1, text);
|
|
|
|
if(text->name) writedata(wd, DATA, strlen(text->name)+1, text->name);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
|
|
|
if(!(text->flags & TXT_ISEXT)) {
|
2002-10-12 11:37:38 +00:00
|
|
|
/* now write the text data, in two steps for optimization in the readfunction */
|
|
|
|
tmp= text->lines.first;
|
|
|
|
while (tmp) {
|
|
|
|
writestruct(wd, DATA, "TextLine", 1, tmp);
|
|
|
|
tmp= tmp->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
tmp= text->lines.first;
|
|
|
|
while (tmp) {
|
|
|
|
writedata(wd, DATA, tmp->len+1, tmp->line);
|
|
|
|
tmp= tmp->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
text= text->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_sounds(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
bSound *sound;
|
|
|
|
bSample *sample;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
PackedFile * pf;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
// set all samples to unsaved status
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sample = samples->first;
|
|
|
|
while (sample) {
|
|
|
|
sample->flags |= SAMPLE_NEEDS_SAVE;
|
|
|
|
sample = sample->id.next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sound= idbase->first;
|
|
|
|
while(sound) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(sound->id.us>0 || wd->current) {
|
2002-10-12 11:37:38 +00:00
|
|
|
// do we need to save the packedfile as well ?
|
|
|
|
sample = sound->sample;
|
|
|
|
if (sample) {
|
|
|
|
if (sample->flags & SAMPLE_NEEDS_SAVE) {
|
|
|
|
sound->newpackedfile = sample->packedfile;
|
|
|
|
sample->flags &= ~SAMPLE_NEEDS_SAVE;
|
|
|
|
} else {
|
|
|
|
sound->newpackedfile = NULL;
|
|
|
|
}
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* write LibData */
|
|
|
|
writestruct(wd, ID_SO, "bSound", 1, sound);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (sound->newpackedfile) {
|
|
|
|
pf = sound->newpackedfile;
|
|
|
|
writestruct(wd, DATA, "PackedFile", 1, pf);
|
|
|
|
writedata(wd, DATA, pf->size, pf->data);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (sample) {
|
|
|
|
sound->newpackedfile = sample->packedfile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sound= sound->id.next;
|
|
|
|
}
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
/* flush helps the compression for undo-save */
|
|
|
|
mywrite(wd, MYWRITE_FLUSH, 0);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void write_groups(WriteData *wd, ListBase *idbase)
|
|
|
|
{
|
|
|
|
Group *group;
|
|
|
|
GroupKey *gk;
|
|
|
|
GroupObject *go;
|
|
|
|
ObjectKey *ok;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
group= idbase->first;
|
|
|
|
while(group) {
|
2004-11-07 10:15:06 +00:00
|
|
|
if(group->id.us>0 || wd->current) {
|
2002-10-12 11:37:38 +00:00
|
|
|
/* write LibData */
|
|
|
|
writestruct(wd, ID_GR, "Group", 1, group);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
gk= group->gkey.first;
|
|
|
|
while(gk) {
|
|
|
|
writestruct(wd, DATA, "GroupKey", 1, gk);
|
|
|
|
gk= gk->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
go= group->gobject.first;
|
|
|
|
while(go) {
|
|
|
|
writestruct(wd, DATA, "GroupObject", 1, go);
|
|
|
|
go= go->next;
|
|
|
|
}
|
|
|
|
go= group->gobject.first;
|
|
|
|
while(go) {
|
|
|
|
ok= go->okey.first;
|
|
|
|
while(ok) {
|
|
|
|
writestruct(wd, DATA, "ObjectKey", 1, ok);
|
|
|
|
ok= ok->next;
|
|
|
|
}
|
|
|
|
go= go->next;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
group= group->id.next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_global(WriteData *wd)
|
|
|
|
{
|
|
|
|
FileGlobal fg;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
fg.curscreen= G.curscreen;
|
2004-09-05 13:43:51 +00:00
|
|
|
fg.curscene= G.scene;
|
Biiig commit! Thanks to 2-3 weeks of cvs freeze...
Render:
- New; support for dual CPU render (SDL thread)
Currently only works with alternating scanlines, but gives excellent
performance. For both normal render as unified implemented.
Note the "mutex" locks on z-transp buffer render and imbuf loads.
- This has been made possible by major cleanups in render code, especially
getting rid of globals (example Tin Tr Tg Tb Ta for textures) or struct
OSA or using Materials or Texture data to write to.
- Made normal render fully 4x32 floats too, and removed all old optimizes
with chars or shorts.
- Made normal render and unified render use same code for sky and halo
render, giving equal (and better) results for halo render. Old render
now also uses PostProcess options (brightness, mul, gamma)
- Added option ("FBuf") in F10 Output Panel, this keeps a 4x32 bits buffer
after render. Using PostProcess menu you will note an immediate re-
display of image too (32 bits RGBA)
- Added "Hue" and "Saturation" sliders to PostProcess options
- Render module is still not having a "nice" API, but amount of dependencies
went down a lot. Next todo: remove abusive "previewrender" code.
The last main global in Render (struct Render) now can be re-used for fully
controlling a render, to allow multiple "instances" of render to open.
- Renderwindow now displays a smal bar on top with the stats, and keeps the
stats after render too. Including "spare" page support.
Not only easier visible that way, but also to remove the awkward code that
was drawing stats in the Info header (extreme slow on some ATIs too)
- Cleaned up blendef.h and BKE_utildefines.h, these two had overlapping
defines.
- I might have forgotten stuff... and will write a nice doc on the architecture!
2004-12-27 19:28:52 +00:00
|
|
|
fg.displaymode= G.displaymode;
|
|
|
|
fg.winpos= G.winpos;
|
2004-10-13 09:17:10 +00:00
|
|
|
fg.fileflags= (G.fileflags & ~G_FILE_NO_UI); // prevent to save this, is not good convention, and feature with concerns...
|
2003-07-21 19:41:07 +00:00
|
|
|
fg.globalf= G.f;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
writestruct(wd, GLOB, "FileGlobal", 1, &fg);
|
|
|
|
}
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
/* if *mem there's filesave to memory */
|
|
|
|
static int write_file_handle(int handle, MemFile *compare, MemFile *current, int write_user_block, int write_flags)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2004-09-05 13:43:51 +00:00
|
|
|
BHead bhead;
|
2002-10-12 11:37:38 +00:00
|
|
|
ListBase mainlist;
|
|
|
|
char buf[13];
|
|
|
|
WriteData *wd;
|
2005-03-09 19:45:59 +00:00
|
|
|
/* int data; */ /*unused*/
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
mainlist.first= mainlist.last= G.main;
|
|
|
|
G.main->next= NULL;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
blo_split_main(&mainlist);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
wd= bgnwrite(handle, compare, current, write_flags);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sprintf(buf, "BLENDER%c%c%.3d", (sizeof(void*)==8)?'-':'_', (G.order==B_ENDIAN)?'V':'v', G.version);
|
|
|
|
mywrite(wd, buf, 12);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
write_renderinfo(wd);
|
2004-09-05 13:43:51 +00:00
|
|
|
|
|
|
|
if(current==NULL)
|
|
|
|
write_screens (wd, &G.main->screen); // no UI save
|
2002-10-12 11:37:38 +00:00
|
|
|
write_scenes (wd, &G.main->scene);
|
|
|
|
write_curves (wd, &G.main->curve);
|
|
|
|
write_mballs (wd, &G.main->mball);
|
|
|
|
write_images (wd, &G.main->image);
|
|
|
|
write_cameras (wd, &G.main->camera);
|
|
|
|
write_lamps (wd, &G.main->lamp);
|
|
|
|
write_lattices (wd, &G.main->latt);
|
|
|
|
write_vfonts (wd, &G.main->vfont);
|
|
|
|
write_ipos (wd, &G.main->ipo);
|
|
|
|
write_keys (wd, &G.main->key);
|
|
|
|
write_worlds (wd, &G.main->world);
|
|
|
|
write_texts (wd, &G.main->text);
|
|
|
|
write_sounds (wd, &G.main->sound);
|
|
|
|
write_groups (wd, &G.main->group);
|
|
|
|
write_armatures(wd, &G.main->armature);
|
|
|
|
write_actions (wd, &G.main->action);
|
2004-09-05 13:43:51 +00:00
|
|
|
write_objects (wd, &G.main->object);
|
|
|
|
write_materials(wd, &G.main->mat);
|
|
|
|
write_textures (wd, &G.main->tex);
|
|
|
|
write_meshs (wd, &G.main->mesh);
|
2002-10-12 11:37:38 +00:00
|
|
|
write_libraries(wd, G.main->next);
|
|
|
|
|
|
|
|
write_global(wd);
|
|
|
|
if (write_user_block) {
|
|
|
|
write_userdef(wd);
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2003-04-26 18:01:01 +00:00
|
|
|
/* dna as last, because (to be implemented) test for which structs are written */
|
2002-10-12 11:37:38 +00:00
|
|
|
writedata(wd, DNA1, wd->sdna->datalen, wd->sdna->data);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
/* end of file */
|
|
|
|
memset(&bhead, 0, sizeof(BHead));
|
|
|
|
bhead.code= ENDB;
|
|
|
|
mywrite(wd, &bhead, sizeof(BHead));
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
blo_join_main(&mainlist);
|
|
|
|
G.main= mainlist.first;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return endwrite(wd);
|
|
|
|
}
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
/* return: success (1) */
|
2002-10-12 11:37:38 +00:00
|
|
|
int BLO_write_file(char *dir, int write_flags, char **error_r)
|
|
|
|
{
|
|
|
|
char userfilename[FILE_MAXDIR+FILE_MAXFILE];
|
|
|
|
char tempname[FILE_MAXDIR+FILE_MAXFILE];
|
|
|
|
int file, fout, write_user_block;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
sprintf(tempname, "%s@", dir);
|
|
|
|
|
|
|
|
file = open(tempname,O_BINARY+O_WRONLY+O_CREAT+O_TRUNC, 0666);
|
|
|
|
if(file == -1) {
|
|
|
|
*error_r= "Unable to open";
|
|
|
|
return 0;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
BLI_make_file_string(G.sce, userfilename, BLI_gethome(), ".B.blend");
|
2003-10-25 14:09:18 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
write_user_block= BLI_streq(dir, userfilename);
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
fout= write_file_handle(file, NULL,NULL, write_user_block, write_flags);
|
2002-10-12 11:37:38 +00:00
|
|
|
close(file);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if(!fout) {
|
|
|
|
if(BLI_rename(tempname, dir) < 0) {
|
|
|
|
*error_r= "Can't change old file. File saved with @";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
remove(tempname);
|
|
|
|
|
|
|
|
*error_r= "Not enough diskspace";
|
|
|
|
return 0;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
/* return: success (1) */
|
|
|
|
int BLO_write_file_mem(MemFile *compare, MemFile *current, int write_flags, char **error_r)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err= write_file_handle(0, compare, current, 0, write_flags);
|
|
|
|
|
|
|
|
if(err==0) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
/* Runtime writing */
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#define PATHSEPERATOR "\\"
|
|
|
|
#else
|
|
|
|
#define PATHSEPERATOR "/"
|
2004-06-23 18:22:51 +00:00
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
static 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);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (cut) {
|
|
|
|
cut[0] = 0;
|
|
|
|
return tmpname;
|
|
|
|
} else {
|
|
|
|
MEM_freeN(tmpname);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *get_runtime_path(char *exename) {
|
|
|
|
char *installpath= get_install_dir();
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!installpath) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
char *path= MEM_mallocN(strlen(installpath)+strlen(PATHSEPERATOR)+strlen(exename)+1, "runtimepath");
|
|
|
|
strcpy(path, installpath);
|
|
|
|
strcat(path, PATHSEPERATOR);
|
|
|
|
strcat(path, exename);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
MEM_freeN(installpath);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
2004-12-16 14:40:25 +00:00
|
|
|
static int recursive_copy_runtime(char *outname, char *exename, char **cause_r)
|
|
|
|
{
|
2002-10-12 11:37:38 +00:00
|
|
|
char *cause = NULL, *runtime = get_runtime_path(exename);
|
|
|
|
char command[2 * (FILE_MAXDIR+FILE_MAXFILE) + 32];
|
|
|
|
int progfd = -1;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!runtime) {
|
|
|
|
cause= "Unable to find runtime";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2004-12-16 14:40:25 +00:00
|
|
|
//printf("runtimepath %s\n", runtime);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
progfd= open(runtime, O_BINARY|O_RDONLY, 0);
|
|
|
|
if (progfd==-1) {
|
|
|
|
cause= "Unable to find runtime";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2004-12-16 14:40:25 +00:00
|
|
|
sprintf(command, "/bin/cp -R \"%s\" \"%s\"", runtime, outname);
|
|
|
|
//printf("command %s\n", command);
|
2002-10-12 11:37:38 +00:00
|
|
|
if (system(command) == -1) {
|
|
|
|
cause = "Couldn't copy runtime";
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (progfd!=-1)
|
|
|
|
close(progfd);
|
|
|
|
if (runtime)
|
|
|
|
MEM_freeN(runtime);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (cause) {
|
|
|
|
*cause_r= cause;
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BLO_write_runtime(char *file, char *exename) {
|
|
|
|
char gamename[FILE_MAXDIR+FILE_MAXFILE];
|
|
|
|
int outfd = -1;
|
|
|
|
char *cause= NULL;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
// remove existing file / bundle
|
2004-12-16 14:40:25 +00:00
|
|
|
//printf("Delete file %s\n", file);
|
2002-10-12 11:37:38 +00:00
|
|
|
BLI_delete(file, NULL, TRUE);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!recursive_copy_runtime(file, exename, &cause))
|
|
|
|
goto cleanup;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
strcpy(gamename, file);
|
|
|
|
strcat(gamename, "/Contents/Resources/game.blend");
|
2004-12-16 14:40:25 +00:00
|
|
|
//printf("gamename %s\n", gamename);
|
2002-10-12 11:37:38 +00:00
|
|
|
outfd= open(gamename, O_BINARY|O_WRONLY|O_CREAT|O_TRUNC, 0777);
|
|
|
|
if (outfd != -1) {
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
write_file_handle(outfd, NULL,NULL, 0, G.fileflags);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (write(outfd, " ", 1) != 1) {
|
|
|
|
cause= "Unable to write to output file";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cause = "Unable to open blenderfile";
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cleanup:
|
|
|
|
if (outfd!=-1)
|
|
|
|
close(outfd);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (cause)
|
|
|
|
error("Unable to make runtime: %s", cause);
|
|
|
|
}
|
|
|
|
|
2003-01-19 14:13:50 +00:00
|
|
|
#else /* !__APPLE__ */
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
static int handle_append_runtime(int handle, char *exename, char **cause_r) {
|
|
|
|
char *cause= NULL, *runtime= get_runtime_path(exename);
|
|
|
|
unsigned char buf[1024];
|
|
|
|
int count, progfd= -1;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!runtime) {
|
|
|
|
cause= "Unable to find runtime";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
progfd= open(runtime, O_BINARY|O_RDONLY, 0);
|
|
|
|
if (progfd==-1) {
|
|
|
|
cause= "Unable to find runtime";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((count= read(progfd, buf, sizeof(buf)))>0) {
|
|
|
|
if (write(handle, buf, count)!=count) {
|
|
|
|
cause= "Unable to write to output file";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cleanup:
|
|
|
|
if (progfd!=-1)
|
|
|
|
close(progfd);
|
|
|
|
if (runtime)
|
|
|
|
MEM_freeN(runtime);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (cause) {
|
|
|
|
*cause_r= cause;
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int handle_write_msb_int(int handle, int i) {
|
|
|
|
unsigned char buf[4];
|
|
|
|
buf[0]= (i>>24)&0xFF;
|
|
|
|
buf[1]= (i>>16)&0xFF;
|
|
|
|
buf[2]= (i>>8)&0xFF;
|
|
|
|
buf[3]= (i>>0)&0xFF;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return (write(handle, buf, 4)==4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BLO_write_runtime(char *file, char *exename) {
|
|
|
|
int outfd= open(file, O_BINARY|O_WRONLY|O_CREAT|O_TRUNC, 0777);
|
|
|
|
char *cause= NULL;
|
|
|
|
int datastart;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!outfd) {
|
|
|
|
cause= "Unable to open output file";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (!handle_append_runtime(outfd, exename, &cause))
|
|
|
|
goto cleanup;
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
datastart= lseek(outfd, 0, SEEK_CUR);
|
|
|
|
|
2004-09-05 13:43:51 +00:00
|
|
|
write_file_handle(outfd, NULL,NULL, 0, G.fileflags);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!handle_write_msb_int(outfd, datastart) || (write(outfd, "BRUNTIME", 8)!=8)) {
|
|
|
|
cause= "Unable to write to output file";
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
cleanup:
|
|
|
|
if (outfd!=-1)
|
|
|
|
close(outfd);
|
2004-06-23 18:22:51 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (cause)
|
|
|
|
error("Unable to make runtime: %s", cause);
|
|
|
|
}
|
|
|
|
|
2003-01-19 14:13:50 +00:00
|
|
|
#endif /* !__APPLE__ */
|