-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhypergiant.scm
More file actions
206 lines (200 loc) · 5.52 KB
/
hypergiant.scm
File metadata and controls
206 lines (200 loc) · 5.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
;;;; hypergiant.scm
;;;; Main Hypergiant interface
(module hypergiant ()
(import chicken scheme foreign)
(use opengl-glew gl-math gl-utils gl-type noise soil
(prefix hyperscene scene:) (prefix glls-render glls:)
hypergiant-render-pipeline
hypergiant-window
hypergiant-shaders
hypergiant-sprites
hypergiant-particles
hypergiant-geometry
hypergiant-models)
(include "utils")
(include "math")
(reexport hypergiant-render-pipeline
hypergiant-window
hypergiant-shaders
hypergiant-sprites
hypergiant-particles
hypergiant-geometry
hypergiant-models
(prefix opengl-glew gl:)
(except hyperscene
init
make-camera
resize-cameras
add-node
add-light
set-max-lights!)
(except glls-render
define-pipeline
export-pipeline)
gl-math
(prefix gl-utils-core gl:)
gl-utils-ply
gl-utils-bytevector
gl-utils-mesh
gl-type
noise
soil
(only glfw3
get-time
+press+ +release+ +repeat+
+joystick-last+
+joystick-16+
+joystick-15+
+joystick-14+
+joystick-13+
+joystick-12+
+joystick-11+
+joystick-10+
+joystick-9+
+joystick-8+
+joystick-7+
+joystick-6+
+joystick-5+
+joystick-4+
+joystick-3+
+joystick-2+
+joystick-1+
+mouse-button-middle+
+mouse-button-right+
+mouse-button-left+
+mouse-button-last+
+mouse-button-8+
+mouse-button-7+
+mouse-button-6+
+mouse-button-5+
+mouse-button-4+
+mouse-button-3+
+mouse-button-2+
+mouse-button-1+
+mod-super+
+mod-alt+
+mod-control+
+mod-shift+
+key-last+
+key-menu+
+key-right-super+
+key-right-alt+
+key-right-control+
+key-right-shift+
+key-left-super+
+key-left-alt+
+key-left-control+
+key-left-shift+
+key-kp-equal+
+key-kp-enter+
+key-kp-add+
+key-kp-subtract+
+key-kp-multiply+
+key-kp-divide+
+key-kp-decimal+
+key-kp-9+
+key-kp-8+
+key-kp-7+
+key-kp-6+
+key-kp-5+
+key-kp-4+
+key-kp-3+
+key-kp-2+
+key-kp-1+
+key-kp-0+
+key-f25+
+key-f24+
+key-f23+
+key-f22+
+key-f21+
+key-f20+
+key-f19+
+key-f18+
+key-f17+
+key-f16+
+key-f15+
+key-f14+
+key-f13+
+key-f12+
+key-f11+
+key-f10+
+key-f9+
+key-f8+
+key-f7+
+key-f6+
+key-f5+
+key-f4+
+key-f3+
+key-f2+
+key-f1+
+key-pause+
+key-print-screen+
+key-num-lock+
+key-scroll-lock+
+key-caps-lock+
+key-end+
+key-home+
+key-page-down+
+key-page-up+
+key-up+
+key-down+
+key-left+
+key-right+
+key-delete+
+key-insert+
+key-backspace+
+key-tab+
+key-enter+
+key-escape+
+key-world-2+
+key-world-1+
+key-grave-accent+
+key-right-bracket+
+key-backslash+
+key-left-bracket+
+key-z+
+key-y+
+key-x+
+key-w+
+key-v+
+key-u+
+key-t+
+key-s+
+key-r+
+key-q+
+key-p+
+key-o+
+key-n+
+key-m+
+key-l+
+key-k+
+key-j+
+key-i+
+key-h+
+key-g+
+key-f+
+key-e+
+key-d+
+key-c+
+key-b+
+key-a+
+key-equal+
+key-semicolon+
+key-9+
+key-8+
+key-7+
+key-6+
+key-5+
+key-4+
+key-3+
+key-2+
+key-1+
+key-0+
+key-slash+
+key-period+
+key-minus+
+key-comma+
+key-apostrophe+
+key-space+
+key-unknown+))
) ; end module hypergiant