/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx 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, or (at your option) any later version. ### File Specific: main-programmer: Benjamin Grauer co-programmer: ... */ #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_IMPORTER #include "material.h" #include "texture.h" #include "debug.h" #include "resource_manager.h" #include #include //! @todo check if we are in RESOURCE MANAGER-mode #include "resource_manager.h" using namespace std; /** * creates a Material. * @param mtlName Name of the Material to be added to the Material List */ Material::Material (const char* mtlName) { this->setClassID(CL_MATERIAL, "Material"); this->setIllum(3); this->setDiffuse(1,1,1); this->setAmbient(0,0,0); this->setSpecular(.5,.5,.5); this->setShininess(2.0); this->setTransparency(1.0); this->diffuseTexture = NULL; this->ambientTexture = NULL; this->specularTexture = NULL; this->sFactor = GL_SRC_ALPHA; this->tFactor = GL_ONE; this->setName(mtlName); } /** * deletes a Material */ Material::~Material() { PRINTF(5)("delete Material %s.\n", this->getName()); if (this->diffuseTexture != NULL) { ResourceManager::getInstance()->unload(this->diffuseTexture); } if (this->ambientTexture != NULL) ResourceManager::getInstance()->unload(this->ambientTexture); if (this->specularTexture != NULL) ResourceManager::getInstance()->unload(this->specularTexture); } Material& Material::operator=(const Material& m) { this->setIllum(m.illumModel); this->setDiffuse(m.diffuse[0],m.diffuse[1],m.diffuse[2]); this->setAmbient(m.ambient[0],m.ambient[1],m.ambient[2]); this->setSpecular(m.specular[0],m.specular[1],m.specular[2]); this->setShininess(m.shininess); this->setTransparency(m.transparency); if (this->diffuseTexture != NULL) ResourceManager::getInstance()->unload(this->diffuseTexture); if (m.diffuseTexture != NULL) this->diffuseTexture = (Texture*)ResourceManager::getInstance()->copy(m.diffuseTexture); this->ambientTexture = NULL; /// FIXME this->specularTexture = NULL; /// FIXME this->setName(m.getName()); } /** * sets the material with which the following Faces will be painted */ bool Material::select () const { // setting diffuse color glColor4f (diffuse[0], diffuse[1], diffuse[2], this->transparency); // glMaterialfv(GL_FRONT, GL_DIFFUSE, this->diffuse); // setting ambient color glMaterialfv(GL_FRONT, GL_AMBIENT, this->ambient); // setting up Sprecular glMaterialfv(GL_FRONT, GL_SPECULAR, this->specular); // setting up Shininess glMaterialf(GL_FRONT, GL_SHININESS, this->shininess); // setting the transparency if (this->transparency < 1.0 || /* This allows alpha blending of 2D textures with the scene */ (this->diffuseTexture && this->diffuseTexture->hasAlpha())) { glEnable(GL_BLEND); glBlendFunc(this->sFactor, this->tFactor); } else { glDisable(GL_BLEND); //glColor4f(*(this->diffuse), *(this->diffuse+1), *(this->diffuse+2), 1); } // setting illumination Model if (this->illumModel == 1) //! @todo make this work, if no vertex-normals are read. glShadeModel(GL_FLAT); else if (this->illumModel >= 2) glShadeModel(GL_SMOOTH); if (this->diffuseTexture != NULL) { glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, this->diffuseTexture->getTexture()); } else { glDisable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, 0); } } /** * Sets the Material Illumination Model. * illu illumination Model in int form */ void Material::setIllum (int illum) { PRINTF(4)("setting illumModel of Material %s to %i\n", this->getName(), illum); this->illumModel = illum; } /** * Sets the Material Illumination Model. * illu illumination Model in char* form */ void Material::setIllum (char* illum) { this->setIllum (atoi(illum)); } /** * Sets the Material Diffuse Color. * @param r Red Color Channel. * @param g Green Color Channel. * @param b Blue Color Channel. */ void Material::setDiffuse (float r, float g, float b) { PRINTF(4)("setting Diffuse Color of Material %s to r=%f g=%f b=%f.\n", this->getName(), r, g, b); this->diffuse[0] = r; this->diffuse[1] = g; this->diffuse[2] = b; this->diffuse[3] = 1.0; } /** * Sets the Material Diffuse Color. * @param rgb The red, green, blue channel in char format (with spaces between them) */ void Material::setDiffuse (char* rgb) { float r,g,b; sscanf (rgb, "%f %f %f", &r, &g, &b); this->setDiffuse (r, g, b); } /** * Sets the Material Ambient Color. * @param r Red Color Channel. * @param g Green Color Channel. * @param b Blue Color Channel. */ void Material::setAmbient (float r, float g, float b) { PRINTF(4)("setting Ambient Color of Material %s to r=%f g=%f b=%f.\n", this->getName(), r, g, b); this->ambient[0] = r; this->ambient[1] = g; this->ambient[2] = b; this->ambient[3] = 1.0; } /** * Sets the Material Ambient Color. * @param rgb The red, green, blue channel in char format (with spaces between them) */ void Material::setAmbient (char* rgb) { float r,g,b; sscanf (rgb, "%f %f %f", &r, &g, &b); this->setAmbient (r, g, b); } /** * Sets the Material Specular Color. * @param r Red Color Channel. * @param g Green Color Channel. * @param b Blue Color Channel. */ void Material::setSpecular (float r, float g, float b) { PRINTF(4)("setting Specular Color of Material %s to r=%f g=%f b=%f.\n", this->getName(), r, g, b); this->specular[0] = r; this->specular[1] = g; this->specular[2] = b; this->specular[3] = 1.0; } /** * Sets the Material Specular Color. * @param rgb The red, green, blue channel in char format (with spaces between them) */ void Material::setSpecular (char* rgb) { float r,g,b; sscanf (rgb, "%f %f %f", &r, &g, &b); this->setSpecular (r, g, b); } /** * Sets the Material Shininess. * @param shini stes the Shininess from float. */ void Material::setShininess (float shini) { this->shininess = shini; } /** * Sets the Material Shininess. * @param shini stes the Shininess from char*. */ void Material::setShininess (char* shini) { this->setShininess (atof(shini)); } /** * Sets the Material Transparency. * @param trans stes the Transparency from int. */ void Material::setTransparency (float trans) { PRINTF(4)("setting Transparency of Material %s to %f.\n", this->getName(), trans); this->transparency = trans; } /** * Sets the Material Transparency. * @param trans stes the Transparency from char*. */ void Material::setTransparency (char* trans) { this->setTransparency (atof(trans)); } /** * Adds a Texture Path to the List of already existing Paths * @param pathName The Path to add. */ void Material::addTexturePath(const char* pathName) { ResourceManager::getInstance()->addImageDir(pathName); } // MAPPING // /** * Sets the Materials Diffuse Map * @param dMap the Name of the Image to Use */ void Material::setDiffuseMap(const char* dMap, GLenum target) { PRINTF(5)("setting Diffuse Map %s\n", dMap); if (this->diffuseTexture != NULL) ResourceManager::getInstance()->unload(this->diffuseTexture); //! @todo check if RESOURCE MANAGER is availiable //! @todo Textures from .mtl-file need special care. if (dMap != NULL) this->diffuseTexture = (Texture*)ResourceManager::getInstance()->load(dMap, IMAGE, RP_GAME, (int)target); else this->diffuseTexture = NULL; } /** * Sets the Materials Ambient Map * @param aMap the Name of the Image to Use @todo implement this */ void Material::setAmbientMap(const char* aMap, GLenum target) { SDL_Surface* ambientMap; } /** * Sets the Materials Specular Map * @param sMap the Name of the Image to Use @todo implement this */ void Material::setSpecularMap(const char* sMap, GLenum target) { SDL_Surface* specularMap; } /** * Sets the Materials Bumpiness * @param bump the Name of the Image to Use @todo implemet this */ void Material::setBump(const char* bump) { }