]> git.jsancho.org Git - gacela.git/blob - games/asteroids/asteroids.scm
92b03c406c8a93ca506b906e5dc512311cad454c
[gacela.git] / games / asteroids / asteroids.scm
1 (set-game-properties! #:title "Gacela Asteroids")
2
3 (define max-x (/ (assoc-ref (get-game-properties) 'width) 2))
4 (define min-x (- max-x))
5 (define max-y (/ (assoc-ref (get-game-properties) 'height) 2))
6 (define min-y (- max-y))
7
8 (define-mob (asteroid
9              (image (load-texture "Asteroid.png"))
10              (x 0) (y 0) (angle 0)
11              (vx 1) (vy 1))
12   (set! x (+ x vx))
13   (set! y (+ y vy))
14   (set! angle (+ angle 1))
15
16   (cond ((> x max-x) (set! vx -1))
17         ((< x min-x) (set! vx 1)))
18   (cond ((> y max-y) (set! vy -1))
19         ((< y min-y) (set! vy 1)))
20   
21   (translate x y)
22   (rotate angle)
23   (draw-texture image))
24
25 (define-mob (ship
26              (ship1 (load-texture "Ship1.png"))
27              (ship2 (load-texture "Ship2.png"))
28              (x 0) (y 0) (angle 0)
29              (moving #f))
30   (cond ((key? 'left) (set! angle (+ angle 5)))
31         ((key? 'right) (set! angle (- angle 5))))
32   (cond ((key? 'up)
33          (let ((r (degrees-to-radians (- angle))))
34            (set! x (+ x (* 4 (sin r))))
35            (set! y (+ y (* 4 (cos r)))))
36          (cond ((> x max-x) (set! x min-x))
37                ((< x min-x) (set! x max-x)))
38          (cond ((> y max-y) (set! y min-y))
39                ((< y min-y) (set! y max-y)))
40          (set! moving #t))
41         (else
42          (set! moving #f)))
43   (cond ((key-pressed? 'space)
44          (show-mob (make-shot #:x x #:y y #:angle angle))))
45
46   (translate x y)
47   (rotate angle)
48   (draw-texture (if moving ship2 ship1)))
49
50 (define-mob (shot (x 0) (y 0) (angle 0))
51   (let ((r (degrees-to-radians (- angle))))
52     (set! x (+ x (* 10 (sin r))))
53     (set! y (+ y (* 10 (cos r))))
54     (cond ((or (> x max-x)
55                (< x min-x)
56                (> y max-y)
57                (< y min-y))
58            (kill-me))))
59
60   (translate x y)
61   (rotate angle)
62   (draw-line 10))
63
64
65 (show-mob (make-asteroid))
66 (show-mob (make-ship))
67
68 ;; (define (make-asteroids n)
69 ;;   (define (xy n r)
70 ;;     (let ((n2 (- (random (* n 2)) n)))
71 ;;       (cond ((and (< n2 r) (>= n2 0)) r)
72 ;;          ((and (> n2 (- r)) (< n2 0)) (- r))
73 ;;          (else n2))))
74
75 ;;   (cond ((= n 0) '())
76 ;;      (else
77 ;;       (cons `((x . ,(xy max-x 20)) (y . ,(xy max-y 20)) (angle . 0) (vx . 1) (vy . 1) (size . 95))
78 ;;             (make-asteroids (- n 1))))))
79
80 ;; (define (killed-ship? s a)
81 ;;   (cond ((null? a) #f)
82 ;;      (else
83 ;;       (or (< (distance-between-points (list (assoc-ref s 'x) (assoc-ref s 'y))
84 ;;                                       (list (assoc-ref (car a) 'x) (assoc-ref (car a) 'y)))
85 ;;              (assoc-ref (car a) 'size))
86 ;;           (killed-ship? s (cdr a))))))
87
88 ;; (define (kill-asteroids s a)
89 ;;   (define (f1 s1 a)
90 ;;     (cond ((null? a)
91 ;;         (values a #f))
92 ;;        (else
93 ;;         (let ((a1 (car a)))
94 ;;           (cond ((< (distance-between-points (list (assoc-ref s1 'x) (assoc-ref s1 'y))
95 ;;                                              (list (assoc-ref a1 'x) (assoc-ref a1 'y)))
96 ;;                     (assoc-ref a1 'size))
97 ;;                  (values (cdr a) #t))
98 ;;                 (else
99 ;;                  (receive (an k) (f1 s1 (cdr a))
100 ;;                           (values (cons a1 an) k))))))))
101
102 ;;   (cond ((null? s)
103 ;;       (values s a))
104 ;;      (else
105 ;;       (let ((s1 (car s)))
106 ;;         (receive (an k) (f1 s1 a)
107 ;;                  (cond (k
108 ;;                         (kill-asteroids (cdr s) an))
109 ;;                        (else
110 ;;                         (receive (sn an) (kill-asteroids (cdr s) an)
111 ;;                                  (values (cons s1 sn) an)))))))))
112                            
113
114 ;; (let ((asteroids #f) (ship #f) (shots #f))
115 ;;   (define (new-game n)
116 ;;     (set! asteroids (make-asteroids n))
117 ;;     (set! ship '((x . 0) (y . 0) (angle . 0) (moving . #f)))
118 ;;     (set! shots '()))
119
120 ;;   (new-game 2)
121
122 ;;   (run-game
123 ;;    (cond ((killed-ship? ship asteroids)
124 ;;        (new-game 2)))
125 ;;    (receive (s a) (kill-asteroids shots asteroids)
126 ;;          (set! shots s)
127 ;;          (set! asteroids a))
128 ;;    (set! asteroids (map move-asteroid asteroids))
129 ;;    (set! ship (move-ship (alist-copy ship)))
130 ;;    (let ((shot (ship-shot ship)))
131 ;;      (cond (shot
132 ;;          (set! shots (cons shot shots)))))
133 ;;    (set! shots (move-shots shots))
134 ;;    (for-each draw-asteroid asteroids)
135 ;;    (for-each draw-shot shots)
136 ;;    (draw-ship ship)))