aboutsummaryrefslogtreecommitdiffstats
path: root/service/src/stlfile.h
blob: 25f22110943e66dcf5526bc2d7fee463306a5e11 (plain) (blame)
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
#ifndef STLFILE_H
#define STLFILE_H

#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <endian.h>

enum {
	KW_UNKNOWN,
	KW_SOLID_BEGIN,
	KW_SOLID_END,
	KW_FACET_BEGIN,
	KW_FACET_END,
	KW_LOOP_BEGIN,
	KW_LOOP_END,
	KW_VERTEX
};

enum {
	STATE_SOLID,
	STATE_FACET,
	STATE_LOOP
};

enum {
	TYPE_ASCII,
	TYPE_BIN
};

struct stack {
	int *data;
	size_t count, cap;
};

struct parseinfo {
	char fmtbuf[256];
	char header[80];
	int type, valid;
	unsigned int loopcount;
	float bbw, bbh;
	char *namehash, *infopath, *stlpath;
};

int parse_file(struct parseinfo *info, char *buf, size_t len);

#endif /* STLFILE_H */