-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLSystem.h
71 lines (58 loc) · 1.78 KB
/
LSystem.h
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
#ifndef LSystem_H_
#define LSystem_H_
#include <string>
#include <vector>
#include <map>
#include "vec.h"
class LSystem
{
public:
typedef std::pair<vec3, std::string> Geometry;
typedef std::pair<vec3, vec3> Branch; //endpoints of the branch?
public:
LSystem();
~LSystem() {}
// Set/get inputs
void loadProgram(const std::string& fileName);
void loadProgramFromString(const std::string& program);
void setDefaultAngle(float degrees);
void setDefaultStep(float distance);
float getDefaultAngle() const;
float getDefaultStep() const;
const std::string& getGrammarString() const;
// Iterate grammar
const std::string& getIteration(unsigned int n);
// Get geometry from running the turtle
void process(unsigned int n,
std::vector<Branch>& branches);
void process(unsigned int n,
std::vector<Branch>& branches,
std::vector<Geometry>& models);
protected:
void reset();
void addProduction(std::string line);
std::string iterate(const std::string& input);
std::map<std::string, std::string> productions;
std::vector<std::string> iterations;
std::vector<std::pair<vec3,vec3>> bboxes;
std::string current;
float mDfltAngle; //Angle
float mDfltStep; //StepSize
std::string mGrammar; //Grammar
class Turtle
{
public:
Turtle();
Turtle(const Turtle& t);
Turtle& operator=(const Turtle& t);
void moveForward(float distance);
void applyUpRot(float degrees);
void applyLeftRot(float degrees);
void applyForwardRot(float degrees);
vec3 pos; //current position of the turtle
vec3 up; //up vector (coord y)
vec3 forward; //fwd vector (coord z)
vec3 left; //coord x
};
};
#endif