summaryrefslogtreecommitdiff
path: root/sdl2.scm
blob: 32d7e84382ec4f68060350288bb84b4df48f86bc (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
;;; guile-sdl2 --- FFI bindings for SDL2
;;; Copyright © 2015 David Thompson <davet@gnu.org>
;;;
;;; This file is part of guile-sdl2.
;;;
;;; Guile-sdl2 is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU Lesser General Public License as
;;; published by the Free Software Foundation; either version 3 of the
;;; License, or (at your option) any later version.
;;;
;;; Guile-sdl2 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 Lesser General Public
;;; License along with guile-sdl2.  If not, see
;;; <http://www.gnu.org/licenses/>.

;;; Commentary:
;;
;; SDL initialization and error handling.
;;
;;; Code:

(define-module (sdl2)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-4)
  #:use-module (srfi srfi-9)
  #:use-module (system foreign)
  #:use-module ((sdl2 bindings) #:prefix ffi:)
  #:export (sdl-error-string
            sdl-error
            sdl-version
            sdl-init
            sdl-quit
            sdl-ticks
            sdl-performance-counter
            sdl-performance-frequency

            <color>
            make-color
            color?
            color-r
            color-g
            color-b
            color-a))

(define %default-init-flags
  '(timer audio video joystick haptic game-controller events))

(define (sdl-error-string)
  "Return the current SDL error string."
  (pointer->string (ffi:sdl-get-error)))

(define (sdl-error func message . args)
  (apply throw 'sdl-error func (string-append message ": ~A")
         (append args (list (sdl-error-string)))))

(define (sdl-version)
  "Return a three element list containing the major, minor, and patch
version of the linked SDL library."
  (let ((bv (make-u8vector 3)))
    (ffi:sdl-get-version (bytevector->pointer bv))
    (u8vector->list bv)))

(define* (sdl-init #:optional (subsystems %default-init-flags))
  "Initialize the SDL library.  This must be called before using any
other SDL procedure.

SUBSYSTEMS is an optional list of symbols that specifies the
subsystems to initialize.  All subsystems are initialized by default.
The possible flags are 'timer', 'audio', 'video', 'haptic',
'game-controller', and 'events'."
  (let ((flags (apply logior
                      (map (match-lambda
                            ('timer ffi:SDL_INIT_TIMER)
                            ('audio ffi:SDL_INIT_AUDIO)
                            ('video ffi:SDL_INIT_VIDEO)
                            ('haptic ffi:SDL_INIT_HAPTIC)
                            ('game-controller ffi:SDL_INIT_GAMECONTROLLER)
                            ('joystick ffi:SDL_INIT_JOYSTICK)
                            ('events ffi:SDL_INIT_EVENTS))
                           subsystems))))
    (unless (zero? (ffi:sdl-init flags))
      (sdl-error "sdl-init" "failed to initialize subsystems ~S"
                 subsystems))))

(define (sdl-quit)
  "Quit all activated SDL subsystems.  This procedure should be called
upon all exit conditions."
  (ffi:sdl-quit))

(define (sdl-ticks)
  "Return the number of milliseconds since the SDL library was
initialized."
  (ffi:sdl-get-ticks))

(define (sdl-performance-counter)
  "Return the current value of the high resolution counter."
  (ffi:sdl-get-performance-counter))

(define (sdl-performance-frequency)
  "Return the count per second of the high resolution counter."
  (ffi:sdl-get-performance-frequency))

;; SDL_Color
(define-record-type <color>
  (make-color r g b a)
  color?
  (r color-r)
  (g color-g)
  (b color-b)
  (a color-a))

(define (color->struct color)
  "Convert COLOR into a foreign struct."
  (match color
    (($ <color> r g b a)
     (make-c-struct ffi:sdl-color (list r g b a)))))