aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/others/mimesh/libg3d-0.0.8/plugins/import/imp_iob/imp_iob_chunks.h
blob: 1a10d44c85459a6378aa380c5d330c8634f8279b (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* $Id$ */

/*
    libg3d - 3D object loading library

    Copyright (C) 2005-2009  Markus Dahms <mad@automagically.de>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/
#ifndef _IMP_IOB_CHUNKS_H
#define _IMP_IOB_CHUNKS_H

#include <g3d/iff.h>

#include "imp_iob_callbacks.h"

static G3DIffChunkInfo iob_chunks[] = {
	{ "AXIS", "coordinate system",                0, NULL },
	{ "BBOX", "bounding box data",                0, NULL },
	{ "BRS4", "brush (4)",                        0, NULL },
	{ "BRS5", "brush (5)",                        0, NULL },
	{ "COLR", "color",                            0, iob_cb_COLR },
	{ "CLS2", "color list (2)",                   0, iob_cb_xLSx },
	{ "CLST", "color list",                       0, iob_cb_xLSx },
	{ "DESC", "object description",               1, iob_cb_DESC },
	{ "EDG2", "edges",                            0, iob_cb_EDGx },
	{ "EDGE", "edges",                            0, iob_cb_EDGx },
	{ "EFLG", "edge flags",                       0, NULL },
	{ "FACE", "faces",                            0, iob_cb_FACx },
	{ "FAC2", "faces (2)",                        0, iob_cb_FACx },
	{ "FGR2", "face group (2)",                   0, NULL },
	{ "FGR3", "face group (3)",                   0, NULL },
	{ "FGR4", "face group (4)",                   0, NULL },
	{ "INT1", "light intensity (1)",              0, NULL },
	{ "NAME", "name",                             0, iob_cb_NAME },
	{ "OBJ ", "object",                           1, NULL },
	{ "PART", "particle parameters",              0, NULL },
	{ "PNT2", "points (2)",                       0, iob_cb_PNTx },
	{ "PNTS", "points",                           0, iob_cb_PNTx },
	{ "POSI", "position in world",                0, NULL },
	{ "PRP1", "properties (1)",                   0, NULL },
	{ "PRP2", "properties (2)",                   0, NULL },
	{ "REFL", "reflection",                       0, iob_cb_REFL },
	{ "RLS2", "reflection list (2)",              0, iob_cb_xLSx },
	{ "RLST", "reflection list",                  0, iob_cb_xLSx },
	{ "SPC1", "specularity (1)",                  0, NULL },
	{ "SPC2", "specularity (2)",                  0, NULL },
	{ "SHAP", "shape type",                       0, NULL },
	{ "SHP2", "shape type (2)",                   0, NULL },
	{ "SIZE", "size",                             0, NULL },
	{ "TLS2", "transparency list",                0, iob_cb_xLSx },
	{ "TLST", "transparency list (2)",            0, iob_cb_xLSx },
	{ "TOBJ", "end of object",                    0, NULL },
	{ "TRAN", "transparency",                     0, iob_cb_TRAN },
	{ "TXT3", "texture data (3)",                 0, NULL },
	{ "TXT4", "texture data (4)",                 0, NULL },

	{ NULL, NULL, 0, NULL }
};

#endif /* _IMP_IOB_CHUNKS_H */