blob: 8e8011f58e4ac2a55a2daf33b3df54038cf877d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
(module downstroke-entity
*
(import scheme
(chicken base)
(chicken keyword)
(only srfi-1 fold))
;; Entities = plists with shared keys (#:type, #:x, #:y, #:width, #:height, ...).
(define (entity-ref entity key #!optional default)
(get-keyword key entity (if (procedure? default) default (lambda () default))))
(define (entity-type entity)
(entity-ref entity #:type #f))
(define (entity-set entity key val)
(let ((cleaned (let loop ((lst entity) (acc '()))
(if (null? lst)
(reverse acc)
(let ((k (car lst))
(v (cadr lst)))
(if (eq? k key)
(loop (cddr lst) acc)
(loop (cddr lst) (cons v (cons k acc)))))))))
(cons key (cons val cleaned))))
(define (entity-update entity key proc #!optional default)
(entity-set entity key (proc (entity-ref entity key default))))
(define (make-player-entity x y width height)
(list #:type 'player
#:x x
#:y y
#:width width
#:height height
#:vx 0
#:vy 0
#:gravity? #t
#:on-ground? #f
#:tile-id 29
#:input-map '((left . (-2 . 0))
(right . ( 2 . 0))
(down . ( 0 . 2)))))
)
|