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
|
#ifndef _QV_ELEMENT_
#define _QV_ELEMENT_
#include <QvBasic.h>
class QvNode;
//////////////////////////////////////////////////////////////////////////////
//
// The base class element; the data is a pointer to some QvNode. The
// type of the node can be inferred from the use of the element
// instance in a particular stack in the state. In some cases, the
// "type" field is used to distinguish among various possible node
// types within a single stack.
//
//////////////////////////////////////////////////////////////////////////////
class QvElement {
public:
enum NodeType {
// Fallback case
Unknown,
// Types of cameras in camera stack
OrthographicCamera,
PerspectiveCamera,
// Types of lights in light stack
DirectionalLight,
PointLight,
SpotLight,
// Types of transformations in transformation stack
NoOpTransform, // For QvTransformSeparator
MatrixTransform,
Rotation,
Scale,
Transform,
Translation,
// This has to be last!!!
NumNodeTypes,
};
static const char *nodeTypeNames[NumNodeTypes]; // Names of node types
int depth; // Depth of element in state
QvElement *next; // Next element in stack
QvNode *data; // Pointer to node containing data
NodeType type; // Type of data node
QvElement();
virtual ~QvElement();
QvElement operator= (QvElement * x){ return *x;}
// Prints contents for debugging, mostly
virtual void print();
};
#endif /* _QV_ELEMENT_ */
|