blob: fe996f7bd1772f1408f489430165f03c663db365 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*********************************************************************
* kd-forest *
* Copyright (C) 2014 Tavian Barnes <tavianator@tavianator.com> *
* *
* This program is free software. It comes without any warranty, to *
* the extent permitted by applicable law. You can redistribute it *
* and/or modify it under the terms of the Do What The Fuck You Want *
* To Public License, Version 2, as published by Sam Hocevar. See *
* the COPYING file or http://www.wtfpl.net/ for more details. *
*********************************************************************/
#ifndef OPTIONS_H
#define OPTIONS_H
#include <stdbool.h>
#include <stdio.h>
// Possible generation modes
typedef enum {
MODE_HUE_SORT,
MODE_RANDOM,
} mode_t;
// Possible pixel selection modes
typedef enum {
SELECTION_MIN,
SELECTION_MEAN,
} selection_t;
// Possible color spaces
typedef enum {
COLOR_SPACE_RGB,
COLOR_SPACE_LAB,
COLOR_SPACE_LUV,
} color_space_t;
// Command-line options
typedef struct {
unsigned int bit_depth;
mode_t mode;
selection_t selection;
color_space_t color_space;
bool animate;
const char *filename;
unsigned int seed;
bool help;
} options_t;
bool parse_options(options_t *options, int argc, char *argv[]);
void print_usage(FILE *file, const char *command);
#endif // OPTIONS_H
|