]> git.jsancho.org Git - guile-irrlicht.git/blob - tests/foreign-record.scm
39b8c44564889d32e51c55d069cbe456c46eae76
[guile-irrlicht.git] / tests / foreign-record.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 (use-modules (system foreign)
22              (srfi srfi-64)
23              (irrlicht util))
24
25 (test-begin "foreign-record")
26
27 ;; Dimension 2D definition
28 (define-foreign-record-type dimension2d
29   (make-dimension2d width height)
30   dimension2d?
31   (width uint32 dimension2d-width set-dimension2d-width!)
32   (height uint32 dimension2d-height set-dimension2d-height!))
33
34 ;; Create dimension
35 (define dim (make-dimension2d 10 20))
36 (test-equal 10 (dimension2d-width dim))
37 (test-equal 20 (dimension2d-height dim))
38
39 ;; Modify dimension
40 (set-dimension2d-width! dim 50)
41 (set-dimension2d-height! dim 100)
42 (test-equal 50 (dimension2d-width dim))
43 (test-equal 100 (dimension2d-height dim))
44
45 ;; Is a pointer
46 (test-assert (pointer? (foreign-record->pointer dim)))
47
48 (test-end "foreign-record")