forked from Shirakumo/trial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
effects.lisp
221 lines (187 loc) · 9.34 KB
/
effects.lisp
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
(in-package #:org.shirakumo.fraf.trial)
(define-shader-pass render-pass (per-object-pass)
((color :port-type output :attachment :color-attachment0 :reader color)
(depth :port-type output :attachment :depth-stencil-attachment :reader depth)))
(define-shader-pass solid-render-pass (render-pass)
((color :port-type output)
(fill-color :initarg :fill-color :initform (vec 0 0 0 1) :uniform T :accessor fill-color)))
(define-class-shader (solid-render-pass :fragment-shader)
"out vec4 color;
uniform vec4 fill_color;
void main(){
color = fill_color;
}")
(define-shader-pass simple-post-effect-pass (post-effect-pass)
((previous-pass :port-type input :accessor previous-pass)
(color :port-type output :accessor color)))
(defmethod (setf active-p) :before (value (pass simple-post-effect-pass))
;; KLUDGE: This is terrible. How do we do this cleanly?
(flet ((previous (pass)
(flow:left (first (flow:connections (flow:port pass 'previous-pass)))))
(next (pass)
(flow:right (first (flow:connections (flow:port pass 'color))))))
(let ((pred (loop for prev = (previous pass) then (previous (flow:node prev))
do (when (active-p (flow:node prev)) (return prev))))
(succ (when (flow:connections (flow:port pass 'color))
(loop for next = (next pass) then (next (flow:node next))
do (when (active-p (flow:node next)) (return next))))))
(cond (value
(setf (texture (flow:port pass 'previous-pass)) (texture pred))
(when succ (setf (texture succ) (texture (flow:port pass 'color)))))
(succ
(setf (texture succ) (texture pred)))))))
(define-shader-pass iterative-post-effect-pass (simple-post-effect-pass)
((iterations :initarg :iterations :initform 1 :accessor iterations)))
(defmethod render ((pass iterative-post-effect-pass) (program shader-program))
(let* ((color (gl-name (color pass)))
(ocolor color)
(previous (gl-name (previous-pass pass))))
(flet ((swap-buffers ()
(rotatef color previous)
(%gl:framebuffer-texture :framebuffer :color-attachment0 color 0)
(gl:bind-texture :texture-2d previous)))
(call-next-method)
(loop with limit = (iterations pass)
for i from 0
do (call-next-method)
(if (< (incf i) limit)
(swap-buffers)
(return)))
;; KLUDGE: this is wrong for even number of iterations. It essentially
;; discards the last iteration, as it won't be displayed....
(when (/= ocolor color)
(%gl:framebuffer-texture :framebuffer :color-attachment0 ocolor 0)))))
(define-shader-pass temporal-post-effect-pass (post-effect-pass)
((previous :port-type static-input :accessor previous)
(color :port-type output :accessor color)))
(defmethod render :after ((pass temporal-post-effect-pass) (program shader-program))
(activate (framebuffer pass))
(rotatef (gl-name (previous pass)) (gl-name (color pass)))
(%gl:framebuffer-texture :framebuffer :color-attachment0 (gl-name (color pass)) 0))
(define-shader-pass copy-pass (simple-post-effect-pass)
())
(define-class-shader (copy-pass :fragment-shader)
"
uniform sampler2D previous_pass;
in vec2 uv;
out vec4 color;
void main(){
color = texture(previous_pass, uv);
}")
(define-shader-pass negative-pass (simple-post-effect-pass)
()
(:shader-file (trial "post/negative.glsl")))
(define-shader-pass box-blur-pass (iterative-post-effect-pass)
((intensity :initarg :intensity :initform 1.0 :uniform T :accessor intensity)
(kernel-size :initarg :kernel-size :initform 9 :uniform T :accessor kernel-size))
(:shader-file (trial "post/box-blur.glsl")))
(define-shader-pass sobel-pass (simple-post-effect-pass)
((intensity :initarg :intensity :initform 1.0 :uniform T :accessor intensity))
(:shader-file (trial "post/sobel.glsl")))
(define-shader-pass gaussian-blur-pass (iterative-post-effect-pass)
((intensity :initarg :intensity :initform 1.0 :uniform T :accessor intensity)
(direction :initarg :direction :initform (vec 1 0) :uniform T :accessor direction))
(:shader-file (trial "post/gaussian.glsl")))
(define-shader-pass kawase-blur-pass (simple-post-effect-pass)
((intensity :initarg :intensity :initform 3.0 :uniform T :accessor intensity))
(:shader-file (trial "post/kawase.glsl")))
(defmethod render ((pass kawase-blur-pass) (program shader-program))
(let ((resolution (vec (width pass) (height pass))))
(declare (dynamic-extent resolution))
(flet ((swap-buffers ()
(rotatef (color pass) (previous-pass pass)))
(update-res (factor)
(setf (uniform program "resolution") resolution)
(nv* resolution factor)
(gl:viewport 0 0 (ceiling (vx resolution)) (ceiling (vy resolution)))
(call-next-method)))
(setf (uniform program "down") 1)
(update-res 0.5)
(swap-buffers)
(update-res 0.5)
(swap-buffers)
(setf (uniform program "down") 0)
(update-res 2.0)
(swap-buffers)
(update-res 2.0))))
(define-shader-pass radial-blur-pass (iterative-post-effect-pass)
((intensity :initarg :intensity :initform 0.2 :uniform T :accessor intensity)
(exposure :initarg :exposure :initform 0.8 :uniform T :accessor exposure)
(samples :initarg :samples :initform 12 :uniform T :accessor samples)
(origin :initarg :origin :initform (vec 0.5 0.5) :uniform T :accessor origin))
(:shader-file (trial "post/radial-blur.glsl")))
(define-shader-pass swirl-pass (simple-post-effect-pass)
((radius :initarg :radius :initform 1000.0 :uniform T :accessor radius)
(angle :initarg :angle :initform 0.8 :uniform T :accessor angle))
(:shader-file (trial "post/swirl.glsl")))
(define-shader-pass fxaa-pass (simple-post-effect-pass)
()
(:shader-file (trial "post/fxaa.glsl")))
(define-shader-pass blend-pass (post-effect-pass)
((a-pass :port-type input)
(b-pass :port-type input)
(color :port-type output :reader color)
(blend-type :initarg :blend-type :initform 0 :uniform T :accessor blend-type))
(:shader-file (trial "post/blend.glsl")))
(defmethod (setf blend-type) ((value symbol) (pass blend-pass))
;; TODO: add more
(setf (blend-type pass) (ecase value
(:b-over 0)
(:a-over 1)
(:add 2)
(:subtract 3)
(:multiply 4))))
(define-shader-pass high-pass-filter (simple-post-effect-pass)
((threshold :initarg :threshold :initform 0.5 :uniform T :accessor threshold))
(:shader-file (trial "post/high-pass-filter.glsl")))
(define-shader-pass low-pass-filter (simple-post-effect-pass)
((threshold :initarg :threshold :initform 0.5 :uniform T :accessor threshold))
(:shader-file (trial "post/low-pass-filter.glsl")))
(define-shader-pass bloom-cutoff-pass (simple-post-effect-pass)
((threshold :initarg :threshold :initform 5.0 :uniform T :accessor threshold)
(color :port-type output :texspec (:internal-format :rgb
:mag-filter :linear
:min-filter :linear
:width (truncate width 4)
:height (truncate height 4))))
(:shader-file (trial "post/bloom-cutoff.glsl")))
(define-shader-pass bloom-merge-pass (simple-post-effect-pass)
((bloom-cutoff :port-type input))
(:shader-file (trial "post/bloom-merge.glsl")))
(define-shader-pass chromatic-aberration-filter (simple-post-effect-pass)
((offset :initarg :offset :initform 3.0 :uniform T :accessor offset))
(:shader-file (trial "post/aberration.glsl")))
(define-shader-pass luminance-pass (simple-post-effect-pass)
((color :texspec (:internal-format :r16f)))
(:shader-file (trial "post/luminance.glsl")))
(define-shader-pass light-scatter-pass (post-effect-pass)
((previous-pass :port-type input)
(black-render-pass :port-type input)
(color :port-type output)
(density :initarg :density :initform 1.0 :uniform T :accessor density)
(weight :initarg :weight :initform 0.01 :uniform T :accessor weight)
(decay :initarg :decay :initform 1.0 :uniform T :accessor decay)
(exposure :initarg :exposure :initform 1.2 :uniform T :accessor exposure)
(samples :initarg :samples :initform 100 :uniform T :accessor samples)
(origin :initarg :origin :initform (vec 0.5 0.5) :uniform T :accessor origin))
(:shader-file (trial "post/light-scatter.glsl")))
(define-shader-pass visualizer-pass (post-effect-pass)
((t[0] :port-type input)
(t[1] :port-type input)
(t[2] :port-type input)
(t[3] :port-type input)
(color :port-type output :texspec (:internal-format :rgba))
(textures-per-line :initarg :textures-per-line :initform 1 :uniform T :accessor textures-per-line))
(:shader-file (trial "post/visualizer.glsl")))
(defmethod check-consistent ((pass visualizer-pass))
;; Skip consistency checks to allow optional inputs
T)
(defun generate-gaussian-kernel (&optional (size 5) (sigma 1.0))
(let ((array (make-array (list size size) :element-type 'single-float))
(d2 (expt sigma 2))
(s/2 (truncate size 2)))
(flet ((gauss (x y)
(/ (exp (- (/ (+ (expt x 2) (expt y 2)) (* 2 d2)))) F-2PI d2)))
(dotimes (y size array)
(dotimes (x size)
(setf (aref array y x) (gauss (- x s/2) (- y s/2))))))))