Compare commits
No commits in common. "1693ad9051f123b18890702c27680f931f4906be" and "10e5069efaf6bd6a8beb41151c4f9d088a83e8db" have entirely different histories.
1693ad9051
...
10e5069efa
2
.gitignore
vendored
2
.gitignore
vendored
@ -70,6 +70,4 @@ Fonderie/*.gif
|
|||||||
Fonderie/fonderie
|
Fonderie/fonderie
|
||||||
Fonderie/interpolator
|
Fonderie/interpolator
|
||||||
Fonderie/t
|
Fonderie/t
|
||||||
Fonderie/crapdef.h
|
|
||||||
Fonderie/crapstr.h
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ OBJS = fonctions.o sfx.o crapulator.o glitches.o metriques.o \
|
|||||||
filterstack.o
|
filterstack.o
|
||||||
|
|
||||||
DEPS = fonctions.h crapulator.h metriques.h glitches.h sfx.h \
|
DEPS = fonctions.h crapulator.h metriques.h glitches.h sfx.h \
|
||||||
filterstack.h crapdef.h crapstr.h
|
filterstack.h
|
||||||
|
|
||||||
all: fonderie interpolator t
|
all: fonderie interpolator t
|
||||||
|
|
||||||
@ -31,16 +31,6 @@ fonderie: fonderie.c ${DEPS} ${OBJS} Makefile
|
|||||||
interpolator: interpolator.c ${DEPS} ${OBJS} Makefile
|
interpolator: interpolator.c ${DEPS} ${OBJS} Makefile
|
||||||
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@
|
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@
|
||||||
|
|
||||||
# ---------------------------------------------------------
|
|
||||||
#
|
|
||||||
# some files are generated, sorry.
|
|
||||||
#
|
|
||||||
crapdef.h: crapulors.liste Makefile craplist2h.awk
|
|
||||||
./craplist2h.awk < $< | tee $@
|
|
||||||
|
|
||||||
crapstr.h: crapulors.liste Makefile craplist2str.awk
|
|
||||||
./craplist2str.awk < $< | tee $@
|
|
||||||
|
|
||||||
# ---------------------------------------------------------
|
# ---------------------------------------------------------
|
||||||
#
|
#
|
||||||
# a lot of silly functions
|
# a lot of silly functions
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
#!/usr/bin/awk -f
|
|
||||||
|
|
||||||
BEGIN {
|
|
||||||
print "// generated file, do not edit by hand !"
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
printf "#define CR_%s %d\n", $2, $1
|
|
||||||
}
|
|
||||||
|
|
||||||
END {
|
|
||||||
print "// generated file, do not edit by hand !"
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
#!/usr/bin/awk -f
|
|
||||||
|
|
||||||
BEGIN {
|
|
||||||
print "// generated file, do not edit by hand"
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
printf "char str_%s[] = \"%s\" ;\t\t// %d\n", $2, $2, $1
|
|
||||||
}
|
|
||||||
|
|
||||||
END {
|
|
||||||
print "// generated file, do not edit by hand"
|
|
||||||
}
|
|
@ -241,32 +241,6 @@ typedef struct {
|
|||||||
int flags;
|
int flags;
|
||||||
} Crapulor;
|
} Crapulor;
|
||||||
|
|
||||||
#include "crapstr.h"
|
|
||||||
|
|
||||||
Crapulor CrapL[] = {
|
|
||||||
{ CR_none, str_none },
|
|
||||||
{ CR_cos01, str_cos01 },
|
|
||||||
{ CR_cos010, str_cos010 },
|
|
||||||
{ CR_fx3, str_fx3 },
|
|
||||||
{ CR_end, str_end }
|
|
||||||
};
|
|
||||||
|
|
||||||
#define NBCRAP (sizeof(CrapL)/sizeof(Crapulor))
|
|
||||||
|
|
||||||
void list_crapulors(char *texte)
|
|
||||||
{
|
|
||||||
int idx;
|
|
||||||
|
|
||||||
for (idx=0; idx<NBCRAP; idx++) {
|
|
||||||
|
|
||||||
fprintf(stderr, "%3d : %3d %-12s %5d %f\n", idx,
|
|
||||||
CrapL[idx].id,
|
|
||||||
CrapL[idx].name,
|
|
||||||
CrapL[idx].ipar,
|
|
||||||
CrapL[idx].fpar);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* -------------------------------------------------------------- */
|
/* -------------------------------------------------------------- */
|
||||||
char * crap_name_from_number(int num)
|
char * crap_name_from_number(int num)
|
||||||
{
|
{
|
||||||
|
@ -10,10 +10,5 @@
|
|||||||
|
|
||||||
int crapulator(FloatImg *image, int id_effect, float fparam);
|
int crapulator(FloatImg *image, int id_effect, float fparam);
|
||||||
|
|
||||||
void list_crapulors(char *texte);
|
|
||||||
|
|
||||||
char *crap_name_from_number(int num);
|
char *crap_name_from_number(int num);
|
||||||
int crap_number_from_name(char *name);
|
int crap_number_from_name(char *name);
|
||||||
|
|
||||||
#include "crapdef.h"
|
|
||||||
|
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
0 none
|
|
||||||
1 cos01
|
|
||||||
2 cos010
|
|
||||||
3 fx3
|
|
||||||
-1 end
|
|
@ -19,6 +19,3 @@ int brotche_rand48_a(FloatImg *fimg, float ratio, float mval);
|
|||||||
int brotche_rand48_b(FloatImg *fimg, float ratio, float mval);
|
int brotche_rand48_b(FloatImg *fimg, float ratio, float mval);
|
||||||
int colors_brotcher(FloatImg *fimg, float fval);
|
int colors_brotcher(FloatImg *fimg, float fval);
|
||||||
|
|
||||||
/*
|
|
||||||
* see also "crapulator.h" for some #define's
|
|
||||||
*/
|
|
||||||
|
16
Fonderie/t.c
16
Fonderie/t.c
@ -11,7 +11,6 @@
|
|||||||
#include "glitches.h"
|
#include "glitches.h"
|
||||||
#include "sfx.h"
|
#include "sfx.h"
|
||||||
#include "filterstack.h"
|
#include "filterstack.h"
|
||||||
#include "crapulator.h"
|
|
||||||
|
|
||||||
/* ----------------------------------------------------------- */
|
/* ----------------------------------------------------------- */
|
||||||
|
|
||||||
@ -70,14 +69,6 @@ int help(void)
|
|||||||
{
|
{
|
||||||
puts("yolo!");
|
puts("yolo!");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
|
||||||
/* ----------------------------------------------------------- */
|
|
||||||
void experiment(void)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "EXPERIMENT\n");
|
|
||||||
|
|
||||||
list_crapulors("experiment");
|
|
||||||
|
|
||||||
}
|
}
|
||||||
/* ----------------------------------------------------------- */
|
/* ----------------------------------------------------------- */
|
||||||
|
|
||||||
@ -86,19 +77,16 @@ int main(int argc, char *argv[])
|
|||||||
int foo;
|
int foo;
|
||||||
int opt;
|
int opt;
|
||||||
char *filterchain = "18";
|
char *filterchain = "18";
|
||||||
char *infile = "mire.fimg";
|
|
||||||
|
|
||||||
fprintf(stderr, "*** %s : compiled by tTh, %s %s\n", __FILE__,
|
fprintf(stderr, "*** %s : compiled by tTh, %s %s\n", __FILE__,
|
||||||
__DATE__, __TIME__);
|
__DATE__, __TIME__);
|
||||||
fimg_print_version(2);
|
fimg_print_version(2);
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "hF:vx")) != -1) {
|
while ((opt = getopt(argc, argv, "hF:v")) != -1) {
|
||||||
switch(opt) {
|
switch(opt) {
|
||||||
case 'h': help(); break;
|
case 'h': help(); break;
|
||||||
case 'F': filterchain = optarg; break;
|
case 'F': filterchain = optarg; break;
|
||||||
case 'v': verbosity++; break;
|
case 'v': verbosity++; break;
|
||||||
case 'x': experiment(); break;
|
|
||||||
default: exit(1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -112,7 +100,7 @@ if (foo) {
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
foo = essai_filterstack(infile);
|
foo = essai_filterstack("01137.fimg");
|
||||||
if (foo) {
|
if (foo) {
|
||||||
fprintf(stderr, "err %d in essai_filterstack\n", foo);
|
fprintf(stderr, "err %d in essai_filterstack\n", foo);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user