forked from AcademySoftwareFoundation/MaterialX
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathGenOsl.cpp
More file actions
201 lines (160 loc) · 7.93 KB
/
GenOsl.cpp
File metadata and controls
201 lines (160 loc) · 7.93 KB
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
//
// Copyright Contributors to the MaterialX Project
// SPDX-License-Identifier: Apache-2.0
//
#include <MaterialXTest/External/Catch/catch.hpp>
#include <MaterialXTest/MaterialXGenOsl/GenOsl.h>
#include <MaterialXFormat/File.h>
#include <MaterialXFormat/Util.h>
#include <MaterialXGenShader/TypeDesc.h>
#include <MaterialXGenShader/GenContext.h>
#include <MaterialXGenShader/Shader.h>
#include <MaterialXGenOsl/OslShaderGenerator.h>
#include <MaterialXGenOsl/OslSyntax.h>
namespace mx = MaterialX;
TEST_CASE("GenShader: OSL Syntax", "[genosl]")
{
mx::SyntaxPtr syntax = mx::OslSyntax::create();
REQUIRE(syntax->getTypeName(mx::Type::FLOAT) == "float");
REQUIRE(syntax->getTypeName(mx::Type::COLOR3) == "color");
REQUIRE(syntax->getTypeName(mx::Type::VECTOR3) == "vector");
REQUIRE(syntax->getTypeName(mx::Type::FLOATARRAY) == "float");
REQUIRE(syntax->getTypeName(mx::Type::INTEGERARRAY) == "int");
REQUIRE(mx::Type::FLOATARRAY->isArray());
REQUIRE(mx::Type::INTEGERARRAY->isArray());
REQUIRE(syntax->getTypeName(mx::Type::BSDF) == "BSDF");
REQUIRE(syntax->getOutputTypeName(mx::Type::BSDF) == "output BSDF");
// Set fixed precision with one digit
mx::ScopedFloatFormatting format(mx::Value::FloatFormatFixed, 1);
std::string value;
value = syntax->getDefaultValue(mx::Type::FLOAT);
REQUIRE(value == "0.0");
value = syntax->getDefaultValue(mx::Type::COLOR3);
REQUIRE(value == "color(0.0)");
value = syntax->getDefaultValue(mx::Type::COLOR3, true);
REQUIRE(value == "color(0.0)");
value = syntax->getDefaultValue(mx::Type::COLOR4);
REQUIRE(value == "color4(color(0.0), 0.0)");
value = syntax->getDefaultValue(mx::Type::COLOR4, true);
REQUIRE(value == "{color(0.0), 0.0}");
value = syntax->getDefaultValue(mx::Type::FLOATARRAY, true);
REQUIRE(value.empty());
value = syntax->getDefaultValue(mx::Type::INTEGERARRAY, true);
REQUIRE(value.empty());
mx::ValuePtr floatValue = mx::Value::createValue<float>(42.0f);
value = syntax->getValue(mx::Type::FLOAT, *floatValue);
REQUIRE(value == "42.0");
value = syntax->getValue(mx::Type::FLOAT, *floatValue, true);
REQUIRE(value == "42.0");
mx::ValuePtr color3Value = mx::Value::createValue<mx::Color3>(mx::Color3(1.0f, 2.0f, 3.0f));
value = syntax->getValue(mx::Type::COLOR3, *color3Value);
REQUIRE(value == "color(1.0, 2.0, 3.0)");
value = syntax->getValue(mx::Type::COLOR3, *color3Value, true);
REQUIRE(value == "color(1.0, 2.0, 3.0)");
mx::ValuePtr color4Value = mx::Value::createValue<mx::Color4>(mx::Color4(1.0f, 2.0f, 3.0f, 4.0f));
value = syntax->getValue(mx::Type::COLOR4, *color4Value);
REQUIRE(value == "color4(color(1.0, 2.0, 3.0), 4.0)");
value = syntax->getValue(mx::Type::COLOR4, *color4Value, true);
REQUIRE(value == "{color(1.0, 2.0, 3.0), 4.0}");
std::vector<float> floatArray = { 0.1f, 0.2f, 0.3f, 0.4f, 0.5f, 0.6f, 0.7f };
mx::ValuePtr floatArrayValue = mx::Value::createValue<std::vector<float>>(floatArray);
value = syntax->getValue(mx::Type::FLOATARRAY, *floatArrayValue);
REQUIRE(value == "{0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7}");
std::vector<int> intArray = { 1, 2, 3, 4, 5, 6, 7 };
mx::ValuePtr intArrayValue = mx::Value::createValue<std::vector<int>>(intArray);
value = syntax->getValue(mx::Type::INTEGERARRAY, *intArrayValue);
REQUIRE(value == "{1, 2, 3, 4, 5, 6, 7}");
}
TEST_CASE("GenShader: OSL Implementation Check", "[genosl]")
{
mx::GenContext context(mx::OslShaderGenerator::create());
mx::StringSet generatorSkipNodeTypes;
generatorSkipNodeTypes.insert("light");
mx::StringSet generatorSkipNodeDefs;
GenShaderUtil::checkImplementations(context, generatorSkipNodeTypes, generatorSkipNodeDefs, 48);
}
TEST_CASE("GenShader: OSL Unique Names", "[genosl]")
{
mx::GenContext context(mx::OslShaderGenerator::create());
context.registerSourceCodeSearchPath(mx::getDefaultDataSearchPath());
GenShaderUtil::testUniqueNames(context, mx::Stage::PIXEL);
}
TEST_CASE("GenShader: OSL Metadata", "[genosl]")
{
mx::FileSearchPath searchPath = mx::getDefaultDataSearchPath();
mx::DocumentPtr doc = mx::createDocument();
mx::loadLibraries({ "libraries" }, searchPath, doc);
//
// Define custom attributes to be exported as shader metadata
//
mx::AttributeDefPtr adNodeName = doc->addAttributeDef("AD_node_name");
adNodeName->setType("string");
adNodeName->setAttrName("node_name");
adNodeName->setExportable(true);
mx::AttributeDefPtr adNodeCategory = doc->addAttributeDef("AD_node_category");
adNodeCategory->setType("string");
adNodeCategory->setAttrName("node_category");
adNodeCategory->setExportable(true);
mx::AttributeDefPtr adNodeTypeId = doc->addAttributeDef("AD_node_type_id");
adNodeTypeId->setType("integer");
adNodeTypeId->setAttrName("node_type_id");
adNodeTypeId->setExportable(true);
mx::AttributeDefPtr adAttributeLongName = doc->addAttributeDef("AD_attribute_long_name");
adAttributeLongName->setType("string");
adAttributeLongName->setAttrName("attribute_long_name");
adAttributeLongName->setExportable(true);
mx::AttributeDefPtr adAttributeShortName = doc->addAttributeDef("AD_attribute_short_name");
adAttributeShortName->setType("string");
adAttributeShortName->setAttrName("attribute_short_name");
adAttributeShortName->setExportable(true);
// Define a non-exportable attribute.
mx::AttributeDefPtr adShouldNotBeExported = doc->addAttributeDef("AD_should_not_be_exported");
adShouldNotBeExported->setType("float");
adShouldNotBeExported->setAttrName("should_not_be_exported");
adShouldNotBeExported->setExportable(false);
//
// Assign metadata on a shader nodedef
//
mx::NodeDefPtr stdSurfNodeDef = doc->getNodeDef("ND_standard_surface_surfaceshader");
REQUIRE(stdSurfNodeDef != nullptr);
stdSurfNodeDef->setAttribute("node_name", "StandardSurface");
stdSurfNodeDef->setAttribute("node_category", "shader/surface");
stdSurfNodeDef->setAttribute("node_type_id", "1234");
mx::InputPtr baseColor = stdSurfNodeDef->getActiveInput("base_color");
REQUIRE(baseColor != nullptr);
baseColor->setAttribute("attribute_long_name", "BaseColor");
baseColor->setAttribute("attribute_short_name", "bc");
baseColor->setAttribute("should_not_be_exported", "42");
//
// Create an instance of this shader and validate that metadata is exported as expected.
//
mx::NodePtr stdSurf1 = doc->addNodeInstance(stdSurfNodeDef, "standardSurface1");
REQUIRE(stdSurf1 != nullptr);
mx::ShaderGeneratorPtr generator = mx::OslShaderGenerator::create();
mx::GenContext context(mx::OslShaderGenerator::create());
context.registerSourceCodeSearchPath(searchPath);
// Metadata to export must be registered in the context before shader generation starts.
// Custom generators can override this method to customize which metadata gets registered.
generator->registerShaderMetadata(doc, context);
// Generate the shader.
mx::ShaderPtr shader = generator->generate(stdSurf1->getName(), stdSurf1, context);
REQUIRE(shader != nullptr);
}
static void generateOslCode()
{
mx::FileSearchPath searchPath = mx::getDefaultDataSearchPath();
mx::FilePathVec testRootPaths;
testRootPaths.push_back(searchPath.find("resources/Materials/TestSuite"));
testRootPaths.push_back(searchPath.find("resources/Materials/Examples/StandardSurface"));
const mx::FilePath logPath("genosl_vanilla_generate_test.txt");
bool writeShadersToDisk = false;
OslShaderGeneratorTester tester(mx::OslShaderGenerator::create(), testRootPaths, searchPath, logPath, writeShadersToDisk);
tester.addSkipLibraryFiles();
const mx::GenOptions genOptions;
mx::FilePath optionsFilePath = searchPath.find("resources/Materials/TestSuite/_options.mtlx");
tester.validate(genOptions, optionsFilePath);
}
TEST_CASE("GenShader: OSL Shader Generation", "[genosl]")
{
generateOslCode();
}