1 ;;; guile-irrlicht --- FFI bindings for Irrlicht Engine
2 ;;; Copyright (C) 2020 Javier Sancho <jsf@jsancho.org>
4 ;;; This file is part of guile-irrlicht.
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.
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.
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/>.
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))
32 (define-class <irrlicht-device> (<reference-counted>))
34 (define* (create-device #:key
35 (device-type 'software)
36 (window-size '(640 480))
41 (receiver (make <event-receiver>)))
42 (if (not (is-a? receiver <event-receiver>))
44 "In procedure create-device: Wrong type argument (expecting <event-receiver>):"
47 (make <irrlicht-device>
56 (irr-pointer receiver))))
58 (define-method (get-gui-environment (device <irrlicht-device>))
59 (make <gui-environment>
60 #:irr-pointer (irr_IrrlichtDevice_getGUIEnvironment (irr-pointer device))))
62 (define-method (get-scene-manager (device <irrlicht-device>))
64 #:irr-pointer (irr_IrrlichtDevice_getSceneManager (irr-pointer device))))
66 (define-method (get-video-driver (device <irrlicht-device>))
68 #:irr-pointer (irr_IrrlichtDevice_getVideoDriver (irr-pointer device))))
70 (define-method (set-window-caption! (device <irrlicht-device>) text)
71 (irr_IrrlichtDevice_setWindowCaption (irr-pointer device) text))
73 (export create-device get-gui-environment get-scene-manager get-video-driver set-window-caption!)