Skip to content

Commit 41ccd93

Browse files
committed
--initial commit; Make fallback material noticeable
--make material color magenta --add flag that this material is a fallback for an object lacking any other materials --remove default phong material function; specifying phong shader to use should be sufficient for depth sensor.
1 parent a29fe27 commit 41ccd93

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

src/esp/assets/ResourceManager.cpp

+17-3
Original file line numberDiff line numberDiff line change
@@ -2140,7 +2140,8 @@ Mn::Trade::MaterialData ResourceManager::setMaterialDefaultUserAttributes(
21402140
ObjectInstanceShaderType shaderTypeToUse,
21412141
bool hasVertObjID,
21422142
bool hasTxtrObjID,
2143-
int txtrIdx) const {
2143+
int txtrIdx,
2144+
bool isFallback) const {
21442145
// New material's attributes
21452146
Cr::Containers::Array<Mn::Trade::MaterialAttributeData> newAttributes;
21462147
arrayAppend(newAttributes, Cr::InPlaceInit, "hasPerVertexObjectId",
@@ -2152,6 +2153,8 @@ Mn::Trade::MaterialData ResourceManager::setMaterialDefaultUserAttributes(
21522153
arrayAppend(newAttributes, Cr::InPlaceInit, "shaderTypeToUse",
21532154
static_cast<int>(shaderTypeToUse));
21542155

2156+
arrayAppend(newAttributes, Cr::InPlaceInit, "isFallbackMaterial", isFallback);
2157+
21552158
Cr::Containers::Optional<Mn::Trade::MaterialData> finalMaterial =
21562159
Mn::MaterialTools::merge(
21572160
material, Mn::Trade::MaterialData{{}, std::move(newAttributes), {}});
@@ -2252,9 +2255,20 @@ void ResourceManager::initDefaultMaterials() {
22522255

22532256
// Build default material for fallback material
22542257
Mn::Trade::MaterialData fallbackMaterial = buildDefaultMaterial();
2255-
// Set expected user-defined attributes
2258+
// Make fallback magenta so visibly obvious
2259+
fallbackMaterial.mutableAttribute<Mn::Color4>(
2260+
Mn::Trade::MaterialAttribute::AmbientColor) =
2261+
Mn::Color4{1.0f, 0.0f, 1.0f, 1.0f};
2262+
fallbackMaterial.mutableAttribute<Mn::Color4>(
2263+
Mn::Trade::MaterialAttribute::DiffuseColor) =
2264+
Mn::Color4{1.0f, 0.0f, 1.0f, 1.0f};
2265+
fallbackMaterial.mutableAttribute<Mn::Color4>(
2266+
Mn::Trade::MaterialAttribute::SpecularColor) =
2267+
Mn::Color4{1.0f, 0.0f, 1.0f, 1.0f};
2268+
// Set expected user-defined attributes - specify Phong shader to use
22562269
fallbackMaterial = setMaterialDefaultUserAttributes(
2257-
fallbackMaterial, ObjectInstanceShaderType::Flat);
2270+
fallbackMaterial, ObjectInstanceShaderType::Phong, false, false, -1,
2271+
true);
22582272
// Add to shaderManager as fallback material
22592273
shaderManager_.setFallback<Mn::Trade::MaterialData>(
22602274
std::move(fallbackMaterial));

src/esp/assets/ResourceManager.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -747,14 +747,17 @@ class ResourceManager {
747747
* ids for semantics.
748748
* @param txtrIdx The absolute index in the @ref textures_ store for the semantic
749749
* annotation texture.
750+
* @param isFallback This material is default fallback material for missing
751+
* materials.
750752
* @return the updated material
751753
*/
752754
Mn::Trade::MaterialData setMaterialDefaultUserAttributes(
753755
const Mn::Trade::MaterialData& material,
754756
ObjectInstanceShaderType shaderTypeToUse,
755757
bool hasVertObjID = false,
756758
bool hasTxtrObjID = false,
757-
int txtrIdx = -1) const;
759+
int txtrIdx = -1,
760+
bool isFallback = false) const;
758761

759762
/**
760763
* @brief Configure the importerManager_ GL Extensions appropriately based on

0 commit comments

Comments
 (0)