]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/device.scm
Split public functions
[guile-irrlicht.git] / irrlicht / device.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 device)
22   #:use-module (ice-9 match)
23   #:use-module (system foreign)
24   #:use-module ((irrlicht bindings) #:prefix ffi:)
25   #:use-module ((irrlicht bindings core) #:prefix ffi-core:)
26   #:use-module ((irrlicht bindings video) #:prefix ffi-video:)
27   #:export (create-device
28             get-cursor-control
29             get-file-system
30             get-video-driver
31             get-gui-environment
32             get-scene-manager
33             is-window-active?
34             set-window-caption!
35             device-run?
36             device-drop!))
37
38 (define* (create-device #:key
39                         (device-type 'software)
40                         (window-size '(640 480))
41                         (bits 16)
42                         (fullscreen #f)
43                         (stencilbuffer #f)
44                         (vsync #f))
45   (let ((driver (match device-type
46                        ('null ffi-video:EDT_NULL)
47                        ('software ffi-video:EDT_SOFTWARE)
48                        ('burnings ffi-video:EDT_BURNINGSVIDEO)
49                        ('direct3d8 ffi-video:EDT_DIRECT3D8)
50                        ('direct3d9 ffi-video:EDT_DIRECT3D9)
51                        ('opengl ffi-video:EDT_OPENGL)
52                        ('count ffi-video:EDT_COUNT)))
53         (wsize (make-c-struct ffi-core:dimension2d window-size)))
54     (let ((device (ffi:create-device driver wsize bits
55                                      (if fullscreen 1 0)
56                                      (if stencilbuffer 1 0)
57                                      (if vsync 1 0))))
58       (if (null-pointer? device) #f device))))
59
60 (define (get-cursor-control device)
61   (ffi:get-cursor-control device))
62
63 (define (get-file-system device)
64   (ffi:get-file-system device))
65
66 (define (get-video-driver device)
67   (ffi:get-video-driver device))
68
69 (define (get-gui-environment device)
70   (ffi:get-gui-environment device))
71
72 (define (get-scene-manager device)
73   (ffi:get-scene-manager device))
74
75 (define (is-window-active? device)
76   (if (> (ffi:is-window-active device) 0) #t #f))
77
78 (define (set-window-caption! device text)
79   (ffi:set-window-caption device (string->pointer text)))
80
81 (define (device-run? device)
82   (if (> (ffi:run device) 0) #t #f))
83
84 (define (device-drop! device)
85   (if (> (ffi:drop device) 0) #t #f))