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 gui)
22 #:use-module (oop goops)
23 #:use-module (ice-9 optargs)
24 #:use-module (irrlicht base)
25 #:use-module (irrlicht foreign)
26 #:use-module (irrlicht io)
27 #:use-module (irrlicht irr))
31 (define-class <cursor-control> (<reference-counted>)
32 (irr-class #:init-value "ICursorControl"))
34 (define-method (set-visible! (cursor-control <cursor-control>) visible)
35 (let ((setVisible (get-irrlicht-proc "setVisible" cursor-control)))
36 (setVisible cursor-control visible)))
38 (export <cursor-control> set-visible!)
42 (define-class <gui-element> (<attribute-exchanging-object> <event-receiver>)
43 (irr-class #:init-value "IGUIElement"))
45 (export <gui-element>)
49 (define-class <gui-environment> (<reference-counted>)
50 (irr-class #:init-value "IGUIEnvironment"))
52 (define-method (add-static-text! (gui-environment <gui-environment>) text rectangle . rest)
56 (parent (make <gui-element>))
59 (make <gui-static-text>
61 ((get-irrlicht-proc "addStaticText" gui-environment parent)
71 (define-method (draw-all (gui-environment <gui-environment>))
72 ((get-irrlicht-proc "drawAll" gui-environment)
75 (export <gui-environment> add-static-text! draw-all)
79 (define-class <gui-static-text> (<gui-element>)
80 (irr-class #:init-value "IGUIStaticText"))
82 (export <gui-static-text>)