summaryrefslogtreecommitdiff
path: root/sly/window.scm
blob: 7b172763f72e86d7653ad09bad1c6d04cf1b444d (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
121
122
123
124
125
;;; 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:
;;
;; Window management.
;;
;;; Code:

(define-module (sly window)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-9)
  #:use-module ((sdl2) #:prefix sdl2:)
  #:use-module ((sdl2 events) #:prefix sdl2:)
  #:use-module ((sdl2 video) #:prefix sdl2:)
  #:use-module (sly event)
  #:use-module (sly signal)
  #:use-module (sly math transform)
  #:use-module (sly math vector)
  #:export (make-window
            window?
            window-title
            window-resolution
            window-fullscreen?
            window-width
            window-height
            window-size
            window-projection
            with-window
            window-resize-hook
            window-close-hook

            init-window
            swap-window))

(define-record-type <window>
  (%make-window title resolution fullscreen?)
  window?
  (title window-title)
  (resolution window-resolution)
  (fullscreen? window-fullscreen?))

(define* (make-window #:optional #:key
                      (title "Untitled")
                      (resolution (vector2 640 480))
                      (fullscreen? #f))
  (%make-window title resolution fullscreen?))

(define window-resize-hook (make-hook 1))

(register-event-handler
 'window-resize
 (lambda (e)
   (match (sdl2:window-event-vector e)
     ((width height)
      (run-hook window-resize-hook (vector2 width height))))))

(define-signal window-size
  (hook->signal window-resize-hook (vector2 0 0) identity))
(define-signal window-width (signal-map vx window-size))
(define-signal window-height (signal-map vy window-size))

(define-signal window-projection
  (signal-map (lambda (size)
                (if (or (zero? (vx size)) (zero? (vy size)))
                    identity-transform
                    (orthographic-projection 0 (vx size) 0 (vy size) -1 1)))
              window-size))

(define window-close-hook (make-hook))

(register-event-handler
 'quit
 (lambda (e)
   (run-hook window-close-hook)))

(define %sdl-window #f)
(define %gl-context #f)

(define (init-window)
  (set! %sdl-window (sdl2:make-window #:opengl? #t #:show? #t))
  (sdl2:set-gl-attribute! 'context-major-version 3)
  (sdl2:set-gl-attribute! 'context-minor-version 2)
  (sdl2:set-gl-attribute! 'double-buffer 1)
  (sdl2:set-gl-attribute! 'depth-size 24)
  (set! %gl-context (sdl2:make-gl-context %sdl-window))
  (sdl2:set-gl-swap-interval! 'vsync))

(define (open-window window)
  (sdl2:sdl-init)
  (init-window)
  (let ((res (window-resolution window)))
    (sdl2:set-window-title! %sdl-window (window-title window))
    (sdl2:set-window-size! %sdl-window (list (vx res) (vy res)))
    (sdl2:set-window-fullscreen! %sdl-window (window-fullscreen? window))
    (sdl2:show-window! %sdl-window)
    (signal-set! window-size res)))

(define (close-window)
  (sdl2:hide-window! %sdl-window)
  (sdl2:sdl-quit))

(define-syntax-rule (with-window window body ...)
  (dynamic-wind
    (lambda ()
      (open-window window))
    (lambda () body ...)
    close-window))

(define (swap-window)
  (sdl2:swap-gl-window %sdl-window))