Mercurial > vba-clojure
view clojure/com/aurellem/run/adv_choreo.clj @ 571:c6b01ff2f1e5
added row and column variables; clear-screen logic works now.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 01 Sep 2012 03:40:50 -0500 |
parents | a6dcb6236fbc |
children | 58a25fa15176 |
line wrap: on
line source
1 ;;;; "Advanced Choreography" -- this is the final video for this project.3 (ns com.aurellem.run.adv-choreo4 (:use (com.aurellem.gb saves gb-driver util constants5 items vbm characters money6 rlm-assembly))7 (:use (com.aurellem.run util music title save-corruption8 bootstrap-0 bootstrap-1 image9 ram-display final-cut basic-choreo))10 (:require clojure.string)11 (:import java.awt.image.BufferedImage)12 (:import (javax.imageio ImageWriteParam IIOImage ImageIO))13 (:import [com.aurellem.gb.gb_driver SaveState])14 (:import java.io.File))18 ;; Use the gameboy's screen to display the new programming19 ;; instead of a side window. This will make it look much20 ;; cooler and create a terminal-like effect as the game is21 ;; being reprogramed. To do this, use a fixed data entry22 ;; region in ram, and run a program that translates this23 ;; region into the screen. Every time this data entry region24 ;; is full, run a program that copies the data to the25 ;; appropriate region in memory. This will cost ~15 seconds26 ;; at the beginning to set up, and then should have minimal27 ;; overhead (~5%) for the rest of the data transfer, but28 ;; will have a good psychological effect for the viewer29 ;; since he can see that something is actually happening in30 ;; the game.33 ;; Symbol size and type.35 ;; use fonts from zophar's domain:36 ;; http://www.zophar.net/utilities/fonts/8x8-font-archive.html38 ;; Green font on black background for matrix look.41 (defn program-data [base-address]42 (let [image-program43 (display-image-kernel44 base-address46 ;;pinkie-pie-mark47 test-image-color49 )52 music-base-address (+ (count image-program) base-address)54 initial-music-data55 (midi-bytes pony-csv 0 0 0 0)57 data-lengths58 (map (comp count :data)59 [(:kernel initial-music-data)60 (:voice-1 initial-music-data)61 (:voice-2 initial-music-data)]);; noise not needed62 addresses63 (map (partial + music-base-address) (reductions + 0 data-lengths))65 final-music-data66 (apply (partial midi-bytes pony-csv) addresses)68 music-program69 (concat70 (:data (:kernel final-music-data))71 (:data (:voice-1 final-music-data))72 (:data (:voice-2 final-music-data))73 (:data (:noise final-music-data)))]75 (concat76 image-program ;; image program falls through to music program78 (infinite-loop)79 ;;music-program81 )))86 (def glyphs87 "The sixteen 8x8 glyphs which make up the \"terminal\" font."88 (mapv #(ImageIO/read89 (File. user-home (str "proj/vba-clojure/font/" % ".png")))90 ["0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "A" "B" "C" "D" "E" "F"]))92 (defn glyph-init-program93 [start-address]94 (let [zero-glyph (image->gb-image (glyphs 0))96 ;; write same pallet information to all pallettes97 A (flatten98 [(write-byte LCD-control-register 0x00);; disable LCD protection99 (set-palettes bg-palette-select bg-palette-data100 (repeat 8 (first (:palettes zero-glyph))))101 (select-LCD-bank 0)102 (write-byte SCX-register 0)103 (write-byte SCY-register 0)])104 B (flatten105 [(write-data106 (+ start-address (count A))107 character-data-address108 (flatten109 (map (comp gb-tile->bytes first :tiles image->gb-image)110 glyphs)))113 (write-byte114 LCD-control-register115 (Integer/parseInt116 (str117 "1" ;; LCDC on/off118 "0" ;; Window code area119 "0" ;; Windowing on?120 "1" ;; BG tile base (1 = 0x8000)121 "0" ;; BG-1 or BG-2 ?122 "0" ;; OBJ-block composition123 "0" ;; OBJ-on flag124 "1") ;; no-effect125 2))])]126 (concat A B )))130 (defn glyph-display-program131 [start-address132 max-glyphs]133 (let [data-start (+ 2 start-address)134 [max-glyphs-high max-glyphs-low]135 (disect-bytes-2 max-glyphs)136 load-data137 (flatten138 [;; data region139 0x18140 4141 0 0 ;; current num of glyphs-rendered142 0 0 ;; current row and column143 ;; save all registers144 0xC5 0xD5 0xE5 0xF5146 ;; load data from data region into registers148 0xF5 ;; push A149 0x21 ;; begin data load150 (reverse (disect-bytes-2 data-start))152 0x2A 0x47 ;; glyphs-rendered -> BC153 0x2A 0x4F155 0x16 max-glyphs-high ;; load max-glyphs156 0x1E max-glyphs-low ;; into DE157 ])159 handle-glyph-count*160 (flatten161 [;; if glyphs-rendered = max-glyph count, go directly162 ;; to stack-cleanup164 0x47 0xBA ;; compare B to D165 0x20 ;; skip next section B != D166 8 ;; this is equal to the number of instructions in the next167 ;; indented region!169 0x79 0xBB ;; compare C to E170 0x20 ;; JR NZ, skip if C != E171 4172 0xF1 ;; pop AF for stack maintainance!173 0x18174 :stack-cleanup-low175 :stack-cleanup-high176 ])178 display-glyph180 (let [init*181 (flatten182 [0xF1 ;; pop A, now A is equal to key input183 ;; BC is current number of glyphs rendered.184 ;; each glyph is two characters, and the screen can hold up185 ;; to 360 characters. Thus, if the current glyphs is a186 ;; multiple of 180, the screen must be refreshed.188 ;; DE contains max-glyphs and HL will be overwritten next189 ;; section, so both are free to use here.190 (repeat 100 0)191 ;; Reset HL to initial value192 0x21193 (reverse (disect-bytes-2 data-start))194 ;; load row and column into DE195 0x23 0x23 ;; HL += 2196 0x2A 0x57 ;; row -> D197 0x2A 0x5F ;; column -> E199 ;; clear screen if we are at 0,0200 0x57 0xB3 ;; D->A, OR E A ==> (= D E 0)201 0x20 ;; skip clear-screen if D and E are not both zero202 :clear-screen-length204 ])205 clear-screen206 (flatten207 [;; save all registers208 0xC5 0xD5 0xE5 0xF5210 (select-LCD-bank 0)211 ;; write 0x00 to memory locations212 ;; 0x9800 to 0x9A34213 0x21214 0x00 0x98 ;; load 0x9800 into HL217 0x16 3 ;; 3 -> D218 0x1E 190 ;; 188 -> E220 0x3E 0 ;; 0-> A222 ;; begin of do-while loop223 0x22 ;; load 0 to 0x9800224 0x1D ;; dec E225 0x20226 (->signed-8-bit -4)227 0x15 ;; dec D228 0x1E 190 ;; 188 -> E229 0x20230 (->signed-8-bit -8)231 ;; end of do-while-loop234 ;; restore all registers235 0xF1 0xE1 0xD1 0xC1236 ])238 init (replace239 {:clear-screen-length (count clear-screen)} init*)240 ]242 (concat init clear-screen))244 cleanup245 ;; restore all registers246 (flatten247 [0x03 ;; (inc glyphs-rednered) -> glyphs-rendered249 ;; Reset HL to initial value250 0x21251 (reverse (disect-bytes-2 data-start))252 0x78 0x22 ;; BC -> save glyphs-rendered253 0x79 0x22 ;;255 0x7A 0x22 ;; D -> rows256 0x7B 0x22 ;; E -> columns257 ])259 stack-cleanup260 [0xF1 0xE1 0xD1 0xC1]262 [stack-cleanup-high263 stack-cleanup-low]264 (disect-bytes-2 (+ start-address (count load-data)265 (count handle-glyph-count*)266 (count cleanup)267 (count display-glyph)))269 handle-glyph-count270 (replace {:stack-cleanup-high stack-cleanup-high271 :stack-cleanup-low stack-cleanup-low}272 handle-glyph-count*)]273 (println (+ (count display-glyph) (count cleanup)))274 (concat load-data275 handle-glyph-count276 display-glyph277 cleanup stack-cleanup)))279 (def main-program-base-address 0xC000)281 (defn glyph-bootstrap-program282 [start-address delay-count total-glyph-count]283 (let [init [0xAF 0x4F 0x47] ;; 0->A; 0->C; 0->B284 header (concat (frame-metronome) (read-user-input))286 glyph-display (glyph-display-program287 (+ (count init)288 (count header)289 start-address)290 2000)291 ;;(- (count (program-data 0)) 100))293 state-machine-start-address294 (+ start-address (count init) (count header) (count glyph-display))295 state-machine296 (bootstrap-state-machine state-machine-start-address)298 return-to-header299 (flatten300 [0xC3301 (reverse (disect-bytes-2302 (+ (count init) start-address)))])]303 (concat init header glyph-display state-machine return-to-header)))307 (defn-memo begin-glyph-bootstrap308 ([] (begin-glyph-bootstrap (launch-main-bootstrap-program)))309 ([script]310 (let [glyph-init (glyph-init-program relocated-bootstrap-start)311 main-glyph-start (+ relocated-bootstrap-start312 (count glyph-init))313 glyph-program (glyph-bootstrap-program314 main-glyph-start 0 0)]315 (->> script316 (do-nothing 2)317 ;; begin glyph program318 (write-RAM 0xFF1A [0 0 0]) ;; silence remnant music320 (write-RAM321 relocated-bootstrap-start322 (concat glyph-init glyph-program))323 (transfer-control relocated-bootstrap-start)324 (do-nothing 1)326 ))))328 (defn write-all-program-data329 ([] (write-all-program-data (begin-glyph-bootstrap)))330 ([script]331 (let [base-address main-program-base-address]332 (->> script333 (write-RAM base-address (program-data base-address))))))335 (defn activate-program336 ([] (activate-program (write-all-program-data)))337 ([script]338 (->> script339 (transfer-control main-program-base-address)340 ;;(do-nothing 1800)341 (do-nothing 50)342 )))345 ;; possible screen writing programs347 ;; (program needs to stop executing at some point)348 ;; maybe have total length counter or something?350 ;; automatic counter that reads from program-start and clears the351 ;; screen every 360 (* 18 20) gliphs353 ;; advantages -- very simple and low bandwidth354 ;; disadvantages -- hard to align counter356 ;; implementation -- refactor main-bootstrap-program to provide a357 ;; state-machine code-section which can be recombined into another358 ;; program.