Blender V2.61 - r43446

BlenderWorldInfo.h

Go to the documentation of this file.
00001 /*
00002  * ***** BEGIN GPL LICENSE BLOCK *****
00003  *
00004  * This program is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU General Public License
00006  * as published by the Free Software Foundation; either version 2
00007  * of the License, or (at your option) any later version.
00008  *
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, write to the Free Software Foundation,
00016  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
00017  *
00018  * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
00019  * All rights reserved.
00020  *
00021  * The Original Code is: all of this file.
00022  *
00023  * Contributor(s): none yet.
00024  *
00025  * ***** END GPL LICENSE BLOCK *****
00026  */
00027 
00032 #ifndef __BLENDERWORLDINFO_H
00033 #define __BLENDERWORLDINFO_H
00034 #include "MT_CmMatrix4x4.h"
00035 #include "KX_WorldInfo.h"
00036 #include "KX_BlenderGL.h"
00037 
00038 class BlenderWorldInfo : public KX_WorldInfo
00039 {
00040     bool            m_hasworld;
00041     float           m_backgroundcolor[3];
00042 
00043     bool            m_hasmist;
00044     float           m_miststart;
00045     float           m_mistdistance;
00046     float           m_mistcolor[3];
00047 
00048     float           m_ambientcolor[3];
00049 
00050 public:
00051     BlenderWorldInfo(struct Scene *blenderscene, struct World* blenderworld);
00052     ~BlenderWorldInfo();
00053 
00054     bool    hasWorld();
00055     bool    hasMist();
00056     float   getBackColorRed();
00057     float   getBackColorGreen();
00058     float   getBackColorBlue();
00059     
00060     float   getAmbientColorRed();
00061     float   getAmbientColorGreen();
00062     float   getAmbientColorBlue();
00063 
00064     float   getMistStart();
00065     float   getMistDistance();
00066     float   getMistColorRed();
00067     float   getMistColorGreen();
00068     float   getMistColorBlue();
00069 
00070     void
00071     setBackColor(
00072         float r,
00073         float g,
00074         float b
00075     );
00076         void    
00077     setMistStart(
00078         float d
00079     );
00080 
00081         void    
00082     setMistDistance(
00083         float d
00084     );
00085 
00086         void    
00087     setMistColorRed(
00088         float d
00089     );
00090 
00091         void    
00092     setMistColorGreen(
00093         float d
00094     );
00095 
00096         void    
00097     setMistColorBlue(
00098         float d
00099     );   
00100     
00101     
00102 #ifdef WITH_CXX_GUARDEDALLOC
00103 public:
00104     void *operator new(size_t num_bytes) { return MEM_mallocN(num_bytes, "GE:BlenderWorldInfo"); }
00105     void operator delete( void *mem ) { MEM_freeN(mem); }
00106 #endif
00107 };
00108 
00109 #endif //__BLENDERWORLDINFO_H
00110