Pitch.java
1    package chromesthesia1;
2    
3    import java.awt.Color;
4    import note.SNote;
5    import painter.SPainter;
6    import shapes.SRectangle;
7    
8    public class Pitch {
9    
10       //INSTANCE VARIABLES
11       private String abcName;
12       private SPainter painter;
13       private SRectangle box;
14       private SNote note;
15       private Color color;
16   
17       public Pitch(String abcName, SPainter painter) {
18           this.abcName = abcName;
19           this.painter = painter;
20           this.box = new SRectangle(painter.painterHeight-50, painter.painterWidth-50);
21           this.note = createNoteForThisPitch(abcName);
22           this.color = getPitchClassColor(abcName.substring(0, 1).toUpperCase());
23       }
24   
25       public String toString() {
26           return "[ " + abcName + " | " + note.degree() + " | " + color + " ]";
27       }
28   
29       public String abcName() {
30           return abcName;
31       }
32   
33       private SNote createNoteForThisPitch(String abcPitchClassName) {
34           SNote note = new SNote();
35           if (abcPitchClassName.equals("C")) {
36               //NOTHING TO DO...
37           } else if (abcPitchClassName.equals("C,")) {
38               note.lp(7);
39           } else if (abcPitchClassName.equals("c")) {
40               note.rp(7);
41           } else if (abcPitchClassName.equals("D")){
42               note.rp(1);
43           } else if (abcPitchClassName.equals("D,")){
44               note.lp(6);
45           } else if (abcPitchClassName.equals("d")){
46               note.rp(8);
47           } else if (abcPitchClassName.equals("E")){
48               note.rp(2);
49           } else if (abcPitchClassName.equals("E,")){
50               note.lp(5);
51           } else if (abcPitchClassName.equals("e")){
52               note.rp(9);
53           } else if (abcPitchClassName.equals("F")){
54               note.rp(3);
55           } else if (abcPitchClassName.equals("F,")){
56               note.lp(4);
57           } else if (abcPitchClassName.equals("f")){
58               note.rp(10);
59           } else if (abcPitchClassName.equals("G")){
60               note.rp(4);
61           } else if (abcPitchClassName.equals("G,")){
62               note.lp(3);
63           } else if (abcPitchClassName.equals("g")){
64               note.rp(11);
65           } else if (abcPitchClassName.equals("A")){
66               note.rp(5);
67           } else if (abcPitchClassName.equals("A,")){
68               note.lp(2);
69           } else if (abcPitchClassName.equals("a")){
70               note.rp(12);
71           } else if (abcPitchClassName.equals("B")){
72               note.rp(6);
73           } else if (abcPitchClassName.equals("B,")){
74               note.lp(1);
75           } else if (abcPitchClassName.equals("b")){
76               note.rp(13);
77           }
78           return note;
79       }
80   
81       private Color getPitchClassColor(String letter) {
82           if (letter.equals("C")) {
83               return Color.BLUE;
84           } else if (letter.equals("D")) {
85               return Color.GREEN;
86           } else if (letter.equals("E")) {
87               return new Color (127, 0, 127);
88           } else if (letter.equals("F")) {
89               return Color.CYAN;
90           } else if (letter.equals("G")) {
91               return Color.PINK;
92           } else if (letter.equals("A")) {
93               return Color.YELLOW;
94           } else if (letter.equals("B")) {
95               return Color.WHITE;
96           } else {
97               return Color.BLACK;
98           }
99       }
100  
101      public void play(String d) {
102          painter.setColor(color);
103          painter.paint(box);
104          painter.setColor(randomColor());
105          painter.draw(box);
106          if (d.equals("1")) {
107              note.play();
108          }
109      }
110  
111      private static Color randomColor() {
112          int rv = (int)(Math.random()*256);
113          int gv = (int)(Math.random()*256);
114          int bv = (int)(Math.random()*256);
115          return new Color(rv,gv,bv);
116      }
117  }