]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/device.scm
97e2bbab2d207f3ffb23dfb1350464cc00e3ce2e
[guile-irrlicht.git] / irrlicht / device.scm
1 ;;; guile-irrlicht --- FFI bindings for Irrlicht Engine
2 ;;; Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
3 ;;;
4 ;;; This file is part of guile-irrlicht.
5 ;;;
6 ;;; Guile-irrlicht is free software; you can redistribute it and/or modify
7 ;;; it under the terms of the GNU Lesser General Public License as
8 ;;; published by the Free Software Foundation; either version 3 of the
9 ;;; License, or (at your option) any later version.
10 ;;;
11 ;;; Guile-irrlicht is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ;;; General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU Lesser General Public
17 ;;; License along with guile-irrlicht.  If not, see
18 ;;; <http://www.gnu.org/licenses/>.
19
20
21 (define-module (irrlicht device)
22   #:use-module (oop goops)
23   #:use-module (irrlicht base)
24   #:use-module (irrlicht foreign)
25   #:use-module (irrlicht irr)
26   #:use-module (irrlicht gui)
27   #:use-module (irrlicht scene)
28   #:use-module (irrlicht video))
29
30
31 ;; IrrlichtDevice
32 (define-class <irrlicht-device> (<reference-counted>)
33   (irr-class #:init-value "IrrlichtDevice" #:getter irr-class))
34
35 (define* (create-device #:key
36                         (device-type 'software)
37                         (window-size '(640 480))
38                         (bits 16)
39                         (fullscreen #f)
40                         (stencilbuffer #f)
41                         (vsync #f)
42                         (receiver (make <event-receiver>)))
43   (if (not (is-a? receiver <event-receiver>))
44       (error
45        "In procedure create-device: Wrong type argument (expecting <event-receiver>):"
46        receiver))
47
48   (make <irrlicht-device>
49     #:irr-pointer
50     ((get-irrlicht-proc "createDevice")
51      device-type
52      window-size
53      bits
54      fullscreen
55      stencilbuffer
56      vsync
57      receiver)))
58
59 (define-method (get-gui-environment (device <irrlicht-device>))
60   (let ((getGUIEnvironment (get-irrlicht-proc "getGUIEnvironment" device)))
61     (make <gui-environment>
62       #:irr-pointer (getGUIEnvironment device))))
63
64 (define-method (get-scene-manager (device <irrlicht-device>))
65   (make <scene-manager>
66     #:irr-pointer ((get-irrlicht-proc "getSceneManager" device) device)))
67
68 (define-method (get-video-driver (device <irrlicht-device>))
69   (make <video-driver>
70     #:irr-pointer ((get-irrlicht-proc "getVideoDriver" device) device)))
71
72 (define-method (run (device <irrlicht-device>))
73   ((get-irrlicht-proc "run" device) device))
74
75 (define-method (set-window-caption! (device <irrlicht-device>) text)
76   ((get-irrlicht-proc "setWindowCaption" device)
77    device text))
78
79 (export create-device get-gui-environment get-scene-manager get-video-driver run
80         set-window-caption!)