bloatrunner/game/util/assets.scm

49 lines
1.6 KiB
Scheme
Raw Normal View History

2024-05-22 23:29:52 +02:00
(define-module (game util assets)
#:use-module (ice-9 ftw)
#:use-module (ice-9 textual-ports)
#:use-module (chickadee graphics texture)
#:use-module (chickadee graphics color)
#:export (assets-load assets-file-name tile-texture tile-atlas hero-texture hero-atlas assets-map-levels)
2024-05-22 23:29:52 +02:00
)
(define tile-texture #f)
(define tile-atlas #f)
(define hero-texture #f)
(define hero-atlas #f)
2024-05-22 23:29:52 +02:00
2024-05-25 13:19:31 +02:00
(define (assets-location)
2024-05-25 14:10:23 +02:00
(pk "Assets location: "
(if (current-filename)
(string-append (dirname (current-filename)) "/../../assets")
(or (getenv "ASSET_DIR") "." )))
2024-05-22 23:29:52 +02:00
)
2024-05-25 13:19:31 +02:00
(define (assets-file-name . names)
"Return the full path of a file in the assets directory. The file is
specified by a list of names, which are joined together. The
ASSET_DIR environment variable can be used to specify a prefix to the
asset directory."
(string-append (assets-location) "/" (string-join names "/")))
(define (read-level-map filename)
2024-05-25 13:19:31 +02:00
(call-with-input-file filename get-string-all))
(define (assets-map-levels f)
(map f
2024-05-25 14:10:23 +02:00
(map (lambda (filename)(assets-file-name "levels" filename))
(scandir (assets-file-name "levels")
(lambda (filename) (string-suffix? ".map" filename ))))))
2024-05-25 14:10:23 +02:00
(define (assets-load-image filename)
(load-image (assets-file-name "images" filename)))
(define (assets-load)
2024-05-25 14:10:23 +02:00
(set! tile-texture (assets-load-image "simples_pimples.png"))
(set! tile-atlas (split-texture tile-texture 16 16))
2024-05-25 14:10:23 +02:00
(set! hero-texture (assets-load-image "lr_penguin2.png"))
(set! hero-atlas (split-texture hero-texture 32 32)))