2019-03-03 16:22:55 +01:00
|
|
|
#include <stdio.h>
|
2019-09-11 06:06:59 +02:00
|
|
|
#include <string.h>
|
2019-03-03 16:22:55 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2019-09-11 13:45:18 +02:00
|
|
|
#include <time.h>
|
2019-03-03 16:22:55 +01:00
|
|
|
|
|
|
|
#include "../floatimg.h"
|
|
|
|
|
2019-07-16 00:19:59 +02:00
|
|
|
int verbosity;
|
|
|
|
|
2019-03-03 16:22:55 +01:00
|
|
|
/* --------------------------------------------------------------------- */
|
2019-09-29 00:11:18 +02:00
|
|
|
#define T_BLACK 1
|
|
|
|
#define T_DRAND48 2
|
|
|
|
#define T_GRAY 3
|
2020-01-03 18:21:43 +01:00
|
|
|
#define T_HDEG_A 4
|
|
|
|
#define T_VDEG_A 5
|
2020-02-29 21:34:29 +01:00
|
|
|
#define T_TPAT0 6
|
2020-01-03 18:21:43 +01:00
|
|
|
|
2019-09-29 00:11:18 +02:00
|
|
|
typedef struct {
|
|
|
|
int code;
|
|
|
|
char *name;
|
|
|
|
} Type;
|
|
|
|
|
|
|
|
Type types[] = {
|
|
|
|
{ T_BLACK, "black" },
|
|
|
|
{ T_DRAND48, "drand48" },
|
|
|
|
{ T_GRAY, "gray" },
|
2020-01-03 18:21:43 +01:00
|
|
|
{ T_GRAY, "grey" },
|
|
|
|
{ T_HDEG_A, "hdeg" },
|
|
|
|
{ T_VDEG_A, "vdeg" },
|
2020-02-29 21:34:29 +01:00
|
|
|
{ T_TPAT0, "tpat0" },
|
2020-01-03 18:21:43 +01:00
|
|
|
{ 0, NULL }
|
2019-09-29 00:11:18 +02:00
|
|
|
};
|
|
|
|
|
2019-09-11 06:06:59 +02:00
|
|
|
static int get_type(char *name)
|
2019-07-16 00:19:59 +02:00
|
|
|
{
|
2019-09-29 00:11:18 +02:00
|
|
|
Type *type;
|
2019-09-11 06:06:59 +02:00
|
|
|
|
2019-09-11 13:45:18 +02:00
|
|
|
#if DEBUG_LEVEL
|
2019-09-11 06:06:59 +02:00
|
|
|
fprintf(stderr, ">>> %s ( '%s' )\n", __func__, name);
|
2019-09-11 13:45:18 +02:00
|
|
|
#endif
|
2019-09-11 06:06:59 +02:00
|
|
|
|
2019-09-29 00:11:18 +02:00
|
|
|
// #define TEST(str) ( ! strcmp(name, str) )
|
|
|
|
|
|
|
|
for (type = types; type->code; type++) {
|
|
|
|
if (!strcmp(name, type->name)) {
|
|
|
|
return type->code;
|
|
|
|
}
|
|
|
|
}
|
2019-09-11 06:06:59 +02:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
static void help(int lj)
|
|
|
|
{
|
2020-01-03 18:21:43 +01:00
|
|
|
int foo;
|
2019-09-11 06:06:59 +02:00
|
|
|
|
2019-09-27 12:25:09 +02:00
|
|
|
puts("Usage:\tmkfimg [options] quux.fimg width height");
|
|
|
|
|
|
|
|
puts("\t-k N.N\tgive a float parameter");
|
2020-01-03 18:21:43 +01:00
|
|
|
fputs("\t-t bla\thowto make the pic\n\t\t", stdout);
|
|
|
|
for (foo=0; types[foo].code; foo++) {
|
|
|
|
printf("%s ", types[foo].name);
|
|
|
|
}
|
|
|
|
puts("\n\t-v\tincrease verbosity");
|
2019-09-11 06:06:59 +02:00
|
|
|
|
2020-01-09 01:34:07 +01:00
|
|
|
if (verbosity) {
|
|
|
|
fimg_print_version(1);
|
|
|
|
printf("*** compiled %s, %s\n", __DATE__, __TIME__);
|
|
|
|
}
|
2019-03-03 16:22:55 +01:00
|
|
|
|
2019-07-16 00:19:59 +02:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
/* --------------------------------------------------------------------- */
|
2019-03-03 16:22:55 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2019-07-16 00:19:59 +02:00
|
|
|
int foo, opt;
|
2019-03-03 16:22:55 +01:00
|
|
|
int width, height;
|
|
|
|
char *fname;
|
2020-02-13 11:29:28 +01:00
|
|
|
float fvalue = 1.0;
|
2019-09-29 00:11:18 +02:00
|
|
|
int type = T_BLACK;
|
|
|
|
char *tname = "wtf?";
|
2019-08-24 13:24:01 +02:00
|
|
|
|
2019-03-03 16:22:55 +01:00
|
|
|
FloatImg fimg;
|
|
|
|
|
2019-09-11 13:45:18 +02:00
|
|
|
while ((opt = getopt(argc, argv, "hk:t:v")) != -1) {
|
2019-07-16 00:19:59 +02:00
|
|
|
switch(opt) {
|
|
|
|
case 'h': help(0); break;
|
2019-09-11 13:45:18 +02:00
|
|
|
case 'k': fvalue = atof(optarg); break;
|
2019-09-29 00:11:18 +02:00
|
|
|
case 't': type = get_type(tname=optarg); break;
|
2019-07-16 00:19:59 +02:00
|
|
|
case 'v': verbosity++; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-11 06:06:59 +02:00
|
|
|
#if DEBUG_LEVEL
|
|
|
|
fprintf(stderr, "argc %d optind %d\n", argc, optind);
|
|
|
|
for (foo=0; foo<argc; foo++)
|
|
|
|
fprintf(stderr, "%3d %s\n", foo, argv[foo]);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (3 != argc-optind) {
|
|
|
|
fprintf(stderr, "%s need filename, width & height\n", argv[0]);
|
2019-03-03 16:22:55 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-07-16 00:19:59 +02:00
|
|
|
|
2019-09-29 00:11:18 +02:00
|
|
|
if (type < 0) {
|
|
|
|
fprintf(stderr, "type '%s' is unknow\n", tname);
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
2019-07-16 00:19:59 +02:00
|
|
|
fname = argv[optind];
|
|
|
|
width = atoi(argv[optind+1]); height = atoi(argv[optind+2]);
|
2019-09-11 06:06:59 +02:00
|
|
|
|
2020-06-24 12:37:02 +02:00
|
|
|
if (verbosity>1) fprintf(stderr, "*** mkfimg *** %s %s\n", __DATE__, __TIME__);
|
2020-05-29 13:32:15 +02:00
|
|
|
if (verbosity) fprintf(stderr, "making '%s' %d x %d, type %d\n",
|
2020-06-24 12:37:02 +02:00
|
|
|
fname, width, height, type);
|
2019-03-03 16:22:55 +01:00
|
|
|
|
2019-09-11 13:45:18 +02:00
|
|
|
srand48(getpid() ^ time(NULL));
|
|
|
|
|
2019-03-03 16:22:55 +01:00
|
|
|
foo = fimg_create(&fimg, width, height, 3);
|
|
|
|
if (foo) {
|
|
|
|
fprintf(stderr, "create floatimg -> %d\n", foo);
|
2019-09-29 00:11:18 +02:00
|
|
|
exit(3);
|
2019-03-03 16:22:55 +01:00
|
|
|
}
|
2019-09-11 06:06:59 +02:00
|
|
|
|
|
|
|
switch(type) {
|
|
|
|
default:
|
|
|
|
case T_BLACK: fimg_clear(&fimg); break;
|
2019-09-29 00:11:18 +02:00
|
|
|
case T_DRAND48: fimg_drand48(&fimg, fvalue); break;
|
|
|
|
case T_GRAY: fimg_rgb_constant(&fimg, fvalue, fvalue, fvalue);
|
|
|
|
break;
|
2020-01-03 18:21:43 +01:00
|
|
|
case T_HDEG_A: fimg_hdeg_a(&fimg, 1.0); break;
|
|
|
|
case T_VDEG_A: fimg_vdeg_a(&fimg, 1.0); break;
|
2020-02-29 21:34:29 +01:00
|
|
|
case T_TPAT0: fimg_test_pattern(&fimg, 0, fvalue); break;
|
2020-05-29 13:32:15 +02:00
|
|
|
case -1: exit(1);
|
2019-09-11 06:06:59 +02:00
|
|
|
}
|
2019-03-03 16:22:55 +01:00
|
|
|
|
|
|
|
foo = fimg_dump_to_file(&fimg, fname, 0);
|
|
|
|
if (foo) {
|
2019-07-16 00:19:59 +02:00
|
|
|
fprintf(stderr, "dump fimg -> %d\n", foo);
|
2019-03-03 16:22:55 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2020-08-23 23:55:36 +02:00
|
|
|
fimg_destroy(&fimg);
|
|
|
|
|
2019-03-03 16:22:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* --------------------------------------------------------------------- */
|