/* Copyright (C) 2010 Wildfire Games. * This file is part of 0 A.D. * * 0 A.D. 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. * * 0 A.D. 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 0 A.D. If not, see . */ #include "precompiled.h" #include "Material.h" #include "lib/ogl.h" #include "ps/Game.h" #include "ps/Overlay.h" // for CColor CMaterial NullMaterial; CMaterial IdentityMaterial; // Values as taken straight from the Blue Book (god bless the Blue Book) static SMaterialColor IdentityDiffuse(0.8f, 0.8f, 0.8f, 1.0f); static SMaterialColor IdentityAmbient(0.2f, 0.2f, 0.2f, 1.0f); static SMaterialColor IdentitySpecular(0.0f, 0.0f, 0.0f, 1.0f); static SMaterialColor IdentityEmissive(0.0f, 0.0f, 0.0f, 1.0f); static SMaterialColor BrokenColor(0.3f, 0.3f, 0.3f, 1.0f); CMaterial::CMaterial() : m_Diffuse(IdentityDiffuse), m_Ambient(IdentityAmbient), m_Specular(IdentitySpecular), m_Emissive(IdentityEmissive), m_SpecularPower(0.0f), m_Alpha(false), m_PlayerID(PLAYER_ID_NONE), m_TextureColor(BrokenColor) { } bool CMaterial::operator==(const CMaterial& material) { return( m_Texture == m_Texture && m_Diffuse == material.m_Diffuse && m_Ambient == material.m_Ambient && m_Specular == material.m_Specular && m_Emissive == material.m_Emissive && m_SpecularPower == material.m_SpecularPower && m_Alpha == material.m_Alpha && m_PlayerID == material.m_PlayerID && m_TextureColor == material.m_TextureColor ); } void CMaterial::Bind() { glMaterialf(GL_FRONT, GL_SHININESS, m_SpecularPower); glMaterialfv(GL_FRONT, GL_DIFFUSE, &m_Diffuse.r); glMaterialfv(GL_FRONT, GL_AMBIENT, &m_Ambient.r); glMaterialfv(GL_FRONT, GL_SPECULAR, &m_Specular.r); glMaterialfv(GL_FRONT, GL_EMISSION, &m_Emissive.r); ogl_WarnIfError(); } void CMaterial::Unbind() { } SMaterialColor CMaterial::GetDiffuse() { return m_Diffuse; } SMaterialColor CMaterial::GetAmbient() { return m_Ambient; } SMaterialColor CMaterial::GetSpecular() { return m_Specular; } SMaterialColor CMaterial::GetEmissive() { return m_Emissive; } SMaterialColor CMaterial::GetPlayerColor() { debug_assert(m_PlayerID != PLAYER_ID_NONE); // because this should never be called unless IsPlayer returned true if (m_PlayerID == PLAYER_ID_OTHER /* TODO: or if player-colour is globally disabled */ ) return m_TextureColor; if (m_PlayerID <= PLAYER_ID_LAST_VALID) { CColor c(g_Game->GetPlayerColour(m_PlayerID)); return SMaterialColor(c.r, c.g, c.b, c.a); } // Oops, something failed. return BrokenColor; } void CMaterial::SetPlayerColor(size_t id) { if (m_PlayerID == PLAYER_ID_COMING_SOON || m_PlayerID <= PLAYER_ID_LAST_VALID) m_PlayerID = id; } void CMaterial::SetPlayerColor(const CColor& colour) { m_TextureColor = SMaterialColor(colour.r, colour.g, colour.b, colour.a); } void CMaterial::SetTexture(const CStr& texture) { m_Texture = texture; } void CMaterial::SetVertexProgram(const CStr& prog) { m_VertexProgram = prog; } void CMaterial::SetFragmentProgram(const CStr& prog) { m_FragmentProgram = prog; } void CMaterial::SetDiffuse(const SMaterialColor& color) { m_Diffuse = color; } void CMaterial::SetAmbient(const SMaterialColor& color) { m_Ambient = color; } void CMaterial::SetSpecular(const SMaterialColor& color) { m_Specular = color; } void CMaterial::SetEmissive(const SMaterialColor& color) { m_Emissive = color; } void CMaterial::SetSpecularPower(float power) { m_SpecularPower = power; } void CMaterial::SetUsesAlpha(bool flag) { m_Alpha = flag; }