/* 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 "compiler.h" #include "util/loading/resource_manager.h" /** * @brief creates a Material. * @param mtlName Name of the Material to be added to the Material List */ Material::Material (const std::string& 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->ambientTexture = NULL; this->specularTexture = NULL; this->sFactor = GL_SRC_ALPHA; this->tFactor = GL_ONE; this->setName(mtlName); } /** * @brief deletes a Material */ Material::~Material() { PRINTF(5)("delete Material %s.\n", this->getName()); if (this->ambientTexture != NULL) ResourceManager::getInstance()->unload(this->ambientTexture); if (this->specularTexture != NULL) ResourceManager::getInstance()->unload(this->specularTexture); if (this == Material::selectedMaterial) Material::selectedMaterial = NULL; } const Material* Material::selectedMaterial = NULL; const GLenum Material::glTextureArbs[] = { GL_TEXTURE0, GL_TEXTURE1, GL_TEXTURE2, GL_TEXTURE3, GL_TEXTURE4, GL_TEXTURE5, GL_TEXTURE6, GL_TEXTURE7 }; /// TODO FIX THIS // 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()); // } /** * @brief sets the material with which the following Faces will be painted */ bool Material::select() const { if (unlikely(this == Material::selectedMaterial)) return true; /// !! HACK !!! FIX THIS IN MODEL /// else if (likely(Material::selectedMaterial != NULL)) { Material::unselect(); // for(unsigned int i = 0; i < Material::selectedMaterial->textures.size(); ++i) // { // glActiveTexture(Material::glTextureArbs[i]); // glBindTexture(GL_TEXTURE_2D, 0); // glDisable(GL_TEXTURE_2D); // } } if (likely(Material::selectedMaterial != NULL)) { for(unsigned int i = 0; i < Material::selectedMaterial->textures.size(); ++i) { glActiveTexture(Material::glTextureArbs[i]); //glBindTexture(GL_TEXTURE_2D, 0); glDisable(GL_TEXTURE_2D); } } // setting diffuse color glColor4f (diffuse.r(), diffuse.g(), diffuse.b(), diffuse.a()); // setting ambient color glMaterialfv(GL_FRONT, GL_AMBIENT, &this->ambient[0]); // setting up Sprecular glMaterialfv(GL_FRONT, GL_SPECULAR, &this->specular[0]); // setting up Shininess glMaterialf(GL_FRONT, GL_SHININESS, this->shininess); // setting the transparency if (this->diffuse.a() < 1.0 || /* This allows alpha blending of 2D textures with the scene */ (likely(!this->textures.empty() && this->textures[0].hasAlpha()))) { glEnable(GL_BLEND); glBlendFunc(this->sFactor, this->tFactor); } else { glDisable(GL_BLEND); } // 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); for(unsigned int i = 0; i < this->textures.size(); ++i) { glActiveTexture(Material::glTextureArbs[i]); glEnable(GL_TEXTURE_2D); if(this->textures[i].hasAlpha()) { glEnable(GL_BLEND); } glBindTexture(GL_TEXTURE_2D, this->textures[i].getTexture()); } Material::selectedMaterial = this; return true; } /** * @brief Deselect Material (if one is selected). */ void Material::unselect() { Material::selectedMaterial = NULL; for(unsigned int i = 0; i < 8; ++i) { glActiveTexture(Material::glTextureArbs[i]); glBindTexture(GL_TEXTURE_2D, 0); glDisable(GL_TEXTURE_2D); } } /** * @brief Sets the Material Illumination Model. * @param 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; } /** * @brief Sets the Material Diffuse Color. * @param r Red Color Channel.a * @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 = Color(r, g, b, this->diffuse.a() ); } /** * @brief 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 = Color(r, g, b, 1.0); } /** * @brief 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 = Color (r, g, b, 1.0); } /** * @brief Sets the Material Shininess. * @param shini stes the Shininess from float. */ void Material::setShininess (float shini) { this->shininess = shini; } /** * @brief 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->diffuse.a() = trans; } /** * @brief Adds a Texture Path to the List of already existing Paths * @param pathName The Path to add. */ void Material::addTexturePath(const std::string& pathName) { ResourceManager::getInstance()->addImageDir(pathName); } // MAPPING // /** * @brief Sets the Diffuse map of this Texture. * @param texture The Texture to load * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS */ void Material::setDiffuseMap(const Texture& texture, unsigned int textureNumber) { assert(textureNumber < Material::getMaxTextureUnits()); if (this->textures.size() <= textureNumber) this->textures.resize(textureNumber+1, Texture()); //! @todo check if RESOURCE MANAGER is availiable this->textures[textureNumber] = texture; } /** * @brief Sets the Materials Diffuse Map * @param dMap the Name of the Image to Use * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS */ void Material::setDiffuseMap(const std::string& dMap, GLenum target, unsigned int textureNumber) { assert(textureNumber < Material::getMaxTextureUnits()); PRINTF(5)("setting Diffuse Map %s\n", dMap.c_str()); if (this->textures.size() <= textureNumber) this->textures.resize(textureNumber+1, Texture()); //! @todo check if RESOURCE MANAGER is availiable if (!dMap.empty()) { Texture* tex = dynamic_cast(ResourceManager::getInstance()->load(dMap, IMAGE, RP_GAME, (int)target)); if (tex != NULL) this->textures[textureNumber] = *tex; else this->textures[textureNumber] = Texture(); } else { this->textures[textureNumber] = Texture(); } } /** * @brief Sets the Materials Diffuse Map * @param surface pointer to SDL_Surface which shall be used as texture. * @param target the GL-Target to load the Surface to. * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS. */ void Material::setSDLDiffuseMap(SDL_Surface *surface, GLenum target, unsigned int textureNumber) { assert(textureNumber < Material::getMaxTextureUnits()); if (this->textures.size() <= textureNumber) this->textures.resize(textureNumber+1, Texture()); if(surface != NULL) { this->textures[textureNumber] = Texture(surface, GL_TEXTURE_2D); } else { this->textures[textureNumber] = Texture(); } } /** * @brief Renders to a Texture. * @param textureNumber The Texture-Number from 0 to GL_MAX_TEXTURE_UNITS. * @param target The GL-Target. * @param level the MipMap-Level to render to. * @param xoffset The offset in the Source from the left. * @param yoffset The offset in the Source from the top (or bottom). * @param x The Offset in the Destination from the left. * @param y The Offset in the Destination from the top (or bottom). * @param width The width of the region to copy. * @param height The height of the region to copy. */ void Material::renderToTexture(unsigned int textureNumber, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) { assert(textureNumber < Material::getMaxTextureUnits()); assert(textureNumber < this->textures.size()); // HACK glActiveTexture(textureNumber); glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, this->textures[textureNumber].getTexture()); glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height); } /** * @brief Sets the Materials Ambient Map * @todo implement this */ void Material::setAmbientMap(const std::string& aMap, GLenum target) { /// FIXME SDL_Surface* ambientMap; } /** * @brief Sets the Materials Specular Map * @param sMap the Name of the Image to Use * @todo implement this */ void Material::setSpecularMap(const std::string& sMap, GLenum target) { /// FIXME SDL_Surface* specularMap; } /** * @brief Sets the Materials Bumpiness * @param bump the Name of the Image to Use * @todo implemet this */ void Material::setBump(const std::string& bump) { } /** * @returns the Maximim Texture Unit the users OpenGL-Implementation supports. */ unsigned int Material::getMaxTextureUnits() { int maxTexUnits = 0; glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxTexUnits); return maxTexUnits; }