2 * ***** BEGIN GPL LICENSE BLOCK *****
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
19 * All rights reserved.
22 * Contributor(s): Blender Foundation
24 * ***** END GPL LICENSE BLOCK *****
28 /** \file blender/blenloader/intern/readfile.c
36 #include <stdio.h> // for printf fopen fwrite fclose sprintf FILE
37 #include <stdlib.h> // for getenv atoi
38 #include <stddef.h> // for offsetof
39 #include <fcntl.h> // for open
40 #include <string.h> // for strrchr strncmp strstr
41 #include <math.h> // for fabs
42 #include <stdarg.h> /* for va_start/end */
45 # include <unistd.h> // for read close
47 # include <io.h> // for open close read
48 # include "winsock2.h"
49 # include "BLI_winstuff.h"
52 /* allow readfile to use deprecated functionality */
53 #define DNA_DEPRECATED_ALLOW
55 #include "DNA_anim_types.h"
56 #include "DNA_armature_types.h"
57 #include "DNA_actuator_types.h"
58 #include "DNA_brush_types.h"
59 #include "DNA_camera_types.h"
60 #include "DNA_cloth_types.h"
61 #include "DNA_controller_types.h"
62 #include "DNA_constraint_types.h"
63 #include "DNA_dynamicpaint_types.h"
64 #include "DNA_effect_types.h"
65 #include "DNA_fileglobal_types.h"
66 #include "DNA_genfile.h"
67 #include "DNA_group_types.h"
68 #include "DNA_gpencil_types.h"
69 #include "DNA_ipo_types.h"
70 #include "DNA_key_types.h"
71 #include "DNA_lattice_types.h"
72 #include "DNA_lamp_types.h"
73 #include "DNA_linestyle_types.h"
74 #include "DNA_meta_types.h"
75 #include "DNA_material_types.h"
76 #include "DNA_mesh_types.h"
77 #include "DNA_meshdata_types.h"
78 #include "DNA_nla_types.h"
79 #include "DNA_node_types.h"
80 #include "DNA_object_fluidsim.h" // NT
81 #include "DNA_packedFile_types.h"
82 #include "DNA_particle_types.h"
83 #include "DNA_property_types.h"
84 #include "DNA_text_types.h"
85 #include "DNA_view3d_types.h"
86 #include "DNA_screen_types.h"
87 #include "DNA_sensor_types.h"
88 #include "DNA_sdna_types.h"
89 #include "DNA_scene_types.h"
90 #include "DNA_sequence_types.h"
91 #include "DNA_smoke_types.h"
92 #include "DNA_speaker_types.h"
93 #include "DNA_sound_types.h"
94 #include "DNA_space_types.h"
95 #include "DNA_vfont_types.h"
96 #include "DNA_world_types.h"
97 #include "DNA_movieclip_types.h"
99 #include "MEM_guardedalloc.h"
101 #include "BLI_utildefines.h"
102 #include "BLI_blenlib.h"
103 #include "BLI_math.h"
104 #include "BLI_edgehash.h"
106 #include "BKE_anim.h"
107 #include "BKE_action.h"
108 #include "BKE_armature.h"
109 #include "BKE_brush.h"
110 #include "BKE_colortools.h"
111 #include "BKE_constraint.h"
112 #include "BKE_context.h"
113 #include "BKE_curve.h"
114 #include "BKE_deform.h"
115 #include "BKE_effect.h"
116 #include "BKE_fcurve.h"
117 #include "BKE_global.h" // for G
118 #include "BKE_group.h"
119 #include "BKE_image.h"
120 #include "BKE_lattice.h"
121 #include "BKE_library.h" // for which_libbase
122 #include "BKE_idcode.h"
123 #include "BKE_material.h"
124 #include "BKE_main.h" // for Main
125 #include "BKE_mesh.h" // for ME_ defines (patching)
126 #include "BKE_modifier.h"
127 #include "BKE_multires.h"
128 #include "BKE_node.h" // for tree type defines
129 #include "BKE_ocean.h"
130 #include "BKE_object.h"
131 #include "BKE_paint.h"
132 #include "BKE_particle.h"
133 #include "BKE_pointcache.h"
134 #include "BKE_property.h" // for get_ob_property
135 #include "BKE_report.h"
136 #include "BKE_sca.h" // for init_actuator
137 #include "BKE_scene.h"
138 #include "BKE_screen.h"
139 #include "BKE_sequencer.h"
140 #include "BKE_text.h" // for txt_extended_ascii_as_utf8
141 #include "BKE_texture.h" // for open_plugin_tex
142 #include "BKE_tracking.h"
143 #include "BKE_utildefines.h" // SWITCH_INT DATA ENDB DNA1 O_BINARY GLOB USER TEST REND
144 #include "BKE_sound.h"
146 #include "IMB_imbuf.h" // for proxy / timecode versioning stuff
148 #include "NOD_socket.h"
150 //XXX #include "BIF_butspace.h" // badlevel, for do_versions, patching event codes
151 //XXX #include "BIF_filelist.h" // badlevel too, where to move this? - elubie
152 //XXX #include "BIF_previewrender.h" // bedlelvel, for struct RenderInfo
153 #include "BLO_readfile.h"
154 #include "BLO_undofile.h"
156 #include "RE_engine.h"
158 #include "readfile.h"
160 #include "PIL_time.h"
165 Remark: still a weak point is the newaddress() 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 ~/X.XX/startup.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, const char *blockname);
253 static void direct_link_modifiers(FileData *fd, ListBase *lb);
254 static void convert_tface_mt(FileData *fd, Main *main);
256 /* this function ensures that reports are printed,
257 * in the case of libraray linking errors this is important!
259 * bit kludge but better then doubling up on prints,
260 * we could alternatively have a versions of a report function which foces printing - campbell
262 static void BKE_reportf_wrap(ReportList *reports, ReportType type, const char *format, ...)
264 char fixed_buf[1024]; /* should be long enough */
268 va_start(args, format);
269 vsnprintf(fixed_buf, sizeof(fixed_buf), format, args);
272 fixed_buf[sizeof(fixed_buf) - 1] = '\0';
274 BKE_report(reports, type, fixed_buf);
276 if (G.background==0) {
277 printf("%s\n", fixed_buf);
281 static OldNewMap *oldnewmap_new(void)
283 OldNewMap *onm= MEM_callocN(sizeof(*onm), "OldNewMap");
285 onm->entriessize= 1024;
286 onm->entries= MEM_mallocN(sizeof(*onm->entries)*onm->entriessize, "OldNewMap.entries");
291 static int verg_oldnewmap(const void *v1, const void *v2)
293 const struct OldNew *x1=v1, *x2=v2;
295 if ( x1->old > x2->old) return 1;
296 else if ( x1->old < x2->old) return -1;
301 static void oldnewmap_sort(FileData *fd)
303 qsort(fd->libmap->entries, fd->libmap->nentries, sizeof(OldNew), verg_oldnewmap);
304 fd->libmap->sorted= 1;
307 /* nr is zero for data, and ID code for libdata */
308 static void oldnewmap_insert(OldNewMap *onm, void *oldaddr, void *newaddr, int nr)
312 if (oldaddr==NULL || newaddr==NULL) return;
314 if (onm->nentries==onm->entriessize) {
315 int osize= onm->entriessize;
316 OldNew *oentries= onm->entries;
318 onm->entriessize*= 2;
319 onm->entries= MEM_mallocN(sizeof(*onm->entries)*onm->entriessize, "OldNewMap.entries");
321 memcpy(onm->entries, oentries, sizeof(*oentries)*osize);
325 entry= &onm->entries[onm->nentries++];
327 entry->newp= newaddr;
331 static void *oldnewmap_lookup_and_inc(OldNewMap *onm, void *addr)
335 if (addr==NULL) return NULL;
337 if (onm->lasthit<onm->nentries-1) {
338 OldNew *entry= &onm->entries[++onm->lasthit];
340 if (entry->old==addr) {
346 for (i=0; i<onm->nentries; i++) {
347 OldNew *entry= &onm->entries[i];
349 if (entry->old==addr) {
360 /* for libdata, nr has ID code, no increment */
361 static void *oldnewmap_liblookup(OldNewMap *onm, void *addr, void *lib)
365 if (addr==NULL) return NULL;
367 /* lasthit works fine for non-libdata, linking there is done in same sequence as writing */
369 OldNew entry_s, *entry;
373 entry= bsearch(&entry_s, onm->entries, onm->nentries, sizeof(OldNew), verg_oldnewmap);
377 if (id && (!lib || id->lib)) {
383 for (i=0; i<onm->nentries; i++) {
384 OldNew *entry= &onm->entries[i];
386 if (entry->old==addr) {
389 if (id && (!lib || id->lib)) {
398 static void oldnewmap_free_unused(OldNewMap *onm)
402 for (i=0; i<onm->nentries; i++) {
403 OldNew *entry= &onm->entries[i];
405 MEM_freeN(entry->newp);
411 static void oldnewmap_clear(OldNewMap *onm)
417 static void oldnewmap_free(OldNewMap *onm)
419 MEM_freeN(onm->entries);
425 static void read_libraries(FileData *basefd, ListBase *mainlist);
427 /* ************ help functions ***************** */
429 static void add_main_to_main(Main *mainvar, Main *from)
431 ListBase *lbarray[MAX_LIBARRAY], *fromarray[MAX_LIBARRAY];
434 set_listbasepointers(mainvar, lbarray);
435 a= set_listbasepointers(from, fromarray);
437 BLI_movelisttolist(lbarray[a], fromarray[a]);
441 void blo_join_main(ListBase *mainlist)
443 Main *tojoin, *mainl;
446 mainl= mainlist->first;
447 while ((tojoin= mainl->next)) {
448 add_main_to_main(mainl, tojoin);
449 BLI_remlink(mainlist, tojoin);
454 static void split_libdata(ListBase *lb, Main *first)
466 if (mainvar->curlib==id->lib) {
467 lbn= which_libbase(mainvar, GS(id->name));
469 BLI_addtail(lbn, id);
472 mainvar= mainvar->next;
474 if (mainvar==NULL) printf("error split_libdata\n");
480 void blo_split_main(ListBase *mainlist, Main *main)
482 ListBase *lbarray[MAX_LIBARRAY];
486 mainlist->first= mainlist->last= main;
489 if (main->library.first==NULL)
492 for (lib= main->library.first; lib; lib= lib->id.next) {
493 Main *libmain= MEM_callocN(sizeof(Main), "libmain");
494 libmain->curlib= lib;
495 BLI_addtail(mainlist, libmain);
498 i= set_listbasepointers(main, lbarray);
500 split_libdata(lbarray[i], main->next);
503 /* removes things like /blah/blah/../../blah/ etc, then writes in *name the full path */
504 static void cleanup_path(const char *relabase, char *name)
506 char filename[FILE_MAXFILE];
508 BLI_splitdirstring(name, filename);
509 BLI_cleanup_dir(relabase, name);
510 strcat(name, filename);
513 static void read_file_version(FileData *fd, Main *main)
517 for (bhead= blo_firstbhead(fd); bhead; bhead= blo_nextbhead(fd, bhead)) {
518 if (bhead->code==GLOB) {
519 FileGlobal *fg= read_struct(fd, bhead, "Global");
521 main->subversionfile= fg->subversion;
522 main->minversionfile= fg->minversion;
523 main->minsubversionfile= fg->minsubversion;
526 else if (bhead->code==ENDB)
533 static Main *blo_find_main(FileData *fd, ListBase *mainlist, const char *filepath, const char *relabase)
537 char name1[FILE_MAX];
539 BLI_strncpy(name1, filepath, sizeof(name1));
540 cleanup_path(relabase, name1);
541 // printf("blo_find_main: original in %s\n", name);
542 // printf("blo_find_main: converted to %s\n", name1);
544 for (m= mainlist->first; m; m= m->next) {
545 char *libname= (m->curlib)?m->curlib->filepath:m->name;
547 if (BLI_path_cmp(name1, libname) == 0) {
548 if (G.debug & G_DEBUG) printf("blo_find_main: found library %s\n", libname);
553 m= MEM_callocN(sizeof(Main), "find_main");
554 BLI_addtail(mainlist, m);
556 lib= alloc_libblock(&m->library, ID_LI, "lib");
557 BLI_strncpy(lib->name, filepath, sizeof(lib->name));
558 BLI_strncpy(lib->filepath, name1, sizeof(lib->filepath));
562 read_file_version(fd, m);
564 if (G.debug & G_DEBUG) printf("blo_find_main: added new lib %s\n", filepath);
569 /* ************ FILE PARSING ****************** */
571 static void switch_endian_bh4(BHead4 *bhead)
573 /* the ID_.. codes */
574 if ((bhead->code & 0xFFFF)==0) bhead->code >>=16;
576 if (bhead->code != ENDB) {
577 SWITCH_INT(bhead->len);
578 SWITCH_INT(bhead->SDNAnr);
579 SWITCH_INT(bhead->nr);
583 static void switch_endian_bh8(BHead8 *bhead)
585 /* the ID_.. codes */
586 if ((bhead->code & 0xFFFF)==0) bhead->code >>=16;
588 if (bhead->code != ENDB) {
589 SWITCH_INT(bhead->len);
590 SWITCH_INT(bhead->SDNAnr);
591 SWITCH_INT(bhead->nr);
595 static void bh4_from_bh8(BHead *bhead, BHead8 *bhead8, int do_endian_swap)
597 BHead4 *bhead4 = (BHead4 *) bhead;
598 #if defined(WIN32) && !defined(FREE_WINDOWS)
604 bhead4->code= bhead8->code;
605 bhead4->len= bhead8->len;
607 if (bhead4->code != ENDB) {
609 //perform a endian swap on 64bit pointers, otherwise the pointer might map to zero
610 //0x0000000000000000000012345678 would become 0x12345678000000000000000000000000
611 if (do_endian_swap) {
612 SWITCH_LONGINT(bhead8->old);
615 /* this patch is to avoid a long long being read from not-eight aligned positions
616 * is necessary on any modern 64bit architecture) */
617 memcpy(&old, &bhead8->old, 8);
618 bhead4->old = (int) (old >> 3);
620 bhead4->SDNAnr= bhead8->SDNAnr;
621 bhead4->nr= bhead8->nr;
625 static void bh8_from_bh4(BHead *bhead, BHead4 *bhead4)
627 BHead8 *bhead8 = (BHead8 *) bhead;
629 bhead8->code= bhead4->code;
630 bhead8->len= bhead4->len;
632 if (bhead8->code != ENDB) {
633 bhead8->old= bhead4->old;
634 bhead8->SDNAnr= bhead4->SDNAnr;
635 bhead8->nr= bhead4->nr;
639 static BHeadN *get_bhead(FileData *fd)
641 BHeadN *new_bhead = NULL;
646 /* initializing to zero isn't strictly needed but shuts valgrind up
647 * since uninitialized memory gets compared */
652 // First read the bhead structure.
653 // Depending on the platform the file was written on this can
654 // be a big or little endian BHead4 or BHead8 structure.
656 // As usual 'ENDB' (the last *partial* bhead of the file)
657 // needs some special handling. We don't want to EOF just yet.
659 if (fd->flags & FD_FLAGS_FILE_POINTSIZE_IS_4) {
661 readsize = fd->read(fd, &bhead4, sizeof(bhead4));
663 if (readsize == sizeof(bhead4) || bhead4.code == ENDB) {
664 if (fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
665 switch_endian_bh4(&bhead4);
668 if (fd->flags & FD_FLAGS_POINTSIZE_DIFFERS) {
669 bh8_from_bh4(&bhead, &bhead4);
672 memcpy(&bhead, &bhead4, sizeof(bhead));
682 readsize = fd->read(fd, &bhead8, sizeof(bhead8));
684 if (readsize == sizeof(bhead8) || bhead8.code == ENDB) {
685 if (fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
686 switch_endian_bh8(&bhead8);
689 if (fd->flags & FD_FLAGS_POINTSIZE_DIFFERS) {
690 bh4_from_bh8(&bhead, &bhead8, (fd->flags & FD_FLAGS_SWITCH_ENDIAN));
693 memcpy(&bhead, &bhead8, sizeof(bhead));
702 /* make sure people are not trying to pass bad blend files */
703 if (bhead.len < 0) fd->eof = 1;
705 // bhead now contains the (converted) bhead structure. Now read
706 // the associated data and put everything in a BHeadN (creative naming !)
709 new_bhead = MEM_mallocN(sizeof(BHeadN) + bhead.len, "new_bhead");
711 new_bhead->next = new_bhead->prev = NULL;
712 new_bhead->bhead = bhead;
714 readsize = fd->read(fd, new_bhead + 1, bhead.len);
716 if (readsize != bhead.len) {
718 MEM_freeN(new_bhead);
729 // We've read a new block. Now add it to the list
733 BLI_addtail(&fd->listbase, new_bhead);
739 BHead *blo_firstbhead(FileData *fd)
745 // Read in a new block if necessary
747 new_bhead = fd->listbase.first;
748 if (new_bhead == NULL) {
749 new_bhead = get_bhead(fd);
753 bhead = &new_bhead->bhead;
759 BHead *blo_prevbhead(FileData *UNUSED(fd), BHead *thisblock)
761 BHeadN *bheadn= (BHeadN *) (((char *) thisblock) - GET_INT_FROM_POINTER( &((BHeadN*)0)->bhead) );
762 BHeadN *prev= bheadn->prev;
764 return prev?&prev->bhead:NULL;
767 BHead *blo_nextbhead(FileData *fd, BHead *thisblock)
769 BHeadN *new_bhead = NULL;
773 // bhead is actually a sub part of BHeadN
774 // We calculate the BHeadN pointer from the BHead pointer below
775 new_bhead = (BHeadN *) (((char *) thisblock) - GET_INT_FROM_POINTER( &((BHeadN*)0)->bhead) );
777 // get the next BHeadN. If it doesn't exist we read in the next one
778 new_bhead = new_bhead->next;
779 if (new_bhead == NULL) {
780 new_bhead = get_bhead(fd);
785 // here we do the reverse:
786 // go from the BHeadN pointer to the BHead pointer
787 bhead = &new_bhead->bhead;
793 static void decode_blender_header(FileData *fd)
795 char header[SIZEOFBLENDERHEADER], num[4];
798 // read in the header data
799 readsize = fd->read(fd, header, sizeof(header));
801 if (readsize == sizeof(header)) {
802 if (strncmp(header, "BLENDER", 7) == 0) {
803 int remove_this_endian_test= 1;
805 fd->flags |= FD_FLAGS_FILE_OK;
807 // what size are pointers in the file ?
808 if (header[7]=='_') {
809 fd->flags |= FD_FLAGS_FILE_POINTSIZE_IS_4;
810 if (sizeof(void *) != 4) {
811 fd->flags |= FD_FLAGS_POINTSIZE_DIFFERS;
815 if (sizeof(void *) != 8) {
816 fd->flags |= FD_FLAGS_POINTSIZE_DIFFERS;
820 // is the file saved in a different endian
822 if (((((char*)&remove_this_endian_test)[0]==1)?L_ENDIAN:B_ENDIAN) != ((header[8]=='v')?L_ENDIAN:B_ENDIAN)) {
823 fd->flags |= FD_FLAGS_SWITCH_ENDIAN;
826 // get the version number
828 memcpy(num, header+9, 3);
830 fd->fileversion = atoi(num);
835 static int read_file_dna(FileData *fd)
839 for (bhead= blo_firstbhead(fd); bhead; bhead= blo_nextbhead(fd, bhead)) {
840 if (bhead->code==DNA1) {
841 int do_endian_swap= (fd->flags&FD_FLAGS_SWITCH_ENDIAN)?1:0;
843 fd->filesdna= DNA_sdna_from_data(&bhead[1], bhead->len, do_endian_swap);
846 fd->compflags= DNA_struct_get_compareflags(fd->filesdna, fd->memsdna);
847 /* used to retrieve ID names from (bhead+1) */
848 fd->id_name_offs= DNA_elem_offset(fd->filesdna, "ID", "char", "name[]");
853 else if (bhead->code==ENDB)
860 static int fd_read_from_file(FileData *filedata, void *buffer, unsigned int size)
862 int readsize = read(filedata->filedes, buffer, size);
868 filedata->seek += readsize;
874 static int fd_read_gzip_from_file(FileData *filedata, void *buffer, unsigned int size)
876 int readsize = gzread(filedata->gzfiledes, buffer, size);
882 filedata->seek += readsize;
888 static int fd_read_from_memory(FileData *filedata, void *buffer, unsigned int size)
890 // don't read more bytes then there are available in the buffer
891 int readsize = (int)MIN2(size, (unsigned int)(filedata->buffersize - filedata->seek));
893 memcpy(buffer, filedata->buffer + filedata->seek, readsize);
894 filedata->seek += readsize;
899 static int fd_read_from_memfile(FileData *filedata, void *buffer, unsigned int size)
901 static unsigned int seek= 1<<30; /* the current position */
902 static unsigned int offset= 0; /* size of previous chunks */
903 static MemFileChunk *chunk=NULL;
904 unsigned int chunkoffset, readsize, totread;
906 if (size==0) return 0;
908 if (seek != (unsigned int)filedata->seek) {
909 chunk= filedata->memfile->chunks.first;
913 if (seek + chunk->size > (unsigned) filedata->seek) break;
918 seek= filedata->seek;
925 /* first check if it's on the end if current chunk */
926 if (seek-offset == chunk->size) {
927 offset+= chunk->size;
931 /* debug, should never happen */
933 printf("illegal read, chunk zero\n");
937 chunkoffset= seek-offset;
938 readsize= size-totread;
940 /* data can be spread over multiple chunks, so clamp size
941 * to within this chunk, and then it will read further in
943 if (chunkoffset+readsize > chunk->size)
944 readsize= chunk->size-chunkoffset;
946 memcpy((char*)buffer+totread, chunk->buf+chunkoffset, readsize);
948 filedata->seek += readsize;
950 } while (totread < size);
958 static FileData *filedata_new(void)
960 FileData *fd = MEM_callocN(sizeof(FileData), "FileData");
963 fd->gzfiledes = NULL;
965 /* XXX, this doesn't need to be done all the time,
966 * but it keeps us re-entrant, remove once we have
967 * a lib that provides a nice lock. - zr
969 fd->memsdna = DNA_sdna_from_data(DNAstr, DNAlen, 0);
971 fd->datamap = oldnewmap_new();
972 fd->globmap = oldnewmap_new();
973 fd->libmap = oldnewmap_new();
978 static FileData *blo_decode_and_check(FileData *fd, ReportList *reports)
980 decode_blender_header(fd);
982 if (fd->flags & FD_FLAGS_FILE_OK) {
983 if (!read_file_dna(fd)) {
984 BKE_reportf(reports, RPT_ERROR, "Failed to read blend file: \"%s\", incomplete", fd->relabase);
985 blo_freefiledata(fd);
990 BKE_reportf(reports, RPT_ERROR, "Failed to read blend file: \"%s\", not a blend file", fd->relabase);
991 blo_freefiledata(fd);
998 /* cannot be called with relative paths anymore! */
999 /* on each new library added, it now checks for the current FileData and expands relativeness */
1000 FileData *blo_openblenderfile(const char *filepath, ReportList *reports)
1004 gzfile= BLI_gzopen(filepath, "rb");
1006 if (gzfile == (gzFile)Z_NULL) {
1007 BKE_reportf(reports, RPT_ERROR, "Unable to open \"%s\": %s.", filepath, errno ? strerror(errno) : "Unknown error reading file");
1011 FileData *fd = filedata_new();
1012 fd->gzfiledes = gzfile;
1013 fd->read = fd_read_gzip_from_file;
1015 /* needed for library_append and read_libraries */
1016 BLI_strncpy(fd->relabase, filepath, sizeof(fd->relabase));
1018 return blo_decode_and_check(fd, reports);
1022 FileData *blo_openblendermemory(void *mem, int memsize, ReportList *reports)
1024 if (!mem || memsize<SIZEOFBLENDERHEADER) {
1025 BKE_report(reports, RPT_ERROR, (mem)? "Unable to read": "Unable to open");
1029 FileData *fd= filedata_new();
1031 fd->buffersize= memsize;
1032 fd->read= fd_read_from_memory;
1033 fd->flags|= FD_FLAGS_NOT_MY_BUFFER;
1035 return blo_decode_and_check(fd, reports);
1039 FileData *blo_openblendermemfile(MemFile *memfile, ReportList *reports)
1042 BKE_report(reports, RPT_ERROR, "Unable to open blend <memory>");
1046 FileData *fd= filedata_new();
1047 fd->memfile= memfile;
1049 fd->read= fd_read_from_memfile;
1050 fd->flags|= FD_FLAGS_NOT_MY_BUFFER;
1052 return blo_decode_and_check(fd, reports);
1057 void blo_freefiledata(FileData *fd)
1061 if (fd->filedes != -1) {
1065 if (fd->gzfiledes != NULL) {
1066 gzclose(fd->gzfiledes);
1069 if (fd->buffer && !(fd->flags & FD_FLAGS_NOT_MY_BUFFER)) {
1070 MEM_freeN(fd->buffer);
1074 // Free all BHeadN data blocks
1075 BLI_freelistN(&fd->listbase);
1078 DNA_sdna_free(fd->memsdna);
1080 DNA_sdna_free(fd->filesdna);
1082 MEM_freeN(fd->compflags);
1085 oldnewmap_free(fd->datamap);
1087 oldnewmap_free(fd->globmap);
1089 oldnewmap_free(fd->imamap);
1090 if (fd->movieclipmap)
1091 oldnewmap_free(fd->movieclipmap);
1092 if (fd->libmap && !(fd->flags & FD_FLAGS_NOT_MY_LIBMAP))
1093 oldnewmap_free(fd->libmap);
1095 MEM_freeN(fd->bheadmap);
1101 /* ************ DIV ****************** */
1103 int BLO_has_bfile_extension(const char *str)
1105 return (BLI_testextensie(str, ".ble") || BLI_testextensie(str, ".blend") || BLI_testextensie(str, ".blend.gz"));
1108 int BLO_is_a_library(const char *path, char *dir, char *group)
1110 /* return ok when a blenderfile, in dir is the filename,
1111 * in group the type of libdata
1118 if (len<7) return 0;
1119 if ( dir[len-1] != '/' && dir[len-1] != '\\') return 0;
1124 /* Find the last slash */
1125 fd= BLI_last_slash(dir);
1127 if (fd==NULL) return 0;
1129 if (BLO_has_bfile_extension(fd+1)) {
1130 /* the last part of the dir is a .blend file, no group follows */
1131 *fd= '/'; /* put back the removed slash separating the dir and the .blend file name */
1134 char *gp = fd+1; // in case we have a .blend file, gp points to the group
1136 /* Find the last slash */
1137 fd= BLI_last_slash(dir);
1138 if (!fd || !BLO_has_bfile_extension(fd+1)) return 0;
1140 /* now we know that we are in a blend file and it is safe to
1141 * assume that gp actually points to a group */
1142 if (strcmp("Screen", gp)!=0)
1143 BLI_strncpy(group, gp, GROUP_MAX);
1148 /* ************** OLD POINTERS ******************* */
1150 static void *newdataadr(FileData *fd, void *adr) /* only direct databocks */
1152 return oldnewmap_lookup_and_inc(fd->datamap, adr);
1155 static void *newglobadr(FileData *fd, void *adr) /* direct datablocks with global linking */
1157 return oldnewmap_lookup_and_inc(fd->globmap, adr);
1160 static void *newimaadr(FileData *fd, void *adr) /* used to restore image data after undo */
1162 if (fd->imamap && adr)
1163 return oldnewmap_lookup_and_inc(fd->imamap, adr);
1167 static void *newmclipadr(FileData *fd, void *adr) /* used to restore movie clip data after undo */
1169 if (fd->movieclipmap && adr)
1170 return oldnewmap_lookup_and_inc(fd->movieclipmap, adr);
1175 static void *newlibadr(FileData *fd, void *lib, void *adr) /* only lib data */
1177 return oldnewmap_liblookup(fd->libmap, adr, lib);
1180 static void *newlibadr_us(FileData *fd, void *lib, void *adr) /* increases user number */
1182 ID *id= newlibadr(fd, lib, adr);
1190 static void change_idid_adr_fd(FileData *fd, void *old, void *new)
1194 for (i=0; i<fd->libmap->nentries; i++) {
1195 OldNew *entry= &fd->libmap->entries[i];
1197 if (old==entry->newp && entry->nr==ID_ID) {
1199 if (new) entry->nr= GS( ((ID *)new)->name );
1205 static void change_idid_adr(ListBase *mainlist, FileData *basefd, void *old, void *new)
1209 for (mainptr= mainlist->first; mainptr; mainptr= mainptr->next) {
1212 if (mainptr->curlib) fd= mainptr->curlib->filedata;
1216 change_idid_adr_fd(fd, old, new);
1221 /* lib linked proxy objects point to our local data, we need
1222 * to clear that pointer before reading the undo memfile since
1223 * the object might be removed, it is set again in reading
1224 * if the local object still exists */
1225 void blo_clear_proxy_pointers_from_lib(Main *oldmain)
1227 Object *ob= oldmain->object.first;
1229 for (;ob; ob= ob->id.next)
1231 ob->proxy_from= NULL;
1234 void blo_make_image_pointer_map(FileData *fd, Main *oldmain)
1236 Image *ima= oldmain->image.first;
1237 Scene *sce= oldmain->scene.first;
1240 fd->imamap= oldnewmap_new();
1242 for (;ima; ima= ima->id.next) {
1243 Link *ibuf= ima->ibufs.first;
1244 for (; ibuf; ibuf= ibuf->next)
1245 oldnewmap_insert(fd->imamap, ibuf, ibuf, 0);
1246 if (ima->gputexture)
1247 oldnewmap_insert(fd->imamap, ima->gputexture, ima->gputexture, 0);
1248 for (a=0; a<IMA_MAX_RENDER_SLOT; a++)
1249 if (ima->renders[a])
1250 oldnewmap_insert(fd->imamap, ima->renders[a], ima->renders[a], 0);
1252 for (; sce; sce= sce->id.next) {
1253 if (sce->nodetree) {
1255 for (node= sce->nodetree->nodes.first; node; node= node->next)
1256 oldnewmap_insert(fd->imamap, node->preview, node->preview, 0);
1261 /* set old main image ibufs to zero if it has been restored */
1262 /* this works because freeing old main only happens after this call */
1263 void blo_end_image_pointer_map(FileData *fd, Main *oldmain)
1265 OldNew *entry= fd->imamap->entries;
1266 Image *ima= oldmain->image.first;
1267 Scene *sce= oldmain->scene.first;
1270 /* used entries were restored, so we put them to zero */
1271 for (i=0; i<fd->imamap->nentries; i++, entry++) {
1276 for (;ima; ima= ima->id.next) {
1279 /* this mirrors direct_link_image */
1280 for (ibuf= ima->ibufs.first; ibuf; ibuf= next) {
1282 if (NULL==newimaadr(fd, ibuf)) { /* so was restored */
1283 BLI_remlink(&ima->ibufs, ibuf);
1285 ima->gputexture= NULL;
1288 for (i=0; i<IMA_MAX_RENDER_SLOT; i++)
1289 ima->renders[i]= newimaadr(fd, ima->renders[i]);
1291 ima->gputexture= newimaadr(fd, ima->gputexture);
1293 for (; sce; sce= sce->id.next) {
1294 if (sce->nodetree) {
1296 for (node= sce->nodetree->nodes.first; node; node= node->next)
1297 node->preview= newimaadr(fd, node->preview);
1302 void blo_make_movieclip_pointer_map(FileData *fd, Main *oldmain)
1304 MovieClip *clip= oldmain->movieclip.first;
1305 Scene *sce= oldmain->scene.first;
1307 fd->movieclipmap= oldnewmap_new();
1309 for (;clip; clip= clip->id.next) {
1311 oldnewmap_insert(fd->movieclipmap, clip->cache, clip->cache, 0);
1313 if (clip->tracking.camera.intrinsics)
1314 oldnewmap_insert(fd->movieclipmap, clip->tracking.camera.intrinsics, clip->tracking.camera.intrinsics, 0);
1317 for (; sce; sce= sce->id.next) {
1318 if (sce->nodetree) {
1320 for (node= sce->nodetree->nodes.first; node; node= node->next)
1321 if (node->type==CMP_NODE_MOVIEDISTORTION)
1322 oldnewmap_insert(fd->movieclipmap, node->storage, node->storage, 0);
1327 /* set old main movie clips caches to zero if it has been restored */
1328 /* this works because freeing old main only happens after this call */
1329 void blo_end_movieclip_pointer_map(FileData *fd, Main *oldmain)
1331 OldNew *entry= fd->movieclipmap->entries;
1332 MovieClip *clip= oldmain->movieclip.first;
1333 Scene *sce= oldmain->scene.first;
1336 /* used entries were restored, so we put them to zero */
1337 for (i=0; i<fd->movieclipmap->nentries; i++, entry++) {
1342 for (;clip; clip= clip->id.next) {
1343 clip->cache= newmclipadr(fd, clip->cache);
1344 clip->tracking.camera.intrinsics= newmclipadr(fd, clip->tracking.camera.intrinsics);
1347 for (; sce; sce= sce->id.next) {
1348 if (sce->nodetree) {
1350 for (node= sce->nodetree->nodes.first; node; node= node->next)
1351 if (node->type==CMP_NODE_MOVIEDISTORTION)
1352 node->storage= newmclipadr(fd, node->storage);
1358 /* undo file support: add all library pointers in lookup */
1359 void blo_add_library_pointer_map(ListBase *mainlist, FileData *fd)
1361 Main *ptr= mainlist->first;
1362 ListBase *lbarray[MAX_LIBARRAY];
1364 for (ptr= ptr->next; ptr; ptr= ptr->next) {
1365 int i= set_listbasepointers(ptr, lbarray);
1368 for (id= lbarray[i]->first; id; id= id->next)
1369 oldnewmap_insert(fd->libmap, id, id, GS(id->name));
1375 /* ********** END OLD POINTERS ****************** */
1376 /* ********** READ FILE ****************** */
1378 static void switch_endian_structs(struct SDNA *filesdna, BHead *bhead)
1380 int blocksize, nblocks;
1383 data= (char *)(bhead+1);
1384 blocksize= filesdna->typelens[ filesdna->structs[bhead->SDNAnr][0] ];
1388 DNA_struct_switch_endian(filesdna, bhead->SDNAnr, data);
1394 static void *read_struct(FileData *fd, BHead *bh, const char *blockname)
1399 /* switch is based on file dna */
1400 if (bh->SDNAnr && (fd->flags & FD_FLAGS_SWITCH_ENDIAN))
1401 switch_endian_structs(fd->filesdna, bh);
1403 if (fd->compflags[bh->SDNAnr]) { /* flag==0: doesn't exist anymore */
1404 if (fd->compflags[bh->SDNAnr]==2) {
1405 temp= DNA_struct_reconstruct(fd->memsdna, fd->filesdna, fd->compflags, bh->SDNAnr, bh->nr, (bh+1));
1408 temp= MEM_mallocN(bh->len, blockname);
1409 memcpy(temp, (bh+1), bh->len);
1417 static void link_list(FileData *fd, ListBase *lb) /* only direct data */
1421 if (lb->first==NULL) return;
1423 lb->first= newdataadr(fd, lb->first);
1427 ln->next= newdataadr(fd, ln->next);
1435 static void link_glob_list(FileData *fd, ListBase *lb) /* for glob data */
1440 if (lb->first==NULL) return;
1441 poin= newdataadr(fd, lb->first);
1443 oldnewmap_insert(fd->globmap, lb->first, poin, 0);
1450 poin= newdataadr(fd, ln->next);
1452 oldnewmap_insert(fd->globmap, ln->next, poin, 0);
1462 static void test_pointer_array(FileData *fd, void **mat)
1464 #if defined(WIN32) && !defined(FREE_WINDOWS)
1465 __int64 *lpoin, *lmat;
1467 long long *lpoin, *lmat;
1472 /* manually convert the pointer array in
1473 * the old dna format to a pointer array in
1474 * the new dna format.
1477 len= MEM_allocN_len(*mat)/fd->filesdna->pointerlen;
1479 if (fd->filesdna->pointerlen==8 && fd->memsdna->pointerlen==4) {
1480 ipoin=imat= MEM_mallocN( len*4, "newmatar");
1484 if ((fd->flags & FD_FLAGS_SWITCH_ENDIAN))
1485 SWITCH_LONGINT(*lpoin);
1486 *ipoin= (int) ((*lpoin) >> 3);
1494 if (fd->filesdna->pointerlen==4 && fd->memsdna->pointerlen==8) {
1495 lpoin=lmat= MEM_mallocN( len*8, "newmatar");
1509 /* ************ READ ID Properties *************** */
1511 static void IDP_DirectLinkProperty(IDProperty *prop, int switch_endian, FileData *fd);
1512 static void IDP_LibLinkProperty(IDProperty *prop, int switch_endian, FileData *fd);
1514 static void IDP_DirectLinkIDPArray(IDProperty *prop, int switch_endian, FileData *fd)
1519 /*since we didn't save the extra buffer, set totallen to len.*/
1520 prop->totallen = prop->len;
1521 prop->data.pointer = newdataadr(fd, prop->data.pointer);
1523 array= (IDProperty*) prop->data.pointer;
1525 /* note!, idp-arrays didn't exist in 2.4x, so the pointer will be cleared
1526 * theres not really anything we can do to correct this, at least don't crash */
1533 for (i=0; i<prop->len; i++)
1534 IDP_DirectLinkProperty(&array[i], switch_endian, fd);
1537 static void IDP_DirectLinkArray(IDProperty *prop, int switch_endian, FileData *fd)
1542 /*since we didn't save the extra buffer, set totallen to len.*/
1543 prop->totallen = prop->len;
1544 prop->data.pointer = newdataadr(fd, prop->data.pointer);
1546 if (prop->subtype == IDP_GROUP) {
1547 test_pointer_array(fd, prop->data.pointer);
1548 array= prop->data.pointer;
1550 for (i=0; i<prop->len; i++)
1551 IDP_DirectLinkProperty(array[i], switch_endian, fd);
1553 else if (prop->subtype == IDP_DOUBLE) {
1554 if (switch_endian) {
1555 for (i=0; i<prop->len; i++) {
1556 SWITCH_LONGINT(((double*)prop->data.pointer)[i]);
1561 if (switch_endian) {
1562 for (i=0; i<prop->len; i++) {
1563 SWITCH_INT(((int*)prop->data.pointer)[i]);
1569 static void IDP_DirectLinkString(IDProperty *prop, FileData *fd)
1571 /*since we didn't save the extra string buffer, set totallen to len.*/
1572 prop->totallen = prop->len;
1573 prop->data.pointer = newdataadr(fd, prop->data.pointer);
1576 static void IDP_DirectLinkGroup(IDProperty *prop, int switch_endian, FileData *fd)
1578 ListBase *lb = &prop->data.group;
1583 /*Link child id properties now*/
1584 for (loop=prop->data.group.first; loop; loop=loop->next) {
1585 IDP_DirectLinkProperty(loop, switch_endian, fd);
1589 static void IDP_DirectLinkProperty(IDProperty *prop, int switch_endian, FileData *fd)
1591 switch (prop->type) {
1593 IDP_DirectLinkGroup(prop, switch_endian, fd);
1596 IDP_DirectLinkString(prop, fd);
1599 IDP_DirectLinkArray(prop, switch_endian, fd);
1602 IDP_DirectLinkIDPArray(prop, switch_endian, fd);
1605 /* erg, stupid doubles. since I'm storing them
1606 * in the same field as int val; val2 in the
1607 * IDPropertyData struct, they have to deal with
1608 * endianness specifically
1610 * in theory, val and val2 would've already been swapped
1611 * if switch_endian is true, so we have to first unswap
1612 * them then reswap them as a single 64-bit entity.
1615 if (switch_endian) {
1616 SWITCH_INT(prop->data.val);
1617 SWITCH_INT(prop->data.val2);
1618 SWITCH_LONGINT(prop->data.val);
1626 static void IDP_LibLinkProperty(IDProperty *UNUSED(prop), int UNUSED(switch_endian), FileData *UNUSED(fd))
1630 /* ************ READ CurveMapping *************** */
1632 /* cuma itself has been read! */
1633 static void direct_link_curvemapping(FileData *fd, CurveMapping *cumap)
1637 /* flag seems to be able to hang? Maybe old files... not bad to clear anyway */
1638 cumap->flag &= ~CUMA_PREMULLED;
1640 for (a=0; a<CM_TOT; a++) {
1641 cumap->cm[a].curve= newdataadr(fd, cumap->cm[a].curve);
1642 cumap->cm[a].table= NULL;
1643 cumap->cm[a].premultable= NULL;
1647 /* ************ READ Brush *************** */
1648 /* library brush linking after fileread */
1649 static void lib_link_brush(FileData *fd, Main *main)
1653 /* only link ID pointers */
1654 for (brush= main->brush.first; brush; brush= brush->id.next) {
1655 if (brush->id.flag & LIB_NEEDLINK) {
1656 brush->id.flag -= LIB_NEEDLINK;
1658 brush->mtex.tex= newlibadr_us(fd, brush->id.lib, brush->mtex.tex);
1659 brush->clone.image= newlibadr_us(fd, brush->id.lib, brush->clone.image);
1664 static void direct_link_brush(FileData *fd, Brush *brush)
1666 /* brush itself has been read */
1669 brush->curve= newdataadr(fd, brush->curve);
1671 direct_link_curvemapping(fd, brush->curve);
1673 brush_curve_preset(brush, CURVE_PRESET_SHARP);
1675 brush->preview= NULL;
1676 brush->icon_imbuf= NULL;
1679 static void direct_link_script(FileData *UNUSED(fd), Script *script)
1682 SCRIPT_SET_NULL(script);
1686 /* ************ READ PACKEDFILE *************** */
1688 static PackedFile *direct_link_packedfile(FileData *fd, PackedFile *oldpf)
1690 PackedFile *pf= newdataadr(fd, oldpf);
1693 pf->data= newdataadr(fd, pf->data);
1699 /* ************ READ IMAGE PREVIEW *************** */
1701 static PreviewImage *direct_link_preview_image(FileData *fd, PreviewImage *old_prv)
1703 PreviewImage *prv= newdataadr(fd, old_prv);
1707 for (i=0; i < NUM_ICON_SIZES; ++i) {
1709 prv->rect[i] = newdataadr(fd, prv->rect[i]);
1717 /* ************ READ ANIMATION STUFF ***************** */
1719 /* Legacy Data Support (for Version Patching) ----------------------------- */
1721 // XXX depreceated - old animation system
1722 static void lib_link_ipo(FileData *fd, Main *main)
1726 ipo= main->ipo.first;
1728 if (ipo->id.flag & LIB_NEEDLINK) {
1730 for (icu= ipo->curve.first; icu; icu= icu->next) {
1732 icu->driver->ob= newlibadr(fd, ipo->id.lib, icu->driver->ob);
1734 ipo->id.flag -= LIB_NEEDLINK;
1740 // XXX depreceated - old animation system
1741 static void direct_link_ipo(FileData *fd, Ipo *ipo)
1745 link_list(fd, &(ipo->curve));
1746 icu= ipo->curve.first;
1748 icu->bezt= newdataadr(fd, icu->bezt);
1749 icu->bp= newdataadr(fd, icu->bp);
1750 icu->driver= newdataadr(fd, icu->driver);
1755 // XXX depreceated - old animation system
1756 static void lib_link_nlastrips(FileData *fd, ID *id, ListBase *striplist)
1758 bActionStrip *strip;
1759 bActionModifier *amod;
1761 for (strip=striplist->first; strip; strip=strip->next) {
1762 strip->object = newlibadr(fd, id->lib, strip->object);
1763 strip->act = newlibadr_us(fd, id->lib, strip->act);
1764 strip->ipo = newlibadr(fd, id->lib, strip->ipo);
1765 for (amod= strip->modifiers.first; amod; amod= amod->next)
1766 amod->ob= newlibadr(fd, id->lib, amod->ob);
1770 // XXX depreceated - old animation system
1771 static void direct_link_nlastrips(FileData *fd, ListBase *strips)
1773 bActionStrip *strip;
1775 link_list(fd, strips);
1777 for (strip= strips->first; strip; strip= strip->next)
1778 link_list(fd, &strip->modifiers);
1781 // XXX depreceated - old animation system
1782 static void lib_link_constraint_channels(FileData *fd, ID *id, ListBase *chanbase)
1784 bConstraintChannel *chan;
1786 for (chan=chanbase->first; chan; chan=chan->next) {
1787 chan->ipo = newlibadr_us(fd, id->lib, chan->ipo);
1791 /* Data Linking ----------------------------- */
1793 static void lib_link_fmodifiers(FileData *fd, ID *id, ListBase *list)
1797 for (fcm= list->first; fcm; fcm= fcm->next) {
1798 /* data for specific modifiers */
1799 switch (fcm->type) {
1800 case FMODIFIER_TYPE_PYTHON:
1802 FMod_Python *data= (FMod_Python *)fcm->data;
1803 data->script = newlibadr(fd, id->lib, data->script);
1810 static void lib_link_fcurves(FileData *fd, ID *id, ListBase *list)
1817 /* relink ID-block references... */
1818 for (fcu= list->first; fcu; fcu= fcu->next) {
1821 ChannelDriver *driver= fcu->driver;
1824 for (dvar= driver->variables.first; dvar; dvar= dvar->next) {
1825 DRIVER_TARGETS_LOOPER(dvar)
1827 /* only relink if still used */
1828 if (tarIndex < dvar->num_targets)
1829 dtar->id= newlibadr(fd, id->lib, dtar->id);
1833 DRIVER_TARGETS_LOOPER_END
1838 lib_link_fmodifiers(fd, id, &fcu->modifiers);
1843 /* NOTE: this assumes that link_list has already been called on the list */
1844 static void direct_link_fmodifiers(FileData *fd, ListBase *list)
1848 for (fcm= list->first; fcm; fcm= fcm->next) {
1849 /* relink general data */
1850 fcm->data = newdataadr(fd, fcm->data);
1853 /* do relinking of data for specific types */
1854 switch (fcm->type) {
1855 case FMODIFIER_TYPE_GENERATOR:
1857 FMod_Generator *data= (FMod_Generator *)fcm->data;
1859 data->coefficients= newdataadr(fd, data->coefficients);
1861 if (fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
1863 for (a = 0; a < data->arraysize; a++)
1864 SWITCH_INT(data->coefficients[a]);
1868 case FMODIFIER_TYPE_ENVELOPE:
1870 FMod_Envelope *data= (FMod_Envelope *)fcm->data;
1872 data->data= newdataadr(fd, data->data);
1875 case FMODIFIER_TYPE_PYTHON:
1877 FMod_Python *data= (FMod_Python *)fcm->data;
1879 data->prop = newdataadr(fd, data->prop);
1880 IDP_DirectLinkProperty(data->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
1887 /* NOTE: this assumes that link_list has already been called on the list */
1888 static void direct_link_fcurves(FileData *fd, ListBase *list)
1892 /* link F-Curve data to F-Curve again (non ID-libs) */
1893 for (fcu= list->first; fcu; fcu= fcu->next) {
1895 fcu->bezt= newdataadr(fd, fcu->bezt);
1896 fcu->fpt= newdataadr(fd, fcu->fpt);
1899 fcu->rna_path= newdataadr(fd, fcu->rna_path);
1902 fcu->grp= newdataadr(fd, fcu->grp);
1905 fcu->driver= newdataadr(fd, fcu->driver);
1907 ChannelDriver *driver= fcu->driver;
1910 driver->expr_comp= NULL;
1912 /* relink variables, targets and their paths */
1913 link_list(fd, &driver->variables);
1914 for (dvar= driver->variables.first; dvar; dvar= dvar->next) {
1915 DRIVER_TARGETS_LOOPER(dvar)
1917 /* only relink the targets being used */
1918 if (tarIndex < dvar->num_targets)
1919 dtar->rna_path= newdataadr(fd, dtar->rna_path);
1921 dtar->rna_path= NULL;
1923 DRIVER_TARGETS_LOOPER_END
1928 link_list(fd, &fcu->modifiers);
1929 direct_link_fmodifiers(fd, &fcu->modifiers);
1934 static void lib_link_action(FileData *fd, Main *main)
1937 bActionChannel *chan;
1939 for (act= main->action.first; act; act= act->id.next) {
1940 if (act->id.flag & LIB_NEEDLINK) {
1941 act->id.flag -= LIB_NEEDLINK;
1943 // XXX depreceated - old animation system <<<
1944 for (chan=act->chanbase.first; chan; chan=chan->next) {
1945 chan->ipo= newlibadr_us(fd, act->id.lib, chan->ipo);
1946 lib_link_constraint_channels(fd, &act->id, &chan->constraintChannels);
1948 // >>> XXX depreceated - old animation system
1950 lib_link_fcurves(fd, &act->id, &act->curves);
1955 static void direct_link_action(FileData *fd, bAction *act)
1957 bActionChannel *achan; // XXX depreceated - old animation system
1960 link_list(fd, &act->curves);
1961 link_list(fd, &act->chanbase); // XXX depreceated - old animation system
1962 link_list(fd, &act->groups);
1963 link_list(fd, &act->markers);
1965 // XXX depreceated - old animation system <<<
1966 for (achan = act->chanbase.first; achan; achan=achan->next) {
1967 achan->grp= newdataadr(fd, achan->grp);
1969 link_list(fd, &achan->constraintChannels);
1971 // >>> XXX depreceated - old animation system
1973 direct_link_fcurves(fd, &act->curves);
1975 for (agrp = act->groups.first; agrp; agrp= agrp->next) {
1976 agrp->channels.first= newdataadr(fd, agrp->channels.first);
1977 agrp->channels.last= newdataadr(fd, agrp->channels.last);
1981 static void lib_link_nladata_strips(FileData *fd, ID *id, ListBase *list)
1985 for (strip= list->first; strip; strip= strip->next) {
1986 /* check strip's children */
1987 lib_link_nladata_strips(fd, id, &strip->strips);
1989 /* check strip's F-Curves */
1990 lib_link_fcurves(fd, id, &strip->fcurves);
1992 /* reassign the counted-reference to action */
1993 strip->act = newlibadr_us(fd, id->lib, strip->act);
1995 /* fix action id-root (i.e. if it comes from a pre 2.57 .blend file) */
1996 if ((strip->act) && (strip->act->idroot == 0))
1997 strip->act->idroot = GS(id->name);
2001 static void lib_link_nladata(FileData *fd, ID *id, ListBase *list)
2005 /* we only care about the NLA strips inside the tracks */
2006 for (nlt= list->first; nlt; nlt= nlt->next) {
2007 lib_link_nladata_strips(fd, id, &nlt->strips);
2011 /* This handles Animato NLA-Strips linking
2012 * NOTE: this assumes that link_list has already been called on the list
2014 static void direct_link_nladata_strips(FileData *fd, ListBase *list)
2018 for (strip= list->first; strip; strip= strip->next) {
2019 /* strip's child strips */
2020 link_list(fd, &strip->strips);
2021 direct_link_nladata_strips(fd, &strip->strips);
2023 /* strip's F-Curves */
2024 link_list(fd, &strip->fcurves);
2025 direct_link_fcurves(fd, &strip->fcurves);
2027 /* strip's F-Modifiers */
2028 link_list(fd, &strip->modifiers);
2029 direct_link_fmodifiers(fd, &strip->modifiers);
2033 /* NOTE: this assumes that link_list has already been called on the list */
2034 static void direct_link_nladata(FileData *fd, ListBase *list)
2038 for (nlt= list->first; nlt; nlt= nlt->next) {
2039 /* relink list of strips */
2040 link_list(fd, &nlt->strips);
2042 /* relink strip data */
2043 direct_link_nladata_strips(fd, &nlt->strips);
2049 static void lib_link_keyingsets(FileData *fd, ID *id, ListBase *list)
2054 /* here, we're only interested in the ID pointer stored in some of the paths */
2055 for (ks= list->first; ks; ks= ks->next) {
2056 for (ksp= ks->paths.first; ksp; ksp= ksp->next) {
2057 ksp->id= newlibadr(fd, id->lib, ksp->id);
2062 /* NOTE: this assumes that link_list has already been called on the list */
2063 static void direct_link_keyingsets(FileData *fd, ListBase *list)
2068 /* link KeyingSet data to KeyingSet again (non ID-libs) */
2069 for (ks= list->first; ks; ks= ks->next) {
2071 link_list(fd, &ks->paths);
2073 for (ksp= ks->paths.first; ksp; ksp= ksp->next) {
2075 ksp->rna_path= newdataadr(fd, ksp->rna_path);
2082 static void lib_link_animdata(FileData *fd, ID *id, AnimData *adt)
2087 /* link action data */
2088 adt->action= newlibadr_us(fd, id->lib, adt->action);
2089 adt->tmpact= newlibadr_us(fd, id->lib, adt->tmpact);
2091 /* fix action id-roots (i.e. if they come from a pre 2.57 .blend file) */
2092 if ((adt->action) && (adt->action->idroot == 0))
2093 adt->action->idroot = GS(id->name);
2094 if ((adt->tmpact) && (adt->tmpact->idroot == 0))
2095 adt->tmpact->idroot = GS(id->name);
2098 lib_link_fcurves(fd, id, &adt->drivers);
2100 /* overrides don't have lib-link for now, so no need to do anything */
2103 lib_link_nladata(fd, id, &adt->nla_tracks);
2106 static void direct_link_animdata(FileData *fd, AnimData *adt)
2108 /* NOTE: must have called newdataadr already before doing this... */
2113 link_list(fd, &adt->drivers);
2114 direct_link_fcurves(fd, &adt->drivers);
2116 /* link overrides */
2120 link_list(fd, &adt->nla_tracks);
2121 direct_link_nladata(fd, &adt->nla_tracks);
2123 /* relink active strip - even though strictly speaking this should only be used
2124 * if we're in 'tweaking mode', we need to be able to have this loaded back for
2125 * undo, but also since users may not exit tweakmode before saving (#24535)
2127 // TODO: it's not really nice that anyone should be able to save the file in this
2128 // state, but it's going to be too hard to enforce this single case...
2129 adt->actstrip= newdataadr(fd, adt->actstrip);
2132 /* ************ READ MOTION PATHS *************** */
2134 /* direct data for cache */
2135 static void direct_link_motionpath(FileData *fd, bMotionPath *mpath)
2141 /* relink points cache */
2142 mpath->points= newdataadr(fd, mpath->points);
2145 /* ************ READ NODE TREE *************** */
2147 /* singe node tree (also used for material/scene trees), ntree is not NULL */
2148 static void lib_link_ntree(FileData *fd, ID *id, bNodeTree *ntree)
2152 if (ntree->adt) lib_link_animdata(fd, &ntree->id, ntree->adt);
2154 ntree->gpd= newlibadr_us(fd, id->lib, ntree->gpd);
2156 for (node= ntree->nodes.first; node; node= node->next)
2157 node->id= newlibadr_us(fd, id->lib, node->id);
2160 /* library ntree linking after fileread */
2161 static void lib_link_nodetree(FileData *fd, Main *main)
2165 /* only link ID pointers */
2166 for (ntree= main->nodetree.first; ntree; ntree= ntree->id.next) {
2167 if (ntree->id.flag & LIB_NEEDLINK) {
2168 ntree->id.flag -= LIB_NEEDLINK;
2169 lib_link_ntree(fd, &ntree->id, ntree);
2174 static void do_versions_socket_default_value(bNodeSocket *sock)
2176 bNodeSocketValueFloat *valfloat;
2177 bNodeSocketValueVector *valvector;
2178 bNodeSocketValueRGBA *valrgba;
2180 if (sock->default_value)
2183 switch (sock->type) {
2185 valfloat = sock->default_value = MEM_callocN(sizeof(bNodeSocketValueFloat), "default socket value");
2186 valfloat->value = sock->ns.vec[0];
2187 valfloat->min = sock->ns.min;
2188 valfloat->max = sock->ns.max;
2189 valfloat->subtype = PROP_NONE;
2192 valvector = sock->default_value = MEM_callocN(sizeof(bNodeSocketValueVector), "default socket value");
2193 copy_v3_v3(valvector->value, sock->ns.vec);
2194 valvector->min = sock->ns.min;
2195 valvector->max = sock->ns.max;
2196 valvector->subtype = PROP_NONE;
2199 valrgba = sock->default_value = MEM_callocN(sizeof(bNodeSocketValueRGBA), "default socket value");
2200 copy_v4_v4(valrgba->value, sock->ns.vec);
2205 static void do_versions_nodetree_default_value(bNodeTree *ntree)
2209 for (node=ntree->nodes.first; node; node=node->next) {
2210 for (sock=node->inputs.first; sock; sock=sock->next)
2211 do_versions_socket_default_value(sock);
2212 for (sock=node->outputs.first; sock; sock=sock->next)
2213 do_versions_socket_default_value(sock);
2215 for (sock=ntree->inputs.first; sock; sock=sock->next)
2216 do_versions_socket_default_value(sock);
2217 for (sock=ntree->outputs.first; sock; sock=sock->next)
2218 do_versions_socket_default_value(sock);
2221 static void lib_nodetree_init_types_cb(void *UNUSED(data), ID *UNUSED(id), bNodeTree *ntree)
2225 ntreeInitTypes(ntree);
2227 /* need to do this here instead of in do_versions, otherwise next function can crash */
2228 do_versions_nodetree_default_value(ntree);
2230 /* XXX could be replaced by do_versions for new nodes */
2231 for (node=ntree->nodes.first; node; node=node->next)
2232 node_verify_socket_templates(ntree, node);
2235 /* updates group node socket own_index so that
2236 * external links to/from the group node are preserved.
2238 static void lib_node_do_versions_group_indices(bNode *gnode)
2240 bNodeTree *ngroup= (bNodeTree*)gnode->id;
2242 bNodeSocket *sock, *gsock, *intsock;
2245 for (sock=gnode->outputs.first; sock; sock=sock->next) {
2246 int old_index = sock->to_index;
2247 for (gsock=ngroup->outputs.first; gsock; gsock=gsock->next) {
2248 if (gsock->link && gsock->link->fromsock->own_index == old_index) {
2249 sock->own_index = gsock->own_index;
2254 for (sock=gnode->inputs.first; sock; sock=sock->next) {
2255 int old_index = sock->to_index;
2256 /* can't use break in double loop */
2258 for (intnode=ngroup->nodes.first; intnode && !found; intnode=intnode->next) {
2259 for (intsock=intnode->inputs.first; intsock; intsock=intsock->next) {
2260 if (intsock->own_index == old_index && intsock->link) {
2261 sock->own_index = intsock->link->fromsock->own_index;
2270 /* updates external links for all group nodes in a tree */
2271 static void lib_nodetree_do_versions_group_indices_cb(void *UNUSED(data), ID *UNUSED(id), bNodeTree *ntree)
2275 for (node=ntree->nodes.first; node; node=node->next) {
2276 if (node->type==NODE_GROUP) {
2277 bNodeTree *ngroup= (bNodeTree*)node->id;
2278 if (ngroup && (ngroup->flag & NTREE_DO_VERSIONS_GROUP_EXPOSE))
2279 lib_node_do_versions_group_indices(node);
2284 /* make an update call for the tree */
2285 static void lib_nodetree_do_versions_update_cb(void *UNUSED(data), ID *UNUSED(id), bNodeTree *ntree)
2288 ntreeUpdateTree(ntree);
2291 /* verify types for nodes and groups, all data has to be read */
2292 /* open = 0: appending/linking, open = 1: open new file (need to clean out dynamic
2294 static void lib_verify_nodetree(Main *main, int UNUSED(open))
2298 bNodeTreeType *ntreetype;
2300 /* this crashes blender on undo/redo */
2303 reinit_nodesystem();
2307 /* set node->typeinfo pointers */
2308 for (i=0; i < NUM_NTREE_TYPES; ++i) {
2309 ntreetype= ntreeGetType(i);
2310 if (ntreetype && ntreetype->foreach_nodetree)
2311 ntreetype->foreach_nodetree(main, NULL, lib_nodetree_init_types_cb);
2313 for (ntree= main->nodetree.first; ntree; ntree= ntree->id.next)
2314 lib_nodetree_init_types_cb(NULL, NULL, ntree);
2317 int has_old_groups=0;
2318 /* XXX this should actually be part of do_versions, but since we need
2319 * finished library linking, it is not possible there. Instead in do_versions
2320 * we have set the NTREE_DO_VERSIONS flag, so at this point we can do the
2321 * actual group node updates.
2323 for (ntree= main->nodetree.first; ntree; ntree= ntree->id.next) {
2324 if (ntree->flag & NTREE_DO_VERSIONS_GROUP_EXPOSE) {
2325 /* this adds copies and links from all unlinked internal sockets to group inputs/outputs. */
2326 node_group_expose_all_sockets(ntree);
2331 if (has_old_groups) {
2332 for (i=0; i < NUM_NTREE_TYPES; ++i) {
2333 ntreetype= ntreeGetType(i);
2334 if (ntreetype && ntreetype->foreach_nodetree)
2335 ntreetype->foreach_nodetree(main, NULL, lib_nodetree_do_versions_group_indices_cb);
2339 for (ntree= main->nodetree.first; ntree; ntree= ntree->id.next)
2340 ntree->flag &= ~NTREE_DO_VERSIONS_GROUP_EXPOSE;
2343 /* verify all group user nodes */
2344 for (ntree= main->nodetree.first; ntree; ntree= ntree->id.next) {
2345 ntreeVerifyNodes(main, &ntree->id);
2348 /* make update calls where necessary */
2350 for (ntree= main->nodetree.first; ntree; ntree= ntree->id.next)
2352 ntreeUpdateTree(ntree);
2354 for (i=0; i < NUM_NTREE_TYPES; ++i) {
2355 ntreetype= ntreeGetType(i);
2356 if (ntreetype && ntreetype->foreach_nodetree)
2357 ntreetype->foreach_nodetree(main, NULL, lib_nodetree_do_versions_update_cb);
2362 static void direct_link_node_socket(FileData *fd, bNodeSocket *sock)
2364 sock->link= newdataadr(fd, sock->link);
2365 sock->storage= newdataadr(fd, sock->storage);
2366 sock->default_value= newdataadr(fd, sock->default_value);
2370 /* ntree itself has been read! */
2371 static void direct_link_nodetree(FileData *fd, bNodeTree *ntree)
2373 /* note: writing and reading goes in sync, for speed */
2378 ntree->init= 0; /* to set callbacks and force setting types */
2379 ntree->progress= NULL;
2380 ntree->execdata= NULL;
2382 ntree->adt= newdataadr(fd, ntree->adt);
2383 direct_link_animdata(fd, ntree->adt);
2385 link_list(fd, &ntree->nodes);
2386 for (node= ntree->nodes.first; node; node= node->next) {
2387 if (node->type == NODE_DYNAMIC) {
2389 node->custom1= BSET(node->custom1, NODE_DYNAMIC_LOADED);
2392 node->typeinfo= NULL;
2394 link_list(fd, &node->inputs);
2395 link_list(fd, &node->outputs);
2397 if (node->type == CMP_NODE_MOVIEDISTORTION) {
2398 node->storage= newmclipadr(fd, node->storage);
2401 node->storage= newdataadr(fd, node->storage);
2403 if (node->storage) {
2404 /* could be handlerized at some point */
2405 if (ntree->type==NTREE_SHADER && (node->type==SH_NODE_CURVE_VEC || node->type==SH_NODE_CURVE_RGB))
2406 direct_link_curvemapping(fd, node->storage);
2407 else if (ntree->type==NTREE_COMPOSIT) {
2408 if ( ELEM4(node->type, CMP_NODE_TIME, CMP_NODE_CURVE_VEC, CMP_NODE_CURVE_RGB, CMP_NODE_HUECORRECT))
2409 direct_link_curvemapping(fd, node->storage);
2410 else if (ELEM3(node->type, CMP_NODE_IMAGE, CMP_NODE_VIEWER, CMP_NODE_SPLITVIEWER))
2411 ((ImageUser *)node->storage)->ok= 1;
2413 else if ( ntree->type==NTREE_TEXTURE) {
2414 if (node->type==TEX_NODE_CURVE_RGB || node->type==TEX_NODE_CURVE_TIME)
2415 direct_link_curvemapping(fd, node->storage);
2416 else if (node->type==TEX_NODE_IMAGE)
2417 ((ImageUser *)node->storage)->ok= 1;
2421 link_list(fd, &ntree->links);
2423 /* external sockets */
2424 link_list(fd, &ntree->inputs);
2425 link_list(fd, &ntree->outputs);
2427 /* and we connect the rest */
2428 for (node= ntree->nodes.first; node; node= node->next) {
2429 node->parent = newdataadr(fd, node->parent);
2430 node->preview= newimaadr(fd, node->preview);
2433 for (sock= node->inputs.first; sock; sock= sock->next)
2434 direct_link_node_socket(fd, sock);
2435 for (sock= node->outputs.first; sock; sock= sock->next)
2436 direct_link_node_socket(fd, sock);
2438 for (sock= ntree->inputs.first; sock; sock= sock->next)
2439 direct_link_node_socket(fd, sock);
2440 for (sock= ntree->outputs.first; sock; sock= sock->next)
2441 direct_link_node_socket(fd, sock);
2443 for (link= ntree->links.first; link; link= link->next) {
2444 link->fromnode= newdataadr(fd, link->fromnode);
2445 link->tonode= newdataadr(fd, link->tonode);
2446 link->fromsock= newdataadr(fd, link->fromsock);
2447 link->tosock= newdataadr(fd, link->tosock);
2450 /* type verification is in lib-link */
2453 /* ************ READ ARMATURE ***************** */
2455 /* temp struct used to transport needed info to lib_link_constraint_cb() */
2456 typedef struct tConstraintLinkData {
2459 } tConstraintLinkData;
2460 /* callback function used to relink constraint ID-links */
2461 static void lib_link_constraint_cb(bConstraint *UNUSED(con), ID **idpoin, void *userdata)
2463 tConstraintLinkData *cld= (tConstraintLinkData *)userdata;
2464 *idpoin = newlibadr(cld->fd, cld->id->lib, *idpoin);
2467 static void lib_link_constraints(FileData *fd, ID *id, ListBase *conlist)
2469 tConstraintLinkData cld;
2473 for (con = conlist->first; con; con=con->next) {
2474 /* patch for error introduced by changing constraints (dunno how) */
2475 /* if con->data type changes, dna cannot resolve the pointer! (ton) */
2476 if (con->data==NULL) {
2477 con->type= CONSTRAINT_TYPE_NULL;
2479 /* own ipo, all constraints have it */
2480 con->ipo= newlibadr_us(fd, id->lib, con->ipo); // XXX depreceated - old animation system
2483 /* relink all ID-blocks used by the constraints */
2487 id_loop_constraints(conlist, lib_link_constraint_cb, &cld);
2490 static void direct_link_constraints(FileData *fd, ListBase *lb)
2495 for (con=lb->first; con; con=con->next) {
2496 con->data = newdataadr(fd, con->data);
2498 switch (con->type) {
2499 case CONSTRAINT_TYPE_PYTHON:
2501 bPythonConstraint *data= con->data;
2503 link_list(fd, &data->targets);
2505 data->prop = newdataadr(fd, data->prop);
2507 IDP_DirectLinkProperty(data->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
2510 case CONSTRAINT_TYPE_SPLINEIK:
2512 bSplineIKConstraint *data= con->data;
2514 data->points= newdataadr(fd, data->points);
2517 case CONSTRAINT_TYPE_KINEMATIC:
2519 con->lin_error = 0.f;
2520 con->rot_error = 0.f;
2522 case CONSTRAINT_TYPE_CHILDOF:
2524 /* XXX version patch, in older code this flag wasn't always set, and is inherent to type */
2525 if (con->ownspace == CONSTRAINT_SPACE_POSE)
2526 con->flag |= CONSTRAINT_SPACEONCE;
2533 static void lib_link_pose(FileData *fd, Object *ob, bPose *pose)
2535 bPoseChannel *pchan;
2536 bArmature *arm= ob->data;
2543 /* always rebuild to match proxy or lib changes */
2544 rebuild= ob->proxy || (ob->id.lib==NULL && arm->id.lib);
2547 /* sync proxy layer */
2548 if (pose->proxy_layer)
2549 arm->layer = pose->proxy_layer;
2551 /* sync proxy active bone */
2552 if (pose->proxy_act_bone[0]) {
2553 Bone *bone = get_named_bone(arm, pose->proxy_act_bone);
2555 arm->act_bone = bone;
2559 for (pchan = pose->chanbase.first; pchan; pchan=pchan->next) {
2560 lib_link_constraints(fd, (ID *)ob, &pchan->constraints);
2562 /* hurms... loop in a loop, but yah... later... (ton) */
2563 pchan->bone= get_named_bone(arm, pchan->name);
2565 pchan->custom= newlibadr_us(fd, arm->id.lib, pchan->custom);
2566 if (pchan->bone==NULL)
2568 else if (ob->id.lib==NULL && arm->id.lib) {
2569 /* local pose selection copied to armature, bit hackish */
2570 pchan->bone->flag &= ~BONE_SELECTED;
2571 pchan->bone->flag |= pchan->selectflag;
2576 ob->recalc= OB_RECALC_OB|OB_RECALC_DATA|OB_RECALC_TIME;
2577 pose->flag |= POSE_RECALC;
2581 static void lib_link_armature(FileData *fd, Main *main)
2585 arm= main->armature.first;
2588 if (arm->id.flag & LIB_NEEDLINK) {
2589 if (arm->adt) lib_link_animdata(fd, &arm->id, arm->adt);
2590 arm->id.flag -= LIB_NEEDLINK;
2596 static void direct_link_bones(FileData *fd, Bone* bone)
2600 bone->parent= newdataadr(fd, bone->parent);
2601 bone->prop= newdataadr(fd, bone->prop);
2603 IDP_DirectLinkProperty(bone->prop, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
2605 bone->flag &= ~BONE_DRAW_ACTIVE;
2607 link_list(fd, &bone->childbase);
2609 for (child=bone->childbase.first; child; child=child->next)
2610 direct_link_bones(fd, child);
2613 static void direct_link_armature(FileData *fd, bArmature *arm)
2617 link_list(fd, &arm->bonebase);
2621 arm->adt= newdataadr(fd, arm->adt);
2622 direct_link_animdata(fd, arm->adt);
2624 bone=arm->bonebase.first;
2626 direct_link_bones(fd, bone);
2630 arm->act_bone= newdataadr(fd, arm->act_bone);
2631 arm->act_edbone= NULL;
2634 /* ************ READ CAMERA ***************** */
2636 static void lib_link_camera(FileData *fd, Main *main)
2640 ca= main->camera.first;
2642 if (ca->id.flag & LIB_NEEDLINK) {
2643 if (ca->adt) lib_link_animdata(fd, &ca->id, ca->adt);
2645 ca->ipo= newlibadr_us(fd, ca->id.lib, ca->ipo); // XXX depreceated - old animation system
2647 ca->dof_ob= newlibadr_us(fd, ca->id.lib, ca->dof_ob);
2649 ca->id.flag -= LIB_NEEDLINK;
2655 static void direct_link_camera(FileData *fd, Camera *ca)
2657 ca->adt= newdataadr(fd, ca->adt);
2658 direct_link_animdata(fd, ca->adt);
2662 /* ************ READ LAMP ***************** */
2664 static void lib_link_lamp(FileData *fd, Main *main)
2670 la= main->lamp.first;
2672 if (la->id.flag & LIB_NEEDLINK) {
2673 if (la->adt) lib_link_animdata(fd, &la->id, la->adt);
2675 for (a=0; a<MAX_MTEX; a++) {
2678 mtex->tex= newlibadr_us(fd, la->id.lib, mtex->tex);
2679 mtex->object= newlibadr(fd, la->id.lib, mtex->object);
2683 la->ipo= newlibadr_us(fd, la->id.lib, la->ipo); // XXX depreceated - old animation system
2686 lib_link_ntree(fd, &la->id, la->nodetree);
2688 la->id.flag -= LIB_NEEDLINK;
2694 static void direct_link_lamp(FileData *fd, Lamp *la)
2698 la->adt= newdataadr(fd, la->adt);
2699 direct_link_animdata(fd, la->adt);
2701 for (a=0; a<MAX_MTEX; a++) {
2702 la->mtex[a]= newdataadr(fd, la->mtex[a]);
2705 la->curfalloff= newdataadr(fd, la->curfalloff);
2707 direct_link_curvemapping(fd, la->curfalloff);
2709 la->nodetree= newdataadr(fd, la->nodetree);
2711 direct_link_nodetree(fd, la->nodetree);
2713 la->preview = direct_link_preview_image(fd, la->preview);
2716 /* ************ READ keys ***************** */
2718 static void lib_link_key(FileData *fd, Main *main)
2722 key= main->key.first;
2724 /*check if we need to generate unique ids for the shapekeys*/
2729 for (block=key->block.first; block; block=block->next) {
2730 block->uid = key->uidgen++;
2734 if (key->id.flag & LIB_NEEDLINK) {
2735 if (key->adt) lib_link_animdata(fd, &key->id, key->adt);
2737 key->ipo= newlibadr_us(fd, key->id.lib, key->ipo); // XXX depreceated - old animation system
2738 key->from= newlibadr(fd, key->id.lib, key->from);
2740 key->id.flag -= LIB_NEEDLINK;
2746 static void switch_endian_keyblock(Key *key, KeyBlock *kb)
2749 char *data, *poin, *cp;
2751 elemsize= key->elemsize;
2754 for (a=0; a<kb->totelem; a++) {
2759 while ( cp[0] ) { /* cp[0] == amount */
2761 switch (cp[1]) { /* cp[1] = type */
2767 SWITCH_INT((*poin));
2780 static void direct_link_key(FileData *fd, Key *key)
2784 link_list(fd, &(key->block));
2786 key->adt= newdataadr(fd, key->adt);
2787 direct_link_animdata(fd, key->adt);
2789 key->refkey= newdataadr(fd, key->refkey);
2791 kb= key->block.first;
2794 kb->data= newdataadr(fd, kb->data);
2796 if (fd->flags & FD_FLAGS_SWITCH_ENDIAN)
2797 switch_endian_keyblock(key, kb);
2803 /* ************ READ mball ***************** */
2805 static void lib_link_mball(FileData *fd, Main *main)
2810 mb= main->mball.first;
2812 if (mb->id.flag & LIB_NEEDLINK) {
2813 if (mb->adt) lib_link_animdata(fd, &mb->id, mb->adt);
2815 for (a=0; a<mb->totcol; a++) mb->mat[a]= newlibadr_us(fd, mb->id.lib, mb->mat[a]);
2817 mb->ipo= newlibadr_us(fd, mb->id.lib, mb->ipo); // XXX depreceated - old animation system
2819 mb->id.flag -= LIB_NEEDLINK;
2825 static void direct_link_mball(FileData *fd, MetaBall *mb)
2827 mb->adt= newdataadr(fd, mb->adt);
2828 direct_link_animdata(fd, mb->adt);
2830 mb->mat= newdataadr(fd, mb->mat);
2831 test_pointer_array(fd, (void **)&mb->mat);
2833 link_list(fd, &(mb->elems));
2835 mb->disp.first= mb->disp.last= NULL;
2836 mb->editelems= NULL;
2838 /* mb->edit_elems.first= mb->edit_elems.last= NULL;*/
2842 /* ************ READ WORLD ***************** */
2844 static void lib_link_world(FileData *fd, Main *main)
2850 wrld= main->world.first;
2852 if (wrld->id.flag & LIB_NEEDLINK) {
2853 if (wrld->adt) lib_link_animdata(fd, &wrld->id, wrld->adt);
2855 wrld->ipo= newlibadr_us(fd, wrld->id.lib, wrld->ipo); // XXX depreceated - old animation system
2857 for (a=0; a<MAX_MTEX; a++) {
2858 mtex= wrld->mtex[a];
2860 mtex->tex= newlibadr_us(fd, wrld->id.lib, mtex->tex);
2861 mtex->object= newlibadr(fd, wrld->id.lib, mtex->object);
2866 lib_link_ntree(fd, &wrld->id, wrld->nodetree);
2868 wrld->id.flag -= LIB_NEEDLINK;
2870 wrld= wrld->id.next;
2874 static void direct_link_world(FileData *fd, World *wrld)
2878 wrld->adt= newdataadr(fd, wrld->adt);
2879 direct_link_animdata(fd, wrld->adt);
2881 for (a=0; a<MAX_MTEX; a++) {
2882 wrld->mtex[a]= newdataadr(fd, wrld->mtex[a]);
2885 wrld->nodetree= newdataadr(fd, wrld->nodetree);
2887 direct_link_nodetree(fd, wrld->nodetree);
2889 wrld->preview = direct_link_preview_image(fd, wrld->preview);
2893 /* ************ READ VFONT ***************** */
2895 static void lib_link_vfont(FileData *UNUSED(fd), Main *main)
2899 vf= main->vfont.first;
2901 if (vf->id.flag & LIB_NEEDLINK) {
2902 vf->id.flag -= LIB_NEEDLINK;
2908 static void direct_link_vfont(FileData *fd, VFont *vf)
2911 vf->packedfile= direct_link_packedfile(fd, vf->packedfile);
2914 /* ************ READ TEXT ****************** */
2916 static void lib_link_text(FileData *UNUSED(fd), Main *main)
2920 text= main->text.first;
2922 if (text->id.flag & LIB_NEEDLINK) {
2923 text->id.flag -= LIB_NEEDLINK;
2925 text= text->id.next;
2929 static void direct_link_text(FileData *fd, Text *text)
2933 text->name= newdataadr(fd, text->name);
2936 text->undo_len= TXT_INIT_UNDO;
2937 text->undo_buf= MEM_mallocN(text->undo_len, "undo buf");
2939 text->compiled= NULL;
2942 if (text->flags & TXT_ISEXT) {
2948 link_list(fd, &text->lines);
2949 link_list(fd, &text->markers);
2951 text->curl= newdataadr(fd, text->curl);
2952 text->sell= newdataadr(fd, text->sell);
2954 ln= text->lines.first;
2956 ln->line= newdataadr(fd, ln->line);
2959 if (ln->len != (int) strlen(ln->line)) {
2960 printf("Error loading text, line lengths differ\n");
2961 ln->len = strlen(ln->line);
2967 text->flags = (text->flags) & ~TXT_ISEXT;
2972 /* ************ READ IMAGE ***************** */
2974 static void lib_link_image(FileData *fd, Main *main)
2978 ima= main->image.first;
2980 if (ima->id.flag & LIB_NEEDLINK) {
2981 if (ima->id.properties) IDP_LibLinkProperty(ima->id.properties, (fd->flags & FD_FLAGS_SWITCH_ENDIAN), fd);
2983 ima->id.flag -= LIB_NEEDLINK;
2989 static void link_ibuf_list(FileData *fd, ListBase *lb)
2993 if (lb->first==NULL) return;
2995 lb->first= newimaadr(fd, lb->first);
2999 ln->next= newimaadr(fd, ln->next);
3007 static void direct_link_image(FileData *fd, Image *ima)
3009 /* for undo system, pointers could be restored */
3011 link_ibuf_list(fd, &ima->ibufs);
3013 ima->ibufs.first= ima->ibufs.last= NULL;
3015 /* if not restored, we keep the binded opengl index */
3016 if (ima->ibufs.first==NULL) {
3018 ima->gputexture= NULL;
3025 /* undo system, try to restore render buffers */
3029 for (a=0; a<IMA_MAX_RENDER_SLOT; a++)
3030 ima->renders[a]= newimaadr(fd, ima->renders[a]);
3033 memset(ima->renders, 0, sizeof(ima->renders));
3034 ima->last_render_slot= ima->render_slot;
3037 ima->packedfile = direct_link_packedfile(fd, ima->packedfile);
3038 ima->preview = direct_link_preview_image(fd, ima->preview);
3043 /* ************ READ CURVE ***************** */
3045 static void lib_link_curve(FileData *fd, Main *main)
3050 cu= main->curve.first;
3052 if (cu->id.flag & LIB_NEEDLINK) {
3053 if (cu->adt) lib_link_animdata(fd, &cu->id, cu->adt);
3055 for (a=0; a<cu->totcol; a++) cu->mat[a]= newlibadr_us(fd, cu->id.lib, cu->mat[a]);
3057 cu->bevobj= newlibadr(fd, cu->id.lib, cu->bevobj);
3058 cu->taperobj= newlibadr(fd, cu->id.lib, cu->taperobj);
3059 cu->textoncurve= newlibadr(fd, cu->id.lib, cu->textoncurve);
3060 cu->vfont= newlibadr_us(fd, cu->id.lib, cu->vfont);
3061 cu->vfontb= newlibadr_us(fd, cu->id.lib, cu->vfontb);
3062 cu->vfonti= newlibadr_us(fd, cu->id.lib, cu->vfonti);
3063 cu->vfontbi= newlibadr_us(fd, cu->id.lib, cu->vfontbi);
3065 cu->ipo= newlibadr_us(fd, cu->id.lib, cu->ipo); // XXX depreceated - old animation system
3066 cu->key= newlibadr_us(fd, cu->id.lib, cu->key);
3068 cu->id.flag -= LIB_NEEDLINK;
3075 static void switch_endian_knots(Nurb *nu)
3082 SWITCH_INT(nu->knotsu[len]);
3088 SWITCH_INT(nu->knotsv[len]);
3093 static void direct_link_curve(FileData *fd, Curve *cu)
3098 cu->adt= newdataadr(fd, cu->adt);
3099 direct_link_animdata(fd, cu->adt);
3101 cu->mat= newdataadr(fd, cu->mat);
3102 test_pointer_array(fd, (void **)&cu->mat);
3103 cu->str= newdataadr(fd, cu->str);
3104 cu->strinfo= newdataadr(fd, cu->strinfo);
3105 cu->tb= newdataadr(fd, cu->tb);
3107 if (cu->vfont == NULL) link_list(fd, &(cu->nurb));
3109 cu->nurb.first=cu->nurb.last= NULL;
3111 tb= MEM_callocN(MAXTEXTBOX*sizeof(TextBox), "TextBoxread");
3113 memcpy(tb, cu->tb, cu->totbox*sizeof(TextBox));
3121 cu->tb[0].w = cu->linewidth;
3123 if (cu->wordspace == 0.0f) cu->wordspace = 1.0f;
3126 cu->bev.first=cu->bev.last= NULL;
3127 cu->disp.first=cu->disp.last= NULL;
3135 nu->bezt= newdataadr(fd, nu->bezt);
3136 nu->bp= newdataadr(fd, nu->bp);
3137 nu->knotsu= newdataadr(fd, nu->knotsu);
3138 nu->knotsv= newdataadr(fd, nu->knotsv);
3139 if (cu->vfont == NULL) nu->charidx= nu->mat_nr;
3141 if (fd->flags & FD_FLAGS_SWITCH_ENDIAN) {
3142 switch_endian_knots(nu);
3150 /* ************ READ TEX ***************** */
3152 static void lib_link_texture(FileData *fd, Main *main)
3156 tex= main->tex.first;
3158 if (tex->id.flag & LIB_NEEDLINK) {
3159 if (tex->adt) lib_link_animdata(fd, &tex->id, tex->adt);
3161 tex->ima= newlibadr_us(fd, tex->id.lib, tex->ima);
3162 tex->ipo= newlibadr_us(fd, tex->id.lib, tex->ipo);
3163 if (tex->env) tex->env->object= newlibadr(fd, tex->id.lib, tex->env->object);
3165 tex->pd->object= newlibadr(fd, tex->id.lib, tex->pd->object);
3166 if (tex->vd) tex->vd->object= newlibadr(fd, tex->id.lib, tex->vd->object);
3167 if (tex->ot) tex->ot->object= newlibadr(fd, tex->id.lib, tex->ot->object);
3171 lib_link_ntree(fd, &tex->id, tex->nodetree);
3173 tex->id.flag -= LIB_NEEDLINK;
3179 static void direct_link_texture(FileData *fd, Tex *tex)
3181 tex->adt= newdataadr(fd, tex->adt);
3182 direct_link_animdata(fd, tex->adt);
3184 tex->plugin= newdataadr(fd, tex->plugin);
3186 tex->plugin->handle= NULL;
3187 open_plugin_tex(tex->plugin);
3188 /* initialize data for this instance, if an initialization
3191 if (tex->plugin->instance_init)
3192 tex->plugin->instance_init((void *) tex->plugin->data);
3194 tex->coba= newdataadr(fd, tex->coba);
3195 tex->env= newdataadr(fd, tex->env);
3197 tex->env->ima= NULL;
3198 memset(tex->env->cube, 0, 6*sizeof(void *));
3201 tex->pd= newdataadr(fd, tex->pd);
3203 tex->pd->point_tree = NULL;
3204 tex->pd->coba= newdataadr(fd, tex->pd->coba);
3205 tex->pd->falloff_curve= newdataadr(fd, tex->pd->falloff_curve);
3206 if (tex->pd->falloff_curve) {
3207 direct_link_curvemapping(fd, tex->pd->falloff_curve);
3211 tex->vd= newdataadr(fd, tex->vd);
3213 tex->vd->dataset = NULL;