2007-05-27 12:01:53 -04:00
|
|
|
// $Id$
|
|
|
|
//
|
|
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
|
|
// Copyright (C) 2004 Steve Baker <sjbaker1@airmail.net>
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
2008-06-12 20:53:52 -04:00
|
|
|
// as published by the Free Software Foundation; either version 3
|
2007-05-27 12:01:53 -04:00
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
#include "material_manager.hpp"
|
2008-02-23 03:21:30 -05:00
|
|
|
|
2009-01-22 17:27:13 -05:00
|
|
|
#include <stdexcept>
|
2007-05-27 12:01:53 -04:00
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
|
|
|
# define snprintf _snprintf
|
2007-12-19 23:37:35 -05:00
|
|
|
# define strdup _strdup
|
2007-05-27 12:01:53 -04:00
|
|
|
#endif
|
|
|
|
|
2009-01-22 17:27:13 -05:00
|
|
|
#include "file_manager.hpp"
|
|
|
|
#include "material.hpp"
|
|
|
|
#include "translation.hpp"
|
|
|
|
#include "utils/string_utils.hpp"
|
|
|
|
|
2007-05-27 12:01:53 -04:00
|
|
|
ssgState *fuzzy_gst;
|
|
|
|
|
|
|
|
MaterialManager *material_manager=0;
|
|
|
|
|
|
|
|
MaterialManager::MaterialManager()
|
|
|
|
{
|
|
|
|
/* Create list - and default material zero */
|
|
|
|
|
2008-02-28 22:26:07 -05:00
|
|
|
m_materials.reserve(256);
|
2007-05-27 12:01:53 -04:00
|
|
|
// We can't call init/loadMaterial here, since the global variable
|
|
|
|
// material_manager has not yet been initialised, and
|
|
|
|
// material_manager is used in the Material constructor.
|
|
|
|
// Therefore, the code for loading the material had to
|
|
|
|
// be moved into a separate function.
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int MaterialManager::addEntity(Material *m)
|
|
|
|
{
|
|
|
|
m_materials.push_back(m);
|
2007-12-09 20:39:30 -05:00
|
|
|
return (int)m_materials.size()-1;
|
2007-05-27 12:01:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void MaterialManager::reInit()
|
|
|
|
{
|
|
|
|
for(std::vector<Material*>::const_iterator i=m_materials.begin();
|
|
|
|
i!=m_materials.end(); i++)
|
|
|
|
{
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
m_materials.clear();
|
|
|
|
loadMaterial();
|
|
|
|
} // reInit
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void MaterialManager::loadMaterial()
|
|
|
|
{
|
2008-02-23 03:21:30 -05:00
|
|
|
// Create the default/empty material.
|
|
|
|
m_materials.push_back(new Material((int)m_materials.size()));
|
2007-05-27 12:01:53 -04:00
|
|
|
|
2008-02-28 22:26:07 -05:00
|
|
|
// Use temp material for reading, but then set the shared
|
|
|
|
// material index later, so that these materials are not popped
|
|
|
|
const std::string fname = "materials.dat";
|
2008-02-29 22:18:53 -05:00
|
|
|
std::string full_name = file_manager->getTextureFile(fname);
|
2008-03-04 21:09:50 -05:00
|
|
|
addSharedMaterial(full_name);
|
|
|
|
|
|
|
|
ssgSetAppStateCallback(getAppState);
|
|
|
|
fuzzy_gst = getMaterial("fuzzy.rgb")->getState();
|
|
|
|
// Save index of shared textures
|
|
|
|
m_shared_material_index = (int)m_materials.size();
|
|
|
|
} // MaterialManager
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void MaterialManager::addSharedMaterial(const std::string& filename)
|
|
|
|
{
|
|
|
|
// Use temp material for reading, but then set the shared
|
|
|
|
// material index later, so that these materials are not popped
|
|
|
|
if(filename=="")
|
2007-05-27 12:01:53 -04:00
|
|
|
{
|
|
|
|
char msg[MAX_ERROR_MESSAGE_LENGTH];
|
2008-03-04 21:09:50 -05:00
|
|
|
snprintf(msg, sizeof(msg), "FATAL: File '%s' not found\n", filename.c_str());
|
2007-05-27 12:01:53 -04:00
|
|
|
throw std::runtime_error(msg);
|
|
|
|
}
|
2008-03-04 21:09:50 -05:00
|
|
|
if(!pushTempMaterial(filename))
|
2008-02-28 22:26:07 -05:00
|
|
|
{
|
|
|
|
char msg[MAX_ERROR_MESSAGE_LENGTH];
|
2008-03-04 21:09:50 -05:00
|
|
|
snprintf(msg, sizeof(msg), "FATAL: Parsing error in '%s'\n", filename.c_str());
|
2008-02-28 22:26:07 -05:00
|
|
|
throw std::runtime_error(msg);
|
|
|
|
}
|
|
|
|
m_shared_material_index = (int)m_materials.size();
|
2008-03-04 21:09:50 -05:00
|
|
|
} // addSharedMaterial
|
2008-02-28 22:26:07 -05:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
bool MaterialManager::pushTempMaterial(const std::string& filename)
|
|
|
|
{
|
|
|
|
FILE *fd = fopen(filename.c_str(), "r" );
|
|
|
|
|
|
|
|
if ( fd == NULL ) return false;
|
2007-05-27 12:01:53 -04:00
|
|
|
|
|
|
|
while ( parseMaterial ( fd ) )
|
|
|
|
/* Read file */ ;
|
|
|
|
|
|
|
|
fclose ( fd ) ;
|
2008-02-28 22:26:07 -05:00
|
|
|
return true;
|
|
|
|
} // pushTempMaterial
|
2007-05-27 12:01:53 -04:00
|
|
|
|
2008-02-28 22:26:07 -05:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void MaterialManager::popTempMaterial()
|
|
|
|
{
|
|
|
|
for(int i=(int)m_materials.size()-1; i>=this->m_shared_material_index; i--)
|
|
|
|
{
|
|
|
|
delete m_materials[i];
|
|
|
|
m_materials.pop_back();
|
|
|
|
} // for i
|
|
|
|
} // popTempMaterial
|
2007-05-27 12:01:53 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
char* MaterialManager::parseFileName(char **str)
|
|
|
|
{
|
|
|
|
char *p = *str ;
|
|
|
|
|
|
|
|
/* Skip leading spaces */
|
|
|
|
while ( *p <= ' ' && *p != '\0' ) p++ ;
|
|
|
|
|
|
|
|
/* Skip blank lines and comments */
|
|
|
|
if ( *p == '#' || *p == '\0' )
|
|
|
|
return NULL ;
|
|
|
|
|
|
|
|
if ( *p != '"' )
|
|
|
|
{
|
|
|
|
fprintf(stderr, "ERROR: Material file entries must start with '\"'\n"
|
|
|
|
"ERROR: Offending line is '%s'\n", *str);
|
|
|
|
return NULL ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Filename? */
|
|
|
|
char *f = ++p ;
|
|
|
|
while ( *p != '"' && *p != '\0' ) p++ ;
|
|
|
|
|
|
|
|
if ( *p != '"' )
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR: Unterminated string constant '%s' in materials file.\n", *str ) ;
|
|
|
|
return NULL ;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = '\0' ;
|
|
|
|
*str = ++p ;
|
|
|
|
|
|
|
|
return f ;
|
2008-02-23 03:21:30 -05:00
|
|
|
} // parseFilename
|
2007-05-27 12:01:53 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int MaterialManager::parseMaterial ( FILE *fd )
|
|
|
|
{
|
|
|
|
char str [ 1024 ] ;
|
|
|
|
|
|
|
|
while ( ! feof ( fd ) )
|
|
|
|
{
|
|
|
|
char *s = str ;
|
|
|
|
|
|
|
|
if ( fgets ( s, 1024, fd ) == NULL )
|
|
|
|
return false ;
|
|
|
|
|
|
|
|
s [ strlen(s) - 1 ] = '\0' ;
|
|
|
|
|
|
|
|
char *f = parseFileName ( & s ) ;
|
|
|
|
|
|
|
|
if ( f != NULL )
|
|
|
|
{
|
2008-02-23 03:21:30 -05:00
|
|
|
m_materials.push_back(new Material (f, s, (int)m_materials.size() ));
|
2007-05-27 12:01:53 -04:00
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
2008-02-23 03:21:30 -05:00
|
|
|
} // parseMaterial
|
2007-05-27 12:01:53 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
Material *MaterialManager::getMaterial ( ssgLeaf *l )
|
|
|
|
{
|
|
|
|
return m_materials[l -> getExternalPropertyIndex ()] ;
|
2008-02-23 03:21:30 -05:00
|
|
|
} // getMaterial
|
2007-05-27 12:01:53 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2008-11-18 21:08:00 -05:00
|
|
|
/** Returns the material of a given name, if it doesn't exist, it is loaded.
|
|
|
|
* Materials that are just loaded are not permanent, and so get deleted after
|
|
|
|
* a race (this is used to load temporary, track specific materials). To make
|
|
|
|
* material permanent, make_permanent must be set to true. This is used for
|
|
|
|
* the powerup_manager, since not all icons for the powerups are listed in the
|
|
|
|
* materials.dat file, causing the missing ones to be temporary only (and
|
|
|
|
* then get deleted after one race, causing the powerup_manager to have
|
|
|
|
* invalid pointers.
|
|
|
|
* \param fname Name of the material.
|
|
|
|
* \param is_full_path True if the name includes the path (defaults to false)
|
|
|
|
* \param make_permanent True if this material should be kept in memory
|
|
|
|
* (defaults to false)
|
|
|
|
*/
|
2008-02-28 22:26:07 -05:00
|
|
|
Material *MaterialManager::getMaterial(const std::string& fname,
|
2008-11-18 21:08:00 -05:00
|
|
|
bool is_full_path,
|
|
|
|
bool make_permanent)
|
2007-05-27 12:01:53 -04:00
|
|
|
{
|
2008-02-28 22:26:07 -05:00
|
|
|
if(fname=="")
|
2007-05-27 12:01:53 -04:00
|
|
|
{
|
|
|
|
// This happens while reading the stk_config file, which contains
|
|
|
|
// kart_properties information (but no icon file): since at this
|
|
|
|
// stage loadMaterial() hasn't been called, an exception can be
|
|
|
|
// triggered here (as it happened with visual c++), when
|
|
|
|
// m_materials[0] is accessed.
|
|
|
|
if(m_materials.size()>=1) return m_materials[0];
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-23 03:21:30 -05:00
|
|
|
std::string basename=StringUtils::basename(fname);
|
2007-05-27 12:01:53 -04:00
|
|
|
|
2008-02-28 22:26:07 -05:00
|
|
|
// Search backward so that temporary (track) textures are found first
|
|
|
|
for(int i = (int)m_materials.size()-1; i>=0; i-- )
|
2007-05-27 12:01:53 -04:00
|
|
|
{
|
2008-02-23 03:21:30 -05:00
|
|
|
if(m_materials[i]->getTexFname()==basename) return m_materials[i];
|
2007-05-27 12:01:53 -04:00
|
|
|
}
|
|
|
|
|
2008-02-23 03:21:30 -05:00
|
|
|
// Add the new material
|
2008-02-28 22:26:07 -05:00
|
|
|
Material* m=new Material(fname,"", (int)m_materials.size(), is_full_path);
|
2008-02-23 03:21:30 -05:00
|
|
|
m_materials.push_back(m);
|
2008-11-18 21:08:00 -05:00
|
|
|
if(make_permanent) m_shared_material_index = (int)m_materials.size();
|
2007-08-27 09:11:06 -04:00
|
|
|
return m ;
|
2008-02-23 03:21:30 -05:00
|
|
|
} // getMaterial
|
2007-05-27 12:01:53 -04:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
ssgState *getAppState ( char *fname )
|
|
|
|
{
|
|
|
|
Material *m = material_manager->getMaterial ( fname ) ;
|
|
|
|
return ( m == NULL ) ? NULL : m -> getState () ;
|
2008-02-23 03:21:30 -05:00
|
|
|
} // getAppState
|
2007-05-27 12:01:53 -04:00
|
|
|
|