]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht/bindings/video.scm
Quake3Map example with all the functions needed
[guile-irrlicht.git] / irrlicht / bindings / 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 bindings video)
22   #:use-module (system foreign))
23
24 (define cirr (dynamic-link "libCIrrlicht"))
25
26 ;; E_DRIVER_TYPE enum
27 (define-public EDT_NULL            0)
28 (define-public EDT_SOFTWARE        1)
29 (define-public EDT_BURNINGSVIDEO   2)
30 (define-public EDT_DIRECT3D8       3)
31 (define-public EDT_DIRECT3D9       4)
32 (define-public EDT_OPENGL          5)
33 (define-public EDT_COUNT           6)
34
35 ;; irr_video_E_MATERIAL_FLAG enum
36 (define-public EMF_WIREFRAME             #x1)
37 (define-public EMF_POINTCLOUD            #x2)
38 (define-public EMF_GOURAUD_SHADING       #x4)
39 (define-public EMF_LIGHTING              #x8)
40 (define-public EMF_ZBUFFER              #x10)
41 (define-public EMF_ZWRITE_ENABLE        #x20)
42 (define-public EMF_BACK_FACE_CULLING    #x40)
43 (define-public EMF_FRONT_FACE_CULLING   #x80)
44 (define-public EMF_BILINEAR_FILTER     #x100)
45 (define-public EMF_TRILINEAR_FILTER    #x200)
46 (define-public EMF_ANISOTROPIC_FILTER  #x400)
47 (define-public EMF_FOG_ENABLE          #x800)
48 (define-public EMF_NORMALIZE_NORMALS  #x1000)
49 (define-public EMF_TEXTURE_WRAP       #x2000)
50 (define-public EMF_ANTI_ALIASING      #x4000)
51 (define-public EMF_COLOR_MASK         #x8000)
52 (define-public EMF_COLOR_MATERIAL    #x10000)
53 (define-public EMF_USE_MIP_MAPS      #x20000)
54 (define-public EMF_BLEND_OPERATION   #x40000)
55 (define-public EMF_POLYGON_OFFSET    #x80000)
56
57
58 ;; scolor struct
59 (define-public scolor
60   (list uint32 uint32 uint32 uint32))
61
62 ;; Driver functions
63 (define-public begin-scene
64   (pointer->procedure
65    int
66    (dynamic-func "irr_video_beginScene" cirr)
67    (list '* int int '* '* '*)))
68
69 (define-public end-scene
70   (pointer->procedure
71    int
72    (dynamic-func "irr_video_endScene" cirr)
73    (list '*)))
74
75 (define-public get-fps
76   (pointer->procedure
77    int
78    (dynamic-func "irr_video_getFPS" cirr)
79    (list '*)))
80
81 (define-public get-texture
82   (pointer->procedure
83    '*
84    (dynamic-func "irr_video_getTexture" cirr)
85    (list '* '*)))
86
87 (define-public get-video-driver-name
88   (pointer->procedure
89    '*
90    (dynamic-func "irr_video_getName" cirr)
91    (list '*)))