FloatImg/Fonderie/single.c

108 lines
2.2 KiB
C
Raw Normal View History

2021-01-08 22:57:45 +01:00
/*
SINGLE
experimental and/or testing code, do not use in
production.
*/
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include "../floatimg.h"
#include "sfx.h"
#include "filterstack.h"
#include "crapulator.h"
#include "single.h"
/* -------------------------------------------------------------- */
/*
* singleton/private variables
*/
static int nextpng, counter;
static char *destination;
2021-01-11 22:22:03 +01:00
static int chainfilter;
2021-01-08 22:57:45 +01:00
/* -------------------------------------------------------------- */
2021-01-11 22:22:03 +01:00
int single_init(int next, char *dest, int fxchain)
2021-01-08 22:57:45 +01:00
{
int foo;
struct stat stbuf;
2021-01-13 16:09:27 +01:00
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %d '%s' %d )\n", __func__,
next, dest, fxchain);
#endif
2021-01-08 22:57:45 +01:00
nextpng = next;
2021-01-11 22:22:03 +01:00
chainfilter = fxchain;
2021-01-08 22:57:45 +01:00
foo = stat(dest, &stbuf);
if (foo) {
perror("stat dest dir");
return -2;
}
if (S_IFDIR != (stbuf.st_mode & S_IFMT)) {
fprintf(stderr, "! %s must be a directory\n", dest);
return -3;
}
2021-01-11 22:22:03 +01:00
destination = strdup(dest); /* have a static copy */
2021-01-08 22:57:45 +01:00
return 0;
}
/* -------------------------------------------------------------- */
int single_push_picture(FloatImg *pimg)
{
int foo;
char line[1000], buff[100];
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %p )\n", __func__, pimg);
#endif
strncpy(line, destination, 100);
if ('/' != line[strlen(line)-1]) {
2021-01-14 14:15:42 +01:00
// fprintf(stderr, "adding '/'\n");
2021-01-08 22:57:45 +01:00
strcat(line, "/");
}
// fprintf(stderr, " destdir = '%s'\n", line);
sprintf(buff, "%05d.png", nextpng);
strcat(line, buff);
// fprintf(stderr, "writing %p to '%s'\n", pimg, line);
foo = fimg_export_picture(pimg, line, 0);
if (foo) {
fprintf(stderr, "%s: err %d on export\n", __func__, foo);
return foo;
}
2021-01-11 22:22:03 +01:00
nextpng++; counter++;
2021-01-08 22:57:45 +01:00
return 0;
}
/* -------------------------------------------------------------- */
2021-01-10 22:52:33 +01:00
int single_print_state(char *title, int k)
2021-01-08 22:57:45 +01:00
{
2021-01-10 22:52:33 +01:00
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( '%s' %d )\n", __func__, title, k);
#endif
2021-01-08 22:57:45 +01:00
2021-01-11 22:22:03 +01:00
fprintf(stderr, "%s : %s\n", __FILE__, title);
fprintf(stderr, " nextpng %d\n", nextpng);
fprintf(stderr, " counter %d\n", counter);
fprintf(stderr, " chainfilter %d\n", chainfilter);
fprintf(stderr, " destination %s\n", destination);
2021-01-08 22:57:45 +01:00
2021-01-13 16:09:27 +01:00
if (k) {
2021-03-21 09:02:55 +01:00
/* XXX */
2021-01-13 16:09:27 +01:00
}
2021-01-08 22:57:45 +01:00
return -1;
}
/* -------------------------------------------------------------- */