]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/video.scm
Wrapped s3dvertex type
[guile-irrlicht.git] / irrlicht / video.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 video)
22   #:use-module (system foreign)
23   #:use-module ((irrlicht bindings core) #:prefix ffi-core:)
24   #:use-module ((irrlicht bindings video) #:prefix ffi-video:)
25   #:use-module (irrlicht util)
26   #:export (begin-scene
27             end-scene
28             get-fps
29             get-texture
30             get-video-driver-name)
31   #:re-export ((ffi-video:make-s3dvertex . make-s3dvertex)))
32
33 (define* (begin-scene driver
34                       #:key
35                       (back-buffer #t)
36                       (z-buffer #t)
37                       (color '(255 0 0 0))
38                       (video-data %null-pointer)
39                       (source-rect '()))
40   (ffi-video:begin-scene driver
41                          (bool->integer back-buffer)
42                          (bool->integer z-buffer)
43                          (ffi-video:scolor->pointer color)
44                          video-data
45                          (if (null? source-rect)
46                              %null-pointer
47                              (ffi-core:rect->pointer source-rect))))
48
49 (define (end-scene driver)
50   (ffi-video:end-scene driver))
51
52 (define (get-fps driver)
53   (ffi-video:get-fps driver))
54
55 (define (get-texture driver filename)
56   (ffi-video:get-texture driver (string->pointer filename)))
57
58 (define (get-video-driver-name driver)
59   (pointer->string
60    (ffi-video:get-video-driver-name driver)))