~ubuntu-branches/ubuntu/oneiric/tuxguitar/oneiric

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
package org.herac.tuxguitar.song.models;

public abstract class TGScale {
	private final boolean[] notes = new boolean[12];
	
	private int key;
	
	public TGScale(){
		this.clear();
	}
	
	public void setKey(int key){
		this.key = key;
	}
	
	public int getKey(){
		return this.key;
	}
	
	public void setNote(int note,boolean on){
		this.notes[note] = on;
	}
	
	public boolean getNote(int note){
		return this.notes[((note + (12 - this.key)) % 12)];
	}
	
	public void clear(){
		this.setKey(0);
		for(int i = 0; i < this.notes.length; i++){
			this.setNote(i,false);
		}
	}
	
}