File: animation.d

package info (click to toggle)
projectl 1.001.dfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,720 kB
  • ctags: 5
  • sloc: xml: 57; makefile: 32
file content (118 lines) | stat: -rw-r--r-- 2,213 bytes parent folder | download | duplicates (5)
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
module util.animation;
private import util.parts;
private import std.math;
public abstract class Animation{
	public:
	int count;
	int span;
	Parts parts;
	protected:
	bool _exists;
	bool repeat;
	bool _active;
	public this(int span, bool repeat = false){
		//animationManager.add(this);
		this.span = span;
		this.repeat = repeat;
		count = 0;
		_exists = true;
		_active = true;
	}
	public void set(Parts parts){
		this.parts = parts;
	}
	public void run(){
		count ++;
		if(span <= count){
			if(repeat)count = 0;
			else{
				vanish();
				return;
			}
		}
	}
	public void vanish(){
		_exists = false;
		_active = false;
		
	}
	public void stop(){
		_active = false;
	}
	public void resume(){
		_active = true;
	}
	public bool active(){
		return _active;
	}
	public bool exists(){
		return _exists;
	}
}
/*
public AnimationManager animationManager;
public class AnimationManager{
	public:
	Animation[] animes;
	//List!(Parts) parts;
	protected:
	//List!(int) van = new List!(int)();
  int animeIdx = 0;
	const int maxAnimation;
	public this() {
		maxAnimation = 16;
		animes.length = maxAnimation;
		//parts = new List!(Parts)();
		animeIdx = 0;
	}

  public this(int n) {
		maxAnimation = n;
		animes.length = maxAnimation;
		//parts = new List!(Parts)();
		animeIdx = 0;
  }

	public bool add(Animation a){
		for(int i = 0;i < animes.length;i ++){
			if(animes[animeIdx] is null || !animes[animeIdx].exists()){
				animes[animeIdx] = a;
				return true;
			}
			animeIdx ++;
			if(animes.length <= animeIdx)animeIdx = 0;
		}
		return false;
		//if(maxParts <= parts.size)return false;
		//parts.push_back(p);
		
	}
	public void run() {
    //List!(int) van = new List!(int)();
		
		for (int i = 0;i < animes.length;i ++){
			Animation an = animes[i];
      if (an !is null && an.exists && an.active){
				
        an.run();
				if(an.exists == false)an = null;
      }else{
				//van.push_back(i);
      }
    }
		
		
  }


  public void clear() {
		foreach(ref Animation a;animes){
			if(a !is null && a.exists){
				a.vanish();
			}
		}
   	//parts.length = 0;
    animeIdx = 0;
  }
}
*/