]> git.jsancho.org Git - guile-irrlicht.git/blob - irrlicht.scm
<gui-listbox> add-listbox!
[guile-irrlicht.git] / irrlicht.scm
1 ;;; guile-irrlicht --- FFI bindings for Irrlicht Engine
2 ;;; Copyright (C) 2020 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)
22   #:use-module (oop goops)
23   #:use-module (irrlicht base)
24   #:use-module (irrlicht core)
25   #:use-module (irrlicht device)
26   #:use-module (irrlicht gui)
27   #:use-module (irrlicht io)
28   #:use-module (irrlicht irr)
29   #:use-module (irrlicht scene)
30   #:use-module (irrlicht video)
31   #:duplicates (merge-generics)
32   #:re-export (;; classes
33                <animated-mesh>
34                <animated-mesh-scene-node>
35                <attribute-exchanging-object>
36                <box3d>
37                <camera-scene-node>
38                <cursor-control>
39                <event>
40                <event-receiver>
41                <file-archive>
42                <file-system>
43                <gui-button>
44                <gui-element>
45                <gui-environment>
46                <gui-font>
47                <gui-image>
48                <gui-listbox>
49                <gui-scrollbar>
50                <gui-skin>
51                <gui-static-text>
52                <irrlicht-device>
53                <key-map>
54                <material>
55                <mesh>
56                <mesh-scene-node>
57                <reference-counted>
58                <scene-manager>
59                <scene-node>
60                <scene-node-animator>
61                <texture>
62                <timer>
63                <vertex3d>
64                <video-driver>
65                ;; methods
66                add-animated-mesh-scene-node!
67                add-animator!
68                add-button!
69                add-camera-scene-node!
70                add-camera-scene-node-fps!
71                add-cube-scene-node!
72                add-custom-scene-node!
73                add-file-archive!
74                add-image!
75                add-internal-point!
76                add-listbox!
77                add-octree-scene-node!
78                add-scrollbar!
79                add-sphere-scene-node!
80                add-static-text!
81                begin-scene
82                create-device
83                create-fly-circle-animator
84                create-fly-straight-animator
85                create-rotation-animator
86                draw-vertex-primitive-list
87                drop!
88                end-scene
89                get-absolute-transformation
90                get-built-in-font
91                get-color
92                get-cursor-control
93                get-event-key
94                get-event-key-pressed
95                get-event-type
96                get-file-system
97                get-font
98                get-fps
99                get-gui-environment
100                get-mesh
101                get-name
102                get-root-scene-node
103                get-scene-manager
104                get-skin
105                get-texture
106                get-time
107                get-timer
108                get-video-driver
109                is-window-active?
110                make-box3d
111                make-event-receiver
112                make-material
113                make-vertex3d
114                reset-box3d!
115                run
116                set-animation-speed!
117                set-color!
118                set-font!
119                set-frame-loop!
120                set-material!
121                set-material-flag!
122                set-material-texture!
123                set-max!
124                set-md2-animation!
125                set-override-color!
126                set-resizable!
127                set-rotation!
128                set-scale!
129                set-transform!
130                set-visible!
131                set-window-caption!
132                yield-device))
133
134 ;; Merged methods have to be exported apart
135 (re-export draw-all
136            get-position
137            set-position!)