7 * ***** BEGIN GPL LICENSE BLOCK *****
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
24 * All rights reserved.
26 * The Original Code is: all of this file.
28 * Contributor(s): none yet.
30 * ***** END GPL LICENSE BLOCK *****
35 #include "MEM_guardedalloc.h"
37 #include "DNA_world_types.h"
38 #include "DNA_texture_types.h"
39 #include "DNA_scriptlink_types.h"
40 #include "DNA_scene_types.h"
41 #include "DNA_object_types.h"
42 #include "DNA_camera_types.h"
45 #include "BLI_blenlib.h"
46 #include "BLI_arithb.h"
48 #include "BKE_bad_level_calls.h"
49 #include "BKE_utildefines.h"
51 #include "BKE_library.h"
52 #include "BKE_world.h"
53 #include "BKE_global.h"
55 #include "BKE_icons.h"
57 #include "BPY_extern.h"
63 void free_world(World *wrld)
68 BPY_free_scriptlink(&wrld->scriptlink);
70 for(a=0; a<MAX_MTEX; a++) {
72 if(mtex && mtex->tex) mtex->tex->id.us--;
73 if(mtex) MEM_freeN(mtex);
75 BKE_previewimg_free(&wrld->preview);
78 BKE_icon_delete((struct ID*)wrld);
83 World *add_world(char *name)
87 wrld= alloc_libblock(&G.main->world, ID_WO, name);
90 wrld->skytype= WO_SKYBLEND;
91 wrld->stardist= 15.0f;
96 wrld->exposure=wrld->range= 1.0f;
100 wrld->aoenergy= 1.0f;
102 wrld->ao_samp_method = WO_AOSAMP_HAMMERSLEY;
103 wrld->ao_approx_error= 0.25f;
105 wrld->physicsEngine= WOPHY_BULLET;//WOPHY_SUMO; Bullet by default
106 wrld->preview = NULL;
111 World *copy_world(World *wrld)
116 wrldn= copy_libblock(wrld);
118 for(a=0; a<MAX_MTEX; a++) {
120 wrldn->mtex[a]= MEM_mallocN(sizeof(MTex), "copymaterial");
121 memcpy(wrldn->mtex[a], wrld->mtex[a], sizeof(MTex));
122 id_us_plus((ID *)wrldn->mtex[a]->tex);
126 if (wrld->preview) wrldn->preview = BKE_previewimg_copy(wrld->preview);
128 BPY_copy_scriptlink(&wrld->scriptlink);
130 id_us_plus((ID *)wrldn->ipo);
135 void make_local_world(World *wrld)
141 /* - only lib users: do nothing
142 * - only local users: set flag
146 if(wrld->id.lib==0) return;
149 wrld->id.flag= LIB_LOCAL;
150 new_id(0, (ID *)wrld, 0);
154 sce= G.main->scene.first;
156 if(sce->world==wrld) {
157 if(sce->id.lib) lib= 1;
163 if(local && lib==0) {
165 wrld->id.flag= LIB_LOCAL;
166 new_id(0, (ID *)wrld, 0);
168 else if(local && lib) {
169 wrldn= copy_world(wrld);
172 sce= G.main->scene.first;
174 if(sce->world==wrld) {