-
Notifications
You must be signed in to change notification settings - Fork 0
/
LSystem.cpp
271 lines (239 loc) · 5.88 KB
/
LSystem.cpp
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#include "LSystem.h"
#include <fstream>
#include <stack>
#pragma warning(disable : 4244)
#pragma warning(disable : 4290)
#include "matrix.h"
#define Rad2Deg 57.295779513082320876798154814105
#define Deg2Rad 0.017453292519943295769236907684886
LSystem::LSystem() : mDfltAngle(22.5), mDfltStep(1.0)
{
}
void LSystem::setDefaultAngle(float degrees)
{
mDfltAngle = degrees;
}
void LSystem::setDefaultStep(float distance)
{
mDfltStep = distance;
}
float LSystem::getDefaultAngle() const
{
return mDfltAngle;
}
float LSystem::getDefaultStep() const
{
return mDfltStep;
}
const std::string& LSystem::getGrammarString() const
{
return mGrammar;
}
void LSystem::reset()
{
current = "";
iterations.clear();
productions.clear();
}
const std::string& LSystem::getIteration(unsigned int n)
{
if (n >= iterations.size())
{
for (unsigned int i = iterations.size(); i <= n; i++)
{
current = iterate(current);
iterations.push_back(current);
}
}
return iterations[n];
}
void LSystem::loadProgram(const std::string& fileName)
{
reset();
std::string line;
std::ifstream file(fileName.c_str());
if (file.is_open())
{
while (file.good())
{
getline(file,line);
addProduction(line);
}
}
else
{
std::cout << "file error" << std::endl;
}
// for each line in p, add production
file.close();
}
void LSystem::loadProgramFromString(const std::string& program)
{
reset();
mGrammar = program;
size_t index = 0;
while (index < program.size())
{
size_t nextIndex = program.find("\n", index);
std::string line = program.substr(index, nextIndex);
addProduction(line);
if (nextIndex == std::string::npos) break;
index = nextIndex+1;
}
}
void LSystem::addProduction(std::string line)
{
size_t index;
// 1. Strip whitespace
while ((index = line.find(" ")) != std::string::npos)
{
line.replace(index, 1, "");
}
if (line.size() == 0) return;
// 2. Split productions
index = line.find("->");
if (index != std::string::npos)
{
std::string symFrom = line.substr(0, index);
std::string symTo = line.substr(index+2);
productions[symFrom] = symTo;
}
else // assume its the start sym
{
current = line;
}
}
std::string LSystem::iterate(const std::string& input)
{
std::string output = "";
for (unsigned int i = 0; i < input.size(); i++)
{
std::string sym = input.substr(i,1);
std::string next = productions.count(sym) > 0? productions[sym] : sym;
output = output + next;
}
return output;
//for each sym in current state, replace the sym
}
LSystem::Turtle::Turtle() :
pos(0,0,0),
up(0,0,1),
forward(1,0,0),
left(0,1,0)
{
}
LSystem::Turtle::Turtle(const LSystem::Turtle& t)
{
pos = t.pos;
up = t.up;
forward = t.forward;
left = t.left;
}
LSystem::Turtle& LSystem::Turtle::operator=(const LSystem::Turtle& t)
{
if (&t == this) return *this;
pos = t.pos;
up = t.up;
forward = t.forward;
left = t.left;
return *this;
}
void LSystem::Turtle::moveForward(float length)
{
pos = pos + length * forward;
}
void LSystem::Turtle::applyUpRot(float degrees)
{
math::RotationMatrix<float> mat(2,Deg2Rad*degrees); // Z axis
math::RotationMatrix<float> world2local(forward, left, up);
up = world2local * mat * vec3(0,0,1);
left = world2local * mat * vec3(0,1,0);
forward = world2local * mat * vec3(1,0,0);
}
void LSystem::Turtle::applyLeftRot(float degrees)
{
math::RotationMatrix<float> mat(1,Deg2Rad*degrees); // Y axis
math::RotationMatrix<float> world2local(forward, left, up);
up = world2local * mat * vec3(0,0,1);
left = world2local * mat * vec3(0,1,0);
forward = world2local * mat * vec3(1,0,0);
}
void LSystem::Turtle::applyForwardRot(float degrees)
{
math::RotationMatrix<float> mat(0,Deg2Rad*degrees); // X axis
math::RotationMatrix<float> world2local(forward, left, up);
up = world2local * mat * vec3(0,0,1);
left = world2local * mat * vec3(0,1,0);
forward = world2local * mat * vec3(1,0,0);
}
void LSystem::process(unsigned int n,
std::vector<Branch>& branches)
{
std::vector<Geometry> models;
process(n,branches,models);
}
void LSystem::process(unsigned int n,
std::vector<Branch>& branches,
std::vector<Geometry>& models)
{
Turtle turtle;
std::stack<Turtle> stack;
// Init so we're pointing up
turtle.applyLeftRot(-90);
std::string insn = getIteration(n);
for (unsigned int i = 0; i < insn.size(); i++)
{
std::string sym = insn.substr(i,1);
if (sym == "F")
{
vec3 start = turtle.pos;
turtle.moveForward(mDfltStep);
branches.push_back(Branch(start,turtle.pos));
}
else if (sym == "f")
{
turtle.moveForward(mDfltStep);
}
else if (sym == "+")
{
turtle.applyUpRot(mDfltAngle);
}
else if (sym == "-")
{
turtle.applyUpRot(-mDfltAngle);
}
else if (sym == "&")
{
turtle.applyLeftRot(mDfltAngle);
}
else if (sym == "^")
{
turtle.applyLeftRot(-mDfltAngle);
}
else if (sym == "\\")
{
turtle.applyForwardRot(mDfltAngle);
}
else if (sym == "/")
{
turtle.applyForwardRot(-mDfltAngle);
}
else if (sym == "|")
{
turtle.applyUpRot(180);
}
else if (sym == "[")
{
stack.push(turtle);
}
else if (sym == "]")
{
turtle = stack.top();
stack.pop();
}
else
{
models.push_back(Geometry(turtle.pos, sym));
}
}
}