summaryrefslogtreecommitdiff
path: root/examples/particles.scm
blob: 8fa9cb647ce58b7b635890302103f89d67b75580 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
;;; guile-2d
;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
;;;
;;; This program is free software: you can redistribute it and/or
;;; modify it under the terms of the GNU General Public License as
;;; published by the Free Software Foundation, either version 3 of the
;;; License, or (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program.  If not, see
;;; <http://www.gnu.org/licenses/>.

(use-modules (srfi srfi-1)
             (srfi srfi-9)
             (2d agenda)
             (2d game)
             (2d sprite)
             (2d texture)
             (2d vector)
             (2d window))

(load "common.scm")

(set! *random-state* (random-state-from-platform))

(define window-width 640)
(define window-height 480)

;;;
;;; Particles
;;;

(define-record-type <particle>
  (make-particle sprite position velocity)
  particle?
  (sprite particle-sprite)
  (position particle-position set-particle-position!)
  (velocity particle-velocity set-particle-velocity!))

(define (update-particle! particle)
  (set-particle-position! particle
                          (v+ (particle-position particle)
                              (particle-velocity particle))))

(define (generate-particles n)
  (let ((particle-image (load-texture "images/bullet.png")))
    (list-tabulate n (lambda (n)
                       (make-particle (make-sprite particle-image)
                                      (vector (random window-width)
                                              (random window-height))
                                      (vector (* (random:normal) 1)
                                              (* (random:normal) 1)))))))

(define particle-count 500)
(define background (load-sprite "images/stars.png"
                                #:anchor #(0 0)))
(define particles (generate-particles particle-count))

(define (draw-particles particles)
  (for-each
   (lambda (p)
     (let* ((sprite (particle-sprite p)))
       (draw-sprite (set-sprite-position sprite (particle-position p)))))
   particles))

(define (draw dt alpha)
  (draw-sprite background)
  (draw-particles particles))

(define (update)
  (for-each update-particle! particles))

(schedule-each update)
(add-hook! draw-hook draw)

(with-window (make-window #:title "Particles"
                          #:resolution (vector window-width
                                               window-height))
  (start-game-loop))