#include "../Common/Example.h"
void RunBakingTesting( const std::string& readFrom, const std::string& writeToBaked );
int main( int argc, char* argv[] )
{
try
{
InitExample();
sg->SetGlobalSetting("DefaultTBNType", SG_TANGENTSPACEMETHOD_ORTHONORMAL);
std::string assetPath = GetAssetPath();
RunBakingTesting(assetPath + "SimplygonMan/SimplygonMan.obj", "SimplygonMan_bakedDiffuse");
DeinitExample();
}
catch (const std::exception& ex)
{
std::cerr << ex.what() << std::endl;
return -1;
}
return 0;
}
void RunBakingTesting( const std::string& readFrom, const std::string& writeToBaked )
{
std::string output_geometry_baked_filename = writeToBaked + ".sgscene";
spWavefrontImporter objReader = sg->CreateWavefrontImporter();
objReader->SetImportFilePath( readFrom.c_str() );
if( !objReader->RunImport() )
throw std::exception("Failed to load input file!");
spScene scene = objReader->GetScene();
spReductionProcessor reducer = sg->CreateReductionProcessor();
reducer->SetScene( scene );
spRepairSettings repairSettings = reducer->GetRepairSettings();
repairSettings->SetWeldDist( 0.0f );
repairSettings->SetTjuncDist( 0.0f );
spReductionSettings reductionSettings = reducer->GetReductionSettings();
reductionSettings->SetTriangleRatio( 0.5 );
spMappingImageSettings mappingSettings = reducer->GetMappingImageSettings();
mappingSettings->SetGenerateMappingImage( true );
mappingSettings->SetParameterizerMaxStretch( 0.5f );
mappingSettings->SetGutterSpace( 1 );
mappingSettings->SetWidth( 1024 );
mappingSettings->SetHeight( 1024 );
mappingSettings->SetMultisamplingLevel( 1 );
mappingSettings->SetGenerateTexCoords( true );
mappingSettings->SetTexCoordLevel( (SG_NUM_SUPPORTED_TEXTURE_CHANNELS - 1) );
reducer->RunProcessing();
spMappingImage mappingImage = reducer->GetMappingImage();
spVertexColorBaker baker = sg->CreateVertexColorBaker();
baker->SetScene( scene );
baker->SetMappingImage( mappingImage );
baker->SetSourceMaterials( scene->GetMaterialTable() );
baker->SetSourceTextures( scene->GetTextureTable() );
baker->SetChannelName( SG_MATERIAL_CHANNEL_DIFFUSE );
baker->SetOutputColorLevelName( "0" );
baker->SetColorSpaceEdgeThreshold( 3.0 );
baker->Bake();
scene->SaveToFile( output_geometry_baked_filename.c_str() );
spScene sceneWithVertexColors = sg->CreateScene();
sceneWithVertexColors->LoadFromFile(output_geometry_baked_filename.c_str());
spGeometryData geom = sceneWithVertexColors->NewCombinedGeometry();
spRealArray colors = geom->GetColors(0);
sceneWithVertexColors->GetTextureTable()->Clear();
sceneWithVertexColors->GetMaterialTable()->Clear();
spShadingVertexColorNode exitNode = sg->CreateShadingVertexColorNode();
exitNode->SetVertexColorIndex(0);
spMaterial mat = sg->CreateMaterial();
mat->SetShadingNetwork(SG_MATERIAL_CHANNEL_DIFFUSE, exitNode);
sceneWithVertexColors->GetMaterialTable()->AddMaterial(mat);
spReductionProcessor red = sg->CreateReductionProcessor();
red->SetScene(sceneWithVertexColors);
red->GetMappingImageSettings()->SetGenerateMappingImage(true);
red->GetMappingImageSettings()->SetUseFullRetexturing(true);
red->RunProcessing();
int id = sceneWithVertexColors->SelectNodes("ISceneMesh");
spSelectionSet set = sceneWithVertexColors->GetSelectionSetTable()->GetSelectionSet(id);
for (uint i = 0; i < set->GetItemCount(); ++i)
{
spGeometryData geomWithVertexColors = SafeCast<ISceneMesh>(sceneWithVertexColors->GetNodeByGUID(set->GetItem(i)))->GetGeometry();
for (uint m = 0; m < geomWithVertexColors->GetMaterialIds()->GetItemCount(); ++m)
{
geomWithVertexColors->GetMaterialIds()->SetItem(m, 0);
}
}
spColorCaster caster = sg->CreateColorCaster();
caster->SetSourceMaterials(sceneWithVertexColors->GetMaterialTable());
caster->SetMappingImage(red->GetMappingImage());
caster->SetColorType(SG_MATERIAL_CHANNEL_DIFFUSE);
caster->SetOutputFilePath("vertexcolors.png");
caster->RunProcessing();
}