]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/device.scm
6049016fc1f8b5a2f5f92900ae128606c1f0f8d0
[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
34 (define* (create-device #:key
35                         (device-type 'software)
36                         (window-size '(640 480))
37                         (bits 16)
38                         (fullscreen #f)
39                         (stencilbuffer #f)
40                         (vsync #f)
41                         (receiver (make <event-receiver>)))
42   (if (not (is-a? receiver <event-receiver>))
43       (error
44        "In procedure create-device: Wrong type argument (expecting <event-receiver>):"
45        receiver))
46
47   (make <irrlicht-device>
48     #:irr-pointer
49     (irr_createDevice
50      device-type
51      window-size
52      bits
53      fullscreen
54      stencilbuffer
55      vsync
56      (irr-pointer receiver))))
57
58 (define-method (get-gui-environment (device <irrlicht-device>))
59   (make <gui-environment>
60     #:irr-pointer (irr_IrrlichtDevice_getGUIEnvironment (irr-pointer device))))
61
62 (define-method (get-scene-manager (device <irrlicht-device>))
63   (make <scene-manager>
64     #:irr-pointer (irr_IrrlichtDevice_getSceneManager (irr-pointer device))))
65
66 (define-method (get-video-driver (device <irrlicht-device>))
67   (make <video-driver>
68     #:irr-pointer (irr_IrrlichtDevice_getVideoDriver (irr-pointer device))))
69
70 (define-method (set-window-caption! (device <irrlicht-device>) text)
71   (irr_IrrlichtDevice_setWindowCaption (irr-pointer device) text))
72
73 (export create-device get-gui-environment get-scene-manager get-video-driver set-window-caption!)