/** * $Id$ * * ***** BEGIN GPL/BL DUAL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. The Blender * Foundation also sells licenses for use in proprietary software under * the Blender License. See http://www.blender.org/BL/ for information * about this. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. * All rights reserved. * * The Original Code is: all of this file. * * Contributor(s): none yet. * * ***** END GPL/BL DUAL LICENSE BLOCK ***** */ /* placed up here because of crappy * winsock stuff. */ #include #include #include #ifdef HAVE_CONFIG_H #include #endif #ifdef WIN32 #include "BLI_winstuff.h" #include /* getpid */ #else #include /* getpid */ #endif #include "MEM_guardedalloc.h" #include "BMF_Api.h" #ifdef INTERNATIONAL #include "BIF_language.h" #include "FTF_Api.h" #endif #include "BLI_blenlib.h" #include "BLI_arithb.h" #include "BLI_linklist.h" #include "IMB_imbuf_types.h" #include "IMB_imbuf.h" #include "DNA_object_types.h" #include "DNA_space_types.h" #include "DNA_userdef_types.h" #include "DNA_sound_types.h" #include "BKE_blender.h" #include "BKE_curve.h" #include "BKE_displist.h" #include "BKE_exotic.h" #include "BKE_font.h" #include "BKE_global.h" #include "BKE_main.h" #include "BKE_mball.h" #include "BKE_packedFile.h" #include "BKE_utildefines.h" #include "BIF_fsmenu.h" #include "BIF_gl.h" #include "BIF_interface.h" #include "BIF_usiblender.h" #include "BIF_drawtext.h" #include "BIF_editarmature.h" #include "BIF_editlattice.h" #include "BIF_editfont.h" #include "BIF_editmesh.h" #include "BIF_editmode_undo.h" #include "BIF_editsound.h" #include "BIF_renderwin.h" #include "BIF_resources.h" #include "BIF_screen.h" #include "BIF_space.h" #include "BIF_toolbox.h" #include "BIF_cursors.h" #include "BSE_drawview.h" #include "BSE_headerbuttons.h" #include "BSE_editipo.h" #include "BSE_editaction.h" #include "BSE_filesel.h" #include "BSE_edit.h" #include "BLO_readfile.h" #include "BLO_writefile.h" #include "BDR_drawobject.h" #include "BDR_editobject.h" #include "BDR_editcurve.h" #include "BDR_vpaint.h" #include "BPY_extern.h" #include "blendef.h" #include "radio.h" #include "render.h" // RE_ free stuff #include "datatoc.h" #include "SYS_System.h" #include "PIL_time.h" /***/ /* patching UserDef struct, set globals for UI stuff */ static void init_userdef_file(void) { BIF_InitTheme(); // sets default again mainwindow_set_filename_to_title(""); // empty string re-initializes title to "Blender" countall(); G.save_over = 0; // start with save preference untitled.blend /* disable autoplay in .B.blend... */ G.fileflags &= ~G_FILE_AUTOPLAY; /* the UserDef struct is not corrected with do_versions() .... ugh! */ if(U.wheellinescroll == 0) U.wheellinescroll = 3; if(U.menuthreshold1==0) { U.menuthreshold1= 5; U.menuthreshold2= 2; } if(U.tb_leftmouse==0) { U.tb_leftmouse= 5; U.tb_rightmouse= 5; } if(U.mixbufsize==0) U.mixbufsize= 2048; if (BLI_streq(U.tempdir, "/")) { char *tmp= getenv("TEMP"); strcpy(U.tempdir, tmp?tmp:"/tmp/"); } if (U.savetime <= 0) { U.savetime = 1; error(".B.blend is buggy, please consider removing it.\n"); } if (G.main->versionfile <= 191) { strcpy(U.plugtexdir, U.textudir); strcpy(U.sounddir, "/"); } /* patch to set Dupli Armature */ if (G.main->versionfile < 220) { U.dupflag |= USER_DUP_ARM; } /* userdef new option */ if (G.main->versionfile <= 222) { U.vrmlflag= USER_VRML_LAYERS; } /* added seam, normal color, undo */ if (G.main->versionfile <= 234) { bTheme *btheme; U.uiflag |= USER_GLOBALUNDO; for(btheme= U.themes.first; btheme; btheme= btheme->next) { /* check for alpha==0 is safe, then color was never set */ if(btheme->tv3d.edge_seam[3]==0) { btheme->tv3d.edge_seam[0]= 230; btheme->tv3d.edge_seam[1]= 150; btheme->tv3d.edge_seam[2]= 50; btheme->tv3d.edge_seam[3]= 255; } if(btheme->tv3d.normal[3]==0) { btheme->tv3d.normal[0]= 0x22; btheme->tv3d.normal[1]= 0xDD; btheme->tv3d.normal[2]= 0xDD; btheme->tv3d.normal[3]= 255; } if(btheme->tv3d.face_dot[3]==0) { btheme->tv3d.face_dot[0]= 255; btheme->tv3d.face_dot[1]= 138; btheme->tv3d.face_dot[2]= 48; btheme->tv3d.face_dot[3]= 255; btheme->tv3d.facedot_size= 4; } } } if (G.main->versionfile <= 235) { /* illegal combo... */ if (U.flag & USER_LMOUSESELECT) U.flag &= ~USER_TWOBUTTONMOUSE; } if (U.undosteps==0) U.undosteps=32; reset_autosave(); #ifdef INTERNATIONAL read_languagefile(); if(U.transopts & USER_DOTRANSLATE) start_interface_font(); else G.ui_international = FALSE; #endif // INTERNATIONAL } void BIF_read_file(char *name) { extern short winqueue_break; /* editscreen.c */ //here? //sound_end_all_sounds(); // first try to read exotic file formats... if (BKE_read_exotic(name) == 0) { /* throws first error box */ /* we didn't succeed, now try to read Blender file calls readfile, calls toolbox, throws one more, on failure calls the stream, and that is stubbed.... */ int retval= BKE_read_file(name, NULL); mainwindow_set_filename_to_title(G.main->name); countall(); sound_initialize_sounds(); winqueue_break= 1; /* leave queues everywhere */ if(retval==2) init_userdef_file(); // in case a userdef is read from regular .blend undo_editmode_clear(); BKE_reset_undo(); BKE_write_undo("original"); /* save current state */ } else BIF_undo_push("Import file"); } /* only here settings for fullscreen */ int BIF_read_homefile(void) { char tstr[FILE_MAXDIR+FILE_MAXFILE], scestr[FILE_MAXDIR]; char *home= BLI_gethome(); int success; #ifdef _WIN32 // FULLSCREEN static int screenmode = -1; screenmode = U.uiflag & USER_FLIPFULLSCREEN; #endif BLI_make_file_string(G.sce, tstr, home, ".B.blend"); strcpy(scestr, G.sce); /* temporal store */ /* prevent loading no UI */ G.fileflags &= ~G_FILE_NO_UI; if (BLI_exists(tstr)) { success = BKE_read_file(tstr, NULL); } else { success = BKE_read_file_from_memory(datatoc_B_blend, datatoc_B_blend_size, NULL); } strcpy(G.sce, scestr); #ifdef _WIN32 // FULLSCREEN /* choose window startmode */ switch (G.windowstate){ case G_WINDOWSTATE_USERDEF: /* use the usersetting */ break; case G_WINDOWSTATE_FULLSCREEN: /* force fullscreen */ U.uiflag |= USER_FLIPFULLSCREEN; break; case G_WINDOWSTATE_BORDER: /* force with borders */ U.uiflag &= ~USER_FLIPFULLSCREEN; } if(screenmode != (U.uiflag & USER_FLIPFULLSCREEN)) { mainwindow_toggle_fullscreen ((U.uiflag & USER_FLIPFULLSCREEN)); screenmode = (U.uiflag & USER_FLIPFULLSCREEN); } #endif space_set_commmandline_options(); init_userdef_file(); undo_editmode_clear(); BKE_reset_undo(); BKE_write_undo("original"); /* save current state */ return success; } static void get_autosave_location(char buf[FILE_MAXDIR+FILE_MAXFILE]) { char pidstr[32]; sprintf(pidstr, "%d.blend", abs(getpid())); BLI_make_file_string("/", buf, U.tempdir, pidstr); } void BIF_read_autosavefile(void) { char tstr[FILE_MAXDIR+FILE_MAXFILE], scestr[FILE_MAXDIR]; int save_over; strcpy(scestr, G.sce); /* temporal store */ get_autosave_location(tstr); save_over = G.save_over; BKE_read_file(tstr, NULL); G.save_over = save_over; strcpy(G.sce, scestr); } /***/ static void readBlog(void) { char name[FILE_MAXDIR+FILE_MAXFILE]; LinkNode *l, *lines; BLI_make_file_string("/", name, BLI_gethome(), ".Blog"); lines= BLI_read_file_as_lines(name); if (lines && !BLI_streq(lines->link, "")) { strcpy(G.sce, lines->link); } else { BLI_make_file_string("/", G.sce, BLI_gethome(), "untitled.blend"); } BLI_free_file_lines(lines); #ifdef WIN32 /* Add the drive names to the listing */ { __int64 tmp; char tmps[4]; int i; tmp= GetLogicalDrives(); for (i=2; i < 26; i++) { if ((tmp>>i) & 1) { tmps[0]='a'+i; tmps[1]=':'; tmps[2]='\\'; tmps[3]=0; fsmenu_insert_entry(tmps, 0); } } fsmenu_append_seperator(); } #endif BLI_make_file_string(G.sce, name, BLI_gethome(), ".Bfs"); lines= BLI_read_file_as_lines(name); for (l= lines; l; l= l->next) { char *line= l->link; if (!BLI_streq(line, "")) { fsmenu_insert_entry(line, 0); } } fsmenu_append_seperator(); BLI_free_file_lines(lines); } static void writeBlog(void) { char name[FILE_MAXDIR+FILE_MAXFILE]; FILE *fp; BLI_make_file_string("/", name, BLI_gethome(), ".Blog"); fp= fopen(name, "w"); if (fp) { fprintf(fp, G.sce); fclose(fp); } } static void do_history(char *name) { char tempname1[FILE_MAXDIR+FILE_MAXFILE], tempname2[FILE_MAXDIR+FILE_MAXFILE]; int hisnr= U.versions; if(U.versions==0) return; if(strlen(name)<2) return; while( hisnr > 1) { sprintf(tempname1, "%s%d", name, hisnr-1); sprintf(tempname2, "%s%d", name, hisnr); if(BLI_rename(tempname1, tempname2)) error("Unable to make version backup"); hisnr--; } /* is needed when hisnr==1 */ sprintf(tempname1, "%s%d", name, hisnr); if(BLI_rename(name, tempname1)) error("Unable to make version backup"); } void BIF_write_file(char *target) { Library *li; char di[FILE_MAXDIR]; char *err; if (BLI_streq(target, "")) return; /*Send the OnSave event*/ if (G.f & G_SCENESCRIPT) { BPY_do_pyscript(&G.scene->id, SCRIPT_ONSAVE); } for (li= G.main->library.first; li; li= li->id.next) { if (BLI_streq(li->name, target)) { error("Cannot overwrite used library"); return; } } if (!BLO_has_bfile_extension(target)) { sprintf(di, "%s.blend", target); } else { strcpy(di, target); } if (BLI_exists(di)) { if(!saveover(di)) return; } waitcursor(1); if(G.obedit) { exit_editmode(0); /* 0 = no free data */ } if (G.fileflags & G_AUTOPACK) { packAll(); } do_history(di); if (BLO_write_file(di, G.fileflags, &err)) { strcpy(G.sce, di); strcpy(G.main->name, di); /* is guaranteed current file */ mainwindow_set_filename_to_title(G.main->name); G.save_over = 1; writeBlog(); } else { error("%s", err); } waitcursor(0); } void BIF_write_homefile(void) { char *err, tstr[FILE_MAXDIR+FILE_MAXFILE]; int write_flags; BLI_make_file_string("/", tstr, BLI_gethome(), ".B.blend"); /* force save as regular blend file */ write_flags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN); BLO_write_file(tstr, write_flags, &err); } void BIF_write_autosave(void) { char *err, tstr[FILE_MAXDIR+FILE_MAXFILE]; int write_flags; get_autosave_location(tstr); /* force save as regular blend file */ write_flags = G.fileflags & ~(G_FILE_COMPRESS | G_FILE_LOCK | G_FILE_SIGN); BLO_write_file(tstr, write_flags, &err); } /* if global undo; remove tempsave, otherwise rename */ static void delete_autosave(void) { char tstr[FILE_MAXDIR+FILE_MAXFILE]; get_autosave_location(tstr); if (BLI_exists(tstr)) { char str[FILE_MAXDIR+FILE_MAXFILE]; BLI_make_file_string("/", str, U.tempdir, "quit.blend"); if(U.uiflag & USER_GLOBALUNDO) BLI_delete(tstr, 0, 0); else BLI_rename(tstr, str); } } /***/ static void initbuttons(void) { uiDefFont(UI_HELVB, BMF_GetFont(BMF_kHelveticaBold14), BMF_GetFont(BMF_kHelveticaBold12), BMF_GetFont(BMF_kHelveticaBold10), BMF_GetFont(BMF_kHelveticaBold8)); uiDefFont(UI_HELV, BMF_GetFont(BMF_kHelvetica12), BMF_GetFont(BMF_kHelvetica12), BMF_GetFont(BMF_kHelvetica10), BMF_GetFont(BMF_kHelveticaBold8)); BIF_resources_init(); glClearColor(.7, .7, .6, 0.0); G.font= BMF_GetFont(BMF_kHelvetica12); G.fonts= BMF_GetFont(BMF_kHelvetica10); G.fontss= BMF_GetFont(BMF_kHelveticaBold8); clear_matcopybuf(); } static void sound_init_listener(void) { G.listener = MEM_callocN(sizeof(bSoundListener), "soundlistener"); G.listener->gain = 1.0; G.listener->dopplerfactor = 1.0; G.listener->dopplervelocity = 1.0; } void BIF_init(void) { initscreen(); /* for (visuele) speed, this first, then setscreen */ initbuttons(); InitCursorData(); sound_init_listener(); init_draw_rects(); /* drawobject.c */ BIF_read_homefile(); init_gl_stuff(); /* drawview.c, after homefile */ readBlog(); strcpy(G.lib, G.sce); } /***/ extern ListBase editNurb; extern ListBase editelems; void exit_usiblender(void) { freeAllRad(); BKE_freecubetable(); if (G.background == 0) sound_end_all_sounds(); if(G.obedit) { if(G.obedit->type==OB_FONT) { free_editText(); } else if(G.obedit->type==OB_MBALL) BLI_freelistN(&editelems); free_editMesh(G.editMesh); } free_editLatt(); free_editArmature(); free_posebuf(); free_blender(); /* blender.c, does entire library */ free_matcopybuf(); free_ipocopybuf(); freefastshade(); free_vertexpaint(); /* editnurb can remain to exist outside editmode */ freeNurblist(&editNurb); fsmenu_free(); #ifdef INTERNATIONAL free_languagemenu(); #endif RE_free_render_data(); free_txt_data(); sound_exit_audio(); if(G.listener) MEM_freeN(G.listener); #ifdef WITH_QUICKTIME quicktime_exit(); #endif BPY_end_python(); if (!G.background) { BIF_resources_free(); BIF_close_render_display(); mainwindow_close(); } #ifdef INTERNATIONAL FTF_End(); #endif /* undo free stuff */ undo_editmode_clear(); BKE_undo_save_quit(); // saves quit.blend if global undo is on BKE_reset_undo(); BLI_freelistN(&U.themes); if(totblock!=0) { printf("Error Totblock: %d\n",totblock); MEM_printmemlist(); } delete_autosave(); printf("\nBlender quit\n"); #ifdef WIN32 /* ask user to press enter when in debug mode */ if(G.f & G_DEBUG) { printf("press enter key to exit...\n\n"); getchar(); } #endif SYS_DeleteSystem(SYS_GetSystem()); exit(G.afbreek==1); }