-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclaylib.asd
222 lines (216 loc) · 9.59 KB
/
claylib.asd
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
;;;; claylib.asd
;; Fix SBCL issue where sometimes C floating-point bugs cause Lisp errors or crashes.
;; These bugs appear to originate in Raylib, not Claylib. Why they only show up for some
;; users and not others is currently unknown.
#+sbcl
(eval-when (:compile-toplevel :load-toplevel :execute)
(sb-int:set-floating-point-modes :traps nil))
;; Generated by :claw at 2023-03-03T06:03:18.351276Z
(asdf:defsystem #:claylib/wrap
:description "Autowrapped Raylib + bug fixes"
:author "(defun games ()) <[email protected]>"
:license "zlib"
:version "0.0.1"
:defsystem-depends-on (:trivial-features)
:depends-on (:uiop :cffi)
:pathname "wrap/"
:components
((:file "bindings/x86_64-pc-linux-gnu" :if-feature
(:and :x86-64 :linux))
(:file "bindings/i686-pc-linux-gnu" :if-feature
(:and :x86 :linux))
(:file "bindings/x86_64-pc-windows-msvc" :if-feature
(:and :x86-64 :windows))
(:file "bindings/i686-pc-windows-msvc" :if-feature
(:and :x86-64 :windows))
(:file "bindings/x86_64-apple-darwin-gnu" :if-feature
(:and :x86-64 :darwin))
(:file "bindings/i686-apple-darwin-gnu" :if-feature
(:and :x86-64 :darwin))
(:file "claylib-wrap")))
#-(:or (:and :x86-64 :darwin)(:and :x86-64 :darwin)(:and :x86-64 :windows)(:and :x86-64 :windows)(:and :x86 :linux)(:and :x86-64 :linux))
(warn "Current platform unrecognized or unsupported by claylib/wrap system")
(asdf:defsystem #:claylib/makewrap
:description "Used only for (re)generating the bindings. Not needed for most users.
See https://github.com/borodust/claw for documentation."
:depends-on (:alexandria :uiop :cffi :claw-utils :claw)
:serial t
:pathname "wrap/"
:components ((:file "claw")
(:module :raylib-includes :pathname "lib/")))
(asdf:defsystem #:claylib/ll
:description "Raylib C semantics with Lispy convenience wrappers"
:author "(defun games ()) <[email protected]>"
:license "zlib"
:version "0.0.1"
:serial t
:depends-on (#:claylib/wrap)
:components ((:module "ll"
:components
((:file "package")
(:file "claylib-ll")
; (:file "validate")
(:file "copy")))))
(asdf:defsystem #:claylib
:description "Lispy game toolkit built on top of Raylib"
:author "(defun games ()) <[email protected]>"
:license "zlib"
:version "0.0.1"
:serial t
:depends-on (#:claylib/ll #:trivial-garbage #:livesupport #:closer-mop #:cl-ppcre
#:eager-future2 #:static-dispatch #:trivial-extensible-sequences)
:components ((:file "package")
(:module "src"
:components ((:file "generic")
(:file "helpers")
(:file "alloc-pool")
(:file "c-struct")
(:file "sequence")
(:file "linking")
(:file "vec")
(:file "color")
(:file "bounding-box")
(:file "game-asset")
(:file "game-object")
(:file "shape")
(:file "circle")
(:file "triangle")
(:file "pixel")
(:file "grid")
(:file "matrix")
(:file "plane")
(:file "line")
(:file "rectangle")
(:file "polygon")
(:file "camera-2d")
(:file "camera-3d")
(:file "ray")
(:file "ray-collision")
(:file "image")
(:file "texture")
(:file "text")
(:file "cube")
(:file "sphere")
(:file "font")
(:file "transform")
(:file "material")
(:file "anim")
(:file "mesh")
(:file "model")
(:file "billboard")
(:file "sound")
(:file "music")
(:file "claylib")
(:file "scene")
(:file "pt-functions")
(:module "gui"
:components ((:file "gui")
(:file "button")
(:file "checkbox")
(:file "color-bar-alpha")
(:file "color-bar-hue")
(:file "color-panel")
(:file "color-picker")
(:file "combo-box")
(:file "dropdown-box")
(:file "dummy-rec")
(:file "grid")
(:file "group-box")
(:file "icon")
(:file "label")
(:file "label-button")
(:file "line")
(:file "list-view")
(:file "message-box")
(:file "panel")
(:file "progress-bar")
(:file "scroll-panel")
(:file "slider")
(:file "slider-bar")
(:file "spinner")
(:file "status-bar")
(:file "text-box")
(:file "text-box-multi")
(:file "text-input-box")
(:file "toggle")
(:file "toggle-group")
(:file "value-box")
(:file "window-box")))))))
(asdf:defsystem #:claylib/examples
:description "Claylib examples, remixed from the original Raylib C versions"
:author "(defun games ()) <[email protected]>"
:license "zlib"
:version "0.0.1"
:serial t
:depends-on (#:claylib #:alexandria #:bordeaux-threads)
:components ((:module "examples"
:components
((:file "package")
(:file "helpers")
(:module "core"
:components
((:file "basic-window")
(:file "basic-screen-manager")
(:file "input-keys")
(:file "input-mouse")
(:file "input-mouse-wheel")
(:file "2d-camera")
(:file "2d-camera-platformer")
(:file "3d-camera-mode")
(:file "3d-camera-free")
(:file "3d-camera-first-person")
(:file "3d-picking")
(:file "world-screen")
(:file "window-letterbox")
(:file "window-should-close")
(:file "random-values")
(:file "loading-thread")
(:file "scissor-test")
(:file "storage-values")
(:file "quat-conversion")
(:file "window-flags")
(:file "split-screen")
(:file "smooth-pixelperfect")))
(:module "shapes"
:components
((:file "basic-shapes")
(:file "bouncing-ball")
(:file "colors-palette")
(:file "logo-raylib-shapes")
(:file "logo-raylib-anim")
(:file "rectangle-scaling")
(:file "lines-bezier")
(:file "collision-area")
(:file "following-eyes")))
(:module "textures"
:components
((:file "logo-raylib-texture")
(:file "mouse-painting")
(:file "background-scrolling")
(:file "sprite-anim")
(:file "srcrec-dstrec")
(:file "image-drawing")))
(:module "gui"
:components
((:file "portable-window")
(:file "scroll-panel")))
(:module "models"
:components
((:file "animation")
(:file "billboard")
(:file "box-collisions")
(:file "cubicmap")))
(:module "text"
:components
((:file "raylib-fonts")
(:file "font-spritefont")
(:file "font-loading")
(:file "format-text")
(:file "input-box")))
(:module "audio"
:components
((:file "module-playing")
(:file "music-stream")))
(:module "shaders"
:components
((:file "model-shader")))))))