Filename cleanup

Avoid spaces and parens, adjust code, change the r-logo name.
This commit is contained in:
Eli Barzilay 2013-04-22 15:42:26 -04:00
parent ef0f610ca7
commit 8e56fa7668
13 changed files with 7 additions and 11 deletions

View File

@ -47,4 +47,4 @@ Not all games are winnable (although I hope most are).
Thanks to Lazy Crazy (@url{http://lazycrazy.deviantart.com}) for
the blue ball icons and to YOOtheme (@url{http://www.yootheme.com/icons})
for the pumpkin icon.
for the pumpkin icon.

View File

@ -13,7 +13,7 @@
(provide game@)
(define-runtime-path bmps "bmps")
(define-runtime-path bmps "images")
(define big-pumpkin (read-bitmap (build-path bmps "pumpkin" "pumpkin-64x64.png")))
(define two-pumpkins (make-bitmap (send big-pumpkin get-width) (send big-pumpkin get-height)))
(let ([small-pumpkin (read-bitmap (build-path bmps "pumpkin" "pumpkin-48x48.png"))]
@ -116,14 +116,10 @@
(length args))))
(define players (make-hash))
(for ([file (in-directory (build-path bmps "very-emotional"))])
(when (regexp-match #rx"png$" (path->string file))
(define name (path->string (last (explode-path file))))
(define m-num (regexp-match #rx"[(]([0-9]+)[)]" name))
(define num (if m-num
(string->number (list-ref m-num 1))
0))
(hash-set! players num (read-bitmap file))))
(for ([file (directory-list (build-path bmps "very-emotional") #:build? #t)])
(define m (regexp-match #rx"([0-9]+)[.]png$" file))
(when m
(hash-set! players (string->number (cadr m)) (read-bitmap file))))
(define (move dx dy)
(unless (game-over?)
@ -282,4 +278,4 @@
[callback (lambda (_1 _2) (show-help))]))
(send f show #t)))
(module+ main (invoke-unit game@))
(module+ main (invoke-unit game@))

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

View File

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB