-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathanimation.grace
93 lines (75 loc) · 3.35 KB
/
animation.grace
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
dialect "standard"
import "timer" as timer
type NumberBlock = Function0⟦Number⟧
type Animator = interface {
// type of object that can simulate parallel animations
while (condition:Predicate0) pausing (pauseTime:Number)
do (block:Procedure0) -> Done
// Repeatedly execute block while condition is true
while (condition:Predicate0) pausing (pauseTime:Number)
do (block:Procedure0) finally (endBlock:Procedure0) -> Done
// Repeatedly execute block while condition is true, pausing pauseTime
// between iterations. When condition fails, execute endBlock.
while (condition:Predicate0) pauseVarying (timeBlock:NumberBlock)
do (block:Procedure0) -> Done
// Repeatedly execute block while condition is true, pausing a variable
// amount of time (obtained by evaluating timeBlock) between iterations.
// When condition fails, execute endBlock.
for⟦T⟧ (range':Collection⟦T⟧) pausing (pauseTime:Number) do (block:Procedure1⟦T⟧) -> Done
// Repeatedly execute block while condition is true
for⟦T⟧ (range':Collection⟦T⟧) pausing (pauseTime:Number) do (block:Procedure1⟦T⟧)
finally (endBlock:Procedure0) -> Done
// Repeatedly execute block while condition is true
// when condition fails, execute endBlock.
}
method while(condition:Predicate0) pausing (pauseTime:Number)
do (block:Procedure0) -> Done {
// Repeatedly execute block while condition is true
def id:Number = timer.every (pauseTime) do {
if (condition.apply) then {
block.apply
} else {
timer.stop (id)
}
}
}
method while (condition:Predicate0) pausing (pauseTime:Number)
do (block:Procedure0) finally (endBlock:Procedure0) -> Done {
// Repeatedly execute block while condition is true, pausing by pauseTime
// between iterations. When condition fails, execute endBlock.
def id:Number = timer.every(pauseTime)do{
if (condition.apply) then {
block.apply
} else {
timer.stop(id)
endBlock.apply
}
}
}
method while(condition:Predicate0) pauseVarying (timeBlock:NumberBlock)
do (block:Procedure0) -> Done {
// Repeatedly execute block while condition is true, pausing by
// timeBlock.apply between iterations.
if (condition.apply) then {
block.apply
timer.after(timeBlock.apply) do {
while (condition) pauseVarying (timeBlock) do (block)
}
}
}
method for⟦T⟧(range':Collection⟦T⟧) pausing (pauseTime:Number)
do (block:Procedure1⟦T⟧) -> Done {
// Repeatedly execute block for each value in range', pausing pauseTime between
// iterations; block should take an element of range' as an argument.
def it = range'.iterator
while {it.hasNext} pausing (pauseTime) do { block.apply(it.next) }
}
method for⟦T⟧ (range':Collection⟦T⟧) pausing (pauseTime:Number)
do (block:Procedure1⟦T⟧) finally(endBlock:Procedure0) -> Done {
// Repeatedly execute block for each value in range', pausing pauseTime between
// iterations; block should take a T object as a parameter. When range'
// is exhausted, execute endBlock.
def it:Iterator⟦T⟧ = range'.iterator
while {it.hasNext} pausing (pauseTime) do { block.apply(it.next) }
finally(endBlock)
}