Chromesthesia.java
1    /* 
2     *This program interprets melodic lines given in ABC notation as a 
3     * chromesthete might. 
4     * 
5     * A Pitch class will be defined, and will take center stage in the 
6     * processing. 
7     * 
8     * Interpreting  a melody in ABC notation will amount to finishing 
9     * colored rectangles for prescribed durations, while sounding 
10    * the pitch! The color of the rectangle will correspond to pitch 
11    * class. The duration will correspond to the duration of the note. 
12    * 
13    * For the first version of the program, the duration will be held constant at 1 beat. 
14    * 
15    * Three  sorts of images will appear on the screen, the chromesthetic 
16    * output box, a text input box, and an error message box. Simplicity 
17    * of design is rendered by permitting only one box to be on the screen 
18    * at a time. 
19    * 
20    * ABC represents notes in a manner consistent with the three examples: 
21    * A, A a B, B b C, D, E C D E c d e F, F f G, G g 
22    * 
23    * Google ABC music representation if you would like to know more about it. 
24    */
25   package chromesthesia1;
26   
27   import java.util.Scanner;
28   import javax.swing.JOptionPane;
29   import javax.swing.SwingUtilities;
30   import painter.SPainter;
31   
32   public class Chromesthesia {
33   
34       //INFRASTRUCTURE FOR THE PROGRAM -- LAUNCHING A "GRAPHICS" THREAD
35       public static void main(String[] args) {
36           SwingUtilities.invokeLater(new ThreadForGUI());
37       }
38   
39       private static class ThreadForGUI implements Runnable {
40           @Override
41           public void run() {
42               new Chromesthesia();
43           }
44       }
45   
46       public Chromesthesia() {
47           interpreter();
48       }
49   
50       //FEATURED VARIABLES
51   
52       private static SPainter miro;
53       private static Pitch[] pitches;
54   
55       //THE INTERPRETER
56   
57       public static void interpreter() {
58           initialization(); // miro and pitches
59   
60           while ( true ) {
61               String input = getInput();
62               if ( input.equalsIgnoreCase("EXIT") ) {
63                   break;
64               } else {
65                   try {
66                       playMelody(input,pitches);
67                   } catch (Exception ex) {
68                       showErrorMessage(ex.toString());
69                   }
70               }
71           }
72   
73           cleanup(); // miro has to go
74       }
75   
76       //METHODS PERTAINING TO THE CHROMESTHETIC PITCHES
77   
78       private static Pitch[] establishPitches(SPainter painter) {
79           Pitch[] pitches = new Pitch[21];
80           Pitch pitchMiddleC = new Pitch("C", painter);
81           pitches[0] = pitchMiddleC;
82           Pitch pitchLowC = new Pitch("C," ,painter);
83           pitches[1] = pitchLowC;
84           Pitch pitchHighC = new Pitch("c",painter);
85           pitches[2] = pitchHighC;
86           Pitch pitchMiddleD = new Pitch("D", painter);
87           pitches[3] = pitchMiddleD;
88           Pitch pitchLowD = new Pitch("D," , painter);
89           pitches[4] = pitchLowD;
90           Pitch pitchHighD = new Pitch("d" , painter);
91           pitches[5] = pitchHighD;
92           Pitch pitchMiddleE = new Pitch("E" , painter);
93           pitches[6] = pitchMiddleE;
94           Pitch pitchLowE = new Pitch("E," , painter );
95           pitches[7] = pitchLowE;
96           Pitch pitchHighE = new Pitch("e" ,painter);
97           pitches[8] = pitchHighE;
98           Pitch pitchMiddleF = new Pitch("F," , painter);
99           pitches[9] = pitchMiddleF;
100          Pitch pitchLowF = new Pitch("F", painter);
101          pitches[10] = pitchLowF;
102          Pitch pitchHighF = new Pitch("f" , painter);
103          pitches[11] = pitchHighF;
104          Pitch pitchLowG = new Pitch("G," , painter);
105          pitches[12] = pitchLowG;
106          Pitch pitchMiddleG = new Pitch("G" , painter);
107          pitches[13] =  pitchMiddleG;
108          Pitch pitchHighG = new Pitch ("g" , painter);
109          pitches[14] = pitchHighG;
110          Pitch pitchMiddleA = new Pitch("A," , painter);
111          pitches[15] = pitchMiddleA;
112          Pitch pitchLowA = new Pitch("A" , painter);
113          pitches[16] = pitchLowA;
114          Pitch pitchHighA = new Pitch("a" , painter);
115          pitches[17] = pitchHighA;
116          Pitch pitchLowB = new Pitch("B," , painter);
117          pitches[18] = pitchLowB;
118          Pitch pitchMiddleB = new Pitch("B", painter);
119          pitches[19]  = pitchMiddleB;
120          Pitch pitchHighB = new Pitch ("b" , painter);
121          pitches[20] = pitchHighB;
122          return pitches;
123      }
124  
125      private static Pitch find(String token, Pitch[] pitches) throws Exception {
126          for ( int i = 0; i < pitches.length; i = i + 1 ) {
127              Pitch pitch = pitches[i];
128              if ( pitch.abcName().equals(token) ) {
129                  return pitch;
130              }
131          }
132          throw new Exception("### PITCH " + token + " NOT FOUND");
133      }
134  
135      private static void display(Pitch[] pitches) {
136          for ( int i = 0; i  < pitches.length; i = i + 1 ) {
137              System.out.println(pitches[i].toString());
138          }
139      }
140  
141      private static void playMelody(String input, Pitch[] pitches) throws Exception {
142          Scanner scanner = new Scanner(input);
143          while ( scanner.hasNext() ) {
144              String token = scanner.next();
145              Pitch pitch = find(token,pitches);
146              pitch.play("1");
147          }
148      }
149  
150      //INITIALIZATION, CLEANUP, GETTING INPUT, ERROR MESSAGING
151  
152      static private void showErrorMessage(String message) {
153          miro.setVisible(false);
154          JOptionPane.showMessageDialog(null,message);
155      }
156  
157      private static void initialization() {
158          //ESTABLISH THE PAINTER AND GIVE IT A SUBSTANTIAL BRUSH WIDTH
159          miro = new SPainter("Chromesthesia1",500,500);
160          miro.setVisible(false);
161          miro.setBrushWidth(7);
162          //ESTABLISH THR CHROMESTHETIC PITCH CLASS OBJECTS
163          pitches = establishPitches(miro);
164          display(pitches);
165      }
166      private static String getInput() {
167          miro.setVisible(false);
168          String label = "Please enter a melody in ABC notation, or EXIT ...      ";
169          String input = JOptionPane.showInputDialog(null,label);
170          miro.setVisible(true);
171          if ( input == null ) { input = ""; }
172          return input;
173      }
174  
175      static private void cleanup() {
176          System.exit(0);
177      }
178  }
179  
180