1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
|
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <strings.h>
#include <string.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdlib.h>
//NO WE USE g_assert for portability
//#include "assert.h"
#include <gtk/gtk.h>
#include "gtk-meta.h"
#ifdef USE_IMLIB
#include <gdk_imlib.h>
#else
#include <gdk-pixbuf/gdk-pixbuf.h>
#endif
#include "gdk-pixbuf-extra.h"
#include "gtktopdata.h"
#include "callbacks.h"
#include "interface.h"
#include "support.h"
#include "main.h"
#ifdef IS_PLYMORPH
#include "utils__.h"
#else
#include "utils.h"
#endif
//#include "settings.h"
#include "dialogs.h"
#include "loadsave.h"
/************************************************************************
************************************************************************
load/save hooks
see on_ok_button1_realize ()
************************************************************************
************************************************************************/
inline void
showerr(const char *file, const char *msg)
{
char *s =
g_strdup_printf( msg, file, strerror(errno));
show_error(s );
g_free(s);
}
gboolean is_null(const gchar *s)
{
if(strlen(s) == 0)
{
show_error(_("please provide a filename"));
return TRUE;
}
return FALSE;
}
/*****************************************************************************/
gboolean save_session(int ignored,
const char *file)
{
FILE *f;
int lp;
#ifdef HAVE_UNISTD_H
int c;
extern gchar *session_name;
char cwd[PATH_MAX];
getcwd(cwd,PATH_MAX);
c=strlen(cwd);
/* delete the common initial part of cwd and filename */
#define REDUCE_CWD(A) ( (strlen(A)>=(c+1) && 0==strncmp((A),cwd,c) && (A)[c] == '/' ) ? (A)+c+1:(A))
#else
#define REDUCE_CWD(A) (A)
#endif
if(is_null(file)) return FALSE;
if((f=fopen(file, "w"))==NULL) {
showerr(file, _("could not open file '%s' for write: %s") );
return FALSE;
}
if(session_name) g_free(session_name);
session_name=g_strdup(file);
fprintf(f,"<gtkmorph session>\n");
#ifdef HAVE_UNISTD_H
fprintf(f,"<cwd>\n%s\n</cwd>\n",cwd);
#endif
for(lp=1;lp<=MAX_WINS; lp++)
if(sp->im_widget[lp] != NULL)
{
if(sp->im_filename_in[lp]) {
fprintf(f,"<image>\n");
fprintf(f,"<image file in>\n%s\n</image file in>\n",
REDUCE_CWD(sp->im_filename_in[lp]));
fprintf(f,"<preserve aspect>\n%d\n</preserve aspect>\n",
image_settings_get_value("preserve aspect ratio",lp));
if(sp->im_mesh_filename[lp])
fprintf(f,"<mesh file>\n%s\n</mesh file>\n",
REDUCE_CWD(sp->im_mesh_filename[lp]));
fprintf(f,"<morph factors>\n%f %f\n</morph factors>\n",
sp->mf.im_warp_factor[lp],
sp->mf.im_dissolve_factor[lp]);
fprintf(f,"</image>\n");
}
}
fprintf(f,"<resulting_size>\n%d %d\n</resulting_size>\n",
sp->resulting_width,sp->resulting_height);
fprintf(f,"</gtkmorph session>\n");
fclose(f);
return TRUE;
}
static inline void de_n(char *s)
{ int l=strlen(s); if(s[l-1]=='\n') s[l-1]=0; }
/* did the user use it somehow? */
inline static gboolean image_used(int lp)
{
return sp->im_widget[lp] && (
#ifdef IS_PLYMORPH
sp->im_ply_surface[lp].vlist ||
sp->im_ply_labels_unsaved[lp] ||
#else
sp->im_mesh_filename[lp] ||
sp->im_mesh[lp].changed>0 ||
#endif
sp->im_filename_in[lp] ||
sp->im_filename_out[lp]);
}
static inline void close_tag(FILE *f)
{
char s[PATH_MAX+1];
fgets(s,PATH_MAX,f);
if( s[0]!='<' || s[1]!='/') {
de_n(s);
g_warning("malformed session: '%s' is not a closing tag",s);
}
}
static gboolean load_session_stanza(FILE *f)
{
int aspect=-3333, equal=0;
float a=-3333.3,b=-3333.3;
const int lens=PATH_MAX;
char s[lens+1], imagename[lens+1], meshname[lens+1];
imagename[0]=meshname[0]=0;
fgets(s,lens,f); de_n(s); /* tag? */
while( !feof(f) && 0!=strcmp(s,"</image>") ) {
/********* image tags loop *********/
if( s[0]!='<' || s[1]=='/' ) {
/* attemp syncronization */
g_warning("malformed session: '%s' is not an opening tag in image",s);
} else
if(0==strcmp(s,"<image file in>")) {
fgets(imagename,lens,f); /* file name */
de_n(imagename); close_tag(f);
} else
if( 0==strcmp(s,"<mesh file>")) {
fgets(meshname,lens,f);
de_n(meshname); close_tag(f);
} else
if( 0==strcmp(s,"<preserve aspect>")) {
fgets(s,lens,f);
sscanf(s,"%d",&aspect); close_tag(f);
} else
if( 0==strcmp(s,"<morph factors>")) {
fgets(s,lens,f);
sscanf(s,"%f %f",&a,&b); close_tag(f);
} else
g_warning("session file: line '%s' was unrecognized in image\n",s);
fgets(s,lens,f); de_n(s);/* tag? */
} /********* end image tags loop *********/
if(imagename[0]==0) {
g_warning("malformed session: no image filename");
return FALSE;
}
{/* look if it has already been loaded */
int empty=0;
{
int lp;
/* FIXME < or <= ?? */
for(lp=1;lp<MAX_WINS; lp++) {
if(sp->im_widget[lp] != NULL) {
if(sp->im_filename_in[lp] &&
0==strcmp(sp->im_filename_in[lp],imagename)) {
equal=lp;
}
/* if the user has not used this image... we reuse it */
if(!image_used(lp)) { if(!empty) empty=lp; }
} else {
if(!empty) empty=lp;
}
}
}
/* if not existent, create it now */
if(equal==0) {
if(empty==0) {
show_error(_("can't reload the full session-no more available images"));
return FALSE;
} else {
if(sp->im_widget[empty] == NULL) {
sp->max_wins++;
create_and_show_image_win(empty);
}
}
}
/* if not loaded, load it now */
if(equal==0) {
#ifdef IS_PLYMORPH
load_ply_from_file(empty,imagename);
#else
load_image_from_file(empty,imagename);
#endif
equal=empty;
}
}
if(equal==0) return TRUE;
/* aspect */
if(aspect!=-3333)
image_settings_set_value("preserve aspect ratio",equal,aspect);
/* mesh file */
if(strlen(meshname) > 0 &&
( sp->im_mesh_filename[equal]==NULL ||
0!=strcmp(sp->im_mesh_filename[equal],meshname) )) {
#ifdef IS_PLYMORPH
load_points_from_file__(equal,meshname);
#else
load_mesh_from_file(equal,meshname);
#endif
}
if(a!=-3333.3) {
sp->mf.im_warp_factor[equal]=a;
sp->mf.im_dissolve_factor[equal]=b;
}
gtk_widget_show(sp->im_widget[equal]);
return TRUE;
}
gboolean load_session(int ignored,
const char *file)
{
FILE *f;
const int lens=PATH_MAX;
char s[lens+1], cwd[lens+1];
if(is_null(file)) return FALSE;
cwd[0]=0;
if((f=fopen(file, "r"))==NULL) {
showerr(file, _("could not open file '%s' for read: %s"));
return FALSE;
}
{ int e;
#if GLIB_MAJOR_VERSION == 1
gchar * dir = g_dirname(file);
#else
gchar * dir = g_path_get_dirname (file);
#endif
e=chdir(dir);
if(e) g_critical("cannot ch dir to %s : %s",dir,strerror(e));
g_free(dir);
}
fgets(s,lens,f);
if(strcmp(s,"<gtkmorph session>\n")) {
show_error( _("parsing of session failed at first header!") );
return FALSE;
}
fgets(s,lens,f); de_n(s);
while(!feof(f) && strcmp(s,"</gtkmorph session>") ) {
/* attemp syncronization */
if( s[0]!='<' || s[1]=='/' ) {
/* attemp syncronization */
g_warning("malformed session: '%s' is not an opening tag",s);
} else
if( 0==strcmp(s,"<cwd>") ) {
fgets(cwd,lens,f); de_n(cwd);
if(chdir(cwd)) {
g_warning("Cannot change to CWD %s\n as specified in the session file",cwd);
perror("");
}
close_tag(f);
} else
if( 0==strcmp(s,"<resulting_size>") ) {
fgets(s,lens,f);
sscanf(s,"%d %d",
&sp->resulting_width_sp,&sp->resulting_height_sp);
spinbutton_res_set();
on_resulting_apply_clicked(NULL,NULL);
close_tag(f);
} else
if ( 0==strcmp(s,"<image>") ) {
load_session_stanza(f);
}
else
g_warning("session file: line '%s' was unrecognized\n",s);
fgets(s,lens,f);de_n(s);
}
if(strcmp(s,"</gtkmorph session>")) {
show_error(_("parsing of session failed"));
return FALSE;
}
// WHY? setup_handlebox_factors();
fclose(f);
return TRUE;
}
/* it looks bad: it would be nicer if done with a static inline fun...
but it must return the caller, not itself !*/
#define myfputc(F,C) \
{ \
if( EOF == fputc(C,F)) { \
showerr(file,_("\
the attempt to save the image file %s has produced error: %s")); \
return FALSE; \
} \
}
gboolean save_as_ppm(gchar *file,GdkPixbuf * pb)
{
FILE *f;
int w= gdk_pixbuf_get_width(pb);
int h= gdk_pixbuf_get_height(pb);
if( gdk_pixbuf_get_n_channels(pb) != 3) {
show_error
(g_strdup_printf
( " cant save as .ppm :-( the image has %d channels",
gdk_pixbuf_get_n_channels(pb) ));
return FALSE;
}
f = fopen(file, "wb");
if( f ==NULL)
{
showerr(file,_("\
the attempt to save the image file %s has produced error: %s"));
return FALSE;
}
/* save as ppm format */
fprintf(f,"\
P6\n\
# CREATOR: " PACKAGE " " VERSION "\n\
%d %d\n\
255\n",
w,h);
{
guchar *data = gdk_pixbuf_get_pixels(pb);
int y, stride=gdk_pixbuf_get_rowstride(pb),
channels=gdk_pixbuf_get_n_channels(pb);
for (y=0;y<h;y++)
if ( fwrite(data+y*stride, channels,w, f) != w)
{
showerr(file,_("\
the attempt to save the image file %s has produced error: %s"));
}
}
if( 0 != fclose (f))
showerr(file,_("\
the attempt to close the saved image file %s has produced error: %s"));
return TRUE;
}
/*******************************************************/
gboolean save_pixbuf_to_file(const char *file,
GdkPixbuf * pb)
{
//int len=strlen(file);
char *ext=extension(file);
gboolean result=TRUE;
if(is_null(file)) return FALSE;
if( pb ==NULL) {
show_error(_("\
internal error: the image doesnt exist!"));
return FALSE;
}
#ifndef HAVE_GDK_FORMATS
if (ext == NULL || cmp_extension(file,"ppm")) {
show_error(_(" this version of gtkmorph can save images only in .ppm format (to save in other formats, compile with GTK2 or higher). Please set the filename extension to '.ppm'"));
return FALSE;
}
result=save_as_ppm(file,pb);
#else
{
extern GSList *writable_formats;
char *type="ppm";
int wl=g_slist_length(writable_formats);
gint sel=-1;
GSList *F;
#ifdef HAVE_GTK_COMBO
if(fileselection_g) {
GtkWidget* C=lookup_widget (fileselection_g,"file_type_combo");
//if(!C) { g_critical("cannot save! internal error"); return TRUE; }
if(C)
sel = gtk_combo_box_get_active(C);
}
#endif
if(sel<0 || sel >wl)
sel= type_by_extension (file);
if(sel<0 || sel >wl) {
show_error(_("please use an allowed image format"));
return FALSE;
}
F=g_slist_nth(writable_formats,sel);
//g_assert(F || sel==wl);
if(F) {
gpointer data=F->data;
GError *error=NULL;
// che cavolo ho scritto ?? f=data;
type=gdk_pixbuf_format_get_name ((GdkPixbufFormat *)data);
result = gdk_pixbuf_save(pb,file,//const char *filename,
type,&error,NULL);
g_assert ((result && !error ) || (!result && error ));
if(error)
{show_error((error)->message);g_error_free (error);}
} else
result=save_as_ppm(file,pb);
{
if ( ext==NULL || cmp_extension(file,type)) {
gchar * s=g_strdup_printf
(_("the filename extension is '%s' but the image was saved in format '%s'. This mismatch may prevent you from viewing this image."),
(ext?ext:""),type);
show_warning(s);
g_free(s);
}
}
}
#endif
return result;
}
|