2000-06-23 02:59:03 +00:00
|
|
|
// matlib.hxx -- class to handle material properties
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 1998.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1998 - 2000 Curtis L. Olson - curt@flightgear.org
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _MATLIB_HXX
|
|
|
|
#define _MATLIB_HXX
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_WINDOWS_H
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
|
|
|
#include <GL/glut.h>
|
2001-05-15 22:30:39 +00:00
|
|
|
#include <GL/gl.h>
|
2000-06-23 02:59:03 +00:00
|
|
|
|
|
|
|
#include STL_STRING // Standard C++ string library
|
|
|
|
#include <map> // STL associative "array"
|
|
|
|
#include <vector> // STL "array"
|
|
|
|
|
|
|
|
#include <plib/ssg.h> // plib include
|
|
|
|
|
|
|
|
#include "newmat.hxx"
|
|
|
|
|
|
|
|
|
2001-03-23 22:59:18 +00:00
|
|
|
SG_USING_STD(string);
|
|
|
|
SG_USING_STD(map);
|
|
|
|
SG_USING_STD(vector);
|
|
|
|
SG_USING_STD(less);
|
2000-06-23 02:59:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Material management class
|
|
|
|
class FGMaterialLib {
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// associative array of materials
|
2001-06-12 17:52:09 +00:00
|
|
|
typedef map < string, FGNewMat *, less<string> > material_map;
|
2000-06-23 02:59:03 +00:00
|
|
|
typedef material_map::iterator material_map_iterator;
|
|
|
|
typedef material_map::const_iterator const_material_map_iterator;
|
|
|
|
|
|
|
|
material_map matlib;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
FGMaterialLib ( void );
|
|
|
|
|
|
|
|
// Load a library of material properties
|
|
|
|
bool load( const string& mpath );
|
|
|
|
|
|
|
|
// Add the named texture with default properties
|
2000-06-23 04:55:55 +00:00
|
|
|
bool add_item( const string &tex_path );
|
|
|
|
bool add_item( const string &mat_name, const string &tex_path );
|
|
|
|
bool add_item( const string &mat_name, ssgSimpleState *state );
|
2000-06-23 02:59:03 +00:00
|
|
|
|
|
|
|
// find a material record by material name
|
|
|
|
FGNewMat *find( const string& material );
|
|
|
|
|
|
|
|
void set_step (int step);
|
2001-06-26 22:00:31 +00:00
|
|
|
int get_step ();
|
2000-06-23 02:59:03 +00:00
|
|
|
|
2001-05-15 00:01:04 +00:00
|
|
|
// Load one pending "deferred" texture. Return true if a texture
|
|
|
|
// loaded successfully, false if no pending, or error.
|
|
|
|
void load_next_deferred();
|
|
|
|
|
2000-06-23 02:59:03 +00:00
|
|
|
material_map_iterator begin() { return matlib.begin(); }
|
|
|
|
const_material_map_iterator begin() const { return matlib.begin(); }
|
|
|
|
|
|
|
|
material_map_iterator end() { return matlib.end(); }
|
|
|
|
const_material_map_iterator end() const { return matlib.end(); }
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~FGMaterialLib ( void );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// global material management class
|
|
|
|
extern FGMaterialLib material_lib;
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _MATLIB_HXX
|