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>)
33 (irr-class #:init-value "IrrlichtDevice" #:getter irr-class))
35 (define* (create-device #:key
36 (device-type 'software)
37 (window-size '(640 480))
42 (receiver (make <event-receiver>)))
43 (if (not (is-a? receiver <event-receiver>))
45 "In procedure create-device: Wrong type argument (expecting <event-receiver>):"
48 (make <irrlicht-device>
50 ((get-irrlicht-proc "createDevice")
57 (irr-pointer receiver))))
59 (define-method (get-gui-environment (device <irrlicht-device>))
60 (make <gui-environment>
61 #:irr-pointer ((get-irrlicht-proc "getGUIEnvironment" device) (irr-pointer device))))
63 (define-method (get-scene-manager (device <irrlicht-device>))
65 #:irr-pointer ((get-irrlicht-proc "getSceneManager" device) (irr-pointer device))))
67 (define-method (get-video-driver (device <irrlicht-device>))
69 #:irr-pointer ((get-irrlicht-proc "getVideoDriver" device) (irr-pointer device))))
71 (define-method (run (device <irrlicht-device>))
72 ((get-irrlicht-proc "run" device) (irr-pointer device)))
74 (define-method (set-window-caption! (device <irrlicht-device>) text)
75 ((get-irrlicht-proc "setWindowCaption" device)
76 (irr-pointer device) text))
78 (export create-device get-gui-environment get-scene-manager get-video-driver run