]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/gui.scm
Split public functions
[guile-irrlicht.git] / irrlicht / gui.scm
1 ;;; guile-irrlicht --- FFI bindings for Irrlicht Engine
2 ;;; Copyright (C) 2019 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 gui)
22   #:use-module (ice-9 match)
23   #:use-module (system foreign)
24   #:use-module ((irrlicht bindings core) #:prefix ffi-core:)
25   #:use-module ((irrlicht bindings gui) #:prefix ffi-gui:)
26   #:export (add-static-text!
27             gui-draw-all
28             set-visible-cursor!))
29
30 (define* (add-static-text! gui-env text rectangle
31                            #:key
32                            (border #f)
33                            (word-wrap #t)
34                            (parent %null-pointer)
35                            (id -1)
36                            (fill-background #f))
37   (ffi-gui:add-static-text gui-env
38                            (string->pointer text)
39                            (make-c-struct ffi-core:rect rectangle)
40                            (if border 1 0)
41                            (if word-wrap 1 0)
42                            parent
43                            id
44                            (if fill-background 1 0)))
45
46 (define (gui-draw-all gui-env)
47   (ffi-gui:draw-all gui-env))
48
49 (define (set-visible-cursor! cursor-control visible)
50   (ffi-gui:set-visible-cursor
51    cursor-control
52    (if visible 1 0)))