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) 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"
86 #include "GHOST_C-api.h"
88 #include "UI_interface.h"
92 #include "FRS_freestyle.h"
94 // XXX #include "BPY_extern.h"
99 #include "wm_window.h"
100 #include "wm_event_system.h"
102 static void writeBlog(void);
104 /* To be able to read files without windows closing, opening, moving
105 we try to prepare for worst case:
106 - active window gets active screen from file
107 - restoring the screens from non-active windows
108 Best case is all screens match, in that case they get assigned to proper window
110 static void wm_window_match_init(bContext *C, ListBase *wmlist)
112 wmWindowManager *wm= G.main->wm.first;
116 G.main->wm.first= G.main->wm.last= NULL;
118 /* first wrap up running stuff */
119 /* code copied from wm_init_exit.c */
120 for(wm= wmlist->first; wm; wm= wm->id.next) {
122 WM_jobs_stop_all(wm);
124 for(win= wm->windows.first; win; win= win->next) {
126 CTX_wm_window_set(C, win); /* needed by operator close callbacks */
127 ED_screen_exit(C, win, win->screen);
135 if(G.fileflags & G_FILE_NO_UI) return;
137 /* we take apart the used screens from non-active window */
138 for(win= wm->windows.first; win; win= win->next) {
139 BLI_strncpy(win->screenname, win->screen->id.name, MAX_ID_NAME);
140 if(win!=wm->winactive) {
141 BLI_remlink(&G.main->screen, win->screen);
142 //BLI_addtail(screenbase, win->screen);
147 /* match old WM with new, 4 cases:
148 1- no current wm, no read wm: make new default
149 2- no current wm, but read wm: that's OK, do nothing
150 3- current wm, but not in file: try match screen names
151 4- current wm, and wm in file: try match ghostwin
154 static void wm_window_match_do(bContext *C, ListBase *oldwmlist)
156 wmWindowManager *oldwm, *wm;
157 wmWindow *oldwin, *win;
160 if(oldwmlist->first==NULL) {
161 if(G.main->wm.first); /* nothing todo */
168 /* we've read file without wm..., keep current one entirely alive */
169 if(G.main->wm.first==NULL) {
170 bScreen *screen= CTX_wm_screen(C);
172 /* match oldwm to new dbase, only old files */
174 for(wm= oldwmlist->first; wm; wm= wm->id.next) {
176 for(win= wm->windows.first; win; win= win->next) {
177 /* all windows get active screen from file */
181 win->screen= ED_screen_duplicate(win, screen);
183 BLI_strncpy(win->screenname, win->screen->id.name+2, 21);
184 win->screen->winid= win->winid;
188 G.main->wm= *oldwmlist;
190 /* screens were read from file! */
191 ED_screens_initialize(G.main->wm.first);
194 /* what if old was 3, and loaded 1? */
195 /* this code could move to setup_appdata */
196 oldwm= oldwmlist->first;
197 wm= G.main->wm.first;
199 /* ensure making new keymaps and set space types */
203 /* only first wm in list has ghostwins */
204 for(win= wm->windows.first; win; win= win->next) {
205 for(oldwin= oldwm->windows.first; oldwin; oldwin= oldwin->next) {
207 if(oldwin->winid == win->winid ) {
208 win->ghostwin= oldwin->ghostwin;
209 win->active= oldwin->active;
213 GHOST_SetWindowUserData(win->ghostwin, win); /* pointer back */
214 oldwin->ghostwin= NULL;
216 win->eventstate= oldwin->eventstate;
217 oldwin->eventstate= NULL;
219 /* ensure proper screen rescaling */
220 win->sizex= oldwin->sizex;
221 win->sizey= oldwin->sizey;
222 win->posx= oldwin->posx;
223 win->posy= oldwin->posy;
227 wm_close_and_free_all(C, oldwmlist);
232 /* in case UserDef was read, we re-initialize all, and do versioning */
233 static void wm_init_userdef()
236 MEM_CacheLimiter_set_maximum(U.memcachelimit * 1024 * 1024);
240 void WM_read_file(bContext *C, char *name, ReportList *reports)
244 /* first try to append data from exotic file formats... */
245 /* it throws error box when file doesnt exist and returns -1 */
246 /* note; it should set some error message somewhere... (ton) */
247 retval= BKE_read_exotic(CTX_data_scene(C), name);
249 /* we didn't succeed, now try to read Blender file */
253 /* put aside screens to match with persistant windows later */
254 /* also exit screens and editors */
255 wm_window_match_init(C, &wmbase);
257 retval= BKE_read_file(C, name, NULL, reports);
260 /* match the read WM with current WM */
261 wm_window_match_do(C, &wmbase);
262 wm_check(C); /* opens window(s), checks keymaps */
264 // XXX mainwindow_set_filename_to_title(G.main->name);
266 if(retval==2) wm_init_userdef(); // in case a userdef is read from regular .blend
275 // XXX undo_editmode_clear();
277 BKE_write_undo(C, "original"); /* save current state */
279 WM_event_add_notifier(C, NC_WM|ND_FILEREAD, NULL);
280 // refresh_interface_font();
282 CTX_wm_window_set(C, NULL); /* exits queues */
285 BKE_write_undo(C, "Import file");
286 else if(retval == -1) {
287 if(reports && reports->list.first == NULL)
288 BKE_report(reports, RPT_ERROR, "Cannot read file.");
293 /* called on startup, (context entirely filled with NULLs) */
294 /* or called for 'New File' */
296 int WM_read_homefile(bContext *C, wmOperator *op)
299 char tstr[FILE_MAXDIR+FILE_MAXFILE], scestr[FILE_MAXDIR];
300 char *home= BLI_gethome();
301 int from_memory= op?RNA_boolean_get(op->ptr, "factory"):0;
306 free_ttfont(); /* still weird... what does it here? */
310 BLI_make_file_string(G.sce, tstr, home, ".B25.blend");
312 strcpy(scestr, G.sce); /* temporary store */
314 /* prevent loading no UI */
315 G.fileflags &= ~G_FILE_NO_UI;
317 /* put aside screens to match with persistant windows later */
318 wm_window_match_init(C, &wmbase);
320 if (!from_memory && BLI_exists(tstr)) {
321 success = BKE_read_file(C, tstr, NULL, NULL);
323 success = BKE_read_file_from_memory(C, datatoc_B_blend, datatoc_B_blend_size, NULL, NULL);
324 if (wmbase.first == NULL) wm_clear_default_size(C);
327 /* match the read WM with current WM */
328 wm_window_match_do(C, &wmbase);
329 wm_check(C); /* opens window(s), checks keymaps */
331 strcpy(G.sce, scestr); /* restore */
337 /* When loading factory settings, the reset solid OpenGL lights need to be applied. */
338 GPU_default_lights();
341 G.save_over = 0; // start with save preference untitled.blend
342 G.fileflags &= ~G_FILE_AUTOPLAY; /* disable autoplay in .B.blend... */
343 // mainwindow_set_filename_to_title(""); // empty string re-initializes title to "Blender"
345 // refresh_interface_font();
347 // undo_editmode_clear();
349 BKE_write_undo(C, "original"); /* save current state */
351 WM_event_add_notifier(C, NC_WM|ND_FILEREAD, NULL);
352 CTX_wm_window_set(C, NULL); /* exits queues */
354 return OPERATOR_FINISHED;
362 struct RecentFile *recent;
366 BLI_make_file_string("/", name, BLI_gethome(), ".Blog");
367 lines= BLI_read_file_as_lines(name);
369 G.recent_files.first = G.recent_files.last = NULL;
371 /* read list of recent opend files from .Blog to memory */
372 for (l= lines, num= 0; l && (num<U.recent_files); l= l->next, num++) {
374 if (!BLI_streq(line, "")) {
378 recent = (RecentFile*)MEM_mallocN(sizeof(RecentFile),"RecentFile");
379 BLI_addtail(&(G.recent_files), recent);
380 recent->filename = (char*)MEM_mallocN(sizeof(char)*(strlen(line)+1), "name of file");
381 recent->filename[0] = '\0';
383 strcpy(recent->filename, line);
388 BLI_make_file_string("/", G.sce, BLI_gethome(), "untitled.blend");
390 BLI_free_file_lines(lines);
394 static void writeBlog(void)
396 struct RecentFile *recent, *next_recent;
397 char name[FILE_MAXDIR+FILE_MAXFILE];
401 BLI_make_file_string("/", name, BLI_gethome(), ".Blog");
403 recent = G.recent_files.first;
404 /* refresh .Blog of recent opened files, when current file was changed */
405 if(!(recent) || (strcmp(recent->filename, G.sce)!=0)) {
406 fp= fopen(name, "w");
408 /* add current file to the beginning of list */
409 recent = (RecentFile*)MEM_mallocN(sizeof(RecentFile),"RecentFile");
410 recent->filename = (char*)MEM_mallocN(sizeof(char)*(strlen(G.sce)+1), "name of file");
411 recent->filename[0] = '\0';
412 strcpy(recent->filename, G.sce);
413 BLI_addhead(&(G.recent_files), recent);
414 /* write current file to .Blog */
415 fprintf(fp, "%s\n", recent->filename);
416 recent = recent->next;
418 /* write rest of recent opened files to .Blog */
419 while((i<U.recent_files) && (recent)){
420 /* this prevents to have duplicities in list */
421 if (strcmp(recent->filename, G.sce)!=0) {
422 fprintf(fp, "%s\n", recent->filename);
423 recent = recent->next;
426 next_recent = recent->next;
427 MEM_freeN(recent->filename);
428 BLI_freelinkN(&(G.recent_files), recent);
429 recent = next_recent;
438 static void do_history(char *name, ReportList *reports)
440 char tempname1[FILE_MAXDIR+FILE_MAXFILE], tempname2[FILE_MAXDIR+FILE_MAXFILE];
441 int hisnr= U.versions;
443 if(U.versions==0) return;
444 if(strlen(name)<2) return;
447 sprintf(tempname1, "%s%d", name, hisnr-1);
448 sprintf(tempname2, "%s%d", name, hisnr);
450 if(BLI_rename(tempname1, tempname2))
451 BKE_report(reports, RPT_ERROR, "Unable to make version backup");
456 /* is needed when hisnr==1 */
457 sprintf(tempname1, "%s%d", name, hisnr);
459 if(BLI_rename(name, tempname1))
460 BKE_report(reports, RPT_ERROR, "Unable to make version backup");
463 void WM_write_file(bContext *C, char *target, int fileflags, ReportList *reports)
469 len = strlen(target);
471 if (len == 0) return;
472 if (len >= FILE_MAX) {
473 BKE_report(reports, RPT_ERROR, "Path too long, cannot save");
477 /* send the OnSave event */
478 for (li= G.main->library.first; li; li= li->id.next) {
479 if (BLI_streq(li->name, target)) {
480 BKE_report(reports, RPT_ERROR, "Cannot overwrite used library");
485 if (!BLO_has_bfile_extension(target) && (len+6 < FILE_MAX)) {
486 sprintf(di, "%s.blend", target);
491 // if (BLI_exists(di)) {
492 // XXX if(!saveover(di))
496 if (G.fileflags & G_AUTOPACK) {
497 packAll(G.main, reports);
500 ED_object_exit_editmode(C, EM_DO_UNDO);
502 do_history(di, reports);
504 if (BLO_write_file(CTX_data_main(C), di, fileflags, reports)) {
507 strcpy(G.main->name, di); /* is guaranteed current file */
509 G.save_over = 1; /* disable untitled.blend convention */
511 if(fileflags & G_FILE_COMPRESS) G.fileflags |= G_FILE_COMPRESS;
512 else G.fileflags &= ~G_FILE_COMPRESS;
517 // XXX waitcursor(0);
521 int WM_write_homefile(bContext *C, wmOperator *op)
523 wmWindowManager *wm= CTX_wm_manager(C);
524 wmWindow *win= CTX_wm_window(C);
525 char tstr[FILE_MAXDIR+FILE_MAXFILE];
528 /* check current window and close it if temp */
529 if(win->screen->full == SCREENTEMP)
530 wm_window_close(C, wm, win);
532 BLI_make_file_string("/", tstr, BLI_gethome(), ".B25.blend");
534 /* force save as regular blend file */
535 fileflags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN);
537 BLO_write_file(CTX_data_main(C), tstr, fileflags, op->reports);
541 return OPERATOR_FINISHED;
544 /************************ autosave ****************************/
546 void wm_autosave_location(char *filename)
551 char savedir[FILE_MAXDIR];
554 sprintf(pidstr, "%d.blend", abs(getpid()));
557 if (!BLI_exists(U.tempdir)) {
558 BLI_strncpy(subdir, "autosave", sizeof(subdir));
559 BLI_make_file_string("/", savedir, BLI_gethome(), subdir);
561 /* create a new autosave dir
562 * function already checks for existence or not */
563 BLI_recurdir_fileops(savedir);
565 BLI_make_file_string("/", filename, savedir, pidstr);
570 BLI_make_file_string("/", filename, U.tempdir, pidstr);
573 void WM_autosave_init(bContext *C)
575 wmWindowManager *wm= CTX_wm_manager(C);
576 wm_autosave_timer_ended(wm);
578 if(U.flag & USER_AUTOSAVE)
579 wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, U.savetime*60.0);
582 void wm_autosave_timer(const bContext *C, wmWindowManager *wm, wmTimer *wt)
585 wmEventHandler *handler;
586 char filename[FILE_MAX];
589 WM_event_remove_timer(wm, NULL, wm->autosavetimer);
591 /* if a modal operator is running, don't autosave, but try again in 10 seconds */
592 for(win=wm->windows.first; win; win=win->next) {
593 for(handler=win->modalhandlers.first; handler; handler=handler->next) {
595 wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, 10.0);
601 wm_autosave_location(filename);
603 /* force save as regular blend file */
604 fileflags = G.fileflags & ~(G_FILE_COMPRESS|G_FILE_LOCK|G_FILE_SIGN);
606 /* no error reporting to console */
607 BLO_write_file(CTX_data_main(C), filename, fileflags, NULL);
609 /* do timer after file write, just in case file write takes a long time */
610 wm->autosavetimer= WM_event_add_timer(wm, NULL, TIMERAUTOSAVE, U.savetime*60.0);
613 void wm_autosave_timer_ended(wmWindowManager *wm)
615 if(wm->autosavetimer) {
616 WM_event_remove_timer(wm, NULL, wm->autosavetimer);
617 wm->autosavetimer= NULL;
621 void wm_autosave_delete(void)
623 char filename[FILE_MAX];
625 wm_autosave_location(filename);
627 if(BLI_exists(filename)) {
628 char str[FILE_MAXDIR+FILE_MAXFILE];
629 BLI_make_file_string("/", str, U.tempdir, "quit.blend");
631 /* if global undo; remove tempsave, otherwise rename */
632 if(U.uiflag & USER_GLOBALUNDO) BLI_delete(filename, 0, 0);
633 else BLI_rename(filename, str);
637 void wm_autosave_read(bContext *C, ReportList *reports)
639 char filename[FILE_MAX];
641 wm_autosave_location(filename);
642 WM_read_file(C, filename, reports);