4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
21 * All rights reserved.
23 * The Original Code is: all of this file.
25 * Contributor(s): none yet.
27 * ***** END GPL LICENSE BLOCK *****
39 #include "BLI_winstuff.h"
42 #include <stdio.h> // for printf fopen fwrite fclose sprintf FILE
43 #include <stdlib.h> // for getenv atoi
44 #include <fcntl.h> // for open
45 #include <string.h> // for strrchr strncmp strstr
46 #include <math.h> // for fabs
49 #include <unistd.h> // for read close
50 #include <sys/param.h> // for MAXPATHLEN
52 #include <io.h> // for open close read
57 #include "DNA_action_types.h"
58 #include "DNA_armature_types.h"
60 #include "DNA_actuator_types.h"
61 #include "DNA_brush_types.h"
62 #include "DNA_camera_types.h"
63 #include "DNA_cloth_types.h"
64 #include "DNA_color_types.h"
65 #include "DNA_controller_types.h"
66 #include "DNA_constraint_types.h"
67 #include "DNA_curve_types.h"
68 #include "DNA_customdata_types.h"
69 #include "DNA_effect_types.h"
70 #include "DNA_fileglobal_types.h"
71 #include "DNA_group_types.h"
72 #include "DNA_gpencil_types.h"
73 #include "DNA_ipo_types.h"
74 #include "DNA_image_types.h"
75 #include "DNA_key_types.h"
76 #include "DNA_lattice_types.h"
77 #include "DNA_lamp_types.h"
78 #include "DNA_meta_types.h"
79 #include "DNA_material_types.h"
80 #include "DNA_mesh_types.h"
81 #include "DNA_meshdata_types.h"
82 #include "DNA_modifier_types.h"
83 #include "DNA_nla_types.h"
84 #include "DNA_node_types.h"
85 #include "DNA_object_types.h"
86 #include "DNA_object_force.h"
87 #include "DNA_object_fluidsim.h" // NT
88 #include "DNA_oops_types.h"
89 #include "DNA_object_force.h"
90 #include "DNA_packedFile_types.h"
91 #include "DNA_particle_types.h"
92 #include "DNA_property_types.h"
93 #include "DNA_text_types.h"
94 #include "DNA_view3d_types.h"
95 #include "DNA_screen_types.h"
96 #include "DNA_sensor_types.h"
97 #include "DNA_sdna_types.h"
98 #include "DNA_scene_types.h"
99 #include "DNA_sequence_types.h"
100 #include "DNA_sound_types.h"
101 #include "DNA_space_types.h"
102 #include "DNA_texture_types.h"
103 #include "DNA_userdef_types.h"
104 #include "DNA_vfont_types.h"
105 #include "DNA_world_types.h"
107 #include "MEM_guardedalloc.h"
108 #include "BLI_blenlib.h"
109 #include "BLI_arithb.h"
110 #include "BLI_storage_types.h" // for relname flags
112 #include "BDR_sculptmode.h"
114 #include "BKE_bad_level_calls.h" // for reopen_text build_seqar (from WHILE_SEQ) set_rects_butspace check_imasel_copy
116 #include "BKE_action.h"
117 #include "BKE_armature.h"
118 #include "BKE_cloth.h"
119 #include "BKE_colortools.h"
120 #include "BKE_constraint.h"
121 #include "BKE_curve.h"
122 #include "BKE_customdata.h"
123 #include "BKE_deform.h"
124 #include "BKE_depsgraph.h"
125 #include "BKE_effect.h" /* give_parteff */
126 #include "BKE_global.h" // for G
127 #include "BKE_group.h"
128 #include "BKE_image.h"
129 #include "BKE_key.h" //void set_four_ipo
130 #include "BKE_lattice.h"
131 #include "BKE_library.h" // for wich_libbase
132 #include "BKE_main.h" // for Main
133 #include "BKE_mesh.h" // for ME_ defines (patching)
134 #include "BKE_modifier.h"
135 #include "BKE_node.h" // for tree type defines
136 #include "BKE_object.h"
137 #include "BKE_particle.h"
138 #include "BKE_pointcache.h"
139 #include "BKE_property.h" // for get_property
140 #include "BKE_sca.h" // for init_actuator
141 #include "BKE_scene.h"
142 #include "BKE_softbody.h" // sbNew()
143 #include "BKE_sculpt.h"
144 #include "BKE_texture.h" // for open_plugin_tex
145 #include "BKE_utildefines.h" // SWITCH_INT DATA ENDB DNA1 O_BINARY GLOB USER TEST REND
146 #include "BKE_idprop.h"
148 #include "BIF_butspace.h" // badlevel, for do_versions, patching event codes
149 #include "BIF_filelist.h" // badlevel too, where to move this? - elubie
150 #include "BIF_previewrender.h" // bedlelvel, for struct RenderInfo
151 #include "BLO_readfile.h"
152 #include "BLO_undofile.h"
153 #include "BLO_readblenfile.h" // streaming read pipe, for BLO_readblenfile BLO_readblenfilememory
155 #include "readfile.h"
159 #include "mydevice.h"
165 Remark: still a weak point is the newadress() function, that doesnt solve reading from
166 multiple files at the same time
168 (added remark: oh, i thought that was solved? will look at that... (ton)
171 - Existing Library (Main) push or free
181 - read associated 'direct data'
182 - link direct data (internal and to LibBlock)
184 - read USER data, only when indicated (file is ~/.B.blend)
186 - per Library (per Main)
189 - find LibBlocks and attach IDs to Main
190 - if external LibBlock
192 - or it's already read,
197 - read associated direct data
198 - link direct data (internal and to LibBlock)
200 - per Library with unread LibBlocks
205 - read associated direct data
206 - link direct data (internal and to LibBlock)
209 - link all LibBlocks and indirect pointers to libblocks
210 - initialize FileGlobal and copy pointers to Global
213 /* also occurs in library.c */
214 /* GS reads the memory pointed at in a specific ordering. There are,
215 * however two definitions for it. I have jotted them down here, both,
216 * but I think the first one is actually used. The thing is that
217 * big-endian systems might read this the wrong way round. OTOH, we
218 * constructed the IDs that are read out with this macro explicitly as
219 * well. I expect we'll sort it out soon... */
222 #define GS(a) (*((short *)(a)))
224 /* from misc_util: flip the bytes from x */
225 /* #define GS(x) (((unsigned char *)(x))[0] << 8 | ((unsigned char *)(x))[1]) */
227 // only used here in readfile.c
228 #define SWITCH_LONGINT(a) { \
231 s_i=p_i[0]; p_i[0]=p_i[7]; p_i[7]=s_i; \
232 s_i=p_i[1]; p_i[1]=p_i[6]; p_i[6]=s_i; \
233 s_i=p_i[2]; p_i[2]=p_i[5]; p_i[5]=s_i; \
234 s_i=p_i[3]; p_i[3]=p_i[4]; p_i[4]=s_i; }
238 typedef struct OldNew {
243 typedef struct OldNewMap {
245 int nentries, entriessize;
251 /* local prototypes */
252 static void *read_struct(FileData *fd, BHead *bh, char *blockname);
255 static OldNewMap *oldnewmap_new(void)
257 OldNewMap *onm= MEM_callocN(sizeof(*onm), "OldNewMap");
259 onm->entriessize= 1024;
260 onm->entries= MEM_mallocN(sizeof(*onm->entries)*onm->entriessize, "OldNewMap.entries");
265 static int verg_oldnewmap(const void *v1, const void *v2)
267 const struct OldNew *x1=v1, *x2=v2;
269 if( x1->old > x2->old) return 1;
270 else if( x1->old < x2->old) return -1;
275 static void oldnewmap_sort(FileData *fd)
277 qsort(fd->libmap->entries, fd->libmap->nentries, sizeof(OldNew), verg_oldnewmap);
278 fd->libmap->sorted= 1;
281 /* nr is zero for data, and ID code for libdata */
282 static void oldnewmap_insert(OldNewMap *onm, void *oldaddr, void *newaddr, int nr)
286 if(oldaddr==NULL || newaddr==NULL) return;
288 if (onm->nentries==onm->entriessize) {
289 int osize= onm->entriessize;
290 OldNew *oentries= onm->entries;
292 onm->entriessize*= 2;
293 onm->entries= MEM_mallocN(sizeof(*onm->entries)*onm->entriessize, "OldNewMap.entries");
295 memcpy(onm->entries, oentries, sizeof(*oentries)*osize);
299 entry= &onm->entries[onm->nentries++];
301 entry->newp= newaddr;
305 static void *oldnewmap_lookup_and_inc(OldNewMap *onm, void *addr)
309 if (onm->lasthit<onm->nentries-1) {
310 OldNew *entry= &onm->entries[++onm->lasthit];
312 if (entry->old==addr) {
318 for (i=0; i<onm->nentries; i++) {
319 OldNew *entry= &onm->entries[i];
321 if (entry->old==addr) {
332 /* for libdata, nr has ID code, no increment */
333 static void *oldnewmap_liblookup(OldNewMap *onm, void *addr, void *lib)
337 if(addr==NULL) return NULL;
339 /* lasthit works fine for non-libdata, linking there is done in same sequence as writing */
341 OldNew entry_s, *entry;
345 entry= bsearch(&entry_s, onm->entries, onm->nentries, sizeof(OldNew), verg_oldnewmap);
349 if (id && (!lib || id->lib)) {
355 for (i=0; i<onm->nentries; i++) {
356 OldNew *entry= &onm->entries[i];
358 if (entry->old==addr) {
361 if (id && (!lib || id->lib)) {
370 static void oldnewmap_free_unused(OldNewMap *onm)
374 for (i=0; i<onm->nentries; i++) {
375 OldNew *entry= &onm->entries[i];
377 MEM_freeN(entry->newp);
383 static void oldnewmap_clear(OldNewMap *onm)
389 static void oldnewmap_free(OldNewMap *onm)
391 MEM_freeN(onm->entries);
397 static void read_libraries(FileData *basefd, ListBase *mainlist);
399 /* ************ help functions ***************** */
401 static void add_main_to_main(Main *mainvar, Main *from)
403 ListBase *lbarray[MAX_LIBARRAY], *fromarray[MAX_LIBARRAY];
406 a= set_listbasepointers(mainvar, lbarray);
407 a= set_listbasepointers(from, fromarray);
409 addlisttolist(lbarray[a], fromarray[a]);
413 void blo_join_main(ListBase *mainlist)
415 Main *tojoin, *mainl;
418 mainl= mainlist->first;
419 while ((tojoin= mainl->next)) {
420 add_main_to_main(mainl, tojoin);
421 BLI_remlink(mainlist, tojoin);
426 static void split_libdata(ListBase *lb, Main *first)
438 if(mainvar->curlib==id->lib) {
439 lbn= wich_libbase(mainvar, GS(id->name));
441 BLI_addtail(lbn, id);
444 mainvar= mainvar->next;
446 if(mainvar==0) printf("error split_libdata\n");
452 void blo_split_main(ListBase *mainlist, Main *main)
454 ListBase *lbarray[MAX_LIBARRAY];
458 mainlist->first= mainlist->last= main;
461 if(main->library.first==NULL)
464 for (lib= main->library.first; lib; lib= lib->id.next) {
465 Main *libmain= MEM_callocN(sizeof(Main), "libmain");
466 libmain->curlib= lib;
467 BLI_addtail(mainlist, libmain);
470 i= set_listbasepointers(main, lbarray);
472 split_libdata(lbarray[i], main->next);
475 /* removes things like /blah/blah/../../blah/ etc, then writes in *name the full path */
476 static void cleanup_path(const char *relabase, char *name)
478 char filename[FILE_MAXFILE];
480 BLI_splitdirstring(name, filename);
481 BLI_cleanup_dir(relabase, name);
482 strcat(name, filename);
485 static void read_file_version(FileData *fd, Main *main)
489 for (bhead= blo_firstbhead(fd); bhead; bhead= blo_nextbhead(fd, bhead)) {
490 if (bhead->code==GLOB) {
491 FileGlobal *fg= read_struct(fd, bhead, "Global");
493 main->subversionfile= fg->subversion;
494 main->minversionfile= fg->minversion;
495 main->minsubversionfile= fg->minsubversion;
498 else if (bhead->code==ENDB)
505 static Main *blo_find_main(FileData *fd, ListBase *mainlist, const char *name, const char *relabase)
509 char name1[FILE_MAXDIR+FILE_MAXFILE];
511 strncpy(name1, name, sizeof(name1)-1);
512 cleanup_path(relabase, name1);
513 // printf("blo_find_main: original in %s\n", name);
514 // printf("blo_find_main: converted to %s\n", name1);
516 for (m= mainlist->first; m; m= m->next) {
517 char *libname= (m->curlib)?m->curlib->filename:m->name;
519 if (BLI_streq(name1, libname)) {
520 if(G.f & G_DEBUG) printf("blo_find_main: found library %s\n", libname);
525 m= MEM_callocN(sizeof(Main), "find_main");
526 BLI_addtail(mainlist, m);
528 lib= alloc_libblock(&m->library, ID_LI, "lib");
529 strncpy(lib->name, name, sizeof(lib->name)-1);
530 BLI_strncpy(lib->filename, name1, sizeof(lib->filename));
534 read_file_version(fd, m);
536 if(G.f & G_DEBUG) printf("blo_find_main: added new lib %s\n", name);
541 /* ************ FILE PARSING ****************** */
543 static void switch_endian_bh4(BHead4 *bhead)
545 /* the ID_.. codes */
546 if((bhead->code & 0xFFFF)==0) bhead->code >>=16;
548 if (bhead->code != ENDB) {
549 SWITCH_INT(bhead->len);
550 SWITCH_INT(bhead->SDNAnr);
551 SWITCH_INT(bhead->nr);
555 static void switch_endian_bh8(BHead8 *bhead)
557 /* the ID_.. codes */
558 if((bhead->code & 0xFFFF)==0) bhead->code >>=16;
560 if (bhead->code != ENDB) {
561 SWITCH_INT(bhead->len);
562 SWITCH_INT(bhead->SDNAnr);
563 SWITCH_INT(bhead->nr);
567 static void bh4_from_bh8(BHead *bhead, BHead8 *bhead8, int do_endian_swap)
569 BHead4 *bhead4 = (BHead4 *) bhead;
570 #if defined(WIN32) && !defined(FREE_WINDOWS)
576 bhead4->code= bhead8->code;
577 bhead4->len= bhead8->len;
579 if (bhead4->code != ENDB) {
581 // why is this here ??
582 if (do_endian_swap) {
583 SWITCH_LONGINT(bhead8->old);
586 /* this patch is to avoid a long long being read from not-eight aligned positions
587 is necessary on any modern 64bit architecture) */
588 memcpy(&old, &bhead8->old, 8);
589 bhead4->old = (int) (old >> 3);
591 bhead4->SDNAnr= bhead8->SDNAnr;
592 bhead4->nr= bhead8->nr;
596 static void bh8_from_bh4(BHead *bhead, BHead4 *bhead4)
598 BHead8 *bhead8 = (BHead8 *) bhead;
600 bhead8->code= bhead4->code;
601 bhead8->len= bhead4->len;
603 if (bhead8->code != ENDB) {
604 bhead8->old= bhead4->old;
605 bhead8->SDNAnr= bhead4->SDNAnr;
606 bhead8->nr= bhead4->nr;
610 static BHeadN *get_bhead(FileData *fd)
615 BHeadN *new_bhead = 0;
621 // First read the bhead structure.
622 // Depending on the platform the file was written on this can
623 // be a big or little endian BHead4 or BHead8 structure.
625 // As usual 'ENDB' (the last *partial* bhead of the file)
626 // needs some special handling. We don't want to EOF just yet.
628 if (fd->flags & FD_FLAGS_FILE_POINTSIZE_IS_4) {
630 readsize = fd->read(fd, &bhead4, sizeof(bhead4));
632 if (readsize == sizeof(bhead4) || bhead4.code == ENDB) {
633 if (fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
634 switch_endian_bh4(&bhead4);
637 if (fd->flags & FD_FLAGS_POINTSIZE_DIFFERS) {
638 bh8_from_bh4(&bhead, &bhead4);
640 memcpy(&bhead, &bhead4, sizeof(bhead));
648 readsize = fd->read(fd, &bhead8, sizeof(bhead8));
650 if (readsize == sizeof(bhead8) || bhead8.code == ENDB) {
651 if (fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
652 switch_endian_bh8(&bhead8);
655 if (fd->flags & FD_FLAGS_POINTSIZE_DIFFERS) {
656 bh4_from_bh8(&bhead, &bhead8, (fd->flags & FD_FLAGS_SWITCH_ENDIAN));
658 memcpy(&bhead, &bhead8, sizeof(bhead));
666 /* make sure people are not trying to pass bad blend files */
667 if (bhead.len < 0) fd->eof = 1;
669 // bhead now contains the (converted) bhead structure. Now read
670 // the associated data and put everything in a BHeadN (creative naming !)
673 new_bhead = MEM_mallocN(sizeof(BHeadN) + bhead.len, "new_bhead");
675 new_bhead->next = new_bhead->prev = 0;
676 new_bhead->bhead = bhead;
678 readsize = fd->read(fd, new_bhead + 1, bhead.len);
680 if (readsize != bhead.len) {
682 MEM_freeN(new_bhead);
692 // We've read a new block. Now add it to the list
696 BLI_addtail(&fd->listbase, new_bhead);
702 BHead *blo_firstbhead(FileData *fd)
708 // Read in a new block if necessary
710 new_bhead = fd->listbase.first;
711 if (new_bhead == 0) {
712 new_bhead = get_bhead(fd);
716 bhead = &new_bhead->bhead;
722 BHead *blo_prevbhead(FileData *fd, BHead *thisblock)
724 BHeadN *bheadn= (BHeadN *) (((char *) thisblock) - GET_INT_FROM_POINTER( &((BHeadN*)0)->bhead) );
725 BHeadN *prev= bheadn->prev;
727 return prev?&prev->bhead:NULL;
730 BHead *blo_nextbhead(FileData *fd, BHead *thisblock)
732 BHeadN *new_bhead = NULL;
736 // bhead is actually a sub part of BHeadN
737 // We calculate the BHeadN pointer from the BHead pointer below
738 new_bhead = (BHeadN *) (((char *) thisblock) - GET_INT_FROM_POINTER( &((BHeadN*)0)->bhead) );
740 // get the next BHeadN. If it doesn't exist we read in the next one
741 new_bhead = new_bhead->next;
742 if (new_bhead == 0) {
743 new_bhead = get_bhead(fd);
748 // here we do the reverse:
749 // go from the BHeadN pointer to the BHead pointer
750 bhead = &new_bhead->bhead;
756 static void decode_blender_header(FileData *fd)
758 char header[SIZEOFBLENDERHEADER], num[4];
761 // read in the header data
762 readsize = fd->read(fd, header, sizeof(header));
764 if (readsize == sizeof(header)) {
765 if(strncmp(header, "BLENDER", 7) == 0) {
766 int remove_this_endian_test= 1;
768 fd->flags |= FD_FLAGS_FILE_OK;
770 // what size are pointers in the file ?
772 fd->flags |= FD_FLAGS_FILE_POINTSIZE_IS_4;
773 if (sizeof(void *) != 4) {
774 fd->flags |= FD_FLAGS_POINTSIZE_DIFFERS;
777 if (sizeof(void *) != 8) {
778 fd->flags |= FD_FLAGS_POINTSIZE_DIFFERS;
782 // is the file saved in a different endian
784 if (((((char*)&remove_this_endian_test)[0]==1)?L_ENDIAN:B_ENDIAN) != ((header[8]=='v')?L_ENDIAN:B_ENDIAN)) {
785 fd->flags |= FD_FLAGS_SWITCH_ENDIAN;
788 // get the version number
790 memcpy(num, header+9, 3);
792 fd->fileversion = atoi(num);
797 static int read_file_dna(FileData *fd)
801 for (bhead= blo_firstbhead(fd); bhead; bhead= blo_nextbhead(fd, bhead)) {
802 if (bhead->code==DNA1) {
803 int do_endian_swap= (fd->flags&FD_FLAGS_SWITCH_ENDIAN)?1:0;
805 fd->filesdna= dna_sdna_from_data(&bhead[1], bhead->len, do_endian_swap);
808 fd->compflags= dna_get_structDNA_compareflags(fd->filesdna, fd->memsdna);
809 /* used to retrieve ID names from (bhead+1) */
810 fd->id_name_offs= dna_elem_offset(fd->filesdna, "ID", "char", "name[]");
814 } else if (bhead->code==ENDB)
821 static int fd_read_from_file(FileData *filedata, void *buffer, int size)
823 int readsize = read(filedata->filedes, buffer, size);
828 filedata->seek += readsize;
834 static int fd_read_gzip_from_file(FileData *filedata, void *buffer, int size)
836 int readsize = gzread(filedata->gzfiledes, buffer, size);
841 filedata->seek += readsize;
847 static int fd_read_from_memory(FileData *filedata, void *buffer, int size)
849 // don't read more bytes then there are available in the buffer
850 int readsize = MIN2(size, filedata->buffersize - filedata->seek);
852 memcpy(buffer, filedata->buffer + filedata->seek, readsize);
853 filedata->seek += readsize;
858 static int fd_read_from_memfile(FileData *filedata, void *buffer, int size)
860 static unsigned int seek= 1<<30; /* the current position */
861 static unsigned int offset= 0; /* size of previous chunks */
862 static MemFileChunk *chunk=NULL;
863 unsigned int chunkoffset, readsize, totread;
865 if(size==0) return 0;
867 if(seek != (unsigned int)filedata->seek) {
868 chunk= filedata->memfile->chunks.first;
872 if(seek + chunk->size > (unsigned) filedata->seek) break;
877 seek= filedata->seek;
884 /* first check if it's on the end if current chunk */
885 if(seek-offset == chunk->size) {
886 offset+= chunk->size;
890 /* debug, should never happen */
892 printf("illegal read, chunk zero\n");
896 chunkoffset= seek-offset;
897 readsize= size-totread;
899 /* data can be spread over multiple chunks, so clamp size
900 * to within this chunk, and then it will read further in
902 if(chunkoffset+readsize > chunk->size)
903 readsize= chunk->size-chunkoffset;
905 memcpy((char*)buffer+totread, chunk->buf+chunkoffset, readsize);
907 filedata->seek += readsize;
909 } while(totread < size);
917 static FileData *filedata_new(void)
919 extern unsigned char DNAstr[]; /* DNA.c */
921 FileData *fd = MEM_callocN(sizeof(FileData), "FileData");
924 fd->gzfiledes = NULL;
926 /* XXX, this doesn't need to be done all the time,
927 * but it keeps us reentrant, remove once we have
928 * a lib that provides a nice lock. - zr
930 fd->memsdna = dna_sdna_from_data(DNAstr, DNAlen, 0);
932 fd->datamap = oldnewmap_new();
933 fd->globmap = oldnewmap_new();
934 fd->libmap = oldnewmap_new();
939 static FileData *blo_decode_and_check(FileData *fd, BlendReadError *error_r)
941 decode_blender_header(fd);
943 if (fd->flags & FD_FLAGS_FILE_OK) {
944 if (!read_file_dna(fd)) {
945 *error_r = BRE_INCOMPLETE;
946 blo_freefiledata(fd);
951 *error_r = BRE_NOT_A_BLEND;
952 blo_freefiledata(fd);
959 /* cannot be called with relative paths anymore! */
960 /* on each new library added, it now checks for the current FileData and expands relativeness */
961 FileData *blo_openblenderfile(char *name, BlendReadError *error_r)
965 gzfile= gzopen(name, "rb");
967 if (NULL == gzfile) {
968 *error_r = BRE_UNABLE_TO_OPEN;
971 FileData *fd = filedata_new();
972 fd->gzfiledes = gzfile;
973 fd->read = fd_read_gzip_from_file;
975 /* needed for library_append and read_libraries */
976 BLI_strncpy(fd->filename, name, sizeof(fd->filename));
978 return blo_decode_and_check(fd, error_r);
982 FileData *blo_openblendermemory(void *mem, int memsize, BlendReadError *error_r)
984 if (!mem || memsize<SIZEOFBLENDERHEADER) {
985 *error_r = mem?BRE_UNABLE_TO_READ:BRE_UNABLE_TO_OPEN;
988 FileData *fd= filedata_new();
990 fd->buffersize= memsize;
991 fd->read= fd_read_from_memory;
992 fd->flags|= FD_FLAGS_NOT_MY_BUFFER;
994 return blo_decode_and_check(fd, error_r);
998 FileData *blo_openblendermemfile(MemFile *memfile, BlendReadError *error_r)
1001 *error_r = BRE_UNABLE_TO_OPEN;
1004 FileData *fd= filedata_new();
1005 fd->memfile= memfile;
1007 fd->read= fd_read_from_memfile;
1008 fd->flags|= FD_FLAGS_NOT_MY_BUFFER;
1010 return blo_decode_and_check(fd, error_r);
1015 void blo_freefiledata(FileData *fd)
1019 if (fd->filedes != -1) {
1023 if (fd->gzfiledes != NULL)
1025 gzclose(fd->gzfiledes);
1028 if (fd->buffer && !(fd->flags & FD_FLAGS_NOT_MY_BUFFER)) {
1029 MEM_freeN(fd->buffer);
1033 // Free all BHeadN data blocks
1034 BLI_freelistN(&fd->listbase);
1037 dna_freestructDNA(fd->memsdna);
1039 dna_freestructDNA(fd->filesdna);
1041 MEM_freeN(fd->compflags);
1044 oldnewmap_free(fd->datamap);
1046 oldnewmap_free(fd->globmap);
1048 oldnewmap_free(fd->imamap);
1049 if (fd->libmap && !(fd->flags & FD_FLAGS_NOT_MY_LIBMAP))
1050 oldnewmap_free(fd->libmap);
1052 MEM_freeN(fd->bheadmap);
1058 /* ************ DIV ****************** */
1060 int BLO_has_bfile_extension(char *str)
1062 return (BLI_testextensie(str, ".ble") || BLI_testextensie(str, ".blend")||BLI_testextensie(str, ".blend.gz"));
1065 /* ************** OLD POINTERS ******************* */
1067 static void *newdataadr(FileData *fd, void *adr) /* only direct databocks */
1069 return oldnewmap_lookup_and_inc(fd->datamap, adr);
1072 static void *newglobadr(FileData *fd, void *adr) /* direct datablocks with global linking */
1074 return oldnewmap_lookup_and_inc(fd->globmap, adr);
1077 static void *newimaadr(FileData *fd, void *adr) /* used to restore image data after undo */
1079 if(fd->imamap && adr)
1080 return oldnewmap_lookup_and_inc(fd->imamap, adr);
1085 static void *newlibadr(FileData *fd, void *lib, void *adr) /* only lib data */
1087 return oldnewmap_liblookup(fd->libmap, adr, lib);
1090 static void *newlibadr_us(FileData *fd, void *lib, void *adr) /* increases user number */
1092 ID *id= newlibadr(fd, lib, adr);
1100 static void change_idid_adr_fd(FileData *fd, void *old, void *new)
1104 for (i=0; i<fd->libmap->nentries; i++) {
1105 OldNew *entry= &fd->libmap->entries[i];
1107 if (old==entry->newp && entry->nr==ID_ID) {
1109 if(new) entry->nr= GS( ((ID *)new)->name );
1115 static void change_idid_adr(ListBase *mainlist, FileData *basefd, void *old, void *new)
1119 for(mainptr= mainlist->first; mainptr; mainptr= mainptr->next) {
1122 if(mainptr->curlib) fd= mainptr->curlib->filedata;
1126 change_idid_adr_fd(fd, old, new);
1131 /* assumed; G.main still exists */
1132 void blo_make_image_pointer_map(FileData *fd)
1134 Image *ima= G.main->image.first;
1135 Scene *sce= G.main->scene.first;
1137 fd->imamap= oldnewmap_new();
1139 for(;ima; ima= ima->id.next) {
1140 Link *ibuf= ima->ibufs.first;
1141 for(; ibuf; ibuf= ibuf->next)
1142 oldnewmap_insert(fd->imamap, ibuf, ibuf, 0);
1144 oldnewmap_insert(fd->imamap, ima->gputexture, ima->gputexture, 0);
1146 for(; sce; sce= sce->id.next) {
1149 for(node= sce->nodetree->nodes.first; node; node= node->next)
1150 oldnewmap_insert(fd->imamap, node->preview, node->preview, 0);
1155 /* set G.main image ibufs to zero if it has been restored */
1156 /* this works because freeing G.main only happens after this call */
1157 void blo_end_image_pointer_map(FileData *fd)
1159 OldNew *entry= fd->imamap->entries;
1160 Image *ima= G.main->image.first;
1161 Scene *sce= G.main->scene.first;
1164 /* used entries were restored, so we put them to zero */
1165 for (i=0; i<fd->imamap->nentries; i++, entry++) {
1170 for(;ima; ima= ima->id.next) {
1173 /* this mirrors direct_link_image */
1174 for(ibuf= ima->ibufs.first; ibuf; ibuf= next) {
1176 if(NULL==newimaadr(fd, ibuf)) { /* so was restored */
1177 BLI_remlink(&ima->ibufs, ibuf);
1179 ima->gputexture= NULL;
1183 ima->gputexture= newimaadr(fd, ima->gputexture);
1185 for(; sce; sce= sce->id.next) {
1188 for(node= sce->nodetree->nodes.first; node; node= node->next)
1189 node->preview= newimaadr(fd, node->preview);
1194 /* undo file support: add all library pointers in lookup */
1195 void blo_add_library_pointer_map(ListBase *mainlist, FileData *fd)
1197 Main *ptr= mainlist->first;
1198 ListBase *lbarray[MAX_LIBARRAY];
1200 for(ptr= ptr->next; ptr; ptr= ptr->next) {
1201 int i= set_listbasepointers(ptr, lbarray);
1204 for(id= lbarray[i]->first; id; id= id->next)
1205 oldnewmap_insert(fd->libmap, id, id, GS(id->name));
1211 /* ********** END OLD POINTERS ****************** */
1212 /* ********** READ FILE ****************** */
1214 static void switch_endian_structs(struct SDNA *filesdna, BHead *bhead)
1216 int blocksize, nblocks;
1219 data= (char *)(bhead+1);
1220 blocksize= filesdna->typelens[ filesdna->structs[bhead->SDNAnr][0] ];
1224 dna_switch_endian_struct(filesdna, bhead->SDNAnr, data);
1230 static void *read_struct(FileData *fd, BHead *bh, char *blockname)
1235 /* switch is based on file dna */
1236 if (bh->SDNAnr && (fd->flags & FD_FLAGS_SWITCH_ENDIAN))
1237 switch_endian_structs(fd->filesdna, bh);
1239 if (fd->compflags[bh->SDNAnr]) { /* flag==0: doesn't exist anymore */
1240 if(fd->compflags[bh->SDNAnr]==2) {
1241 temp= dna_reconstruct(fd->memsdna, fd->filesdna, fd->compflags, bh->SDNAnr, bh->nr, (bh+1));
1243 temp= MEM_mallocN(bh->len, blockname);
1244 memcpy(temp, (bh+1), bh->len);
1252 static void link_list(FileData *fd, ListBase *lb) /* only direct data */
1256 if(lb->first==NULL) return;
1258 lb->first= newdataadr(fd, lb->first);
1262 ln->next= newdataadr(fd, ln->next);
1270 static void link_glob_list(FileData *fd, ListBase *lb) /* for glob data */
1275 if(lb->first==0) return;
1276 poin= newdataadr(fd, lb->first);
1278 oldnewmap_insert(fd->globmap, lb->first, poin, 0);
1285 poin= newdataadr(fd, ln->next);
1287 oldnewmap_insert(fd->globmap, ln->next, poin, 0);
1297 static void test_pointer_array(FileData *fd, void **mat)
1299 #if defined(WIN32) && !defined(FREE_WINDOWS)
1300 __int64 *lpoin, *lmat;
1302 long long *lpoin, *lmat;
1304 int len, *ipoin, *imat;
1306 /* manually convert the pointer array in
1307 * the old dna format to a pointer array in
1308 * the new dna format.
1311 len= MEM_allocN_len(*mat)/fd->filesdna->pointerlen;
1313 if(fd->filesdna->pointerlen==8 && fd->memsdna->pointerlen==4) {
1314 ipoin=imat= MEM_mallocN( len*4, "newmatar");
1318 if((fd->flags & FD_FLAGS_SWITCH_ENDIAN))
1319 SWITCH_LONGINT(*lpoin);
1320 *ipoin= (int) ((*lpoin) >> 3);
1328 if(fd->filesdna->pointerlen==4 && fd->memsdna->pointerlen==8) {
1329 lpoin=lmat= MEM_mallocN( len*8, "newmatar");
1343 /* ************ READ ID Properties *************** */
1345 void IDP_DirectLinkProperty(IDProperty *prop, int switch_endian, void *fd);
1346 void IDP_LibLinkProperty(IDProperty *prop, int switch_endian, void *fd);
1348 void IDP_DirectLinkArray(IDProperty *prop, int switch_endian, void *fd)
1352 /*since we didn't save the extra buffer, set totallen to len.*/
1353 prop->totallen = prop->len;
1354 prop->data.pointer = newdataadr(fd, prop->data.pointer);
1356 if (switch_endian) {
1357 if (prop->subtype != IDP_DOUBLE) {
1358 for (i=0; i<prop->len; i++) {
1359 SWITCH_INT(((int*)prop->data.pointer)[i]);
1362 for (i=0; i<prop->len; i++) {
1363 SWITCH_LONGINT(((double*)prop->data.pointer)[i]);
1369 void IDP_DirectLinkString(IDProperty *prop, int switch_endian, void *fd)
1371 /*since we didn't save the extra string buffer, set totallen to len.*/
1372 prop->totallen = prop->len;
1373 prop->data.pointer = newdataadr(fd, prop->data.pointer);
1376 void IDP_DirectLinkGroup(IDProperty *prop, int switch_endian, void *fd)
1378 ListBase *lb = &prop->data.group;
1383 /*Link child id properties now*/
1384 for (loop=prop->data.group.first; loop; loop=loop->next) {
1385 IDP_DirectLinkProperty(loop, switch_endian, fd);
1389 void IDP_DirectLinkProperty(IDProperty *prop, int switch_endian, void *fd)
1391 switch (prop->type) {
1393 IDP_DirectLinkGroup(prop, switch_endian, fd);
1396 IDP_DirectLinkString(prop, switch_endian, fd);
1399 IDP_DirectLinkArray(prop, switch_endian, fd);
1402 /*erg, stupid doubles. since I'm storing them
1403 in the same field as int val; val2 in the
1404 IDPropertyData struct, they have to deal with
1405 endianness specifically
1407 in theory, val and val2 would've already been swapped
1408 if switch_endian is true, so we have to first unswap
1409 them then reswap them as a single 64-bit entity.
1412 if (switch_endian) {
1413 SWITCH_INT(prop->data.val);
1414 SWITCH_INT(prop->data.val2);
1415 SWITCH_LONGINT(prop->data.val);
1423 void IDP_LibLinkProperty(IDProperty *prop, int switch_endian, void *fd)
1427 /* ************ READ Brush *************** */
1428 /* library brush linking after fileread */
1429 static void lib_link_brush(FileData *fd, Main *main)
1435 /* only link ID pointers */
1436 for(brush= main->brush.first; brush; brush= brush->id.next) {
1437 if(brush->id.flag & LIB_NEEDLINK) {
1438 brush->id.flag -= LIB_NEEDLINK;
1440 for(a=0; a<MAX_MTEX; a++) {
1441 mtex= brush->mtex[a];
1443 mtex->tex= newlibadr_us(fd, brush->id.lib, mtex->tex);
1449 static void direct_link_brush(FileData *fd, Brush *brush)
1451 /* brush itself has been read */
1454 for(a=0; a<MAX_MTEX; a++)
1455 brush->mtex[a]= newdataadr(fd, brush->mtex[a]);
1458 static void direct_link_script(FileData *fd, Script *script)
1461 SCRIPT_SET_NULL(script)
1464 /* ************ READ CurveMapping *************** */
1466 /* cuma itself has been read! */
1467 static void direct_link_curvemapping(FileData *fd, CurveMapping *cumap)
1471 /* flag seems to be able to hang? Maybe old files... not bad to clear anyway */
1472 cumap->flag &= ~CUMA_PREMULLED;
1474 for(a=0; a<CM_TOT; a++) {
1475 cumap->cm[a].curve= newdataadr(fd, cumap->cm[a].curve);
1476 cumap->cm[a].table= NULL;
1480 /* ************ READ NODE TREE *************** */
1482 /* singe node tree (also used for material/scene trees), ntree is not NULL */
1483 static void lib_link_ntree(FileData *fd, ID *id, bNodeTree *ntree)
1487 for(node= ntree->nodes.first; node; node= node->next)
1488 node->id= newlibadr_us(fd, id->lib, node->id);
1491 /* library ntree linking after fileread */
1492 static void lib_link_nodetree(FileData *fd, Main *main)
1496 /* only link ID pointers */
1497 for(ntree= main->nodetree.first; ntree; ntree= ntree->id.next) {
1498 if(ntree->id.flag & LIB_NEEDLINK) {
1499 ntree->id.flag -= LIB_NEEDLINK;
1500 lib_link_ntree(fd, &ntree->id, ntree);
1505 /* verify types for nodes and groups, all data has to be read */
1506 /* open = 0: appending/linking, open = 1: open new file (need to clean out dynamic
1508 static void lib_verify_nodetree(Main *main, int open)
1514 /* this crashes blender on undo/redo
1516 reinit_nodesystem();
1519 /* now create the own typeinfo structs an verify nodes */
1520 /* here we still assume no groups in groups */
1521 for(ntree= main->nodetree.first; ntree; ntree= ntree->id.next) {
1522 ntreeVerifyTypes(ntree); /* internal nodes, no groups! */
1523 ntreeMakeOwnType(ntree); /* for group usage */
1526 /* now verify all types in material trees, groups are set OK now */
1527 for(ma= main->mat.first; ma; ma= ma->id.next) {
1529 ntreeVerifyTypes(ma->nodetree);
1531 /* and scene trees */
1532 for(sce= main->scene.first; sce; sce= sce->id.next) {
1534 ntreeVerifyTypes(sce->nodetree);
1540 /* ntree itself has been read! */
1541 static void direct_link_nodetree(FileData *fd, bNodeTree *ntree)
1543 /* note: writing and reading goes in sync, for speed */
1548 ntree->init= 0; /* to set callbacks and force setting types */
1549 ntree->owntype= NULL;
1550 ntree->timecursor= NULL;
1552 link_list(fd, &ntree->nodes);
1553 for(node= ntree->nodes.first; node; node= node->next) {
1554 if(node->type == NODE_DYNAMIC) {
1556 node->custom1= BSET(node->custom1, NODE_DYNAMIC_LOADED);
1557 node->typeinfo= NULL;
1560 node->storage= newdataadr(fd, node->storage);
1563 /* could be handlerized at some point */
1564 if(ntree->type==NTREE_SHADER && (node->type==SH_NODE_CURVE_VEC || node->type==SH_NODE_CURVE_RGB))
1565 direct_link_curvemapping(fd, node->storage);
1566 else if(ntree->type==NTREE_COMPOSIT) {
1567 if( ELEM3(node->type, CMP_NODE_TIME, CMP_NODE_CURVE_VEC, CMP_NODE_CURVE_RGB))
1568 direct_link_curvemapping(fd, node->storage);
1569 else if(ELEM3(node->type, CMP_NODE_IMAGE, CMP_NODE_VIEWER, CMP_NODE_SPLITVIEWER))
1570 ((ImageUser *)node->storage)->ok= 1;
1573 link_list(fd, &node->inputs);
1574 link_list(fd, &node->outputs);
1576 link_list(fd, &ntree->links);
1578 /* and we connect the rest */
1579 for(node= ntree->nodes.first; node; node= node->next) {
1580 node->preview= newimaadr(fd, node->preview);
1582 for(sock= node->inputs.first; sock; sock= sock->next)
1583 sock->link= newdataadr(fd, sock->link);
1584 for(sock= node->outputs.first; sock; sock= sock->next)
1585 sock->ns.data= NULL;
1587 for(link= ntree->links.first; link; link= link->next) {
1588 link->fromnode= newdataadr(fd, link->fromnode);
1589 link->tonode= newdataadr(fd, link->tonode);
1590 link->fromsock= newdataadr(fd, link->fromsock);
1591 link->tosock= newdataadr(fd, link->tosock);
1594 /* set selin and selout */
1595 for(node= ntree->nodes.first; node; node= node->next) {
1596 for(sock= node->inputs.first; sock; sock= sock->next) {
1597 if(sock->flag & SOCK_SEL) {
1602 for(sock= node->outputs.first; sock; sock= sock->next) {
1603 if(sock->flag & SOCK_SEL) {
1604 ntree->selout= sock;
1610 /* type verification is in lib-link */
1613 /* ************ READ PACKEDFILE *************** */
1615 static PackedFile *direct_link_packedfile(FileData *fd, PackedFile *oldpf)
1617 PackedFile *pf= newdataadr(fd, oldpf);
1620 pf->data= newdataadr(fd, pf->data);
1626 /* ************ READ IMAGE PREVIEW *************** */
1628 static PreviewImage *direct_link_preview_image(FileData *fd, PreviewImage *old_prv)
1630 PreviewImage *prv= newdataadr(fd, old_prv);
1634 for (i=0; i < PREVIEW_MIPMAPS; ++i) {
1636 prv->rect[i] = newdataadr(fd, prv->rect[i]);
1644 /* ************ READ SCRIPTLINK *************** */
1646 static void lib_link_scriptlink(FileData *fd, ID *id, ScriptLink *slink)
1650 for(i=0; i<slink->totscript; i++) {
1651 slink->scripts[i]= newlibadr(fd, id->lib, slink->scripts[i]);
1655 static void direct_link_scriptlink(FileData *fd, ScriptLink *slink)
1657 slink->scripts= newdataadr(fd, slink->scripts);
1658 test_pointer_array(fd, (void **)&slink->scripts);
1660 slink->flag= newdataadr(fd, slink->flag);
1662 if(fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
1665 for(a=0; a<slink->totscript; a++) {
1666 SWITCH_SHORT(slink->flag[a]);
1671 /* ************ READ ARMATURE ***************** */
1673 static void lib_link_nlastrips(FileData *fd, ID *id, ListBase *striplist)
1675 bActionStrip *strip;
1676 bActionModifier *amod;
1678 for (strip=striplist->first; strip; strip=strip->next){
1679 strip->object = newlibadr(fd, id->lib, strip->object);
1680 strip->act = newlibadr_us(fd, id->lib, strip->act);
1681 strip->ipo = newlibadr(fd, id->lib, strip->ipo);
1682 for(amod= strip->modifiers.first; amod; amod= amod->next)
1683 amod->ob= newlibadr(fd, id->lib, amod->ob);
1687 static void lib_link_constraint_channels(FileData *fd, ID *id, ListBase *chanbase)
1689 bConstraintChannel *chan;
1691 for (chan=chanbase->first; chan; chan=chan->next){
1692 chan->ipo = newlibadr_us(fd, id->lib, chan->ipo);
1696 static void lib_link_constraints(FileData *fd, ID *id, ListBase *conlist)
1700 for (con = conlist->first; con; con=con->next) {
1701 /* patch for error introduced by changing constraints (dunno how) */
1702 /* if con->data type changes, dna cannot resolve the pointer! (ton) */
1703 if(con->data==NULL) {
1704 con->type= CONSTRAINT_TYPE_NULL;
1706 /* own ipo, all constraints have it */
1707 con->ipo= newlibadr_us(fd, id->lib, con->ipo);
1709 switch (con->type) {
1710 case CONSTRAINT_TYPE_PYTHON:
1712 bPythonConstraint *data= (bPythonConstraint*)con->data;
1713 bConstraintTarget *ct;
1715 for (ct= data->targets.first; ct; ct= ct->next)
1716 ct->tar = newlibadr(fd, id->lib, ct->tar);
1718 data->text = newlibadr(fd, id->lib, data->text);
1719 //IDP_LibLinkProperty(data->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
1722 case CONSTRAINT_TYPE_ACTION:
1724 bActionConstraint *data;
1725 data= ((bActionConstraint*)con->data);
1726 data->tar = newlibadr(fd, id->lib, data->tar);
1727 data->act = newlibadr(fd, id->lib, data->act);
1730 case CONSTRAINT_TYPE_LOCLIKE:
1732 bLocateLikeConstraint *data;
1733 data= ((bLocateLikeConstraint*)con->data);
1734 data->tar = newlibadr(fd, id->lib, data->tar);
1737 case CONSTRAINT_TYPE_ROTLIKE:
1739 bRotateLikeConstraint *data;
1740 data= ((bRotateLikeConstraint*)con->data);
1741 data->tar = newlibadr(fd, id->lib, data->tar);
1744 case CONSTRAINT_TYPE_SIZELIKE:
1746 bSizeLikeConstraint *data;
1747 data= ((bSizeLikeConstraint*)con->data);
1748 data->tar = newlibadr(fd, id->lib, data->tar);
1751 case CONSTRAINT_TYPE_KINEMATIC:
1753 bKinematicConstraint *data;
1754 data = ((bKinematicConstraint*)con->data);
1755 data->tar = newlibadr(fd, id->lib, data->tar);
1756 data->poletar = newlibadr(fd, id->lib, data->poletar);
1759 case CONSTRAINT_TYPE_TRACKTO:
1761 bTrackToConstraint *data;
1762 data = ((bTrackToConstraint*)con->data);
1763 data->tar = newlibadr(fd, id->lib, data->tar);
1766 case CONSTRAINT_TYPE_MINMAX:
1768 bMinMaxConstraint *data;
1769 data = ((bMinMaxConstraint*)con->data);
1770 data->tar = newlibadr(fd, id->lib, data->tar);
1773 case CONSTRAINT_TYPE_LOCKTRACK:
1775 bLockTrackConstraint *data;
1776 data= ((bLockTrackConstraint*)con->data);
1777 data->tar = newlibadr(fd, id->lib, data->tar);
1780 case CONSTRAINT_TYPE_FOLLOWPATH:
1782 bFollowPathConstraint *data;
1783 data= ((bFollowPathConstraint*)con->data);
1784 data->tar = newlibadr(fd, id->lib, data->tar);
1787 case CONSTRAINT_TYPE_STRETCHTO:
1789 bStretchToConstraint *data;
1790 data= ((bStretchToConstraint*)con->data);
1791 data->tar = newlibadr(fd, id->lib, data->tar);
1794 case CONSTRAINT_TYPE_RIGIDBODYJOINT:
1796 bRigidBodyJointConstraint *data;
1797 data= ((bRigidBodyJointConstraint*)con->data);
1798 data->tar = newlibadr(fd, id->lib, data->tar);
1801 case CONSTRAINT_TYPE_CLAMPTO:
1803 bClampToConstraint *data;
1804 data= ((bClampToConstraint*)con->data);
1805 data->tar = newlibadr(fd, id->lib, data->tar);
1808 case CONSTRAINT_TYPE_CHILDOF:
1810 bChildOfConstraint *data;
1811 data= ((bChildOfConstraint*)con->data);
1812 data->tar = newlibadr(fd, id->lib, data->tar);
1815 case CONSTRAINT_TYPE_TRANSFORM:
1817 bTransformConstraint *data;
1818 data= ((bTransformConstraint*)con->data);
1819 data->tar = newlibadr(fd, id->lib, data->tar);
1822 case CONSTRAINT_TYPE_DISTLIMIT:
1824 bDistLimitConstraint *data;
1825 data= ((bDistLimitConstraint*)con->data);
1826 data->tar = newlibadr(fd, id->lib, data->tar);
1829 case CONSTRAINT_TYPE_NULL:
1835 static void direct_link_constraints(FileData *fd, ListBase *lb)
1840 for (cons=lb->first; cons; cons=cons->next) {
1841 cons->data = newdataadr(fd, cons->data);
1843 if (cons->type == CONSTRAINT_TYPE_PYTHON) {
1844 bPythonConstraint *data= cons->data;
1845 link_list(fd, &data->targets);
1846 data->prop = newdataadr(fd, data->prop);
1847 IDP_DirectLinkProperty(data->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
1852 static void lib_link_pose(FileData *fd, Object *ob, bPose *pose)
1854 bPoseChannel *pchan;
1855 bArmature *arm= ob->data;
1861 /* always rebuild to match proxy or lib changes */
1862 rebuild= ob->proxy || (ob->id.lib==NULL && arm->id.lib);
1864 for (pchan = pose->chanbase.first; pchan; pchan=pchan->next) {
1865 lib_link_constraints(fd, (ID *)ob, &pchan->constraints);
1867 /* hurms... loop in a loop, but yah... later... (ton) */
1868 pchan->bone= get_named_bone(arm, pchan->name);
1870 pchan->custom= newlibadr(fd, arm->id.lib, pchan->custom);
1871 if(pchan->bone==NULL)
1873 else if(ob->id.lib==NULL && arm->id.lib) {
1874 /* local pose selection copied to armature, bit hackish */
1875 pchan->bone->flag &= ~(BONE_SELECTED|BONE_ACTIVE);
1876 pchan->bone->flag |= pchan->selectflag;
1881 ob->recalc= OB_RECALC;
1882 pose->flag |= POSE_RECALC;
1886 static void lib_link_armature(FileData *fd, Main *main)
1890 arm= main->armature.first;
1893 if(arm->id.flag & LIB_NEEDLINK) {
1894 arm->id.flag -= LIB_NEEDLINK;
1900 static void lib_link_action(FileData *fd, Main *main)
1903 bActionChannel *chan;
1905 act= main->action.first;
1907 if(act->id.flag & LIB_NEEDLINK) {
1908 act->id.flag -= LIB_NEEDLINK;
1910 for (chan=act->chanbase.first; chan; chan=chan->next) {
1911 chan->ipo= newlibadr_us(fd, act->id.lib, chan->ipo);
1912 lib_link_constraint_channels(fd, &act->id, &chan->constraintChannels);
1920 static void direct_link_bones(FileData *fd, Bone* bone)
1924 bone->parent= newdataadr(fd, bone->parent);
1926 link_list(fd, &bone->childbase);
1928 for (child=bone->childbase.first; child; child=child->next) {
1929 direct_link_bones(fd, child);
1934 static void direct_link_action(FileData *fd, bAction *act)
1936 bActionChannel *achan;
1939 link_list(fd, &act->chanbase);
1940 link_list(fd, &act->groups);
1941 link_list(fd, &act->markers);
1943 for (achan = act->chanbase.first; achan; achan=achan->next) {
1944 achan->grp= newdataadr(fd, achan->grp);
1946 link_list(fd, &achan->constraintChannels);
1949 for (agrp = act->groups.first; agrp; agrp= agrp->next) {
1950 if (agrp->channels.first) {
1951 agrp->channels.first= newdataadr(fd, agrp->channels.first);
1952 agrp->channels.last= newdataadr(fd, agrp->channels.last);
1957 static void direct_link_armature(FileData *fd, bArmature *arm)
1961 link_list(fd, &arm->bonebase);
1963 bone=arm->bonebase.first;
1965 direct_link_bones(fd, bone);
1970 /* ************ READ CAMERA ***************** */
1972 static void lib_link_camera(FileData *fd, Main *main)
1976 ca= main->camera.first;
1978 if(ca->id.flag & LIB_NEEDLINK) {
1980 ca->ipo= newlibadr_us(fd, ca->id.lib, ca->ipo);
1982 ca->dof_ob= newlibadr_us(fd, ca->id.lib, ca->dof_ob);
1984 lib_link_scriptlink(fd, &ca->id, &ca->scriptlink);
1986 ca->id.flag -= LIB_NEEDLINK;
1992 static void direct_link_camera(FileData *fd, Camera *ca)
1994 direct_link_scriptlink(fd, &ca->scriptlink);
1998 /* ************ READ LAMP ***************** */
2000 static void lib_link_lamp(FileData *fd, Main *main)
2006 la= main->lamp.first;
2008 if(la->id.flag & LIB_NEEDLINK) {
2010 for(a=0; a<MAX_MTEX; a++) {
2013 mtex->tex= newlibadr_us(fd, la->id.lib, mtex->tex);
2014 mtex->object= newlibadr(fd, la->id.lib, mtex->object);
2018 la->ipo= newlibadr_us(fd, la->id.lib, la->ipo);
2020 lib_link_scriptlink(fd, &la->id, &la->scriptlink);
2022 la->id.flag -= LIB_NEEDLINK;
2028 static void direct_link_lamp(FileData *fd, Lamp *la)
2032 direct_link_scriptlink(fd, &la->scriptlink);
2034 for(a=0; a<MAX_MTEX; a++) {
2035 la->mtex[a]= newdataadr(fd, la->mtex[a]);
2038 la->curfalloff= newdataadr(fd, la->curfalloff);
2040 direct_link_curvemapping(fd, la->curfalloff);
2042 la->preview = direct_link_preview_image(fd, la->preview);
2045 /* ************ READ keys ***************** */
2047 static void lib_link_key(FileData *fd, Main *main)
2051 key= main->key.first;
2053 if(key->id.flag & LIB_NEEDLINK) {
2055 key->ipo= newlibadr_us(fd, key->id.lib, key->ipo);
2056 key->from= newlibadr(fd, key->id.lib, key->from);
2058 key->id.flag -= LIB_NEEDLINK;
2064 static void switch_endian_keyblock(Key *key, KeyBlock *kb)
2067 char *data, *poin, *cp;
2069 elemsize= key->elemsize;
2072 for(a=0; a<kb->totelem; a++) {
2077 while( cp[0] ) { /* cp[0]==amount */
2079 switch(cp[1]) { /* cp[1]= type */
2085 SWITCH_INT((*poin));
2098 static void direct_link_key(FileData *fd, Key *key)
2102 link_list(fd, &(key->block));
2104 key->refkey= newdataadr(fd, key->refkey);
2106 kb= key->block.first;
2109 kb->data= newdataadr(fd, kb->data);
2111 if(fd->flags & FD_FLAGS_SWITCH_ENDIAN)
2112 switch_endian_keyblock(key, kb);
2118 /* ************ READ mball ***************** */
2120 static void lib_link_mball(FileData *fd, Main *main)
2125 mb= main->mball.first;
2127 if(mb->id.flag & LIB_NEEDLINK) {
2129 for(a=0; a<mb->totcol; a++) mb->mat[a]= newlibadr_us(fd, mb->id.lib, mb->mat[a]);
2131 mb->ipo= newlibadr_us(fd, mb->id.lib, mb->ipo);
2133 mb->id.flag -= LIB_NEEDLINK;
2139 static void direct_link_mball(FileData *fd, MetaBall *mb)
2141 mb->mat= newdataadr(fd, mb->mat);
2142 test_pointer_array(fd, (void **)&mb->mat);
2144 link_list(fd, &(mb->elems));
2146 mb->disp.first= mb->disp.last= 0;
2151 /* ************ READ WORLD ***************** */
2153 static void lib_link_world(FileData *fd, Main *main)
2159 wrld= main->world.first;
2161 if(wrld->id.flag & LIB_NEEDLINK) {
2163 wrld->ipo= newlibadr_us(fd, wrld->id.lib, wrld->ipo);
2165 for(a=0; a<MAX_MTEX; a++) {
2166 mtex= wrld->mtex[a];
2168 mtex->tex= newlibadr_us(fd, wrld->id.lib, mtex->tex);
2169 mtex->object= newlibadr(fd, wrld->id.lib, mtex->object);
2173 lib_link_scriptlink(fd, &wrld->id, &wrld->scriptlink);
2175 wrld->id.flag -= LIB_NEEDLINK;
2177 wrld= wrld->id.next;
2181 static void direct_link_world(FileData *fd, World *wrld)
2185 direct_link_scriptlink(fd, &wrld->scriptlink);
2187 for(a=0; a<MAX_MTEX; a++) {
2188 wrld->mtex[a]= newdataadr(fd, wrld->mtex[a]);
2190 wrld->preview = direct_link_preview_image(fd, wrld->preview);
2194 /* ************ READ IPO ***************** */
2196 static void lib_link_ipo(FileData *fd, Main *main)
2200 ipo= main->ipo.first;
2202 if(ipo->id.flag & LIB_NEEDLINK) {
2204 for(icu= ipo->curve.first; icu; icu= icu->next) {
2206 icu->driver->ob= newlibadr(fd, ipo->id.lib, icu->driver->ob);
2208 ipo->id.flag -= LIB_NEEDLINK;
2214 static void direct_link_ipo(FileData *fd, Ipo *ipo)
2218 link_list(fd, &(ipo->curve));
2219 icu= ipo->curve.first;
2221 icu->bezt= newdataadr(fd, icu->bezt);
2222 icu->bp= newdataadr(fd, icu->bp);
2223 icu->driver= newdataadr(fd, icu->driver);
2228 /* ************ READ VFONT ***************** */
2230 static void lib_link_vfont(FileData *fd, Main *main)
2234 vf= main->vfont.first;
2236 if(vf->id.flag & LIB_NEEDLINK) {
2237 vf->id.flag -= LIB_NEEDLINK;
2243 static void direct_link_vfont(FileData *fd, VFont *vf)
2246 vf->packedfile= direct_link_packedfile(fd, vf->packedfile);
2249 /* ************ READ TEXT ****************** */
2251 static void lib_link_text(FileData *fd, Main *main)
2255 text= main->text.first;
2257 if(text->id.flag & LIB_NEEDLINK) {
2258 text->id.flag -= LIB_NEEDLINK;
2260 text= text->id.next;
2264 static void direct_link_text(FileData *fd, Text *text)
2268 text->name= newdataadr(fd, text->name);
2271 text->undo_len= TXT_INIT_UNDO;
2272 text->undo_buf= MEM_mallocN(text->undo_len, "undo buf");
2274 text->compiled= NULL;
2277 if(text->flags & TXT_ISEXT) {
2282 link_list(fd, &text->lines);
2283 link_list(fd, &text->markers);
2285 text->curl= newdataadr(fd, text->curl);
2286 text->sell= newdataadr(fd, text->sell);
2288 ln= text->lines.first;
2290 ln->line= newdataadr(fd, ln->line);
2293 if (ln->len != (int) strlen(ln->line)) {
2294 printf("Error loading text, line lengths differ\n");
2295 ln->len = strlen(ln->line);
2301 text->flags = (text->flags|TXT_ISTMP) & ~TXT_ISEXT;
2306 /* ************ READ IMAGE ***************** */
2308 static void lib_link_image(FileData *fd, Main *main)
2312 ima= main->image.first;
2314 if(ima->id.flag & LIB_NEEDLINK) {
2315 if (ima->id.properties) IDP_LibLinkProperty(ima->id.properties, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
2317 ima->id.flag -= LIB_NEEDLINK;
2323 static void link_ibuf_list(FileData *fd, ListBase *lb)
2327 if(lb->first==NULL) return;
2329 lb->first= newimaadr(fd, lb->first);
2333 ln->next= newimaadr(fd, ln->next);
2341 static void direct_link_image(FileData *fd, Image *ima)
2343 /* for undo system, pointers could be restored */
2345 link_ibuf_list(fd, &ima->ibufs);
2347 ima->ibufs.first= ima->ibufs.last= NULL;
2349 /* if not restored, we keep the binded opengl index */
2350 if(ima->ibufs.first==NULL) {
2352 ima->gputexture= NULL;
2359 ima->packedfile = direct_link_packedfile(fd, ima->packedfile);
2360 ima->preview = direct_link_preview_image(fd, ima->preview);
2365 /* ************ READ CURVE ***************** */
2367 static void lib_link_curve(FileData *fd, Main *main)
2372 cu= main->curve.first;
2374 if(cu->id.flag & LIB_NEEDLINK) {
2376 for(a=0; a<cu->totcol; a++) cu->mat[a]= newlibadr_us(fd, cu->id.lib, cu->mat[a]);
2378 cu->bevobj= newlibadr(fd, cu->id.lib, cu->bevobj);
2379 cu->taperobj= newlibadr(fd, cu->id.lib, cu->taperobj);
2380 cu->textoncurve= newlibadr(fd, cu->id.lib, cu->textoncurve);
2381 cu->vfont= newlibadr_us(fd, cu->id.lib, cu->vfont);
2382 cu->vfontb= newlibadr_us(fd, cu->id.lib, cu->vfontb);
2383 cu->vfonti= newlibadr_us(fd, cu->id.lib, cu->vfonti);
2384 cu->vfontbi= newlibadr_us(fd, cu->id.lib, cu->vfontbi);
2386 cu->ipo= newlibadr_us(fd, cu->id.lib, cu->ipo);
2387 cu->key= newlibadr_us(fd, cu->id.lib, cu->key);
2389 cu->id.flag -= LIB_NEEDLINK;
2396 static void switch_endian_knots(Nurb *nu)
2403 SWITCH_INT(nu->knotsu[len]);
2409 SWITCH_INT(nu->knotsv[len]);
2414 static void direct_link_curve(FileData *fd, Curve *cu)
2419 cu->mat= newdataadr(fd, cu->mat);
2420 test_pointer_array(fd, (void **)&cu->mat);
2421 cu->str= newdataadr(fd, cu->str);
2422 cu->strinfo= newdataadr(fd, cu->strinfo);
2423 cu->tb= newdataadr(fd, cu->tb);
2425 if(cu->vfont==0) link_list(fd, &(cu->nurb));
2427 cu->nurb.first=cu->nurb.last= 0;
2429 tb= MEM_callocN(MAXTEXTBOX*sizeof(TextBox), "TextBoxread");
2431 memcpy(tb, cu->tb, cu->totbox*sizeof(TextBox));
2438 cu->tb[0].w = cu->linewidth;
2440 if (cu->wordspace == 0.0) cu->wordspace = 1.0;
2443 cu->bev.first=cu->bev.last= 0;
2444 cu->disp.first=cu->disp.last= 0;
2449 nu->bezt= newdataadr(fd, nu->bezt);
2450 nu->bp= newdataadr(fd, nu->bp);
2451 nu->knotsu= newdataadr(fd, nu->knotsu);
2452 nu->knotsv= newdataadr(fd, nu->knotsv);
2453 if (cu->vfont==0) nu->charidx= nu->mat_nr;
2455 if(fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
2456 switch_endian_knots(nu);
2464 /* ************ READ TEX ***************** */
2466 static void lib_link_texture(FileData *fd, Main *main)
2470 tex= main->tex.first;
2472 if(tex->id.flag & LIB_NEEDLINK) {
2474 tex->ima= newlibadr_us(fd, tex->id.lib, tex->ima);
2475 tex->ipo= newlibadr_us(fd, tex->id.lib, tex->ipo);
2476 if(tex->env) tex->env->object= newlibadr(fd, tex->id.lib, tex->env->object);
2478 tex->id.flag -= LIB_NEEDLINK;
2484 static void direct_link_texture(FileData *fd, Tex *tex)
2486 tex->plugin= newdataadr(fd, tex->plugin);
2488 tex->plugin->handle= 0;
2489 open_plugin_tex(tex->plugin);
2490 /* initialize data for this instance, if an initialization
2493 if (tex->plugin->instance_init)
2494 tex->plugin->instance_init((void *) tex->plugin->data);
2496 tex->coba= newdataadr(fd, tex->coba);
2497 tex->env= newdataadr(fd, tex->env);
2499 tex->env->ima= NULL;
2500 memset(tex->env->cube, 0, 6*sizeof(void *));
2503 tex->preview = direct_link_preview_image(fd, tex->preview);
2510 /* ************ READ MATERIAL ***************** */
2512 static void lib_link_material(FileData *fd, Main *main)
2518 ma= main->mat.first;
2520 if(ma->id.flag & LIB_NEEDLINK) {
2521 /*Link ID Properties -- and copy this comment EXACTLY for easy finding
2522 of library blocks that implement this.*/
2523 if (ma->id.properties) IDP_LibLinkProperty(ma->id.properties, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
2525 ma->ipo= newlibadr_us(fd, ma->id.lib, ma->ipo);
2526 ma->group= newlibadr_us(fd, ma->id.lib, ma->group);
2528 for(a=0; a<MAX_MTEX; a++) {
2531 mtex->tex= newlibadr_us(fd, ma->id.lib, mtex->tex);
2532 mtex->object= newlibadr(fd, ma->id.lib, mtex->object);
2535 lib_link_scriptlink(fd, &ma->id, &ma->scriptlink);
2538 lib_link_ntree(fd, &ma->id, ma->nodetree);
2540 ma->id.flag -= LIB_NEEDLINK;
2546 static void direct_link_material(FileData *fd, Material *ma)
2550 for(a=0; a<MAX_MTEX; a++) {
2551 ma->mtex[a]= newdataadr(fd, ma->mtex[a]);
2554 ma->ramp_col= newdataadr(fd, ma->ramp_col);
2555 ma->ramp_spec= newdataadr(fd, ma->ramp_spec);
2557 direct_link_scriptlink(fd, &ma->scriptlink);
2559 ma->nodetree= newdataadr(fd, ma->nodetree);
2561 direct_link_nodetree(fd, ma->nodetree);
2563 ma->preview = direct_link_preview_image(fd, ma->preview);
2564 ma->gpumaterial.first = ma->gpumaterial.last = NULL;
2567 /* ************ READ PARTICLE SETTINGS ***************** */
2569 static void direct_link_pointcache(FileData *fd, PointCache *cache)
2571 cache->flag &= ~(PTCACHE_SIMULATION_VALID|PTCACHE_BAKE_EDIT_ACTIVE);
2575 static void lib_link_particlesettings(FileData *fd, Main *main)
2577 ParticleSettings *part;
2579 part= main->particle.first;
2581 if(part->id.flag & LIB_NEEDLINK) {
2582 part->ipo= newlibadr_us(fd, part->id.lib, part->ipo);
2583 part->dup_ob = newlibadr(fd, part->id.lib, part->dup_ob);
2584 part->dup_group = newlibadr(fd, part->id.lib, part->dup_group);
2585 part->eff_group = newlibadr(fd, part->id.lib, part->eff_group);
2586 part->bb_ob = newlibadr(fd, part->id.lib, part->bb_ob);
2587 part->id.flag -= LIB_NEEDLINK;
2589 part= part->id.next;
2593 static void direct_link_particlesettings(FileData *fd, ParticleSettings *part)
2595 part->pd= newdataadr(fd, part->pd);
2596 part->pd2= newdataadr(fd, part->pd2);
2599 static void lib_link_particlesystems(FileData *fd, ID *id, ListBase *particles)
2601 ParticleSystem *psys;
2604 for(psys=particles->first; psys; psys=psys->next){
2606 psys->part = newlibadr_us(fd, id->lib, psys->part);
2607 psys->target_ob = newlibadr(fd, id->lib, psys->target_ob);
2608 psys->keyed_ob = newlibadr(fd, id->lib, psys->keyed_ob);
2610 for(a=0,pa=psys->particles; a<psys->totpart; a++,pa++){
2611 pa->stick_ob=newlibadr(fd, id->lib, pa->stick_ob);
2615 static void direct_link_particlesystems(FileData *fd, ListBase *particles)
2617 ParticleSystem *psys;
2620 for(psys=particles->first; psys; psys=psys->next) {
2621 psys->particles=newdataadr(fd,psys->particles);
2622 if(psys->particles && psys->particles->hair){
2623 ParticleData *pa = psys->particles;
2624 for(a=0; a<psys->totpart; a++, pa++)
2625 pa->hair=newdataadr(fd,pa->hair);
2627 if(psys->particles && psys->particles->keys){
2628 ParticleData *pa = psys->particles;
2629 for(a=0; a<psys->totpart; a++, pa++) {
2634 psys->flag &= ~PSYS_KEYED;
2636 psys->child=newdataadr(fd,psys->child);
2637 psys->effectors.first=psys->effectors.last=0;
2639 psys->soft= newdataadr(fd, psys->soft);
2641 SoftBody *sb = psys->soft;
2642 sb->particles = psys;
2643 sb->bpoint= NULL; // init pointers so it gets rebuilt nicely
2647 sb->pointcache= newdataadr(fd, sb->pointcache);
2649 direct_link_pointcache(fd, sb->pointcache);
2653 psys->pathcache = 0;
2654 psys->childcache = 0;
2655 psys->pathcachebufs.first = psys->pathcachebufs.last = 0;
2656 psys->childcachebufs.first = psys->childcachebufs.last = 0;
2657 psys->reactevents.first = psys->reactevents.last = 0;
2659 psys->pointcache= newdataadr(fd, psys->pointcache);
2660 if(psys->pointcache)
2661 direct_link_pointcache(fd, psys->pointcache);
2666 /* ************ READ MESH ***************** */
2668 static void lib_link_mtface(FileData *fd, Mesh *me, MTFace *mtface, int totface)
2673 for (i=0; i<totface; i++, tf++) {
2674 tf->tpage= newlibadr(fd, me->id.lib, tf->tpage);
2675 if(tf->tpage && tf->tpage->id.us==0)
2676 tf->tpage->id.us= 1;
2680 static void lib_link_customdata_mtface(FileData *fd, Mesh *me, CustomData *fdata, int totface)
2683 for(i=0; i<fdata->totlayer; i++) {
2684 CustomDataLayer *layer = &fdata->layers[i];
2686 if(layer->type == CD_MTFACE)
2687 lib_link_mtface(fd, me, layer->data, totface);
2692 static void lib_link_mesh(FileData *fd, Main *main)
2696 me= main->mesh.first;
2698 if(me->id.flag & LIB_NEEDLINK) {
2701 /*Link ID Properties -- and copy this comment EXACTLY for easy finding
2702 of library blocks that implement this.*/
2703 if (me->id.properties) IDP_LibLinkProperty(me->id.properties, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
2705 /* this check added for python created meshes */
2707 for(i=0; i<me->totcol; i++) {
2708 me->mat[i]= newlibadr_us(fd, me->id.lib, me->mat[i]);
2713 me->ipo= newlibadr_us(fd, me->id.lib, me->ipo);
2714 me->key= newlibadr_us(fd, me->id.lib, me->key);
2715 me->texcomesh= newlibadr_us(fd, me->id.lib, me->texcomesh);
2717 lib_link_customdata_mtface(fd, me, &me->fdata, me->totface);
2718 if(me->mr && me->mr->levels.first)
2719 lib_link_customdata_mtface(fd, me, &me->mr->fdata,
2720 ((MultiresLevel*)me->mr->levels.first)->totface);
2722 me->id.flag -= LIB_NEEDLINK;
2728 static void direct_link_dverts(FileData *fd, int count, MDeformVert *mdverts)
2735 for (i=0; i<count; i++) {
2736 mdverts[i].dw=newdataadr(fd, mdverts[i].dw);
2738 mdverts[i].totweight=0;
2742 static void direct_link_customdata(FileData *fd, CustomData *data, int count)
2746 data->layers= newdataadr(fd, data->layers);
2748 while (i < data->totlayer) {
2749 CustomDataLayer *layer = &data->layers[i];
2751 if (CustomData_verify_versions(data, i)) {
2752 layer->data = newdataadr(fd, layer->data);
2758 static void direct_link_mesh(FileData *fd, Mesh *mesh)
2760 mesh->mat= newdataadr(fd, mesh->mat);
2761 test_pointer_array(fd, (void **)&mesh->mat);
2763 mesh->mvert= newdataadr(fd, mesh->mvert);
2764 mesh->medge= newdataadr(fd, mesh->medge);
2765 mesh->mface= newdataadr(fd, mesh->mface);
2766 mesh->tface= newdataadr(fd, mesh->tface);
2767 mesh->mtface= newdataadr(fd, mesh->mtface);
2768 mesh->mcol= newdataadr(fd, mesh->mcol);
2769 mesh->msticky= newdataadr(fd, mesh->msticky);
2770 mesh->dvert= newdataadr(fd, mesh->dvert);
2772 /* Partial-mesh visibility (do this before using totvert, totface, or totedge!) */
2773 mesh->pv= newdataadr(fd, mesh->pv);
2775 mesh->pv->vert_map= newdataadr(fd, mesh->pv->vert_map);
2776 mesh->pv->edge_map= newdataadr(fd, mesh->pv->edge_map);
2777 mesh->pv->old_faces= newdataadr(fd, mesh->pv->old_faces);
2778 mesh->pv->old_edges= newdataadr(fd, mesh->pv->old_edges);
2781 /* normally direct_link_dverts should be called in direct_link_customdata,
2782 but for backwards compat in do_versions to work we do it here */
2783 direct_link_dverts(fd, mesh->pv ? mesh->pv->totvert : mesh->totvert, mesh->dvert);
2785 direct_link_customdata(fd, &mesh->vdata, mesh->pv ? mesh->pv->totvert : mesh->totvert);
2786 direct_link_customdata(fd, &mesh->edata, mesh->pv ? mesh->pv->totedge : mesh->totedge);
2787 direct_link_customdata(fd, &mesh->fdata, mesh->pv ? mesh->pv->totface : mesh->totface);
2790 mesh->mselect = NULL;
2793 mesh->mr= newdataadr(fd, mesh->mr);
2797 link_list(fd, &mesh->mr->levels);
2798 lvl= mesh->mr->levels.first;
2800 direct_link_customdata(fd, &mesh->mr->vdata, lvl->totvert);
2801 direct_link_dverts(fd, lvl->totvert, CustomData_get(&mesh->mr->vdata, 0, CD_MDEFORMVERT));
2802 direct_link_customdata(fd, &mesh->mr->fdata, lvl->totface);
2804 if(mesh->mr->edge_flags)
2805 mesh->mr->edge_flags= newdataadr(fd, mesh->mr->edge_flags);
2806 if(mesh->mr->edge_creases)
2807 mesh->mr->edge_creases= newdataadr(fd, mesh->mr->edge_creases);
2809 if(!mesh->mr->edge_flags)
2810 mesh->mr->edge_flags= MEM_callocN(sizeof(short)*lvl->totedge, "Multires Edge Flags");
2811 if(!mesh->mr->edge_creases)
2812 mesh->mr->edge_creases= MEM_callocN(sizeof(char)*lvl->totedge, "Multires Edge Creases");
2814 mesh->mr->verts = newdataadr(fd, mesh->mr->verts);
2816 for(; lvl; lvl= lvl->next) {
2817 lvl->verts= newdataadr(fd, lvl->verts);
2818 lvl->faces= newdataadr(fd, lvl->faces);
2819 lvl->edges= newdataadr(fd, lvl->edges);
2820 lvl->colfaces= newdataadr(fd, lvl->colfaces);
2821 lvl->edge_boundary_states= NULL;
2822 lvl->vert_face_map = lvl->vert_edge_map = NULL;
2827 if((fd->flags & FD_FLAGS_SWITCH_ENDIAN) && mesh->tface) {
2828 TFace *tf= mesh->tface;
2831 for (i=0; i< (mesh->pv ? mesh->pv->totface : mesh->totface); i++, tf++) {
2832 SWITCH_INT(tf->col[0]);
2833 SWITCH_INT(tf->col[1]);
2834 SWITCH_INT(tf->col[2]);
2835 SWITCH_INT(tf->col[3]);
2840 /* ************ READ LATTICE ***************** */
2842 static void lib_link_latt(FileData *fd, Main *main)
2846 lt= main->latt.first;
2848 if(lt->id.flag & LIB_NEEDLINK) {
2850 lt->ipo= newlibadr_us(fd, lt->id.lib, lt->ipo);
2851 lt->key= newlibadr_us(fd, lt->id.lib, lt->key);
2853 lt->id.flag -= LIB_NEEDLINK;
2859 static void direct_link_latt(FileData *fd, Lattice *lt)
2861 lt->def= newdataadr(fd, lt->def);
2863 lt->dvert= newdataadr(fd, lt->dvert);
2864 direct_link_dverts(fd, lt->pntsu*lt->pntsv*lt->pntsw, lt->dvert);
2868 /* ************ READ OBJECT ***************** */
2870 static void lib_link_modifiers__linkModifiers(void *userData, Object *ob,
2873 FileData *fd = userData;
2875 *idpoin = newlibadr(fd, ob->id.lib, *idpoin);
2876 /* hardcoded bad exception; non-object modifier data gets user count (texture, displace) */
2877 if(*idpoin && GS((*idpoin)->name)!=ID_OB)
2880 static void lib_link_modifiers(FileData *fd, Object *ob)
2882 modifiers_foreachIDLink(ob, lib_link_modifiers__linkModifiers, fd);
2885 static void lib_link_object(FileData *fd, Main *main)
2895 ob= main->object.first;
2897 if(ob->id.flag & LIB_NEEDLINK) {
2898 if (ob->id.properties) IDP_LibLinkProperty(ob->id.properties, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
2900 ob->parent= newlibadr(fd, ob->id.lib, ob->parent);
2901 ob->track= newlibadr(fd, ob->id.lib, ob->track);
2902 ob->ipo= newlibadr_us(fd, ob->id.lib, ob->ipo);
2903 ob->action = newlibadr_us(fd, ob->id.lib, ob->action);
2904 ob->poselib= newlibadr_us(fd, ob->id.lib, ob->poselib);
2905 ob->dup_group= newlibadr_us(fd, ob->id.lib, ob->dup_group);
2907 ob->proxy= newlibadr_us(fd, ob->id.lib, ob->proxy);
2909 /* paranoia check, actually a proxy_from pointer should never be written... */
2910 if(ob->proxy->id.lib==NULL) {
2911 ob->proxy->proxy_from= NULL;
2915 /* this triggers object_update to always use a copy */
2916 ob->proxy->proxy_from= ob;
2917 /* force proxy updates after load/undo, a bit weak */
2918 ob->recalc= ob->proxy->recalc= OB_RECALC;
2921 ob->proxy_group= newlibadr(fd, ob->id.lib, ob->proxy_group);
2924 ob->data= newlibadr_us(fd, ob->id.lib, ob->data);
2926 if(ob->data==NULL && poin!=NULL) {
2929 if(ob->id.lib) printf("Can't find obdata of %s lib %s\n", ob->id.name+2, ob->id.lib->name);
2930 else printf("Object %s lost data.", ob->id.name+2);
2933 free_pose(ob->pose);
2935 ob->flag &= ~OB_POSEMODE;
2938 for(a=0; a<ob->totcol; a++) ob->mat[a]= newlibadr_us(fd, ob->id.lib, ob->mat[a]);
2940 ob->id.flag -= LIB_NEEDLINK;
2941 /* if id.us==0 a new base will be created later on */
2943 /* WARNING! Also check expand_object(), should reflect the stuff below. */
2944 lib_link_pose(fd, ob, ob->pose);
2945 lib_link_constraints(fd, &ob->id, &ob->constraints);
2946 lib_link_nlastrips(fd, &ob->id, &ob->nlastrips);
2947 lib_link_constraint_channels(fd, &ob->id, &ob->constraintChannels);
2949 for(paf= ob->effect.first; paf; paf= paf->next) {
2950 if(paf->type==EFF_PARTICLE) {
2951 paf->group= newlibadr_us(fd, ob->id.lib, paf->group);
2955 sens= ob->sensors.first;
2957 for(a=0; a<sens->totlinks; a++)
2958 sens->links[a]= newglobadr(fd, sens->links[a]);
2960 if(sens->type==SENS_TOUCH) {
2961 bTouchSensor *ts= sens->data;
2962 ts->ma= newlibadr(fd, ob->id.lib, ts->ma);
2964 else if(sens->type==SENS_MESSAGE) {
2965 bMessageSensor *ms= sens->data;
2967 newlibadr(fd, ob->id.lib, ms->fromObject);
2972 cont= ob->controllers.first;
2974 for(a=0; a<cont->totlinks; a++)
2975 cont->links[a]= newglobadr(fd, cont->links[a]);
2977 if(cont->type==CONT_PYTHON) {
2978 bPythonCont *pc= cont->data;
2979 pc->text= newlibadr(fd, ob->id.lib, pc->text);
2987 act= ob->actuators.first;
2989 if(act->type==ACT_SOUND) {
2990 bSoundActuator *sa= act->data;
2991 sa->sound= newlibadr_us(fd, ob->id.lib, sa->sound);
2993 else if(act->type==ACT_CD) {
2994 /* bCDActuator *cda= act->data; */
2996 else if(act->type==ACT_GAME) {
2997 /* bGameActuator *ga= act->data; */
2999 else if(act->type==ACT_CAMERA) {
3000 bCameraActuator *ca= act->data;
3001 ca->ob= newlibadr(fd, ob->id.lib, ca->ob);
3003 /* leave this one, it's obsolete but necessary to read for conversion */
3004 else if(act->type==ACT_ADD_OBJECT) {
3005 bAddObjectActuator *eoa= act->data;
3006 if(eoa) eoa->ob= newlibadr(fd, ob->id.lib, eoa->ob);
3008 else if(act->type==ACT_EDIT_OBJECT) {
3009 bEditObjectActuator *eoa= act->data;
3014 eoa->ob= newlibadr(fd, ob->id.lib, eoa->ob);
3015 eoa->me= newlibadr(fd, ob->id.lib, eoa->me);
3018 else if(act->type==ACT_SCENE) {
3019 bSceneActuator *sa= act->data;
3020 sa->camera= newlibadr(fd, ob->id.lib, sa->camera);
3021 sa->scene= newlibadr(fd, ob->id.lib, sa->scene);
3023 else if(act->type==ACT_ACTION) {
3024 bActionActuator *aa= act->data;
3025 aa->act= newlibadr(fd, ob->id.lib, aa->act);
3027 else if(act->type==ACT_SHAPEACTION) {
3028 bActionActuator *aa= act->data;
3029 aa->act= newlibadr(fd, ob->id.lib, aa->act);
3031 else if(act->type==ACT_PROPERTY) {
3032 bPropertyActuator *pa= act->data;
3033 pa->ob= newlibadr(fd, ob->id.lib, pa->ob);
3035 else if(act->type==ACT_MESSAGE) {
3036 bMessageActuator *ma= act->data;
3037 ma->toObject= newlibadr(fd, ob->id.lib, ma->toObject);
3039 else if(act->type==ACT_2DFILTER){
3040 bTwoDFilterActuator *_2dfa = act->data;
3041 _2dfa->text= newlibadr(fd, ob->id.lib, _2dfa->text);
3043 else if(act->type==ACT_PARENT) {
3044 bParentActuator *parenta = act->data;
3045 parenta->ob = newlibadr(fd, ob->id.lib, parenta->ob);
3047 else if(act->type==ACT_STATE) {
3048 /* bStateActuator *statea = act->data; */
3053 if(ob->fluidsimSettings) {
3054 ob->fluidsimSettings->ipo = newlibadr_us(fd, ob->id.lib, ob->fluidsimSettings->ipo);
3060 ob->pd->tex=newlibadr_us(fd, ob->id.lib, ob->pd->tex);
3062 lib_link_scriptlink(fd, &ob->id, &ob->scriptlink);
3063 lib_link_particlesystems(fd, &ob->id, &ob->particlesystem);
3064 lib_link_modifiers(fd, ob);
3069 if(warn) error("WARNING IN CONSOLE");
3073 static void direct_link_pose(FileData *fd, bPose *pose)
3075 bPoseChannel *pchan;
3080 link_list(fd, &pose->chanbase);
3081 link_list(fd, &pose->agroups);
3083 for (pchan = pose->chanbase.first; pchan; pchan=pchan->next) {
3085 pchan->parent= newdataadr(fd, pchan->parent);
3086 pchan->child= newdataadr(fd, pchan->child);
3087 direct_link_constraints(fd, &pchan->constraints);
3088 pchan->iktree.first= pchan->iktree.last= NULL;
3093 static void direct_link_modifiers(FileData *fd, ListBase *lb)
3099 for (md=lb->first; md; md=md->next) {
3102 /* if modifiers disappear, or for upward compatibility */
3103 if(NULL==modifierType_getInfo(md->type))
3104 md->type= eModifierType_None;
3106 if (md->type==eModifierType_Subsurf) {
3107 SubsurfModifierData *smd = (SubsurfModifierData*) md;
3109 smd->emCache = smd->mCache = 0;
3111 else if (md->type==eModifierType_Cloth) {
3112 ClothModifierData *clmd = (ClothModifierData*) md;
3114 clmd->clothObject = NULL;
3116 clmd->sim_parms= newdataadr(fd, clmd->sim_parms);
3117 clmd->coll_parms= newdataadr(fd, clmd->coll_parms);
3118 clmd->point_cache= newdataadr(fd, clmd->point_cache);
3120 if(clmd->point_cache)
3121 direct_link_pointcache(fd, clmd->point_cache);
3123 if(clmd->sim_parms) {
3124 if(clmd->sim_parms->presets > 10)
3125 clmd->sim_parms->presets = 0;
3129 else if (md->type==eModifierType_Collision) {
3131 CollisionModifierData *collmd = (CollisionModifierData*) md;
3133 // TODO: CollisionModifier should use pointcache
3134 // + have proper reset events before enabling this
3135 collmd->x = newdataadr(fd, collmd->x);
3136 collmd->xnew = newdataadr(fd, collmd->xnew);
3137 collmd->mfaces = newdataadr(fd, collmd->mfaces);
3139 collmd->current_x = MEM_callocN(sizeof(MVert)*collmd->numverts,"current_x");
3140 collmd->current_xnew = MEM_callocN(sizeof(MVert)*collmd->numverts,"current_xnew");
3141 collmd->current_v = MEM_callocN(sizeof(MVert)*collmd->numverts,"current_v");
3145 collmd->xnew = NULL;
3146 collmd->current_x = NULL;
3147 collmd->current_xnew = NULL;
3148 collmd->current_v = NULL;
3150 collmd->numverts = 0;
3151 collmd->bvhtree = NULL;
3152 collmd->mfaces = NULL;
3155 else if (md->type==eModifierType_Hook) {
3156 HookModifierData *hmd = (HookModifierData*) md;