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
|
local gl = honey.gl
local module = {}
setmetatable(module, {__index=_G})
setfenv(1, module)
-- compile glsl source code
local function compileShader(source, type)
local shader = gl.CreateShader(type)
gl.ShaderSource(shader, source)
gl.CompileShader(shader)
return shader
end
-- helper function
local builtin = {}
local function readFile(filename)
-- support built-in shaders
if builtin[filename] then return builtin[filename] end
local f, err = io.open(filename)
if not f then error(err) end
local str = f:read("*a")
f:close()
return str
end
-- build a shader program from provided source files
local function buildProgram(sources)
local shaders = {}
-- load & compile shaders
if sources.vertex then
local shader = compileShader(readFile(sources.vertex), gl.VERTEX_SHADER)
table.insert(shaders, shader)
end
if sources.fragment then
local shader = compileShader(readFile(sources.fragment), gl.FRAGMENT_SHADER)
table.insert(shaders, shader)
end
-- link shaders
local program = gl.CreateProgram()
for _, shader in ipairs(shaders) do
gl.AttachShader(program, shader)
end
gl.LinkProgram(program)
-- clean up
for _, shader in ipairs(shaders) do
gl.DeleteShader(shader)
end
return program
end
-- public uniform setters
function setInt(program, name, value)
local location = gl.GetUniformLocation(program, name)
gl.Uniform1i(location, value)
end
function setFloat(program, name, value)
local location = gl.GetUniformLocation(program, name)
gl.Uniform1f(location, value)
end
function setVec3(program, name, value)
local location = gl.GetUniformLocation(program, name)
gl.Uniform3f(location, value[1], value[2], value[3])
end
function setVec4(program, name, value)
local location = gl.GetUniformLocation(program, name)
gl.Uniform3f(location, value[1], value[2], value[3], value[4])
end
function setMatrix(program, name, matrix)
local location = gl.GetUniformLocation(program, name)
gl.UniformMatrix4fv(location, false, matrix.data)
end
function configure(program, tbl)
local processKey = function(key, set)
local subtbl = tbl[key]
if subtbl then
for name, value in pairs(subtbl) do
set(program, name, value)
end
end
end
processKey("int", setInt)
processKey("float", setFloat)
processKey("vec3", setVec3)
processKey("vec4", setVec4)
processKey("matrix", setMatrix)
end
--===== public asset cache functions =====--
local cache = {}
-- generate id string based on shader sources
local function shaderId(sources)
return string.format(
"%s;%s",
sources.vertex or "nil",
sources.fragment or "nil"
)
end
-- get a cached shader program
get = function(sources)
local id = shaderId(sources)
if not cache[id] then
cache[id] = buildProgram(sources)
end
return cache[id]
end
-- remove a cached shader program
forget = function(sources)
local id = shaderId(sources)
if cache[id] then
gl.DeleteProgram(cache[id])
cache[id] = nil
end
end
-- clear the cache
clearCache = function()
for key, program in pairs(cache) do
gl.DeleteProgram(program)
cache[key] = nil
end
end
return module
|