Mercurial > vba-clojure
view clojure/com/aurellem/run/music.clj @ 466:b31cd6651375
working on noise.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 04 May 2012 04:13:13 -0500 |
parents | 34bf4b64d9d1 |
children | ac0ed5c1a1c4 |
line wrap: on
line source
1 (ns com.aurellem.run.music2 (:use (com.aurellem.gb saves gb-driver util constants3 items vbm characters money4 rlm-assembly))5 (:use (com.aurellem.run util title save-corruption6 bootstrap-0 bootstrap-1))7 (:require clojure.string)8 (:import [com.aurellem.gb.gb_driver SaveState])9 (:import java.io.File))11 (def third-kind12 (File. "/home/r/proj/midi/third-kind.mid"))14 (def pony15 (File. "/home/r/proj/vba-clojure/music/pony-title.mid"))17 (def sync-test18 (File. "/home/r/proj/vba-clojure/music/sync-test.mid"))21 (defn raw-midi-text [#^File midi-file]22 (:out23 (clojure.java.shell/sh24 "midicsv"25 (.getCanonicalPath midi-file)26 "-")))28 (def command-line #"^(\d+), (\d+), ([^,]+)(.*)$")30 (defmulti parse-command :command)32 (defn discard-args [command] (dissoc command :args))34 (defmethod parse-command :Start_track35 [command] (discard-args command))37 (defmethod parse-command :End_track38 [command] (discard-args command))40 (defmethod parse-command :default41 [command] command)43 (defn parse-number-list44 [number-list-str]45 (map #(Integer/parseInt %)46 (clojure.string/split number-list-str #", ")))48 (defmethod parse-command :Tempo49 [command]50 (update-in command [:args] #(Integer/parseInt %)))52 (defn parse-midi-note-list53 [midi-note-list-str]54 (let [[channel note velocity]55 (parse-number-list midi-note-list-str)]56 {:channel channel :note note :velocity velocity}))58 (defmethod parse-command :Note_on_c59 [command]60 (update-in command [:args] parse-midi-note-list))62 (defmethod parse-command :Note_off_c63 [command]64 (update-in command [:args] parse-midi-note-list))66 (defmethod parse-command :Header67 [command]68 (let [args (:args command)69 [format num-tracks division] (parse-number-list args)]70 (assoc command :args71 {:format format72 :num-tracks num-tracks73 :division division})))75 (defmethod parse-command :Program_c76 [command]77 (let [args (:args command)78 [channel program-num] (parse-number-list args)]79 (assoc command :args80 {:channel channel81 :program-num program-num})))83 (defn parse-midi [#^File midi-file]84 (map85 (comp parse-command86 (fn [line]87 (let [[[_ channel time command args]]88 (re-seq command-line line)]89 {:channel (Integer/parseInt channel)90 :time (Integer/parseInt time)91 :command (keyword command)92 :args (apply str (drop 2 args))})))93 (drop-last94 (clojure.string/split-lines95 (raw-midi-text midi-file)))))97 (def music-base new-kernel)99 (defn store [n address]100 (flatten101 [0xF5102 0xE5104 0x3E105 n107 0x21108 (reverse (disect-bytes-2 address))110 0x77112 0xE1113 0xF1]))115 (defn infinite-loop []116 [0x18 0xFE])118 (def divider-register 0xFF04)120 (defrecord Bit-Note [frequency volume duration duty])122 (defn clear-music-registers []123 (flatten124 [(store (Integer/parseInt "00000000" 2) 0xFF10) ;; sweep125 (store (Integer/parseInt "00000000" 2) 0xFF11) ;; pattern duty126 (store (Integer/parseInt "00000000" 2) 0xFF12) ;; volume127 (store (Integer/parseInt "00000000" 2) 0xFF13) ;; frequency-low128 (store (Integer/parseInt "00000000" 2) 0xFF14) ;; frequency-high130 (store (Integer/parseInt "00000000" 2) 0xFF16) ;; pattern duty 000000131 (store (Integer/parseInt "00000000" 2) 0xFF17) ;; volume 0000132 (store (Integer/parseInt "00000000" 2) 0xFF18) ;; frequency-low133 (store (Integer/parseInt "00000000" 2) 0xFF19) ;; 00000 frequency-high135 (store (Integer/parseInt "00000000" 2) 0xFF1A)136 (store (Integer/parseInt "00000000" 2) 0xFF1B)137 (store (Integer/parseInt "00000000" 2) 0xFF1C)138 (store (Integer/parseInt "00000000" 2) 0xFF1D)139 (store (Integer/parseInt "00000000" 2) 0xFF1E)141 (store (Integer/parseInt "00000000" 2) 0xFF20) ;; length142 (store (Integer/parseInt "00000000" 2) 0xFF21) ;; volume143 (store (Integer/parseInt "00000000" 2) 0xFF22) ;; noise-frequency144 (store (Integer/parseInt "00000000" 2) 0xFF23) ;; control145 ]))148 ;; mini-midi syntax150 ;; codes151 ;; note-code == 0x00152 ;; change-duty-code = 0x01153 ;; silence-code = 0x02155 ;; silence format156 ;; 2 bytes157 ;; [silence-code (0x02)]158 ;; [duration-8-bits]160 ;; note data format161 ;; 4 bytes162 ;; [note-code (0x00)]163 ;; [volume-4-bits 0 frequency-high-3-bits]164 ;; [frequengy-low-8-bits]165 ;; [duration-8-bits]167 ;; change-duty-format168 ;; 2 bytes169 ;; [change-duty-code (0x01)]170 ;; [new-duty]172 (def note-code 0x00)173 (def change-duty-code 0x01)174 (def silence-code 0x02)176 (defn do-message177 "Read the message which starts at the current value of HL and do178 what it says. Duration is left in A, and HL is advanced179 appropraitely."180 ([] (do-message 0x16 1))181 ([sound-base-address wave-duty]182 (assert (<= 0 wave-duty 3))183 (let [switch184 [0x2A ;; load message code into A, increment HL186 ;; switch on message187 0xFE188 note-code190 0x20191 :note-length]193 play-note194 [0x3E ;; set wave-duty195 (bit-shift-left wave-duty 6)196 0xE0197 sound-base-address198 0x2A ;; load volume/frequency-high info199 0xF5 ;; push A200 0xE6201 (Integer/parseInt "11110000" 2) ;; volume mask202 0xE0203 (inc sound-base-address) ;;0x17 ;; set volume204 0xF1 ;; pop A205 0xE6206 (Integer/parseInt "00000111" 2) ;; frequency-high mask207 0xE0208 (+ 3 sound-base-address) ;;0x19 ;; set frequency-high210 0x2A ;; load frequency low-bits211 0xE0212 (+ 2 sound-base-address) ;;0x18 ;; set frequency-low-bits213 0x2A]] ;; load duration214 (replace215 {:note-length (count play-note)}216 (concat switch play-note)))))218 (defn play-noise219 "read [noise-code, duration] and play the noise. Duration is left in220 A, and HL is advanced appropraitely."221 ([]222 [0x2A ;; load noise-code into A223 0xE0224 0x22 ;; write noise-code225 0x2A] ;; load duration into A226 ))229 ;; (defn play-note230 ;; "Play the note referenced by HL in the appropiate channel.231 ;; Leaves desired-duration in A."233 ;; [0x2A ;; load volume/frequency-high info234 ;; 0xF5 ;; push A235 ;; 0xE6236 ;; (Integer/parseInt "11110000" 2) ;; volume mask237 ;; 0xE0238 ;; 0x17 ;; set volume239 ;; 0xF1 ;; pop A240 ;; 0xE6241 ;; (Integer/parseInt "00000111" 2) ;; frequency-high mask242 ;; 0xE0243 ;; 0x19 ;; set frequency-high245 ;; 0x2A ;; load frequency low-bits246 ;; 0xE0247 ;; 0x18 ;; set frequency-low-bits249 ;; 0x2A ;; load duration250 ;; ])252 (defn music-step [sound-base-address wave-duty noise?]253 ;; C == current-ticks254 ;; A == desired-ticks256 (flatten257 [;; restore variables from stack258 0xE1 ;; pop HL259 0xC1 ;; pop CB260 0xF1 ;; pop AF263 0xF5 ;; push A264 0xF0265 0x05 ;; load current ticks from 0xF005266 0xB8 ;;267 0x30 ;; increment C only if last result caused carry268 0x01269 0x0C271 0x47 ;; update sub-ticks (A->B)273 0xF1 ;; pop AF, now A contains desired-ticks275 0xB9 ;; compare with current ticks277 ;; if desired-ticks = current ticks278 ;; go to next note ; set current set ticks to 0.280 (if noise?281 [0x20282 (+ 2 (count (play-noise)))283 (play-noise)]285 [0x20286 (+ (count (do-message 0 0)) 2)287 (do-message sound-base-address wave-duty)])289 0x0E290 0x00 ;; 0->C (current-ticks)292 ;; save variables to stack293 0xF5 ;; push AF294 0xC5 ;; push CB295 0xE5 ;; push HL298 ]))300 (def music-1 0x11)301 (def music-2 0x16)303 (defn music-kernel [wave-duty-1 wave-duty-2]304 (flatten305 [;; global initilization section306 (clear-music-registers)308 0x3E309 0x01310 0xE0311 0x06 ;; set TMA to 0313 0x3E314 (Integer/parseInt "00000110" 2)315 0xE0316 0x07 ;; set TAC to 65536 Hz and activate timer318 ;; initialize frame 1319 0x21320 0x00321 0xA0 ;; set HL to 0xA000 == music-start 1322 0x0E323 0x00 ;; 0->C324 0x06325 0x00 ;; 0->B327 0xAF ;; 0->A329 0xF5 ;; push AF330 0xC5 ;; push CB331 0xE5 ;; push HL333 ;; initialize frame 2334 0x21335 0x00336 0xB0 ;; set HL to 0xB000 == music-start 2338 0xF5 ;; push AF339 0xC5 ;; push CB340 0xE5 ;; push HL343 ;; initialize frame 3 (noise)344 0x21345 0x00346 0xA9 ;; 0xA9OO -> HL348 0xF5 ;; push AF349 0xC5 ;; push CB350 0xE5 ;; push HL352 ;; main music loop354 0xE8 ;; SP + 12; activate frame 1355 12356 (music-step music-1 wave-duty-1 false)358 0xE8 ;; SP - 6; activate frame 2359 (->signed-8-bit -6)360 (music-step music-2 wave-duty-2 false)362 0xE8 ;; SP - 6; activate frame 3363 (->signed-8-bit -6)364 (music-step nil nil true)366 0x18367 (->signed-8-bit (+368 ;; two music-steps369 (- (* 2 (count (music-step 0 0 false))))370 (- (count (music-step nil nil true)))371 -2 ;; this jump instruction372 -2 ;; activate frame 1373 -2 ;; activate frame 2374 -2 ;; activate frame 3375 ))]))377 (defn frequency-code->frequency378 [code]379 (assert (<= 0 code 2047))380 (/ 131072 (- 2048 code)))382 (defn clamp [x low high]383 (cond (> x high) high384 (< x low) low385 true x))387 (defn frequency->frequency-code388 [frequency]389 (clamp390 (Math/round391 (float392 (/ (- (* 2048 frequency) 131072) frequency)))393 0x00 2048))395 (defn note-codes [frequency volume duration]396 (assert (<= 0 volume 0xF))397 (if (<= duration 0xFF)398 (let [frequency-code399 (frequency->frequency-code frequency)400 volume&high-frequency401 (+ (bit-shift-left volume 4)402 (bit-shift-right frequency-code 8))403 low-frequency404 (bit-and 0xFF frequency-code)]405 [note-code406 volume&high-frequency407 low-frequency408 duration])409 (vec410 (flatten411 [(note-codes frequency volume 0xFF)412 (note-codes frequency volume (- duration 0xFF))]))))415 (defn midi-code->frequency416 [midi-code]417 (* 8.1757989156418 (Math/pow 2 (* (float (/ 12)) midi-code))))420 ;; division == clock-pulses / quarter-note421 ;; tempo == microseconds / quarter-note423 ;; have: clock-pulses424 ;; want: seconds427 (defn silence [length]428 {:frequency 1429 :duration length430 :volume 0})432 (defn commands433 "return all events where #(= (:command %) command)"434 [command s]435 (filter #(= command (:command %)) s))437 (defn track-info [#^File midi-file]438 (let [events (parse-midi midi-file)439 track-titles (commands :Title_t events)440 track-info441 (map #(read-string (read-string (:args %))) track-titles)442 track-map443 (zipmap track-info track-titles)]444 track-map))446 (defn target-tracks447 "return the track-numbers in the form [voice-0 voice-1 noise]"448 [#^File midi-file]449 (let [track-data (track-info midi-file)450 track-order451 (zipmap (map :out (keys track-data))452 (vals track-data))453 channel-nums (map (comp :channel track-order) (range 3))]454 channel-nums))456 (defn midi-track->mini-midi [#^File midi-file track-num]457 (let [midi-events (parse-midi midi-file)459 note-on-events (commands :Note_on_c midi-events)460 note-off-events (commands :Note_off_c midi-events)462 select-channel463 (fn [n s]464 (sort-by :time (filter #(= n (:channel %)) s)))466 channel-on (select-channel track-num note-on-events)468 channel-off (select-channel track-num note-off-events)471 tempo (:args (first (commands :Tempo midi-events)))472 division473 (:division (:args (first (commands :Header midi-events))))475 notes476 (map477 (fn [note-on note-off]478 {:frequency (midi-code->frequency (:note (:args note-on)))479 :duration480 (/ (* (/ tempo division)481 (- (:time note-off) (:time note-on)))482 1e6) ;; convert clock-pulses into seconds483 :volume (int (/ (:velocity (:args note-on)) 10))484 :time-stamp (/ (* (/ tempo division)485 (:time note-on)) 1e6)})486 channel-on channel-off)488 silences489 (map (fn [note-1 note-2]490 (let [note-1-space (- (:time-stamp note-2)491 (:time-stamp note-1))492 note-1-length (:duration note-1)]493 (silence (- note-1-space note-1-length))))494 ;; to handle silence at the beginning.495 (concat [(assoc (silence 0)496 :time-stamp 0)] notes)497 notes)499 notes-with-silence500 (concat501 (filter (comp not zero? :duration)502 (interleave silences notes))503 [(silence 3)])]505 (map506 (fn [note-event]507 (note-codes (:frequency note-event)508 (:volume note-event)509 (int (* (:duration note-event) 0x100))))510 notes-with-silence)))512 (defn midi->mini-midi [#^File midi-file]513 (let [targets (target-tracks midi-file)514 get-track (fn [n]515 (if (not (nil? n))516 (midi-track->mini-midi midi-file n)517 []))518 duty-info (keys (track-info midi-file))]520 {:voice-1 (get-track (nth targets 0))521 :voice-2 (get-track (nth targets 1))522 :noise (get-track (nth targets 2))523 :duty (zipmap (map :out duty-info)524 (map #(get % :duty 0) duty-info))}))526 (defn play-midi [#^File midi-file]527 (let [track-1-target 0xA000528 track-2-target 0xB000529 program-target 0xC000530 mini-midi (midi->mini-midi midi-file)531 long-silence (flatten (note-codes 20 0 9001))533 voice-1 (flatten (:voice-1 mini-midi))534 wave-duty-1 ((:duty mini-midi) 0 0)536 voice-2 (flatten (:voice-2 mini-midi))537 wave-duty-2 ((:duty mini-midi) 1 0)539 noise (flatten (:noise mini-midi))540 ]542 (-> (second (music-base))543 (set-memory-range track-1-target long-silence)544 (set-memory-range track-2-target long-silence)545 (set-memory-range track-1-target voice-1)546 (set-memory-range track-2-target voice-2)547 (set-memory-range548 program-target549 (music-kernel wave-duty-1 wave-duty-2))550 (PC! program-target))))552 (def C4 (partial note-codes 261.63))553 (def D4 (partial note-codes 293.66))554 (def E4 (partial note-codes 329.63))555 (def F4 (partial note-codes 349.23))556 (def G4 (partial note-codes 392))557 (def A4 (partial note-codes 440))558 (def B4 (partial note-codes 493.88))559 (def C5 (partial note-codes 523.3))561 (def scale562 (flatten563 [(C4 0xF 0x40)564 (D4 0xF 0x40)565 (E4 0xF 0x40)566 (F4 0xF 0x40)567 (G4 0xF 0x40)568 (A4 0xF 0x40)569 (B4 0xF 0x40)570 (C5 0xF 0x40)]))572 (defn play-music [music-bytes]573 (let [program-target 0xC000574 music-target 0xA000]575 (-> (set-memory-range (second (music-base))576 program-target (music-kernel))577 (set-memory-range music-target music-bytes)578 (PC! program-target))))580 (defn run-program581 ([program]582 (let [target 0xC000]583 (-> (set-memory-range (second (music-base))584 target program)585 (PC! target)))))587 (defn test-timer []588 (flatten589 [0x3E590 0x01591 0xE0592 0x06 ;; set TMA to 0594 0x3E595 (Integer/parseInt "00000100" 2)596 0xE0597 0x07 ;; set TAC to 16384 Hz and activate timer599 (repeat600 500601 [0xF0602 0x05])]))