forked from LindseyB/AsciiAsciiRevolution
-
Notifications
You must be signed in to change notification settings - Fork 1
/
narwhal.d
56 lines (44 loc) · 1.45 KB
/
narwhal.d
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
module narwhal;
import tango.math.random.Random;
import animatedAsciiSprite;
class Narwhal {
enum Animate { DANCE, BREAKDANCE, FLYING, SNOOPY }
AnimatedAsciiSprite[4] _animations;
Animate _curAnimation;
this() {
// init animations
_animations[Animate.BREAKDANCE] = new AnimatedAsciiSprite("graphics/narwhal-breakdance.txt", null, true, true, 10, 5);
_animations[Animate.DANCE] = new AnimatedAsciiSprite("graphics/narwhal-dance.txt", null, true, true, 10, 5);
_animations[Animate.FLYING] = new AnimatedAsciiSprite("graphics/narwhal-flying.txt", null, true, true, 10, 5);
_animations[Animate.SNOOPY] = new AnimatedAsciiSprite("graphics/narwhal-snoopy.txt", null, true, true, 10, 5);
}
void setCurAnimation(Animate animation) {
_curAnimation = animation;
}
void animate() {
if(_animations[_curAnimation]._frame == _animations[_curAnimation]._animation.length - 1){
// switch animations?
if(_curAnimation != Animate.DANCE){
_curAnimation = Animate.DANCE;
} else {
int random = rand.uniformR(20);
if(random <= 2){
random = rand.uniformR(3);
switch(random) {
case 0: _curAnimation = Animate.BREAKDANCE;
break;
case 1: _curAnimation = Animate.FLYING;
break;
default: _curAnimation = Animate.SNOOPY;
break;
}
}
}
}
_animations[_curAnimation].drawSprite();
_animations[_curAnimation].nextFrame();
}
void draw() {
_animations[_curAnimation].drawSprite();
}
}