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) 2007 Blender Foundation.
21 * All rights reserved.
24 * Contributor(s): Blender Foundation
26 * ***** END GPL LICENSE BLOCK *****
33 #include "MEM_guardedalloc.h"
34 #include "MEM_CacheLimiterC-Api.h"
36 #include "IMB_imbuf_types.h"
37 #include "IMB_imbuf.h"
39 #include "DNA_object_types.h"
40 #include "DNA_scene_types.h"
41 #include "DNA_sound_types.h"
42 #include "DNA_userdef_types.h"
43 #include "DNA_windowmanager_types.h"
45 #include "BKE_blender.h"
46 #include "BKE_curve.h"
47 #include "BKE_displist.h"
48 #include "BKE_DerivedMesh.h"
50 #include "BKE_global.h"
51 #include "BKE_library.h"
52 #include "BKE_mball.h"
53 #include "BKE_utildefines.h"
54 #include "BKE_packedFile.h"
61 #include "BLI_blenlib.h"
63 #include "RE_pipeline.h" /* RE_ free stuff */
67 #include "BPY_extern.h"
69 #include "SYS_System.h"
71 #include "UI_interface.h"
73 #include "RNA_define.h"
77 #include "wm_event_system.h"
80 #include "wm_window.h"
82 #include "ED_screen.h"
84 static void initbuttons(void)
88 // glClearColor(.7f, .7f, .6f, 0.0);
90 G.font= BMF_GetFont(BMF_kHelvetica12);
91 G.fonts= BMF_GetFont(BMF_kHelvetica10);
92 G.fontss= BMF_GetFont(BMF_kHelveticaBold8);
94 // clear_matcopybuf(); /* XXX */
96 // glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
100 static void sound_init_listener(void)
102 G.listener = MEM_callocN(sizeof(bSoundListener), "soundlistener");
103 G.listener->gain = 1.0;
104 G.listener->dopplerfactor = 1.0;
105 G.listener->dopplervelocity = 340.29f;
108 /* only called once, for startup */
109 void WM_init(bContext *C)
112 wm_ghost_init(C); /* note: it assigns C to ghost! */
113 wm_operatortype_init();
115 set_free_windowmanager_cb(wm_close_and_free); /* library.c */
117 ED_spacetypes_init(); /* editors/area/spacetype.c */
119 /* get the default database, plus a wm */
120 WM_read_homefile(C, 0);
122 wm_check(C); /* opens window(s), checks keymaps */
124 // initscreen(); /* for (visual) speed, this first, then setscreen */
127 sound_init_listener();
128 // init_node_butfuncs();
130 // XXX BIF_preview_init_dbase();
132 // XXX UI_filelist_init_icons();
134 // init_gl_stuff(); /* drawview.c, after homefile */
136 BLI_strncpy(G.lib, G.sce, FILE_MAX);
139 /* free strings of open recent files */
140 static void free_openrecent(void)
142 struct RecentFile *recent;
144 for(recent = G.recent_files.first; recent; recent=recent->next)
145 MEM_freeN(recent->filename);
147 BLI_freelistN(&(G.recent_files));
153 extern ListBase editNurb;
154 extern ListBase editelems;
155 extern wchar_t *copybuf;
156 extern wchar_t *copybufinfo;
158 /* called in creator.c even... tsk, split this! */
159 void WM_exit(bContext *C)
163 /* first wrap up running stuff, we assume only the active WM is running */
164 /* modal handlers are on window level freed, others too? */
166 for(win= C->wm->windows.first; win; win= win->next) {
170 C->window= win; /* needed by operator close callbacks */
171 WM_event_remove_handlers(C, &win->handlers);
173 for(ar= win->screen->regionbase.first; ar; ar= ar->next)
174 WM_event_remove_handlers(C, &ar->handlers);
176 for(sa= win->screen->areabase.first; sa; sa= sa->next) {
177 WM_event_remove_handlers(C, &sa->handlers);
178 for(ar= sa->regionbase.first; ar; ar= ar->next)
179 WM_event_remove_handlers(C, &ar->handlers);
183 wm_operatortype_free();
185 free_ttfont(); /* bke_font.h */
188 end_all_verse_sessions();
195 // if (G.background == 0)
196 // sound_end_all_sounds();
199 if(G.obedit->type==OB_FONT) {
202 // else if(G.obedit->type==OB_MBALL) BLI_freelistN(&editelems);
203 // free_editMesh(G.editMesh);
207 // free_editArmature();
210 /* before free_blender so py's gc happens while library still exists */
211 /* needed at least for a rare sigsegv that can happen in pydrivers */
214 // fastshade_free_render(); /* shaded view */
215 free_blender(); /* blender.c, does entire library */
216 // free_matcopybuf();
217 // free_ipocopybuf();
218 // free_actcopybuf();
219 // free_vertexpaint();
220 // free_imagepaint();
222 /* editnurb can remain to exist outside editmode */
223 freeNurblist(&editNurb);
228 // free_languagemenu();
235 // sound_exit_audio();
236 if(G.listener) MEM_freeN(G.listener);
241 #ifdef WITH_QUICKTIME
246 // XXX UI_filelist_free_icons();
253 // if (copybuf) MEM_freeN(copybuf);
254 // if (copybufinfo) MEM_freeN(copybufinfo);
256 /* undo free stuff */
257 // undo_editmode_clear();
259 BKE_undo_save_quit(); // saves quit.blend if global undo is on
263 BLI_freelistN(&U.themes);
264 // XXX BIF_preview_free_dbase();
270 if(MEM_get_memory_blocks_in_use()!=0) {
271 printf("Error Totblock: %d\n", MEM_get_memory_blocks_in_use());
274 // delete_autosave();
276 printf("\nBlender quit\n");
279 /* ask user to press enter when in debug mode */
281 printf("press enter key to exit...\n\n");
287 SYS_DeleteSystem(SYS_GetSystem());