-
Notifications
You must be signed in to change notification settings - Fork 0
/
DREditCoursePen.as
79 lines (62 loc) · 1.92 KB
/
DREditCoursePen.as
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
class DREditCoursePen extends DRPen {
var course:DRCourse;
var currentControlPoint;
var CHAR_C = 67;
function DREditCoursePen() {
super("edit");
}
function onPenDown() {
course = DRCourse.course;
}
function onMouseDown() {
for (var i = 0; i < DRControlPoint.allPoints.length; i++) {
var controlPoint = DRControlPoint.allPoints[i];
if (controlPoint.isClickOn(_xmouse, _ymouse)) {
currentControlPoint = controlPoint;
return;
}
}
}
function onMouseMove() {
if (currentControlPoint) {
currentControlPoint.moveTo(_xmouse, _ymouse, Key.isDown(Key.SHIFT));
}
}
function onMouseUp() {
currentControlPoint = null;
}
function onKeyDown() {
// trace(Key.getCode());
if (Key.isDown(Key.SPACE)) {
if (currentControlPoint) {
mergeControlPoints();
} else {
course.setVisibility("course");
}
}
if (Key.isDown(Key.ENTER)) {
var courseDisplay = new DRCourseDisplay(course);
courseDisplay.display();
switchPen("drive");
}
if (currentControlPoint && Key.isDown(CHAR_C)) {
currentControlPoint.cornerize();
}
}
function onKeyUp() {
course.setVisibility("all");
}
/*****************
* *
* Action Methods *
* *
*****************/
function mergeControlPoints() {
for (var i = 0; i < DRControlPoint.allPoints.length; i++) {
var controlPoint = DRControlPoint.allPoints[i];
if (controlPoint.isClickOn(_xmouse, _ymouse) && controlPoint != currentControlPoint) {
controlPoint.replaceWith(currentControlPoint);
}
}
}
}