2016-07-19 17:35:25 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015-2016 Mario Luzeiro <mrluzeiro@ua.pt>
|
2021-10-21 13:29:19 +00:00
|
|
|
* Copyright (C) 2015-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2016-07-19 17:35:25 +00:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2021-01-03 22:23:00 +00:00
|
|
|
* @file light.h
|
|
|
|
* @brief Declare and implement light sources.
|
2016-07-19 17:35:25 +00:00
|
|
|
*/
|
|
|
|
|
2021-10-21 13:29:19 +00:00
|
|
|
#ifndef LIGHT_H
|
|
|
|
#define LIGHT_H
|
2016-07-19 17:35:25 +00:00
|
|
|
|
|
|
|
#include "ray.h"
|
|
|
|
#include "hitinfo.h"
|
|
|
|
|
2020-12-12 17:29:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A base light class to derive to implement other light classes.
|
|
|
|
*/
|
2021-01-02 21:05:29 +00:00
|
|
|
class LIGHT
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-01-02 21:05:29 +00:00
|
|
|
LIGHT() { m_castShadow = true; }
|
2016-07-19 17:35:25 +00:00
|
|
|
|
2021-01-02 21:05:29 +00:00
|
|
|
virtual ~LIGHT() {}
|
2016-07-19 17:35:25 +00:00
|
|
|
|
|
|
|
/**
|
2020-12-12 17:29:11 +00:00
|
|
|
* Get parameters from this light.
|
|
|
|
*
|
2016-07-19 17:35:25 +00:00
|
|
|
* @param aHitPoint: input hit position
|
2020-12-12 17:29:11 +00:00
|
|
|
* @param aOutVectorToLight a vector that points from the hit
|
|
|
|
* position in direction to the light
|
|
|
|
* @param aOutLightColor the color of this light
|
|
|
|
* @param aOutDistance the distance from the point to the light
|
2016-07-19 17:35:25 +00:00
|
|
|
*/
|
2021-01-02 21:05:29 +00:00
|
|
|
virtual void GetLightParameters( const SFVEC3F& aHitPoint, SFVEC3F& aOutVectorToLight,
|
|
|
|
SFVEC3F& aOutLightColor, float& aOutDistance ) const = 0;
|
2016-07-19 17:35:25 +00:00
|
|
|
|
|
|
|
void SetCastShadows( bool aCastShadow ) { m_castShadow = aCastShadow; }
|
|
|
|
bool GetCastShadows() const { return m_castShadow; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_castShadow;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-12-12 17:29:11 +00:00
|
|
|
/**
|
2021-01-02 21:05:29 +00:00
|
|
|
* Point light source based on http://ogldev.atspace.co.uk/www/tutorial20/tutorial20.html.
|
2020-12-12 17:29:11 +00:00
|
|
|
*/
|
2021-01-02 21:05:29 +00:00
|
|
|
class POINT_LIGHT : public LIGHT
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-01-02 21:05:29 +00:00
|
|
|
POINT_LIGHT( const SFVEC3F& aPos, const SFVEC3F& aColor )
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
m_position = aPos;
|
|
|
|
m_color = aColor;
|
2016-10-04 21:23:21 +00:00
|
|
|
m_att_constant = 0.9f;
|
|
|
|
m_att_linear = 0.0005f;
|
|
|
|
m_att_exp = 0.001f;
|
2016-07-19 17:35:25 +00:00
|
|
|
m_castShadow = true;
|
|
|
|
}
|
|
|
|
|
2021-01-02 21:05:29 +00:00
|
|
|
// Imported functions from LIGHT
|
|
|
|
void GetLightParameters( const SFVEC3F& aHitPoint, SFVEC3F& aOutVectorToLight,
|
|
|
|
SFVEC3F& aOutLightColor, float& aOutDistance ) const override
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
const SFVEC3F vectorLight = m_position - aHitPoint;
|
|
|
|
|
|
|
|
aOutDistance = glm::length( vectorLight );
|
|
|
|
aOutVectorToLight = vectorLight / aOutDistance; // normalize
|
|
|
|
|
2016-10-04 21:23:21 +00:00
|
|
|
const float att = 1.0f / ( m_att_constant +
|
|
|
|
m_att_linear * aOutDistance +
|
|
|
|
m_att_exp * aOutDistance * aOutDistance );
|
2016-07-19 17:35:25 +00:00
|
|
|
|
|
|
|
if( att <= 0.0f )
|
|
|
|
aOutLightColor = SFVEC3F( 0.0f, 0.0f, 0.0f );
|
|
|
|
else
|
|
|
|
aOutLightColor = m_color * att;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SFVEC3F m_position;
|
|
|
|
SFVEC3F m_color;
|
|
|
|
|
|
|
|
float m_att_constant;
|
|
|
|
float m_att_linear;
|
|
|
|
float m_att_exp;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-12-12 17:29:11 +00:00
|
|
|
/**
|
2021-01-02 21:05:29 +00:00
|
|
|
* A light source based only on a directional vector.
|
2020-12-12 17:29:11 +00:00
|
|
|
*/
|
2021-01-02 21:05:29 +00:00
|
|
|
class DIRECTIONAL_LIGHT : public LIGHT
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-01-02 21:05:29 +00:00
|
|
|
DIRECTIONAL_LIGHT( const SFVEC3F& aDir, const SFVEC3F& aColor )
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
// Invert light direction and make sure it is normalized
|
|
|
|
m_inv_direction = glm::normalize( -aDir );
|
|
|
|
m_color = aColor;
|
|
|
|
m_castShadow = true; // Set as default to cast shadows
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-01-02 21:05:29 +00:00
|
|
|
* Set directional light orientation.
|
|
|
|
*
|
|
|
|
* @param aDir is the vector defining the direction of the light source.
|
2016-07-19 17:35:25 +00:00
|
|
|
*/
|
2021-01-02 21:05:29 +00:00
|
|
|
void SetDirection( const SFVEC3F& aDir ) { m_inv_direction = -aDir; }
|
2016-07-19 17:35:25 +00:00
|
|
|
|
2021-01-02 21:05:29 +00:00
|
|
|
// Imported functions from LIGHT
|
2021-10-05 16:57:25 +00:00
|
|
|
void GetLightParameters( const SFVEC3F& /* aHitPoint */, SFVEC3F& aOutVectorToLight,
|
2021-01-02 21:05:29 +00:00
|
|
|
SFVEC3F& aOutLightColor, float& aOutDistance ) const override
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
aOutVectorToLight = m_inv_direction;
|
|
|
|
aOutDistance = std::numeric_limits<float>::infinity();
|
|
|
|
aOutLightColor = m_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-12-12 17:29:11 +00:00
|
|
|
SFVEC3F m_inv_direction; ///< opposite direction of the light
|
2016-07-19 17:35:25 +00:00
|
|
|
SFVEC3F m_color; ///< light color
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2021-10-21 13:29:19 +00:00
|
|
|
#endif // LIGHT_H
|