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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
21 * All rights reserved.
23 * Contributor(s): Blender Foundation 2007
25 * ***** END GPL LICENSE BLOCK *****
28 /* placed up here because of crappy
35 #include <windows.h> /* need to include windows.h so _WIN32_IE is defined */
37 #define _WIN32_IE 0x0400 /* minimal requirements for SHGetSpecialFolderPath on MINGW MSVC has this defined already */
39 #include <shlobj.h> /* for SHGetSpecialFolderPath, has to be done before BLI_winstuff because 'near' is disabled through BLI_windstuff */
40 #include <process.h> /* getpid */
41 #include "BLI_winstuff.h"
43 #include <unistd.h> /* getpid */
46 #include "MEM_guardedalloc.h"
47 #include "MEM_CacheLimiterC-Api.h"
49 #include "BLI_blenlib.h"
50 #include "BLI_linklist.h"
52 #include "DNA_anim_types.h"
53 #include "DNA_ipo_types.h" // XXX old animation system
54 #include "DNA_object_types.h"
55 #include "DNA_space_types.h"
56 #include "DNA_userdef_types.h"
57 #include "DNA_scene_types.h"
58 #include "DNA_screen_types.h"
59 #include "DNA_windowmanager_types.h"
61 #include "BKE_blender.h"
62 #include "BKE_context.h"
63 #include "BKE_DerivedMesh.h"
64 #include "BKE_exotic.h"
66 #include "BKE_global.h"
67 #include "BKE_library.h"
69 #include "BKE_packedFile.h"
70 #include "BKE_report.h"
71 #include "BKE_sound.h"
72 #include "BKE_texture.h"
73 #include "BKE_utildefines.h"
75 #include "BLO_readfile.h"
76 #include "BLO_writefile.h"
78 #include "RNA_access.h"
79 #include "RNA_define.h"
81 #include "ED_datafiles.h"
82 #include "ED_object.h"
83 #include "ED_screen.h"
84 #include "ED_sculpt.h"
87 #include "GHOST_C-api.h"
89 #include "UI_interface.h"
93 #include "BPY_extern.h"
98 #include "wm_window.h"
99 #include "wm_event_system.h"
101 static void writeBlog(void);
103 /* To be able to read files without windows closing, opening, moving
104 we try to prepare for worst case:
105 - active window gets active screen from file
106 - restoring the screens from non-active windows
107 Best case is all screens match, in that case they get assigned to proper window
109 static void wm_window_match_init(bContext *C, ListBase *wmlist)
111 wmWindowManager *wm= G.main->wm.first;
112 wmWindow *win, *active_win;
115 G.main->wm.first= G.main->wm.last= NULL;
117 active_win = CTX_wm_window(C);
119 /* first wrap up running stuff */
120 /* code copied from wm_init_exit.c */
121 for(wm= wmlist->first; wm; wm= wm->id.next) {
123 WM_jobs_stop_all(wm);
125 for(win= wm->windows.first; win; win= win->next) {
127 CTX_wm_window_set(C, win); /* needed by operator close callbacks */
128 WM_event_remove_handlers(C, &win->handlers);
129 WM_event_remove_handlers(C, &win->modalhandlers);
130 ED_screen_exit(C, win, win->screen);
134 /* reset active window */
135 CTX_wm_window_set(C, active_win);
141 if(G.fileflags & G_FILE_NO_UI) return;
143 /* we take apart the used screens from non-active window */
144 for(win= wm->windows.first; win; win= win->next) {
145 BLI_strncpy(win->screenname, win->screen->id.name, MAX_ID_NAME);
146 if(win!=wm->winactive) {
147 BLI_remlink(&G.main->screen, win->screen);
148 //BLI_addtail(screenbase, win->screen);
153 /* match old WM with new, 4 cases:
154 1- no current wm, no read wm: make new default
155 2- no current wm, but read wm: that's OK, do nothing
156 3- current wm, but not in file: try match screen names
157 4- current wm, and wm in file: try match ghostwin
160 static void wm_window_match_do(bContext *C, ListBase *oldwmlist)
162 wmWindowManager *oldwm, *wm;
163 wmWindow *oldwin, *win;
166 if(oldwmlist->first==NULL) {
167 if(G.main->wm.first); /* nothing todo */
174 /* we've read file without wm..., keep current one entirely alive */
175 if(G.main->wm.first==NULL) {
176 bScreen *screen= CTX_wm_screen(C);
178 /* match oldwm to new dbase, only old files */
180 for(wm= oldwmlist->first; wm; wm= wm->id.next) {
182 for(win= wm->windows.first; win; win= win->next) {
183 /* all windows get active screen from file */
187 win->screen= ED_screen_duplicate(win, screen);
189 BLI_strncpy(win->screenname, win->screen->id.name+2, 21);
190 win->screen->winid= win->winid;
194 G.main->wm= *oldwmlist;
196 /* screens were read from file! */
197 ED_screens_initialize(G.main->wm.first);
200 /* what if old was 3, and loaded 1? */
201 /* this code could move to setup_appdata */
202 oldwm= oldwmlist->first;
203 wm= G.main->wm.first;
205 /* ensure making new keymaps and set space types */
209 /* only first wm in list has ghostwins */
210 for(win= wm->windows.first; win; win= win->next) {
211 for(oldwin= oldwm->windows.first; oldwin; oldwin= oldwin->next) {
213 if(oldwin->winid == win->winid ) {
214 win->ghostwin= oldwin->ghostwin;
215 win->active= oldwin->active;
219 GHOST_SetWindowUserData(win->ghostwin, win); /* pointer back */
220 oldwin->ghostwin= NULL;
222 win->eventstate= oldwin->eventstate;
223 oldwin->eventstate= NULL;
225 /* ensure proper screen rescaling */
226 win->sizex= oldwin->sizex;
227 win->sizey= oldwin->sizey;
228 win->posx= oldwin->posx;
229 win->posy= oldwin->posy;
233 wm_close_and_free_all(C, oldwmlist);
238 /* in case UserDef was read, we re-initialize all, and do versioning */
239 static void wm_init_userdef(bContext *C)
242 MEM_CacheLimiter_set_maximum(U.memcachelimit * 1024 * 1024);
243 sound_init(CTX_data_main(C));
246 void WM_read_file(bContext *C, char *name, ReportList *reports)
250 /* first try to append data from exotic file formats... */
251 /* it throws error box when file doesnt exist and returns -1 */
252 /* note; it should set some error message somewhere... (ton) */
253 retval= BKE_read_exotic(CTX_data_scene(C), name);
255 /* we didn't succeed, now try to read Blender file */
259 /* put aside screens to match with persistant windows later */
260 /* also exit screens and editors */
261 wm_window_match_init(C, &wmbase);
263 retval= BKE_read_file(C, name, NULL, reports);
266 /* match the read WM with current WM */
267 wm_window_match_do(C, &wmbase);
268 WM_check(C); /* opens window(s), checks keymaps */
270 // XXX mainwindow_set_filename_to_title(G.main->name);
272 if(retval==2) wm_init_userdef(C); // in case a userdef is read from regular .blend
279 // XXX undo_editmode_clear();
281 BKE_write_undo(C, "original"); /* save current state */
283 WM_event_add_notifier(C, NC_WM|ND_FILEREAD, NULL);
284 // refresh_interface_font();
286 CTX_wm_window_set(C, NULL); /* exits queues */
287 #ifndef DISABLE_PYTHON
288 /* run any texts that were loaded in and flagged as modules */
289 BPY_load_user_modules(C);
293 BKE_write_undo(C, "Import file");
294 else if(retval == -1) {
296 BKE_reportf(reports, RPT_ERROR, "Can't read file \"%s\".", name);
301 /* called on startup, (context entirely filled with NULLs) */
302 /* or called for 'New File' */
304 int WM_read_homefile(bContext *C, wmOperator *op)
307 char tstr[FILE_MAXDIR+FILE_MAXFILE], scestr[FILE_MAXDIR];
308 char *home= BLI_gethome();
309 int from_memory= op?RNA_boolean_get(op->ptr, "factory"):0;
314 free_ttfont(); /* still weird... what does it here? */
318 BLI_make_file_string(G.sce, tstr, home, ".B25.blend");
320 strcpy(scestr, G.sce); /* temporary store */
322 /* prevent loading no UI */
323 G.fileflags &= ~G_FILE_NO_UI;
325 /* put aside screens to match with persistant windows later */
326 wm_window_match_init(C, &wmbase);
328 if (!from_memory && BLI_exists(tstr)) {
329 success = BKE_read_file(C, tstr, NULL, NULL);
331 success = BKE_read_file_from_memory(C, datatoc_B_blend, datatoc_B_blend_size, NULL, NULL);
332 if (wmbase.first == NULL) wm_clear_default_size(C);
335 /* match the read WM with current WM */
336 wm_window_match_do(C, &wmbase);
337 WM_check(C); /* opens window(s), checks keymaps */
339 strcpy(G.sce, scestr); /* restore */
343 /* When loading factory settings, the reset solid OpenGL lights need to be applied. */
344 if (!G.background) GPU_default_lights();
347 G.save_over = 0; // start with save preference untitled.blend
348 G.fileflags &= ~G_FILE_AUTOPLAY; /* disable autoplay in .B.blend... */
349 // mainwindow_set_filename_to_title(""); // empty string re-initializes title to "Blender"
351 // refresh_interface_font();
353 // undo_editmode_clear();
355 BKE_write_undo(C, "original"); /* save current state */
357 WM_event_add_notifier(C, NC_WM|ND_FILEREAD, NULL);
358 CTX_wm_window_set(C, NULL); /* exits queues */
360 return OPERATOR_FINISHED;
368 struct RecentFile *recent;
372 BLI_make_file_string("/", name, BLI_gethome(), ".Blog");
373 lines= BLI_read_file_as_lines(name);
375 G.recent_files.first = G.recent_files.last = NULL;
377 /* read list of recent opend files from .Blog to memory */
378 for (l= lines, num= 0; l && (num<U.recent_files); l= l->next) {
380 if (line[0] && BLI_exists(line)) {
382 strcpy(G.sce, line); /* note: this seems highly dodgy since the file isnt actually read. please explain. - campbell */
384 recent = (RecentFile*)MEM_mallocN(sizeof(RecentFile),"RecentFile");
385 BLI_addtail(&(G.recent_files), recent);
386 recent->filename = (char*)MEM_mallocN(sizeof(char)*(strlen(line)+1), "name of file");
387 recent->filename[0] = '\0';
389 strcpy(recent->filename, line);
395 BLI_make_file_string("/", G.sce, BLI_gethome(), "untitled.blend");
397 BLI_free_file_lines(lines);
401 static void writeBlog(void)
403 struct RecentFile *recent, *next_recent;
404 char name[FILE_MAXDIR+FILE_MAXFILE];
408 BLI_make_file_string("/", name, BLI_gethome(), ".Blog");
410 recent = G.recent_files.first;
411 /* refresh .Blog of recent opened files, when current file was changed */
412 if(!(recent) || (strcmp(recent->filename, G.sce)!=0)) {
413 fp= fopen(name, "w");
415 /* add current file to the beginning of list */
416 recent = (RecentFile*)MEM_mallocN(sizeof(RecentFile),"RecentFile");
417 recent->filename = (char*)MEM_mallocN(sizeof(char)*(strlen(G.sce)+1), "name of file");
418 recent->filename[0] = '\0';
419 strcpy(recent->filename, G.sce);
420 BLI_addhead(&(G.recent_files), recent);
421 /* write current file to .Blog */
422 fprintf(fp, "%s\n", recent->filename);
423 recent = recent->next;
425 /* write rest of recent opened files to .Blog */
426 while((i<U.recent_files) && (recent)){
427 /* this prevents to have duplicities in list */
428 if (strcmp(recent->filename, G.sce)!=0) {
429 fprintf(fp, "%s\n", recent->filename);
430 recent = recent->next;
433 next_recent = recent->next;
434 MEM_freeN(recent->filename);
435 BLI_freelinkN(&(G.recent_files), recent);
436 recent = next_recent;
445 static void do_history(char *name, ReportList *reports)
447 char tempname1[FILE_MAXDIR+FILE_MAXFILE], tempname2[FILE_MAXDIR+FILE_MAXFILE];
448 int hisnr= U.versions;
450 if(U.versions==0) return;
451 if(strlen(name)<2) return;
454 sprintf(tempname1, "%s%d", name, hisnr-1);
455 sprintf(tempname2, "%s%d", name, hisnr);
457 if(BLI_rename(tempname1, tempname2))
458 BKE_report(reports, RPT_ERROR, "Unable to make version backup");
463 /* is needed when hisnr==1 */
464 sprintf(tempname1, "%s%d", name, hisnr);
466 if(BLI_rename(name, tempname1))
467 BKE_report(reports, RPT_ERROR, "Unable to make version backup");
470 void WM_write_file(bContext *C, char *target, int fileflags, ReportList *reports)
476 len = strlen(target);
478 if (len == 0) return;
479 if (len >= FILE_MAX) {
480 BKE_report(reports, RPT_ERROR, "Path too long, cannot save");
484 /* send the OnSave event */
485 for (li= G.main->library.first; li; li= li->id.next) {
486 if (BLI_streq(li->name, target)) {
487 BKE_report(reports, RPT_ERROR, "Cannot overwrite used library");
492 if (!BLO_has_bfile_extension(target) && (len+6 < FILE_MAX)) {
493 sprintf(di, "%s.blend", target);
498 // if (BLI_exists(di)) {
499 // XXX if(!saveover(di))
503 if (G.fileflags & G_AUTOPACK) {
504 packAll(G.main, reports);
507 ED_object_exit_editmode(C, EM_DO_UNDO);
508 ED_sculpt_force_update(C);
510 do_history(di, reports);
512 if (BLO_write_file(CTX_data_main(C), di, fileflags, reports)) {
515 strcpy(G.main->name, di); /* is guaranteed current file */
517 G.save_over = 1; /* disable untitled.blend convention */
519 if(fileflags & G_FILE_COMPRESS) G.fileflags |= G_FILE_COMPRESS;
520 else G.fileflags &= ~G_FILE_COMPRESS;
525 // XXX waitcursor(0);
529 int WM_write_homefile(bContext *C, wmOperator *op)
531 wmWindowManager *wm= CTX_wm_manager(C);
532 wmWindow *win= CTX_wm_window(C);
533 char tstr[FILE_MAXDIR+FILE_MAXFILE];
536 /* check current window and close it if temp */
537 if(win->screen->full == SCREENTEMP)
538 wm_window_close(C, wm, win);
540 BLI_make_file_string("/", tstr, BLI_gethome(), ".B25.blend");
542 /* force save as regular blend file */
543 fileflags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN);
545 BLO_write_file(CTX_data_main(C), tstr, fileflags, op->reports);
549 return OPERATOR_FINISHED;
552 /************************ autosave ****************************/
554 void wm_autosave_location(char *filename)
559 char savedir[FILE_MAXDIR];
562 sprintf(pidstr, "%d.blend", abs(getpid()));
565 if (!BLI_exists(U.tempdir)) {
566 BLI_strncpy(subdir, "autosave", sizeof(subdir));
567 BLI_make_file_string("/", savedir, BLI_gethome(), subdir);
569 /* create a new autosave dir
570 * function already checks for existence or not */
571 BLI_recurdir_fileops(savedir);
573 BLI_make_file_string("/", filename, savedir, pidstr);
578 BLI_make_file_string("/", filename, U.tempdir, pidstr);
581 void WM_autosave_init(wmWindowManager *wm)
583 wm_autosave_timer_ended(wm);
585 if(U.flag & USER_AUTOSAVE)
586 wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, U.savetime*60.0);
589 void wm_autosave_timer(const bContext *C, wmWindowManager *wm, wmTimer *wt)
592 wmEventHandler *handler;
593 char filename[FILE_MAX];
596 WM_event_remove_timer(wm, NULL, wm->autosavetimer);
598 /* if a modal operator is running, don't autosave, but try again in 10 seconds */
599 for(win=wm->windows.first; win; win=win->next) {
600 for(handler=win->modalhandlers.first; handler; handler=handler->next) {
602 wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, 10.0);
608 wm_autosave_location(filename);
610 /* force save as regular blend file */
611 fileflags = G.fileflags & ~(G_FILE_COMPRESS|G_FILE_LOCK|G_FILE_SIGN);
613 /* no error reporting to console */
614 BLO_write_file(CTX_data_main(C), filename, fileflags, NULL);
616 /* do timer after file write, just in case file write takes a long time */
617 wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, U.savetime*60.0);
620 void wm_autosave_timer_ended(wmWindowManager *wm)
622 if(wm->autosavetimer) {
623 WM_event_remove_timer(wm, NULL, wm->autosavetimer);
624 wm->autosavetimer= NULL;
628 void wm_autosave_delete(void)
630 char filename[FILE_MAX];
632 wm_autosave_location(filename);
634 if(BLI_exists(filename)) {
635 char str[FILE_MAXDIR+FILE_MAXFILE];
636 BLI_make_file_string("/", str, U.tempdir, "quit.blend");
638 /* if global undo; remove tempsave, otherwise rename */
639 if(U.uiflag & USER_GLOBALUNDO) BLI_delete(filename, 0, 0);
640 else BLI_rename(filename, str);
644 void wm_autosave_read(bContext *C, ReportList *reports)
646 char filename[FILE_MAX];
648 wm_autosave_location(filename);
649 WM_read_file(C, filename, reports);