]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/device.scm
run
[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      (irr-pointer receiver))))
58
59 (define-method (get-gui-environment (device <irrlicht-device>))
60   (make <gui-environment>
61     #:irr-pointer ((get-irrlicht-proc "getGUIEnvironment" device) (irr-pointer device))))
62
63 (define-method (get-scene-manager (device <irrlicht-device>))
64   (make <scene-manager>
65     #:irr-pointer ((get-irrlicht-proc "getSceneManager" device) (irr-pointer device))))
66
67 (define-method (get-video-driver (device <irrlicht-device>))
68   (make <video-driver>
69     #:irr-pointer ((get-irrlicht-proc "getVideoDriver" device) (irr-pointer device))))
70
71 (define-method (run (device <irrlicht-device>))
72   ((get-irrlicht-proc "run" device) (irr-pointer device)))
73
74 (define-method (set-window-caption! (device <irrlicht-device>) text)
75   ((get-irrlicht-proc "setWindowCaption" device)
76    (irr-pointer device) text))
77
78 (export create-device get-gui-environment get-scene-manager get-video-driver run
79         set-window-caption!)