summaryrefslogtreecommitdiff
path: root/sly/event.scm
blob: 90fae3b58a1145f60733cec43e6ec0b0d7be4514 (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
;;; Sly
;;; 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/>.

;;; Commentary:
;;
;; SDL event handlers.
;;
;;; Code:

(define-module (sly event)
  #:use-module ((sdl2 events) #:prefix sdl2:)
  #:export (process-events
            register-event-handler))

(define (process-events)
  "Process all events in the input event queue."
  (let ((e (sdl2:poll-event)))
    (when e
      (handle-event e)
      (process-events))))

(define event-handlers (make-hash-table))

(define (register-event-handler event-type proc)
  (hashq-set! event-handlers event-type proc))

(define (handle-event e)
  "Run the relevant hook for the event E."
  (define (event-type e)
    (cond
     ((sdl2:keyboard-down-event? e)
      'key-down)
     ((sdl2:keyboard-up-event? e)
      'key-up)
     ((sdl2:mouse-button-down-event? e)
      'mouse-button-down)
     ((sdl2:mouse-button-up-event? e)
      'mouse-button-up)
     ((sdl2:mouse-motion-event? e)
      'mouse-motion)
     ((sdl2:joystick-button-down-event? e)
      'joy-button-down)
     ((sdl2:joystick-button-up-event? e)
      'joy-button-up)
     ((sdl2:joystick-axis-event? e)
      'joy-axis-motion)
     ((sdl2:window-resized-event? e)
      'window-resize)
     ((sdl2:quit-event? e)
      'quit)))

  (let ((handler (hashq-ref event-handlers (event-type e))))
    (and handler (handler e))))