FloatImg/Fonderie/filterstack.c

201 lines
4.4 KiB
C
Raw Normal View History

2020-12-03 21:56:45 +01:00
/*
* filterstack.c
*/
#include <stdio.h>
#include <stdlib.h>
2020-12-07 04:45:51 +01:00
#include <string.h>
2020-12-03 21:56:45 +01:00
#include "../floatimg.h"
2020-12-03 22:05:21 +01:00
#include "crapulator.h"
2020-12-03 21:56:45 +01:00
#include "filterstack.h"
2020-12-04 19:55:34 +01:00
// #undef DEBUG_LEVEL
// #define DEBUG_LEVEL 1
2020-12-03 21:56:45 +01:00
/* -------------------------------------------------------------- */
2020-12-07 04:45:51 +01:00
extern int verbosity;
2020-12-10 19:19:35 +01:00
static FilterStack f_stacks[NUMBER_OF_STACK];
2020-12-03 21:56:45 +01:00
/* -------------------------------------------------------------- */
int filterstack_init(int numid, int notused)
2020-12-03 21:56:45 +01:00
{
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %d %d )\n", __func__, numid, notused);
2020-12-03 21:56:45 +01:00
#endif
2020-12-10 19:19:35 +01:00
if (numid < 0 || numid > NUMBER_OF_STACK) {
fprintf(stderr, "%s: slot number %d invalid\n", __func__, numid);
2020-12-03 21:56:45 +01:00
exit(1);
}
2020-12-10 19:19:35 +01:00
memset(&f_stacks[numid], 0, sizeof(FilterSlot));
2020-12-03 21:56:45 +01:00
return 0;
}
/* -------------------------------------------------------------- */
2020-12-10 19:19:35 +01:00
int filterstack_add(int numid, int code, int ival, float fval)
2020-12-03 21:56:45 +01:00
{
2020-12-10 19:19:35 +01:00
int idxsl;
2020-12-03 21:56:45 +01:00
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %d %d %f )\n", __func__, code, ival, fval);
#endif
2020-12-10 19:19:35 +01:00
if (numid < 0 || numid > NUMBER_OF_STACK) {
fprintf(stderr, "%s: slot number %d invalid\n", __func__, numid);
2020-12-03 21:56:45 +01:00
exit(1);
}
2020-12-10 19:19:35 +01:00
if (f_stacks[numid].count == FILTER_BY_STACK) {
2020-12-03 21:56:45 +01:00
fprintf(stderr, "%s: stack is full\n", __func__);
return -1;
}
2020-12-10 19:19:35 +01:00
idxsl = f_stacks[numid].count; /* aliasing */
f_stacks[numid].slots[idxsl].numero = code;
f_stacks[numid].slots[idxsl].ival = ival;
f_stacks[numid].slots[idxsl].fval = fval;
2020-12-03 21:56:45 +01:00
2020-12-10 19:19:35 +01:00
f_stacks[numid].count++;
2020-12-03 21:56:45 +01:00
return 0;
}
/* -------------------------------------------------------------- */
2020-12-10 19:19:35 +01:00
int filterstack_list(int numid, const char *txt)
2020-12-03 21:56:45 +01:00
{
int idx;
2020-12-10 19:19:35 +01:00
if (numid < 0 || numid > NUMBER_OF_STACK) {
fprintf(stderr, "%s: slot number %d invalid\n", __func__, numid);
2020-12-07 04:45:51 +01:00
exit(1);
}
2020-12-10 19:19:35 +01:00
fprintf(stderr, "--- %2d -- %-20s --------\n", numid, txt);
// fprintf(stderr, "stack at %p, size %d, current %d\n",
// f_slots, nbre_filters, idx_slot);
2020-12-08 15:51:07 +01:00
fprintf(stderr, "idx fx# name ival fval\n");
2020-12-10 19:19:35 +01:00
for (idx=0; idx<f_stacks[numid].count; idx++) {
2020-12-03 21:56:45 +01:00
2020-12-08 15:51:07 +01:00
fprintf(stderr, "%3d %3d %-10s %3d %f\n", idx,
2020-12-10 19:19:35 +01:00
f_stacks[numid].slots[idx].numero,
crap_name_from_number(f_stacks[numid].slots[idx].numero),
f_stacks[numid].slots[idx].ival,
f_stacks[numid].slots[idx].fval);
2020-12-03 21:56:45 +01:00
}
return 0;
}
/* -------------------------------------------------------------- */
2020-12-10 19:19:35 +01:00
int filterstack_run(int numid, FloatImg *target, int notused)
2020-12-03 21:56:45 +01:00
{
2020-12-10 19:19:35 +01:00
int idx, foo, eff;
float fv;
2020-12-03 21:56:45 +01:00
#if DEBUG_LEVEL
2020-12-07 04:45:51 +01:00
fprintf(stderr, ">>> %s ( %p %d )\n", __func__, target, notused);
2020-12-03 21:56:45 +01:00
#endif
2020-12-10 19:19:35 +01:00
if (numid < 0 || numid > NUMBER_OF_STACK) {
fprintf(stderr, "%s: slot number %d invalid\n", __func__, numid);
2020-12-07 04:45:51 +01:00
exit(1);
}
2020-12-12 18:45:44 +01:00
if (0==f_stacks[numid].count) {
fprintf(stderr, "%s: stack %d empty ?\n", __func__, numid);
return -11;
}
2020-12-10 19:19:35 +01:00
for (idx=0; idx<f_stacks[numid].count; idx++) {
eff = f_stacks[numid].slots[idx].numero;
fv = f_stacks[numid].slots[idx].fval;
2020-12-03 21:56:45 +01:00
2020-12-07 04:45:51 +01:00
if (verbosity > 1)
fprintf(stderr, "%d : effect %2d on %p\n",
2020-12-10 19:19:35 +01:00
idx, eff, target);
foo = crapulator(target, eff, fv);
2020-12-03 21:56:45 +01:00
if (foo) {
fprintf(stderr, "crapulator error %d\n", foo);
return foo;
}
}
return 0;
}
/* -------------------------------------------------------------- */
2020-12-10 19:19:35 +01:00
int load_stack_from_file(int numid, char *fname, int notused)
2020-12-04 19:55:34 +01:00
{
2020-12-07 04:45:51 +01:00
FILE *fp;
// int a, b;
// float f;
// char line[100];
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( '%s' %d )\n", __func__, fname, notused);
#endif
2020-12-10 19:19:35 +01:00
if (numid < 0 || numid > NUMBER_OF_STACK) {
fprintf(stderr, "%s: slot number %d invalid\n", __func__, numid);
2020-12-07 04:45:51 +01:00
exit(1);
}
if (NULL==(fp=fopen(fname, "r"))) {
perror(fname);
return -1;
}
/*
* here was dragons
*/
/* hadoc parser ? */
fclose(fp);
2020-12-04 19:55:34 +01:00
return -1;
}
/* -------------------------------------------------------------- */
2020-12-10 19:19:35 +01:00
int parse_filter_chain(int numid, char *argument)
2020-12-07 04:45:51 +01:00
{
char *cptr;
int value, foo;
2020-12-10 19:19:35 +01:00
if (numid < 0 || numid > NUMBER_OF_STACK) {
fprintf(stderr, "%s: slot number %d invalid\n", __func__, numid);
exit(1);
}
2020-12-07 04:45:51 +01:00
fprintf(stderr, "\n%s: arg = '%s'\n", __func__, argument);
2020-12-10 19:19:35 +01:00
foo = filterstack_init(numid, 8);
2020-12-07 04:45:51 +01:00
if (foo) {
fprintf(stderr, "%s: filterstack init --> %d\n", __func__, foo);
return foo;
}
for (;;) {
cptr = strtok(argument, ":");
// fprintf(stderr, "cptr %p\n", cptr);
if (NULL==cptr) break;
argument = NULL;
// fprintf(stderr, " parsing '%s'\n", cptr);
if (1 == sscanf(cptr, "%d", &value)) {
2020-12-10 19:19:35 +01:00
foo = filterstack_add(numid, value, 1, 1.0);
2020-12-07 04:45:51 +01:00
if (foo) {
fprintf(stderr, "%s: err %d add\n",
__func__, foo);
}
}
}
2020-12-10 19:19:35 +01:00
if (verbosity) filterstack_list(numid, __func__);
2020-12-07 04:45:51 +01:00
return 0;
}
/* ----------------------------------------------------------- */