Seems to introduce PNG support. From original change log:
0.1.4:
New option: -n, --nice
New option: --dir
Load images from a directory
0.1.3:
Bugfixes and optimisation release (use much less cpu).
Nothing new here.
109 lines
2.7 KiB
C
109 lines
2.7 KiB
C
/* Hot-babe
|
|
* Copyright (C) 2002 DindinX <David@dindinx.org>
|
|
* Copyright (C) 2002 Bruno Bellamy.
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* Please note that part of this code is from wmbubble, and such should be
|
|
* copyrighted by <timecop@japan.co.jp>
|
|
*
|
|
*/
|
|
|
|
/* general includes */
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
/* filesystem includes */
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
/* x11 includes */
|
|
#include <gdk/gdk.h>
|
|
#include <gdk/gdkx.h>
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
#include "loader.h"
|
|
|
|
/* Animation loader from a directory */
|
|
int load_anim( HotBabeAnim *anim, gchar *dirname )
|
|
{
|
|
struct stat buf;
|
|
int ret;
|
|
FILE *fd;
|
|
char filename[1024];
|
|
char line[1024];
|
|
int i;
|
|
|
|
anim->samples = 0;
|
|
anim->current_sample = 0;
|
|
|
|
/* dirname must be a valid directory */
|
|
|
|
if( dirname == NULL ) return 1;
|
|
if( (ret = stat( dirname, &buf )) < 0 ) {
|
|
return 1;
|
|
}
|
|
if( !S_ISDIR(buf.st_mode) ) {
|
|
return 2;
|
|
}
|
|
|
|
/* description file */
|
|
|
|
strncpy( filename, dirname, 512 );
|
|
strcat( filename, "/descr" );
|
|
if( (fd = fopen( filename, "r" )) == NULL ) {
|
|
perror( filename );
|
|
return 3;
|
|
}
|
|
|
|
if( fgets( line, 1023, fd ) == NULL )
|
|
{
|
|
fclose( fd );
|
|
perror( "--" );
|
|
return 4;
|
|
}
|
|
|
|
if( (anim->samples = atoi( line )) == 0 ) {
|
|
fclose( fd );
|
|
fprintf( stderr, "%s: bad file format\n", filename );
|
|
return 4;
|
|
}
|
|
|
|
/* load images */
|
|
|
|
anim->pixbuf = malloc( sizeof(GdkPixbuf*) * anim->samples );
|
|
for( i = 0 ; i < anim->samples ; i++ ) {
|
|
if( fgets( line, 512, fd ) == NULL ) {
|
|
fclose( fd );
|
|
perror( "--" );
|
|
return 5;
|
|
}
|
|
if( line[strlen(line)-1] == '\n' )
|
|
line[strlen(line)-1] = '\0';
|
|
strncpy( filename, dirname, 512 );
|
|
strcat( filename, "/" );
|
|
strcat( filename, line );
|
|
anim->pixbuf[i] = gdk_pixbuf_new_from_file( filename );
|
|
}
|
|
|
|
fclose( fd );
|
|
|
|
anim->width = gdk_pixbuf_get_width( anim->pixbuf[0]);
|
|
anim->height = gdk_pixbuf_get_height(anim->pixbuf[0]);
|
|
|
|
return 0;
|
|
}
|