-// mat.cxx -- class to handle material properties
+// e mat.cxx -- class to handle material properties
//
// Written by Curtis Olson, started May 1998.
//
#include <simgear/compiler.h>
+#include <string.h>
#include <map>
SG_USING_STD(map);
////////////////////////////////////////////////////////////////////////
-SGMaterial::SGMaterial( const string &fg_root, const SGPropertyNode *props )
+SGMaterial::SGMaterial( const string &fg_root, const SGPropertyNode *props, const char *season )
{
init();
- read_properties( fg_root, props );
+ read_properties( fg_root, props, season );
build_ssg_state( false );
}
////////////////////////////////////////////////////////////////////////
void
-SGMaterial::read_properties( const string &fg_root, const SGPropertyNode * props )
+SGMaterial::read_properties( const string &fg_root, const SGPropertyNode * props, const char *season )
{
// Gather the path(s) to the texture(s)
vector<SGPropertyNode_ptr> textures = props->getChildren("texture");
for (unsigned int i = 0; i < textures.size(); i++)
{
string tname = textures[i]->getStringValue();
+ if (strncmp(season, "summer", 6) && tname.substr(0,7) == "Terrain")
+ tname.insert(7,"."+string(season));
+
if (tname == "") {
tname = "unknown.rgb";
}
* state information for the material. This node is usually
* loaded from the $FG_ROOT/materials.xml file.
*/
- SGMaterial( const string &fg_root, const SGPropertyNode *props );
+ SGMaterial( const string &fg_root, const SGPropertyNode *props, const char *season = "summer" );
/**
SGMaterial( const string &fg_root, const SGMaterial &mat ); // unimplemented
- void read_properties( const string &fg_root, const SGPropertyNode *props );
+ void read_properties( const string &fg_root, const SGPropertyNode *props, const char *season );
void build_ssg_state( bool defer_tex_load );
void set_ssg_state( ssgSimpleState *s );
// Load a library of material properties
-bool SGMaterialLib::load( const string &fg_root, const string& mpath ) {
+bool SGMaterialLib::load( const string &fg_root, const string& mpath, const char *season ) {
SGPropertyNode materials;
SGMaterialLib ( void );
// Load a library of material properties
- bool load( const string &fg_root, const string& mpath );
+ bool load( const string &fg_root, const string& mpath, const char *season = "summer" );
// Add the named texture with default properties
bool add_item( const string &tex_path );