This repository was archived by the owner on Dec 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathgenerate_shader_store.py
executable file
·468 lines (446 loc) · 21 KB
/
generate_shader_store.py
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#!/usr/bin/env python
import os
def rreplace(s, old, new, occurrence = 1):
"""
Replaces the last occurence(s) of an expression in a string.
"""
return new.join(s.rsplit(old, occurrence))
def createDir(path):
"""
Creates the specified directory if not exists.
"""
import errno
# create dir
try:
os.makedirs(path)
except OSError as exception:
if exception.errno != errno.EEXIST:
raise
def prepareFilename(name):
"""
Converts upper case characters to lower case and adds '_' in front.
"""
import re
s = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name)
return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s).lower()
def shaderFilenameToVariableName(filename, isInclude = False):
"""
Determines the variable name from the filename.
"""
split = filename.split(".")[:-1]
if not isInclude:
split += ["shader"]
for i in range(1, len(split)):
split[i] = "%s%s" % (split[i][0].upper(), split[i][1:])
varName = ''.join(split)
if varName.endswith("FragmentShader"):
varName = varName.replace("FragmentShader", "PixelShader")
return varName
def processShaderFile(shaderPath, outputDir, definePath="BABYLON_SHADERS",
isInclude = False):
"""
Puts the shader file content into a header file.
"""
import codecs
# name case fixes in output path
# Procedural Textures Library
if "normalMap" in outputDir:
outputDir = outputDir.replace("normalMap", "normalmap")
if "perlinNoise" in outputDir:
outputDir = outputDir.replace("perlinNoise", "perlinnoise")
# - Materials library
if "triPlanar" in outputDir:
outputDir = outputDir.replace("triPlanar", "triplanar")
if "shadowOnly" in outputDir:
outputDir = outputDir.replace("shadowOnly", "shadowonly")
# read shader file contents
shaderVarName = os.path.basename(shaderPath)
# Procedural Textures Library
if "normalmap" in outputDir:
shaderVarName = shaderVarName.replace("normalmap", "normalMap")
if "perlinnoise" in outputDir:
shaderVarName = shaderVarName.replace("perlinnoise", "perlinNoise")
# - Materials library
if "triplanar" in outputDir:
shaderVarName = shaderVarName.replace("triplanar", "triPlanar")
if "shadowonly" in outputDir:
shaderVarName = shaderVarName.replace("shadowonly", "shadowOnly")
shaderFilename = prepareFilename(shaderVarName)
lines = [line.rstrip('\n').rstrip('\r') for line in open(shaderPath, "r", encoding="utf-8-sig")]
# generate header file content
outputFileName = "%s.h" % shaderFilename.replace(".", "_")
defineName = "%s_%s" % (definePath,
outputFileName.replace(".", "_").upper())
if isInclude:
defineName = defineName.replace("BABYLON_SHADERS",
"BABYLON_SHADERS_SHADERS_INCLUDE")
varName = shaderFilenameToVariableName(shaderVarName, isInclude)
if isInclude:
varName = shaderFilenameToVariableName(os.path.basename(shaderPath),
isInclude)
eol = '\n'
output = "#ifndef %s%s" % (defineName, eol)
output += "#define %s%s%s" % (defineName, eol, eol)
output += "namespace BABYLON {%s%s" % (eol, eol)
output += "extern const char* %s;%s%s" % (varName, eol, eol)
output += "const char* %s%s = " % (varName, eol)
output += "R\"ShaderCode("
shader_code = "%s%s" % (eol, eol)
# process first line
if lines[0] == "precision highp float;":
shader_code += "%s%s" % ("#ifdef GL_ES", eol)
shader_code += " %s%s" % (lines[0], eol)
shader_code += "%s%s" % ("#endif", eol)
else:
if len(lines) > 1:
shader_code += "%s%s" % (lines[0], eol)
else:
shader_code += "%s%s%s" % (lines[0], eol, eol)
# process remainder of the shader file
if len(lines) > 1:
for i in range(1, len(lines)-1):
if lines[i] == "precision highp float;":
shader_code += "%s%s" % ("#ifdef GL_ES", eol)
shader_code += " %s%s" % (lines[i], eol)
shader_code += "%s%s" % ("#endif", eol)
else:
shader_code += "%s%s" % (lines[i].replace("\t", " " * 4).rstrip(), eol)
if len(shader_code) > 8192:
output += shader_code
output += "%s)ShaderCode\"%s" % (eol, eol)
output += "R\"ShaderCode(%s%s" % (eol, eol)
shader_code = ""
shader_code += "%s%s%s" % (lines[-1], eol, eol)
output += shader_code
output += ")ShaderCode\";%s%s" % (eol, eol)
output += "} // end of namespace BABYLON%s%s" % (eol, eol)
output += "#endif // end of %s%s" % (defineName, eol)
# write header file content to file
outputFileLocation = os.path.join(outputDir, outputFileName)
with codecs.open(outputFileLocation, "w", "utf-8-sig") as file:
file.write(output)
return outputFileLocation
def generateShadersStore(shaderFiles, outputDir,
outputFileName = "effect_shaders_store.cpp"):
"""
Generates the "effect_shaders_store.cpp" file containing the shaders map.
"""
import codecs
### generate header file ###
eol = '\n'
headerFilename = outputFileName.replace(".cpp", ".h")
output = "#ifndef BABYLON_MATERIALS_EFFECT_SHADERS_STORE_H%s" % eol
output += "#define BABYLON_MATERIALS_EFFECT_SHADERS_STORE_H%s%s" % (eol,eol)
output += "#include <string>%s" % eol
output += "#include <unordered_map>%s%s" % (eol, eol)
output += "#include <babylon/babylon_api.h>%s%s" % (eol, eol)
output += "namespace BABYLON {%s%s" % (eol, eol)
output += "class BABYLON_SHARED_EXPORT EffectShadersStore {%s%s" % (eol,eol)
output += "public:%s" % eol
output += " EffectShadersStore();%s" % eol
output += " ~EffectShadersStore(); // = default%s%s" % (eol,eol)
output += " std::unordered_map<std::string, std::string>& shaders();%s" % eol
output += " [[nodiscard]] const std::unordered_map<std::string, std::string>& shaders() "
output += "const;%s%s" % (eol, eol)
output += "private:%s" % eol
output += " static std::unordered_map<std::string, std::string> _shaders;%s%s" % (eol,eol)
output += "}; // end of class EffectShadersStore%s%s" % (eol, eol)
output += "} // end of namespace BABYLON%s%s#endif " % (eol, eol)
output += "// end of BABYLON_MATERIALS_EFFECT_SHADERS_STORE_H%s" % eol
# write output to file
hdir = rreplace(outputDir, "src", os.path.join("include", "babylon"), 1)
outputFileLocation = os.path.join(hdir, headerFilename)
with codecs.open(outputFileLocation, "w", "utf-8-sig") as file:
file.write(output)
### generate source file containg the shader map ###
output = "#include <babylon/materials/%s>%s%s" % \
(outputFileName.replace(".cpp", ".h"), eol, eol)
shaderNames = []
for shaderFile in shaderFiles:
shaderFilename = os.path.basename(shaderFile)
shaderNames.append(shaderFilenameToVariableName(shaderFilename))
shaderFilename = prepareFilename(shaderFilename)
output += "#include <babylon/shaders/%s>%s" % ("%s.h" % \
shaderFilename.replace(".", "_"), eol)
output += "%snamespace BABYLON {%s%s" % (eol, eol, eol)
output += "EffectShadersStore::EffectShadersStore() = default;%s%s" % (eol, eol)
output += "EffectShadersStore::~EffectShadersStore() = default;%s%s" % (eol, eol)
output += "std::unordered_map<std::string, std::string>& "
output += "EffectShadersStore::shaders()%s" % eol
output += "{%s return _shaders;%s}%s%s" % (eol, eol, eol, eol)
output += "const std::unordered_map<std::string, std::string>&%s" % eol
output += "EffectShadersStore::shaders() const%s" % eol
output += "{%s return _shaders;%s}%s%s" % (eol, eol, eol, eol)
# create shader name to shared source mapping
output += "std::unordered_map<std::string, std::string> "
output += "EffectShadersStore::_shaders = {%s" % eol
shaderMapping = ""
for shaderName in shaderNames:
if len(shaderName) * 2 + 10 > 80:
shaderMapping += " {\"%s\",%s" % (shaderName, eol)
shaderMapping += " %s},%s" % (shaderName, eol)
else:
shaderMapping += " {\"%s\", %s},%s" % \
(shaderName, shaderName, eol)
output += " {%s};%s%s" % (shaderMapping[3:-2], eol, eol)
output += "} // end of namespace BABYLON%s" % eol
# write output to file
outputFileLocation = os.path.join(outputDir, outputFileName)
with codecs.open(outputFileLocation, "w", "utf-8-sig") as file:
file.write(output)
return outputFileLocation
def generateIncludesShadersStore(shaderFiles, outputDir,
outputFileName = "effect_includes_shaders_store.cpp"):
"""
Generates the "effect_includes_shaders_store.cpp" file containing the
shaders includes map.
"""
import codecs
### generate header file ###
eol = '\n'
headerFilename = outputFileName.replace(".cpp", ".h")
output = "#ifndef BABYLON_MATERIALS_EFFECT_INCLUDES_SHADERS_STORE_H%s" % eol
output += "#define BABYLON_MATERIALS_EFFECT_INCLUDES_SHADERS_STORE_H%s%s" \
% (eol,eol)
output += "#include <string>%s" % eol
output += "#include <unordered_map>%s%s" % (eol, eol)
output += "#include <babylon/babylon_api.h>%s%s" % (eol, eol)
output += "namespace BABYLON {%s%s" % (eol, eol)
output += "class BABYLON_SHARED_EXPORT EffectIncludesShadersStore {"
output += "%s%s" % (eol,eol)
output += "public:%s" % eol
output += " EffectIncludesShadersStore();%s" % eol
output += " ~EffectIncludesShadersStore(); // = default%s%s" % (eol,eol)
output += " std::unordered_map<std::string, std::string>& "
output += "shaders();%s" % eol
output += " [[nodiscard]] const std::unordered_map<std::string, std::string>& shaders() "
output += "const;%s%s" % (eol, eol)
output += "private:%s" % eol
output += " static std::unordered_map<std::string, std::string> _shaders;"
output += "%s%s" % (eol,eol)
output += "}; // end of class EffectIncludesShadersStore%s%s" % (eol, eol)
output += "} // end of namespace BABYLON%s%s#endif " % (eol, eol)
output += "// end of BABYLON_MATERIALS_EFFECT_INCLUDES_SHADERS_STORE_H%s" \
% eol
# write output to file
hdir = rreplace(outputDir, "src", os.path.join("include", "babylon"), 1)
outputFileLocation = os.path.join(hdir, headerFilename)
with codecs.open(outputFileLocation, "w", "utf-8-sig") as file:
file.write(output)
### generate source file containg the shader map ###
output = "#include <babylon/materials/%s>%s%s" % (headerFilename, eol, eol)
shaderNames = []
for shaderFile in shaderFiles:
shaderFilename = os.path.basename(shaderFile)
shaderNames.append(shaderFilenameToVariableName(shaderFilename, True))
shaderFilename = prepareFilename(shaderFilename)
output += "#include <babylon/shaders/shadersinclude/%s>%s" % ("%s.h" % \
shaderFilename.replace(".", "_"), eol)
output += "%snamespace BABYLON {%s%s" % (eol, eol, eol)
output += "EffectIncludesShadersStore::EffectIncludesShadersStore() = default;%s%s" % (eol, eol)
output += "EffectIncludesShadersStore::~EffectIncludesShadersStore() = default;%s%s" % (eol, eol)
output += "std::unordered_map<std::string, std::string>&%s" % eol
output += "EffectIncludesShadersStore::shaders()%s" % eol
output += "{%s return _shaders;%s}%s%s" % (eol, eol, eol, eol)
output += "const std::unordered_map<std::string, std::string>&%s" % eol
output += "EffectIncludesShadersStore::shaders() const%s" % eol
output += "{%s return _shaders;%s}%s%s" % (eol, eol, eol, eol)
# create shader include name to shared source mapping
output += "std::unordered_map<std::string, std::string>%s" % eol
output += " EffectIncludesShadersStore::_shaders%s" % eol
output += " = {"
for shaderName in shaderNames:
output += "{\"%s\", %s},%s " % (shaderName, shaderName, eol)
output = "%s};%s%s" % (output[:-7], eol, eol)
output += "} // end of namespace BABYLON%s" % eol
# write output to file
outputFileLocation = os.path.join(outputDir, outputFileName)
with codecs.open(outputFileLocation, "w", "utf-8-sig") as file:
file.write(output)
return outputFileLocation
def sortDictionaryByKey(directory):
"""
Sorts a dictonary by key in ascending order.
"""
import collections
return collections.OrderedDict(sorted(directory.items()))
def getFilesnamesInDir(directory, shaderExtension = ".fx"):
"""
Returns all the files in the specified directory.
"""
files = {}
for f in os.listdir(directory):
fileLocation = os.path.join(directory, f)
if os.path.isfile(fileLocation) and f.endswith(shaderExtension):
files[f] = fileLocation
return files
def getDirectoriesInDir(directory):
"""
Returns all the directories in the specified directory.
"""
directories = {}
for d in os.listdir(directory):
path = os.path.join(directory, d)
if os.path.isdir(path):
directories[d] = path
return directories
def generateShadersStores(inputDir, outputDir):
"""
Generates the shaders stores files from the Babylon.js shaders folder.
"""
#### process the shader files ####
import time
# - standard shaders
shadersInputDir = os.path.join(inputDir, "src", "Shaders")
shadersOutputDir = os.path.join(outputDir, "..", "BabylonCpp", "include",
"babylon", "shaders")
shadersStoreDir = os.path.join(outputDir, "..", "BabylonCpp", "src",
"materials")
shaderFiles = getFilesnamesInDir(shadersInputDir)
dlc = len(shaderFiles)
print("Found %d standard shaders" % dlc)
# - sort shader files by filename
shaderFiles = sortDictionaryByKey(shaderFiles)
# - process shader files
indent = ' ' * 6
tic = time.time()
for shaderFileName, shaderPath in shaderFiles.items():
processShaderFile(shaderPath, shadersOutputDir)
print("%s|-Processed shader file: %s" % (indent, shaderFileName))
toc = time.time()
print("Processed %d shader files in %ss" % (dlc, (toc - tic)))
# - generate the shader store
generateShadersStore(shaderFiles, shadersStoreDir)
print("Generated shader store")
### process the includes shader files ###
shadersInputDir = os.path.join(shadersInputDir, "ShadersInclude")
shadersOutputDir = os.path.join(shadersOutputDir, "shadersinclude")
createDir(shadersOutputDir)
shaderFiles = getFilesnamesInDir(shadersInputDir)
slc = len(shaderFiles)
print("Found %d standard shaders includes" % slc)
# - sort shader files by filename
shaderFiles = sortDictionaryByKey(shaderFiles)
tic = time.time()
for shaderFileName, shaderPath in shaderFiles.items():
processShaderFile(shaderPath, shadersOutputDir, "BABYLON_SHADERS", True)
print("%s|-Processed shader incude file: %s" % (indent, shaderFileName))
toc = time.time()
print("Processed %d shader include files in %ss" % (slc, (toc - tic)))
# generate the includes shader store
generateIncludesShadersStore(shaderFiles, shadersStoreDir)
print("Generated shader include store")
def generateProceduralTexturesShaderHeaders(inputDir, outputDir):
"""
Generates procedural textures library header files.
"""
import time
proceduralTexturesInputDir = os.path.join(inputDir,
"proceduralTexturesLibrary", "src")
proceduralTexturesOuputDir = os.path.join(outputDir, "..",
"ProceduralTexturesLibrary", "include",
"babylon", "proceduraltextureslibrary")
definePathPrefix = "BABYLON_PROCEDURAL_TEXTURES_LIBRARY"
shaderInputFiles = {}
shaderOutputFiles = {}
ptlc = 0
if os.path.isdir(proceduralTexturesInputDir):
materialsLibraryDirs = getDirectoriesInDir(proceduralTexturesInputDir)
for shaderName, path in materialsLibraryDirs.items():
proceduralTextures = getFilesnamesInDir(path)
shaderInputFiles.update(proceduralTextures)
for shaderFileName, shaderPath in proceduralTextures.items():
shaderOutputFiles[shaderFileName] = \
os.path.join(proceduralTexturesOuputDir, shaderName)
ptlc += len(proceduralTextures)
print("Found %d shaders in procedural textures library" % ptlc)
# - process shader files
indent = ' ' * 6
tic = time.time()
for shaderFileName, shaderInputPath in shaderInputFiles.items():
definePath = "%s_%s" % (definePathPrefix, os.path.basename(
shaderOutputFiles[shaderFileName]).upper())
processShaderFile(shaderInputPath, shaderOutputFiles[shaderFileName],
definePath)
print("%s|-Processed shader file: %s" % (indent, shaderFileName))
toc = time.time()
print("Processed %d shader files in %ss" % (ptlc, (toc - tic)))
def generateMaterialsLibraryShaderHeaders(inputDir, outputDir):
"""
Generates materials library header files.
"""
import time
materialsLibraryInputDir = os.path.join(inputDir,
"materialsLibrary", "src")
materialsLibraryOuputDir = os.path.join(outputDir, "..",
"MaterialsLibrary", "include",
"babylon", "materialslibrary")
definePathPrefix = "BABYLON_MATERIALS_LIBRARY"
shaderInputFiles = {}
shaderOutputFiles = {}
mlc = 0
if os.path.isdir(materialsLibraryInputDir):
materialsLibraryDirs = getDirectoriesInDir(materialsLibraryInputDir)
for shaderName, path in materialsLibraryDirs.items():
materials = getFilesnamesInDir(path)
shaderInputFiles.update(materials)
for shaderFileName, shaderPath in materials.items():
shaderOutputFiles[shaderFileName] = \
os.path.join(materialsLibraryOuputDir, shaderName)
mlc += len(materials)
print("Found %d shaders in materials library" % mlc)
# - process shader files
indent = ' ' * 6
tic = time.time()
for shaderFileName, shaderInputPath in shaderInputFiles.items():
if not shaderOutputFiles[shaderFileName].endswith("legacyPBR"):
definePath = "%s_%s" % (definePathPrefix, os.path.basename(
shaderOutputFiles[shaderFileName]).upper())
processShaderFile(shaderInputPath,
shaderOutputFiles[shaderFileName], definePath)
print("%s|-Processed shader file: %s" % (indent, shaderFileName))
toc = time.time()
print("Processed %d shader files in %ss" % (mlc, (toc - tic)))
if __name__ == "__main__":
from optparse import OptionParser
parser = OptionParser(usage="usage: %prog [options] inputDir outputDir",
version="%prog 1.0")
parser.add_option("-i", "--inputDir", action="store", dest="inputDir",
type="string", help="Babylon.js root path")
parser.add_option("-o", "--outputDir", action="store",
dest="outputDir", type="string",
help="BabylonCpp root path")
(options, args) = parser.parse_args()
# set default values when input is missing
if not options.inputDir:
options.inputDir = os.path.join(os.getcwd(), "..", "..", "..",
"Projects", "Babylon.js-4.2.0_2020_11_12")
args += [options.inputDir]
if not options.outputDir:
options.outputDir = os.path.join(os.getcwd(), "..", "src", "BabylonCpp")
args += [options.outputDir]
# variables needed by the generator
inputDir = None
outputDir = None
# check arguments
if len(args) != 2:
if not options.inputDir and not options.outputDir:
parser.error("Incorrect number of arguments")
# check if the shaders input folder exists
if options.inputDir and os.path.isdir(options.inputDir):
inputDir = options.inputDir
else:
parser.error("Incorrect input directory")
# check if the shaders output folder exists
if options.outputDir and os.path.isdir(options.outputDir):
tmp = os.path.join(options.outputDir, "src", "materials")
if not os.path.isdir(tmp):
parser.error("Incorrect output directory")
else:
outputDir = options.outputDir
else:
parser.error("Incorrect output directory")
# generate the shader store
generateShadersStores(inputDir, outputDir)
generateProceduralTexturesShaderHeaders(inputDir, outputDir)
generateMaterialsLibraryShaderHeaders(inputDir, outputDir)