xsi_light.h
Go to the documentation of this file.
00001 //*****************************************************************************
00011 //*****************************************************************************
00012 
00013 #if (_MSC_VER > 1000) || defined(SGI_COMPILER)
00014 #pragma once
00015 #endif
00016 
00017 #ifndef __XSILIGHT_H__
00018 #define __XSILIGHT_H__
00019 
00020 #include <xsi_directed.h>
00021 
00022 namespace XSI {
00023 
00024 class OGLLight;
00025 
00026 //*****************************************************************************
00047 //*****************************************************************************
00048 class SICPPSDKDECL Light : public Directed
00049 {
00050 public:
00052     Light();
00053 
00055     ~Light();
00056 
00060     Light(const CRef& in_ref);
00061 
00065     Light(const Light& in_obj);
00066 
00072     bool IsA( siClassID in_ClassID) const;
00073 
00077     siClassID GetClassID() const;
00078 
00083     Light& operator=(const Light& in_obj);
00084 
00090     Light& operator=(const CRef& in_ref);
00091 
00096     CRefArray   GetShaders() const;
00097 
00102     OGLLight    GetOGLLight() const;
00103 
00110     siShaderParameterType GetShaderInputType(const CString& in_paramscriptname) const;
00111 
00118     CRefArray FindShaders(const CString& in_filtername) const;
00119 
00124     CRefArray   GetAllShaders() const;
00125 
00132     CRefArray   GetAllImageClips() const;
00133 
00134     private:
00135     Light * operator&() const;
00136     Light * operator&();
00137 
00138 };
00139 
00140 };
00141 
00142 #endif // __XSILIGHT_H__