view clojure/com/aurellem/run/music.clj @ 431:b73cb1b937d5

remove crufty comment.
author Robert McIntyre <rlm@mit.edu>
date Tue, 24 Apr 2012 23:18:40 -0500
parents c709f4857fa9
children 8e88366a81b9
line wrap: on
line source
1 (ns com.aurellem.run.music
2 (:use (com.aurellem.gb saves gb-driver util constants
3 items vbm characters money
4 rlm-assembly))
5 (:use (com.aurellem.run util title save-corruption
6 bootstrap-0 bootstrap-1))
7 (:require clojure.string)
8 (:import [com.aurellem.gb.gb_driver SaveState])
9 (:import java.io.File))
11 (def third-kind
12 (File. "/home/r/proj/midi/third-kind.mid"))
14 (defn raw-midi-text [#^File midi-file]
15 (:out
16 (clojure.java.shell/sh
17 "midicsv"
18 (.getCanonicalPath midi-file)
19 "-")))
21 (def command-line #"^(\d+), (\d+), ([^,]+)(.*)$")
23 (defmulti parse-command :command)
25 (defn discard-args [command] (dissoc command :args))
27 (defmethod parse-command :Start_track
28 [command] (discard-args command))
30 (defmethod parse-command :End_track
31 [command] (discard-args command))
33 (defmethod parse-command :default
34 [command] command)
36 (defn parse-number-list
37 [number-list-str]
38 (map #(Integer/parseInt %)
39 (clojure.string/split number-list-str #", ")))
41 (defmethod parse-command :Tempo
42 [command]
43 (update-in command [:args] #(Integer/parseInt %)))
45 (defn parse-midi-note-list
46 [midi-note-list-str]
47 (let [[channel note velocity]
48 (parse-number-list midi-note-list-str)]
49 {:channel channel :note note :velocity velocity}))
51 (defmethod parse-command :Note_on_c
52 [command]
53 (update-in command [:args] parse-midi-note-list))
55 (defmethod parse-command :Note_off_c
56 [command]
57 (update-in command [:args] parse-midi-note-list))
59 (defmethod parse-command :Header
60 [command]
61 (let [args (:args command)
62 [format num-tracks division] (parse-number-list args)]
63 (assoc command :args
64 {:format format
65 :num-tracks num-tracks
66 :division division})))
68 (defmethod parse-command :Program_c
69 [command]
70 (let [args (:args command)
71 [channel program-num] (parse-number-list args)]
72 (assoc command :args
73 {:channel channel
74 :program-num program-num})))
76 (defn parse-midi [#^File midi-file]
77 (map
78 (comp parse-command
79 (fn [line]
80 (let [[[_ channel time command args]]
81 (re-seq command-line line)]
82 {:channel (Integer/parseInt channel)
83 :time (Integer/parseInt time)
84 :command (keyword command)
85 :args (apply str (drop 2 args))})))
86 (drop-last
87 (clojure.string/split-lines
88 (raw-midi-text midi-file)))))
90 (def music-base new-kernel)
92 (defn store [n address]
93 (flatten
94 [0xF5
95 0xE5
97 0x3E
98 n
100 0x21
101 (reverse (disect-bytes-2 address))
103 0x77
105 0xE1
106 0xF1]))
108 (defn infinite-loop []
109 [0x18 0xFE])
111 (def divider-register 0xFF04)
113 (defrecord Bit-Note [frequency volume duration duty])
115 (defn clear-music-registers []
116 (flatten
117 [(store (Integer/parseInt "00000000" 2) 0xFF10)
118 (store (Integer/parseInt "00000000" 2) 0xFF11)
119 (store (Integer/parseInt "00000000" 2) 0xFF12)
120 (store (Integer/parseInt "00000000" 2) 0xFF13)
121 (store (Integer/parseInt "00000000" 2) 0xFF14)
123 (store (Integer/parseInt "00000000" 2) 0xFF16) ;; pattern duty 000000
124 (store (Integer/parseInt "00000000" 2) 0xFF17) ;; volume 0000
125 (store (Integer/parseInt "00000000" 2) 0xFF18) ;; frequency-low
126 (store (Integer/parseInt "00000000" 2) 0xFF19) ;; 00000 frequency-high
128 (store (Integer/parseInt "00000000" 2) 0xFF1A)
129 (store (Integer/parseInt "00000000" 2) 0xFF1B)
130 (store (Integer/parseInt "00000000" 2) 0xFF1C)
131 (store (Integer/parseInt "00000000" 2) 0xFF1D)
132 (store (Integer/parseInt "00000000" 2) 0xFF1E)
134 (store (Integer/parseInt "00000000" 2) 0xFF20)
135 (store (Integer/parseInt "00000000" 2) 0xFF21)
136 (store (Integer/parseInt "00000000" 2) 0xFF22)
137 (store (Integer/parseInt "00000000" 2) 0xFF23)]))
140 ;; mini-midi syntax
142 ;; codes
143 ;; note-code == 0x00
144 ;; change-duty-code = 0x01
145 ;; silence-code = 0x02
147 ;; silence format
148 ;; 2 bytes
149 ;; [silence-code (0x02)]
150 ;; [duration-8-bits]
152 ;; note data format
153 ;; 4 bytes
154 ;; [note-code (0x00)]
155 ;; [volume-4-bits 0 frequency-high-3-bits]
156 ;; [frequengy-low-8-bits]
157 ;; [duration-8-bits]
159 ;; change-duty-format
160 ;; 2 bytes
161 ;; [change-duty-code (0x01)]
162 ;; [new-duty]
164 (def note-code 0x00)
165 (def change-duty-code 0x01)
166 (def silence-code 0x02)
168 (defn do-message
169 "Read the message which starts at the current value of HL and do
170 what it says. Duration is left in A, and HL is advanced
171 appropraitely."
172 []
173 (let [switch
174 [0x2A ;; load message code into A, increment HL
176 ;; switch on message
177 0xFE
178 note-code
180 0x20
181 :note-length]
183 play-note
184 [0x2A ;; load volume/frequency-high info
185 0xF5 ;; push A
186 0xE6
187 (Integer/parseInt "11110000" 2) ;; volume mask
188 0xE0
189 0x17 ;; set volume
190 0xF1 ;; pop A
191 0xE6
192 (Integer/parseInt "00000111" 2) ;; frequency-high mask
193 0xE0
194 0x19 ;; set frequency-high
196 0x2A ;; load frequency low-bits
197 0xE0
198 0x18 ;; set frequency-low-bits
200 0x2A]] ;; load duration
201 (replace
202 {:note-length (count play-note)}
203 (concat switch play-note))))
205 (defn play-note
206 "Play the note referenced by HL in the appropiate channel.
207 Leaves desired-duration in A."
208 []
209 [0x2A ;; load volume/frequency-high info
210 0xF5 ;; push A
211 0xE6
212 (Integer/parseInt "11110000" 2) ;; volume mask
213 0xE0
214 0x17 ;; set volume
215 0xF1 ;; pop A
216 0xE6
217 (Integer/parseInt "00000111" 2) ;; frequency-high mask
218 0xE0
219 0x19 ;; set frequency-high
221 0x2A ;; load frequency low-bits
222 0xE0
223 0x18 ;; set frequency-low-bits
225 0x2A ;; load duration
226 ])
228 (defn music-step []
229 (flatten
230 [
231 0xF5 ;; push A
232 0xF0
233 0x05 ;; load current ticks
234 0xB8 ;;
235 0x30 ;; increment C only if last result caused carry
236 0x01
237 0x0C
239 0x47 ;; update sub-ticks (A->B)
241 0xF1 ;; pop AF, now A contains desired-ticks
243 0xB9 ;; compare with current ticks
245 ;; if desired-ticks = current ticks
246 ;; go to next note ; set current set ticks to 0.
248 0x20
249 (+ (count (do-message)) 2)
251 (do-message)
253 0x0E
254 0x00])) ;; 0->C (current-ticks)
256 (defn music-kernel []
257 (flatten
258 [(clear-music-registers)
260 0x21
261 0x00
262 0xD0 ;; set HL to 0xD000 == music-start
263 0x0E
264 0x00 ;; 0->C
265 0x06
266 0x00 ;; 0->B
268 0x3E
269 0x01
270 0xE0
271 0x06 ;; set TMA to 0
273 0x3E
274 (Integer/parseInt "00000110" 2)
275 0xE0
276 0x07 ;; set TAC to 65536 Hz and activate timer
279 0xAF ;; initialiaze A to zero
282 (music-step)
283 0x18
284 (->signed-8-bit (+ (- (count (music-step)))
285 -2))]))
287 (defn frequency-code->frequency
288 [code]
289 (assert (<= 0 code 2047))
290 (/ 131072 (- 2048 code)))
292 (defn clamp [x low high]
293 (cond (> x high) high
294 (< x low) low
295 true x))
297 (defn frequency->frequency-code
298 [frequency]
299 (clamp
300 (Math/round
301 (float
302 (/ (- (* 2048 frequency) 131072) frequency)))
303 0x00 2048))
305 (defn note-codes [frequency volume duration]
306 (assert (<= 0 volume 0xF))
307 (if (<= duration 0xFF)
308 (let [frequency-code
309 (frequency->frequency-code frequency)
310 volume&high-frequency
311 (+ (bit-shift-left volume 4)
312 (bit-shift-right frequency-code 8))
313 low-frequency
314 (bit-and 0xFF frequency-code)]
315 [note-code
316 volume&high-frequency
317 low-frequency
318 duration])
319 (vec
320 (flatten
321 [(note-codes frequency volume 0xFF)
322 (note-codes frequency volume (- duration 0xFF))]))))
325 (defn midi-code->frequency
326 [midi-code]
327 (* 8.1757989156
328 (Math/pow 2 (* (float (/ 12)) midi-code))))
330 ;; division == clock-pulses / quarter-note
331 ;; tempo == microseconds / quarter-note
333 ;; have: clock-pulses
334 ;; want: seconds
337 (defn silence [length]
338 {:frequency 1
339 :duration length
340 :volume 0})
342 (defn midi->mini-midi [#^File midi-file]
343 (let [midi-events (parse-midi midi-file)
345 note-on-events
346 (filter #(= :Note_on_c (:command %)) midi-events)
347 note-off-events
348 (filter #(= :Note_off_c (:command %)) midi-events)
350 channel-1-on
351 (sort-by :time
352 (filter #(= 1 (:channel (:args %)))
353 note-on-events))
354 channel-1-off
355 (sort-by :time
356 (filter #(= 1 (:channel (:args %)))
357 note-off-events))
360 tempo (:args (first (filter #(= :Tempo (:command %)) midi-events)))
361 division (:division
362 (:args (first (filter #(= :Header (:command %)) midi-events))))
364 notes
365 (map
366 (fn [note-on note-off]
367 {:frequency (midi-code->frequency (:note (:args note-on)))
368 :duration
369 (/ (* (/ tempo division)
370 (- (:time note-off) (:time note-on)))
371 1e6) ;; convert clock-pulses into seconds
372 :volume (int (/ (:velocity (:args note-on)) 10))
373 :time-stamp (/ (* (/ tempo division)
374 (:time note-on)) 1e6)})
375 channel-1-on channel-1-off)
377 silences
378 (map (fn [note-1 note-2]
379 (let [note-1-space (- (:time-stamp note-2)
380 (:time-stamp note-1))
381 note-1-length (:duration note-1)]
382 (silence (- note-1-space note-1-length))))
383 ;; to handle silence at the beginning.
384 (concat [(assoc (silence 0)
385 :time-stamp 0)] notes)
386 notes)
388 notes-with-silence
389 (filter (comp not zero? :duration) (interleave silences notes))
390 ]
392 (map
393 (fn [note-event]
394 (note-codes (:frequency note-event)
395 (:volume note-event)
396 (int (* (:duration note-event) 0x100))))
397 notes-with-silence)))
400 (def C4 (partial note-codes 261.63))
401 (def D4 (partial note-codes 293.66))
402 (def E4 (partial note-codes 329.63))
403 (def F4 (partial note-codes 349.23))
404 (def G4 (partial note-codes 392))
405 (def A4 (partial note-codes 440))
406 (def B4 (partial note-codes 493.88))
407 (def C5 (partial note-codes 523.3))
409 (def scale
410 (flatten
411 [(C4 0xF 0x40)
412 (D4 0xF 0x40)
413 (E4 0xF 0x40)
414 (F4 0xF 0x40)
415 (G4 0xF 0x40)
416 (A4 0xF 0x40)
417 (B4 0xF 0x40)
418 (C5 0xF 0x40)]))
420 (defn play-music [music-bytes]
421 (let [program-target 0xC000
422 music-target 0xD000]
423 (-> (set-memory-range (second (music-base))
424 program-target (music-kernel))
425 (set-memory-range music-target music-bytes)
426 (PC! program-target))))
429 (defn test-note [music-bytes]
430 (-> (set-memory-range (second (music-base))
431 0xC000 (concat (clear-music-registers)
432 (play-note)
433 (infinite-loop)))
434 (set-memory-range 0xD000 music-bytes)
435 (PC! 0xC000)
436 (HL! 0xD000)
437 ))
440 (defn run-program
441 ([program]
442 (let [target 0xC000]
443 (-> (set-memory-range (second (music-base))
444 target program)
445 (PC! target)))))
447 (defn test-timer []
448 (flatten
449 [0x3E
450 0x01
451 0xE0
452 0x06 ;; set TMA to 0
454 0x3E
455 (Integer/parseInt "00000100" 2)
456 0xE0
457 0x07 ;; set TAC to 16384 Hz and activate timer
459 (repeat
460 500
461 [0xF0
462 0x05])]))