Pitch.java
1    package chromesthesia2;
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 new Color(127,0,127);
84           }else if (letter.equals("D")){
85               return new Color(255,255,0);
86           }else if ( letter.equals("E")){
87               return new Color(255,0,0);
88           }else if ( letter.equals("F")){
89               return new Color(255,127,0);
90           }else if (letter.equals("G")){
91               return new Color(0,255,255);
92           }else if (letter.equals("A")){
93               return new Color(0,0,255);
94           }else if (letter.equals("B")){
95               return new Color(0,255,0);
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          } else if(d.equals("2")){
109              note.x2();
110              note.play();
111              note.s2();
112          } else if (d.equals("1/2")){
113              note.s2();
114              note.play();
115              note.x2();
116          }else if (d.equals("3")) {
117              note.x3();
118              note.play();
119              note.s3();
120          }else if (d.equals("1/3")) {
121              note.s3();
122              note.play();
123              note.x3();
124          }else if (d.equals("2/3")) {
125              note.s3();
126              note.x2();
127              note.play();
128              note.s2();
129              note.x3();
130          }
131      }
132  
133      private static Color randomColor() {
134          int rv = (int)(Math.random()*256);
135          int gv = (int)(Math.random()*256);
136          int bv = (int)(Math.random()*256);
137          return new Color(rv,gv,bv);
138      }
139  }