summaryrefslogtreecommitdiff
path: root/chickadee/render/pbr.scm
blob: ab02659aea597a20baea074ca35458fe483ade94 (plain)
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
;;; Chickadee Game Toolkit
;;; Copyright © 2019 David Thompson <davet@gnu.org>
;;;
;;; Chickadee is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published
;;; by the Free Software Foundation, either version 3 of the License,
;;; or (at your option) any later version.
;;;
;;; Chickadee is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program.  If not, see
;;; <http://www.gnu.org/licenses/>.

;;; Commentary:
;;
;; Physically based lighting model.
;;
;;; Code:

(define-module (chickadee render pbr)
  #:use-module (chickadee math vector)
  #:use-module (chickadee render)
  #:use-module (chickadee render color)
  #:use-module (chickadee render shader)
  #:use-module (chickadee render texture)
  #:use-module (srfi srfi-9)
  #:export (make-pbr-material
            pbr-material?
            pbr-material-name
            pbr-material-base-color-factor
            pbr-material-base-color-texture
            pbr-material-metallic-factor
            pbr-material-roughness-factor
            pbr-material-metallic-roughness-texture
            pbr-material-normal-factor
            pbr-material-normal-texture
            pbr-material-occlusion-facgor
            pbr-material-occlusion-texture
            pbr-material-emissive-factor
            pbr-material-emissive-texture
            pbr-material-alpha-mode
            pbr-material-alpha-cutoff
            pbr-material-double-sided?
            default-pbr-material
            load-pbr-shader
            gpu-apply/pbr))

(define-shader-type <pbr-material>
  make-pbr-material
  pbr-material?
  (local-field name pbr-material-name)
  (float-vec3 base-color-factor pbr-material-base-color-factor)
  (local-field base-color-texture pbr-material-base-color-texture)
  (float metallic-factor pbr-material-metallic-factor)
  (float roughness-factor pbr-material-roughness-factor)
  (local-field metallic-roughness-texture pbr-material-metallic-roughness-texture)
  (float-vec3 normal-factor pbr-material-normal-factor)
  (local-field normal-texture pbr-material-normal-texture)
  (float-vec3 occlusion-factor pbr-material-occlusion-factor)
  (local-field occlusion-texture pbr-material-occlusion-texture)
  (float-vec3 emissive-factor pbr-material-emissive-factor)
  (local-field emissive-texture pbr-material-emissive-texture)
  (local-field alpha-mode pbr-material-alpha-mode)
  (float alpha-cutoff pbr-material-alpha-cutoff)
  (bool double-sided? pbr-material-double-sided?))

(define default-pbr-material
  (make-pbr-material #:name "default"
                     #:base-color-factor #v(1.0 1.0 1.0)
                     #:base-color-texture null-texture
                     #:metallic-factor 1.0
                     #:roughness-factor 1.0
                     #:metallic-roughness-texture null-texture
                     #:normal-factor #v(1.0 1.0 1.0)
                     #:normal-texture null-texture
                     #:occlusion-factor #v(1.0 1.0 1.0)
                     #:occlusion-texture null-texture
                     #:emissive-factor #v(1.0 1.0 1.0)
                     #:emissive-texture null-texture
                     #:alpha-mode 'opaque
                     #:alpha-cutoff 0.5
                     #:double-sided? #f))

;; TODO: Actually implement PBR.  For now it's just the minimal amount
;; of code needed to render the base texture of a mesh.
(define pbr-shader
  (delay
    (strings->shader
     "
#ifdef GLSL330
layout (location = 0) in vec3 position;
layout (location = 1) in vec2 texcoord0;
#elif ifdef GLSL130
in vec3 position;
in vec2 texcoord0;
#endif
out vec2 fragTex;
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;

void main(void) {
  fragTex = texcoord0;
  gl_Position = projection * view * model * vec4(position.xyz, 1.0);
}
"
     "
in vec2 fragTex;
out vec4 fragColor;
uniform vec3 baseColorFactor;
uniform sampler2D baseColorTexture;

void main (void) {
#ifdef GLSL330
  fragColor = texture(baseColorTexture, fragTex) *
    vec4(baseColorFactor, 1.0);
#elif ifdef GLSL130
  gl_FragColor = texture2D(baseColorTexture, fragTex) *
    vec4(baseColorFactor, 1.0);
#endif
}
")))

(define (load-pbr-shader)
  (force pbr-shader))

(define (gpu-apply/pbr shader vertex-array material model-matrix view-matrix)
  (with-texture 0 (pbr-material-base-color-texture material)
    (gpu-apply shader vertex-array
               #:model model-matrix
               #:view view-matrix
               #:projection (current-projection)
               #:base-color-factor (pbr-material-base-color-factor material))))