#pragma once #include "GLSLShader.h" #include "VectorFwd.h" #include "Mat4Fwd.h" namespace Aftr { class Model; class GLSLShaderDefaultGL32 : public GLSLShader { public: static GLSLShaderDefaultGL32* New(); static GLSLShaderDefaultGL32* New( GLSLShaderDataShared* shdrData ); virtual ~GLSLShaderDefaultGL32(); virtual void bind( const Mat4& modelMatrix, const Mat4& normalMatrix, const Camera& cam, const ModelMeshSkin& skin ); GLSLShaderDefaultGL32& operator=( const GLSLShaderDefaultGL32& shader ); virtual void setModelMatrix( const Mat4& modelMatrix ); virtual void setNormalMatrix( const Mat4& normalMatrix ); virtual void setTex0Matrix( const Mat4& tex0Matrix ); virtual void setMVPMatrix( const Mat4& mvpMatrix ); virtual void setMaterialAmbient( const aftrColor4f& materialAmbient ); virtual void setMaterialDiffuse( const aftrColor4f& materialDiffuse ); virtual void setMaterialSpecular( const aftrColor4f& materialSpecular ); virtual void setSpecularCoefficient( const float specularCoefficient ); /** Returns a copy of this instance. This is identical to invoking the copy constructor with the addition that this preserves the polymorphic type. That is, if this was a subclass of GLSLShader with additional members and methods, this will internally create the shader instance as that subclass, thereby preserving polymorphic behavior, members, and methods. This is in contrast with a copy constructor in the case where one performs: GLSLShader* myCopy = new GLSLShader( shaderToBeCopied ); This will always create a GLSLShader* instance, not a subclass corresponding to the exact type of shaderToBeCopied. */ virtual GLSLShader* getCopyOfThisInstance() override; protected: GLSLShaderDefaultGL32( GLSLShaderDataShared* dataShared ); GLSLShaderDefaultGL32(const GLSLShaderDefaultGL32&); }; }