]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/device.scm
add-file-archive! get-file-system get-name
[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 io)
26   #:use-module (irrlicht irr)
27   #:use-module (irrlicht gui)
28   #:use-module (irrlicht scene)
29   #:use-module (irrlicht video))
30
31
32 ;; IrrlichtDevice
33 (define-class <irrlicht-device> (<reference-counted>)
34   (irr-class #:init-value "IrrlichtDevice" #:getter irr-class))
35
36 (define* (create-device #:key
37                         (device-type 'software)
38                         (window-size '(640 480))
39                         (bits 16)
40                         (fullscreen #f)
41                         (stencilbuffer #f)
42                         (vsync #f)
43                         (receiver (make <event-receiver>)))
44   (if (not (is-a? receiver <event-receiver>))
45       (error
46        "In procedure create-device: Wrong type argument (expecting <event-receiver>):"
47        receiver))
48
49   (make <irrlicht-device>
50     #:irr-pointer
51     ((get-irrlicht-proc "createDevice")
52      device-type
53      window-size
54      bits
55      fullscreen
56      stencilbuffer
57      vsync
58      receiver)))
59
60 (define-method (get-file-system (device <irrlicht-device>))
61   (let ((getFileSystem (get-irrlicht-proc "getFileSystem" device)))
62     (make <file-system>
63       #:irr-pointer (getFileSystem device))))
64
65 (define-method (get-gui-environment (device <irrlicht-device>))
66   (let ((getGUIEnvironment (get-irrlicht-proc "getGUIEnvironment" device)))
67     (make <gui-environment>
68       #:irr-pointer (getGUIEnvironment device))))
69
70 (define-method (get-scene-manager (device <irrlicht-device>))
71   (make <scene-manager>
72     #:irr-pointer ((get-irrlicht-proc "getSceneManager" device) device)))
73
74 (define-method (get-video-driver (device <irrlicht-device>))
75   (make <video-driver>
76     #:irr-pointer ((get-irrlicht-proc "getVideoDriver" device) device)))
77
78 (define-method (run (device <irrlicht-device>))
79   ((get-irrlicht-proc "run" device) device))
80
81 (define-method (set-window-caption! (device <irrlicht-device>) text)
82   ((get-irrlicht-proc "setWindowCaption" device)
83    device text))
84
85 (export create-device get-file-system get-gui-environment get-scene-manager get-video-driver run
86         set-window-caption!)