class Instructions {
constructor(instructions) {
this.data = [];
for (let i=0; i<instructions.length; i++) {
this.process(instructions[i]);
}
this.data.forEach((d,i) => d.step = i);
}
process(instruction) {
let shapes = [];
for (let i=0; i<instruction.num; i++) {
let shape;
if (!("step_a1" in instruction)) {
shape = this.get_base(instruction.draw, i/instruction.num);
} else {
shape = this.get_main(instruction, i);
}
if ("extend" in instruction && shape instanceof Line) {
shape.extend(extend_amount, instruction.extend);
}
shapes.push(shape);
}
this.data.push({shape: instruction.draw, class: instruction.class, shapes: shapes});
}
get_base(draw, increment) {
let point_1 = {x: 0, y: 0};
let point_2;
if (draw == "circle") {
point_2 = {x: 0, y: r};
} else {
point_2 = {x: r*Math.sin((2*Math.PI*increment)),
y: r*Math.cos((2*Math.PI*increment))};
}
return this.get_shape(point_1, point_2, draw);
}
get_main(instruction, i) {
let point_1 = new Intersect(this.access_shape(instruction.step_a1, instruction.point_a1(i)),
this.access_shape(instruction.step_a2, instruction.point_a2(i)));
let point_2 = new Intersect(this.access_shape(instruction.step_b1, instruction.point_b1(i)),
this.access_shape(instruction.step_b2, instruction.point_b2(i)));
return this.get_shape(point_1, point_2, instruction.draw);
}
get_shape(point_1, point_2, draw) {
if (draw == "circle") {
return new Circle(point_1, point_2);
}
return new Line(point_1, point_2);
}
access_shape(step, i) {
let row = this.data[step].shapes;
return row[i % row.length];
}
}