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"
57 #include "BIF_language.h"
62 #include "BLI_blenlib.h"
64 #include "BIF_cursors.h"
65 #include "BIF_drawtext.h"
66 #include "BIF_editaction.h"
67 #include "BIF_editarmature.h"
68 #include "BIF_editlattice.h"
69 #include "BIF_editfont.h"
70 #include "BIF_editmesh.h"
71 #include "BIF_editmode_undo.h"
72 #include "BIF_editsound.h"
73 #include "BIF_filelist.h"
74 #include "BIF_fsmenu.h"
75 #include "BIF_interface.h"
77 #include "BIF_poseobject.h"
78 #include "BIF_previewrender.h"
79 #include "BIF_resources.h"
80 #include "BIF_usiblender.h" /* XXX */
82 #include "BSE_drawview.h"
84 #include "BSE_editipo.h"
85 #include "BSE_filesel.h"
86 #include "BSE_headerbuttons.h"
89 #include "BDR_drawobject.h"
90 #include "BDR_editobject.h"
91 #include "BDR_editcurve.h"
92 #include "BDR_imagepaint.h"
93 #include "BDR_vpaint.h"
95 #include "RE_pipeline.h" /* RE_ free stuff */
99 #include "BPY_extern.h"
101 #include "SYS_System.h"
105 #include "wm_files.h"
106 #include "wm_window.h"
108 static void initbuttons(void)
110 // uiDefFont(UI_HELVB,
111 // BMF_GetFont(BMF_kHelveticaBold14),
112 // BMF_GetFont(BMF_kHelveticaBold12),
113 // BMF_GetFont(BMF_kHelveticaBold10),
114 // BMF_GetFont(BMF_kHelveticaBold8));
115 // uiDefFont(UI_HELV,
116 // BMF_GetFont(BMF_kHelvetica12),
117 // BMF_GetFont(BMF_kHelvetica12),
118 // BMF_GetFont(BMF_kHelvetica10),
119 // BMF_GetFont(BMF_kHelveticaBold8));
121 // glClearColor(.7f, .7f, .6f, 0.0);
123 G.font= BMF_GetFont(BMF_kHelvetica12);
124 G.fonts= BMF_GetFont(BMF_kHelvetica10);
125 G.fontss= BMF_GetFont(BMF_kHelveticaBold8);
127 // clear_matcopybuf(); /* XXX */
129 // glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
133 static void sound_init_listener(void)
135 G.listener = MEM_callocN(sizeof(bSoundListener), "soundlistener");
136 G.listener->gain = 1.0;
137 G.listener->dopplerfactor = 1.0;
138 G.listener->dopplervelocity = 340.29f;
141 /* only called once, for startup */
142 void WM_init(bContext *C)
145 wm_ghost_init(C); /* note: it assigns C to ghost! */
146 wm_operatortype_init();
148 set_free_windowmanager_cb(wm_close_and_free); /* library.c */
150 /* get the default database, plus a wm */
151 WM_read_homefile(C, 0);
153 wm_check(C); /* opens window(s), checks keymaps */
155 // initscreen(); /* for (visual) speed, this first, then setscreen */
158 sound_init_listener();
159 // init_node_butfuncs();
161 // XXX BIF_preview_init_dbase();
164 // XXX BIF_resources_init(); /* after homefile, to dynamically load an icon file based on theme settings */
166 // XXX BIF_filelist_init_icons();
168 // init_gl_stuff(); /* drawview.c, after homefile */
170 BLI_strncpy(G.lib, G.sce, FILE_MAX);
173 /* free strings of open recent files */
174 static void free_openrecent(void)
176 struct RecentFile *recent;
178 for(recent = G.recent_files.first; recent; recent=recent->next)
179 MEM_freeN(recent->filename);
181 BLI_freelistN(&(G.recent_files));
187 extern ListBase editNurb;
188 extern ListBase editelems;
189 extern wchar_t *copybuf;
190 extern wchar_t *copybufinfo;
192 /* called in creator.c even... tsk, split this! */
193 void WM_exit(bContext *C)
195 wm_operatortype_free();
197 free_ttfont(); /* bke_font.h */
200 end_all_verse_sessions();
207 // if (G.background == 0)
208 // sound_end_all_sounds();
211 if(G.obedit->type==OB_FONT) {
214 // else if(G.obedit->type==OB_MBALL) BLI_freelistN(&editelems);
215 // free_editMesh(G.editMesh);
219 // free_editArmature();
222 /* before free_blender so py's gc happens while library still exists */
223 /* needed at least for a rare sigsegv that can happen in pydrivers */
226 // fastshade_free_render(); /* shaded view */
227 free_blender(); /* blender.c, does entire library */
228 // free_matcopybuf();
229 // free_ipocopybuf();
230 // free_actcopybuf();
231 // free_vertexpaint();
232 // free_imagepaint();
234 /* editnurb can remain to exist outside editmode */
235 freeNurblist(&editNurb);
240 // free_languagemenu();
247 // sound_exit_audio();
248 if(G.listener) MEM_freeN(G.listener);
253 #ifdef WITH_QUICKTIME
258 // XXX BIF_resources_free();
260 // XXX BIF_filelist_free_icons();
267 // if (copybuf) MEM_freeN(copybuf);
268 // if (copybufinfo) MEM_freeN(copybufinfo);
270 /* undo free stuff */
271 // undo_editmode_clear();
273 BKE_undo_save_quit(); // saves quit.blend if global undo is on
276 BLI_freelistN(&U.themes);
277 // XXX BIF_preview_free_dbase();
282 printf("Error Totblock: %d\n",totblock);
285 // delete_autosave();
287 printf("\nBlender quit\n");
290 /* ask user to press enter when in debug mode */
292 printf("press enter key to exit...\n\n");
298 SYS_DeleteSystem(SYS_GetSystem());