#pragma once #include #include #include #include "DXCore.h" #include "SimpleShader.h" #include "Transform.h" #include "Camera.h" #include "Lights.h" #include "WICTextureLoader.h" constexpr auto TEXTYPE_ALBEDO = "Albedo"; constexpr auto TEXTYPE_NORMAL = "Normal"; constexpr auto TEXTYPE_EMISSIVE = "Emissive"; constexpr auto TEXTYPE_SPECULAR = "Specular"; constexpr auto TEXTYPE_REFLECTION = "Reflection"; constexpr auto TEXTYPE_ROUGHNESS = "Roughness"; constexpr auto TEXTYPE_METALNESS = "Metalness"; constexpr auto TEXTYPE_RAMPDIFFUSE = "RampDiffuse"; constexpr auto TEXTYPE_RAMPSPECULAR = "RampSpecular"; constexpr auto MATTYPE_STANDARD = 0; constexpr auto MATTYPE_PBR = 1; constexpr auto MATTYPE_TOON = 2; class Material { public: Material( int _mode, DirectX::XMFLOAT3 _tint, float _roughness, std::shared_ptr _vertexShader, std::shared_ptr _pixelShader); ~Material(); /// /// Prepares a material before drawing a mesh /// /// The transform of the entity that the material is associated with /// The camera rendering the entity this material is associated with /// The ambient lighting value /// The lights that are affecting this object void Activate( Transform* _transform, std::shared_ptr _camera, DirectX::XMFLOAT3 _ambient, std::vector _lights); DirectX::XMFLOAT3 GetTint(); DirectX::XMFLOAT2 GetUVScale(); DirectX::XMFLOAT2 GetUVOffset(); float GetRoughness(); float GetAlpha(); float GetCutoff(); float GetNormalIntensity(); float GetRimCutoff(); float GetOutlineThickness(); DirectX::XMFLOAT3 GetEmitAmount(); DirectX::XMFLOAT3 GetOutlineTint(); DirectX::XMFLOAT3 GetRimTint(); std::shared_ptr GetVertexShader(); std::shared_ptr GetPixelShader(); void SetTint(DirectX::XMFLOAT3 _tint); void SetUVScale(DirectX::XMFLOAT2 _scale); void SetUVOffset(DirectX::XMFLOAT2 _offset); void SetRoughness(float _roughness); void SetAlpha(float _alpha); void SetCutoff(float _cutoff); void SetNormalIntensity(float _intensity); void SetRimCutoff(float _cutoff); void SetOutlineThickness(float _thickness); void SetEmitAmount(DirectX::XMFLOAT3 _emit); void SetOutlineTint(DirectX::XMFLOAT3 _tint); void SetRimTint(DirectX::XMFLOAT3 _tint); void SetVertexShader(std::shared_ptr _vertexShader); void SetPixelShader(std::shared_ptr _pixelShader); /// /// Loads and adds a texture to the material /// /// The path of the texture relative to the root where the executable is located /// The type of texture this is (see TEXTYPE_{types}; should match shader Texture2D buffers) /// The DirectX device /// The DirectX context void LoadTexture(const wchar_t* _path, const char* _type, ID3D11Device* _device, ID3D11DeviceContext* _context); /// /// Adds a sampler to the material /// /// The name of the sampler (should match shader SamplerState buffers) /// The sampler to add void PushSampler(std::string _name, Microsoft::WRL::ComPtr _sampler); /// /// Adds a texture to the material /// /// The type of texture this is (see TEXTYPE_{types}; should match shader Texture2D buffers) /// The texture to add void PushTexture(std::string _name, Microsoft::WRL::ComPtr _texture); bool hasAlbedoMap; bool hasEmissiveMap; bool hasSpecularMap; bool hasNormalMap; bool hasReflectionMap; bool hasRampDiffuse; bool hasRampSpecular; private: void ActivateStandard( Transform* _transform, std::shared_ptr _camera, DirectX::XMFLOAT3 _ambient, std::vector _lights); void ActivatePBR( Transform* _transform, std::shared_ptr _camera, DirectX::XMFLOAT3 _ambient, std::vector _lights); void ActivateToon( Transform* _transform, std::shared_ptr _camera, DirectX::XMFLOAT3 _ambient, std::vector _lights); int mode; DirectX::XMFLOAT3 tint; float roughness; float alpha; float cutoff; float normalIntensity; float outlineThickness; float rimCutoff; DirectX::XMFLOAT3 emitAmount; DirectX::XMFLOAT3 outlineTint; DirectX::XMFLOAT3 rimTint; DirectX::XMFLOAT2 uvScale; DirectX::XMFLOAT2 uvOffset; std::shared_ptr vertexShader; std::shared_ptr pixelShader; std::unordered_map> samplers; std::unordered_map> textures; };