2019-08-13 12:04:51 +03:00
|
|
|
/*
|
2017-10-04 06:29:40 +03:00
|
|
|
* Copyright 2017 Stanislav Pidhorskyi. All rights reserved.
|
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
|
|
|
*/
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This example demonstrates:
|
|
|
|
* - Usage of Perez sky model [1] to render a dynamic sky.
|
|
|
|
* - Rendering a mesh with a lightmap, shading of which is driven by the same parameters as the sky.
|
|
|
|
*
|
2017-10-04 06:59:33 +03:00
|
|
|
* Typically, the sky is rendered using cubemaps or other environment maps.
|
2017-10-04 05:50:05 +03:00
|
|
|
* This approach can provide a high-quality sky, but the downside is that the
|
|
|
|
* image is static. To achieve daytime changes in sky appearance, there is a need
|
2017-10-04 06:59:33 +03:00
|
|
|
* in a dynamic model.
|
2017-10-04 05:50:05 +03:00
|
|
|
*
|
|
|
|
* Perez "An All-Weather Model for Sky Luminance Distribution" is a simple,
|
2017-10-04 06:59:33 +03:00
|
|
|
* but good enough model which is, in essence, a function that
|
|
|
|
* interpolates a sky color. As input, it requires several turbidity
|
2017-10-04 05:50:05 +03:00
|
|
|
* coefficients, a color at zenith and direction to the sun.
|
2017-10-04 06:59:33 +03:00
|
|
|
* Turbidity coefficients are taken from [2], which are computed using more
|
2017-10-04 05:50:05 +03:00
|
|
|
* complex physically based models. Color at zenith depends on daytime and can
|
|
|
|
* vary depending on many factors.
|
|
|
|
*
|
2017-10-04 06:59:33 +03:00
|
|
|
* In the code below, there are two tables that contain sky and sun luminance
|
2017-10-04 05:50:05 +03:00
|
|
|
* which were computed using code from [3]. Luminance in those tables
|
|
|
|
* represents actual scale of light energy that comes from sun compared to
|
2017-10-04 06:59:33 +03:00
|
|
|
* the sky.
|
2017-10-04 05:50:05 +03:00
|
|
|
*
|
2017-10-04 06:59:33 +03:00
|
|
|
* The sky is driven by luminance of the sky, while the material of the
|
|
|
|
* landscape is driven by both, the luminance of the sky and the sun. The
|
2017-10-04 05:50:05 +03:00
|
|
|
* lightening model is very simple and consists of two parts: directional
|
2017-10-04 06:59:33 +03:00
|
|
|
* light and hemisphere light. The first is used for the sun while the second
|
|
|
|
* is used for the sky. Additionally, the second part is modulated by a
|
2017-10-04 05:50:05 +03:00
|
|
|
* lightmap to achieve ambient occlusion effect.
|
2017-10-04 06:59:33 +03:00
|
|
|
*
|
2017-10-04 05:50:05 +03:00
|
|
|
* References
|
|
|
|
* ==========
|
2017-10-05 19:09:36 +03:00
|
|
|
*
|
2017-10-04 06:59:33 +03:00
|
|
|
* [1] R. Perez, R. Seals, and J. Michalsky."An All-Weather Model for Sky Luminance Distribution".
|
2020-12-27 20:03:58 +03:00
|
|
|
* Solar Energy, Volume 50, Number 3 (March 1993), pp. 235-245.
|
2017-10-05 19:09:36 +03:00
|
|
|
*
|
2017-10-04 06:59:33 +03:00
|
|
|
* [2] A. J. Preetham, Peter Shirley, and Brian Smits. "A Practical Analytic Model for Daylight",
|
2017-10-05 19:09:36 +03:00
|
|
|
* Proceedings of the 26th Annual Conference on Computer Graphics and Interactive Techniques,
|
2020-12-27 20:03:58 +03:00
|
|
|
* 1999, pp. 91-100.
|
2017-10-05 19:09:36 +03:00
|
|
|
* https://www.cs.utah.edu/~shirley/papers/sunsky/sunsky.pdf
|
|
|
|
*
|
2017-10-04 05:50:05 +03:00
|
|
|
* [3] E. Lengyel, Game Engine Gems, Volume One. Jones & Bartlett Learning, 2010. pp. 219 - 234
|
|
|
|
*
|
|
|
|
*/
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
#include "common.h"
|
|
|
|
#include "bgfx_utils.h"
|
|
|
|
#include "imgui/imgui.h"
|
|
|
|
#include "camera.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
// Represents color. Color-space depends on context.
|
|
|
|
// In the code below, used to represent color in XYZ, and RGB color-space
|
2018-12-05 07:15:26 +03:00
|
|
|
typedef bx::Vec3 Color;
|
2017-10-04 06:59:33 +03:00
|
|
|
|
|
|
|
// HDTV rec. 709 matrix.
|
2021-09-06 19:03:26 +03:00
|
|
|
static constexpr float M_XYZ2RGB[] =
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
3.240479f, -0.969256f, 0.055648f,
|
|
|
|
-1.53715f, 1.875991f, -0.204043f,
|
|
|
|
-0.49853f, 0.041556f, 1.057311f,
|
2017-10-04 05:50:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// Converts color repesentation from CIE XYZ to RGB color-space.
|
2018-12-05 07:15:26 +03:00
|
|
|
Color xyzToRgb(const Color& xyz)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2021-09-06 19:03:26 +03:00
|
|
|
Color rgb(bx::init::None);
|
2018-12-05 07:15:26 +03:00
|
|
|
rgb.x = M_XYZ2RGB[0] * xyz.x + M_XYZ2RGB[3] * xyz.y + M_XYZ2RGB[6] * xyz.z;
|
|
|
|
rgb.y = M_XYZ2RGB[1] * xyz.x + M_XYZ2RGB[4] * xyz.y + M_XYZ2RGB[7] * xyz.z;
|
|
|
|
rgb.z = M_XYZ2RGB[2] * xyz.x + M_XYZ2RGB[5] * xyz.y + M_XYZ2RGB[8] * xyz.z;
|
2017-10-04 05:50:05 +03:00
|
|
|
return rgb;
|
|
|
|
};
|
|
|
|
|
2017-10-04 06:59:33 +03:00
|
|
|
// Precomputed luminance of sunlight in XYZ colorspace.
|
2017-10-04 05:50:05 +03:00
|
|
|
// Computed using code from Game Engine Gems, Volume One, chapter 15. Implementation based on Dr. Richard Bird model.
|
|
|
|
// This table is used for piecewise linear interpolation. Transitions from and to 0.0 at sunset and sunrise are highly inaccurate
|
2021-09-06 19:03:26 +03:00
|
|
|
static std::map<float, Color> sunLuminanceXYZTable =
|
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
{ 5.0f, { 0.000000f, 0.000000f, 0.000000f } },
|
|
|
|
{ 7.0f, { 12.703322f, 12.989393f, 9.100411f } },
|
|
|
|
{ 8.0f, { 13.202644f, 13.597814f, 11.524929f } },
|
|
|
|
{ 9.0f, { 13.192974f, 13.597458f, 12.264488f } },
|
|
|
|
{ 10.0f, { 13.132943f, 13.535914f, 12.560032f } },
|
|
|
|
{ 11.0f, { 13.088722f, 13.489535f, 12.692996f } },
|
|
|
|
{ 12.0f, { 13.067827f, 13.467483f, 12.745179f } },
|
|
|
|
{ 13.0f, { 13.069653f, 13.469413f, 12.740822f } },
|
|
|
|
{ 14.0f, { 13.094319f, 13.495428f, 12.678066f } },
|
|
|
|
{ 15.0f, { 13.142133f, 13.545483f, 12.526785f } },
|
|
|
|
{ 16.0f, { 13.201734f, 13.606017f, 12.188001f } },
|
|
|
|
{ 17.0f, { 13.182774f, 13.572725f, 11.311157f } },
|
|
|
|
{ 18.0f, { 12.448635f, 12.672520f, 8.267771f } },
|
|
|
|
{ 20.0f, { 0.000000f, 0.000000f, 0.000000f } },
|
2017-10-04 05:50:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-10-04 06:59:33 +03:00
|
|
|
// Precomputed luminance of sky in the zenith point in XYZ colorspace.
|
2017-10-04 05:50:05 +03:00
|
|
|
// Computed using code from Game Engine Gems, Volume One, chapter 15. Implementation based on Dr. Richard Bird model.
|
|
|
|
// This table is used for piecewise linear interpolation. Day/night transitions are highly inaccurate.
|
2017-10-04 06:59:33 +03:00
|
|
|
// The scale of luminance change in Day/night transitions is not preserved.
|
2017-10-04 05:50:05 +03:00
|
|
|
// Luminance at night was increased to eliminate need the of HDR render.
|
2021-09-06 19:03:26 +03:00
|
|
|
static std::map<float, Color> skyLuminanceXYZTable =
|
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
{ 0.0f, { 0.308f, 0.308f, 0.411f } },
|
|
|
|
{ 1.0f, { 0.308f, 0.308f, 0.410f } },
|
|
|
|
{ 2.0f, { 0.301f, 0.301f, 0.402f } },
|
|
|
|
{ 3.0f, { 0.287f, 0.287f, 0.382f } },
|
|
|
|
{ 4.0f, { 0.258f, 0.258f, 0.344f } },
|
|
|
|
{ 5.0f, { 0.258f, 0.258f, 0.344f } },
|
|
|
|
{ 7.0f, { 0.962851f, 1.000000f, 1.747835f } },
|
|
|
|
{ 8.0f, { 0.967787f, 1.000000f, 1.776762f } },
|
|
|
|
{ 9.0f, { 0.970173f, 1.000000f, 1.788413f } },
|
|
|
|
{ 10.0f, { 0.971431f, 1.000000f, 1.794102f } },
|
|
|
|
{ 11.0f, { 0.972099f, 1.000000f, 1.797096f } },
|
|
|
|
{ 12.0f, { 0.972385f, 1.000000f, 1.798389f } },
|
|
|
|
{ 13.0f, { 0.972361f, 1.000000f, 1.798278f } },
|
|
|
|
{ 14.0f, { 0.972020f, 1.000000f, 1.796740f } },
|
|
|
|
{ 15.0f, { 0.971275f, 1.000000f, 1.793407f } },
|
|
|
|
{ 16.0f, { 0.969885f, 1.000000f, 1.787078f } },
|
|
|
|
{ 17.0f, { 0.967216f, 1.000000f, 1.773758f } },
|
|
|
|
{ 18.0f, { 0.961668f, 1.000000f, 1.739891f } },
|
|
|
|
{ 20.0f, { 0.264f, 0.264f, 0.352f } },
|
|
|
|
{ 21.0f, { 0.264f, 0.264f, 0.352f } },
|
|
|
|
{ 22.0f, { 0.290f, 0.290f, 0.386f } },
|
|
|
|
{ 23.0f, { 0.303f, 0.303f, 0.404f } },
|
2017-10-04 05:50:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Turbidity tables. Taken from:
|
2020-12-27 20:03:58 +03:00
|
|
|
// A. J. Preetham, P. Shirley, and B. Smits. A Practical Analytic Model for Daylight. SIGGRAPH '99
|
2017-10-04 05:50:05 +03:00
|
|
|
// Coefficients correspond to xyY colorspace.
|
2021-09-06 19:03:26 +03:00
|
|
|
static constexpr Color ABCDE[] =
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
{ -0.2592f, -0.2608f, -1.4630f },
|
|
|
|
{ 0.0008f, 0.0092f, 0.4275f },
|
|
|
|
{ 0.2125f, 0.2102f, 5.3251f },
|
|
|
|
{ -0.8989f, -1.6537f, -2.5771f },
|
|
|
|
{ 0.0452f, 0.0529f, 0.3703f },
|
2017-10-04 05:50:05 +03:00
|
|
|
};
|
2021-09-06 19:03:26 +03:00
|
|
|
|
|
|
|
static constexpr Color ABCDE_t[] =
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
{ -0.0193f, -0.0167f, 0.1787f },
|
|
|
|
{ -0.0665f, -0.0950f, -0.3554f },
|
|
|
|
{ -0.0004f, -0.0079f, -0.0227f },
|
|
|
|
{ -0.0641f, -0.0441f, 0.1206f },
|
|
|
|
{ -0.0033f, -0.0109f, -0.0670f },
|
2017-10-04 05:50:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-10-04 06:59:33 +03:00
|
|
|
// Performs piecewise linear interpolation of a Color parameter.
|
2017-10-04 05:50:05 +03:00
|
|
|
class DynamicValueController
|
|
|
|
{
|
|
|
|
typedef Color ValueType;
|
|
|
|
typedef std::map<float, ValueType> KeyMap;
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
public:
|
2018-12-05 07:15:26 +03:00
|
|
|
DynamicValueController()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~DynamicValueController()
|
|
|
|
{
|
|
|
|
}
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
void SetMap(const KeyMap& keymap)
|
|
|
|
{
|
|
|
|
m_keyMap = keymap;
|
|
|
|
}
|
|
|
|
|
|
|
|
ValueType GetValue(float time) const
|
|
|
|
{
|
|
|
|
typename KeyMap::const_iterator itUpper = m_keyMap.upper_bound(time + 1e-6f);
|
|
|
|
typename KeyMap::const_iterator itLower = itUpper;
|
|
|
|
--itLower;
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
if (itLower == m_keyMap.end())
|
|
|
|
{
|
|
|
|
return itUpper->second;
|
|
|
|
}
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
if (itUpper == m_keyMap.end())
|
|
|
|
{
|
|
|
|
return itLower->second;
|
|
|
|
}
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
float lowerTime = itLower->first;
|
|
|
|
const ValueType& lowerVal = itLower->second;
|
|
|
|
float upperTime = itUpper->first;
|
|
|
|
const ValueType& upperVal = itUpper->second;
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
if (lowerTime == upperTime)
|
|
|
|
{
|
|
|
|
return lowerVal;
|
|
|
|
}
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
return interpolate(lowerTime, lowerVal, upperTime, upperVal, time);
|
|
|
|
};
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
|
|
|
m_keyMap.clear();
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2018-12-05 07:15:26 +03:00
|
|
|
ValueType interpolate(float lowerTime, const ValueType& lowerVal, float upperTime, const ValueType& upperVal, float time) const
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
const float tt = (time - lowerTime) / (upperTime - lowerTime);
|
|
|
|
const ValueType result = bx::lerp(lowerVal, upperVal, tt);
|
2017-10-04 05:50:05 +03:00
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
|
|
|
KeyMap m_keyMap;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Controls sun position according to time, month, and observer's latitude.
|
|
|
|
// Sun position computation based on Earth's orbital elements: https://nssdc.gsfc.nasa.gov/planetary/factsheet/earthfact.html
|
|
|
|
class SunController
|
|
|
|
{
|
|
|
|
public:
|
2017-10-04 06:29:40 +03:00
|
|
|
enum Month : int
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
|
|
|
January = 0,
|
|
|
|
February,
|
|
|
|
March,
|
|
|
|
April,
|
|
|
|
May,
|
|
|
|
June,
|
|
|
|
July,
|
|
|
|
August,
|
|
|
|
September,
|
|
|
|
October,
|
|
|
|
November,
|
|
|
|
December
|
|
|
|
};
|
|
|
|
|
2018-12-05 07:15:26 +03:00
|
|
|
SunController()
|
2021-09-06 19:03:26 +03:00
|
|
|
: m_northDir(1.0f, 0.0f, 0.0f)
|
|
|
|
, m_sunDir(0.0f, -1.0f, 0.0f)
|
|
|
|
, m_upDir(0.0f, 1.0f, 0.0f)
|
|
|
|
, m_latitude(50.0f)
|
2018-12-05 07:15:26 +03:00
|
|
|
, m_month(June)
|
|
|
|
, m_eclipticObliquity(bx::toRad(23.4f) )
|
|
|
|
, m_delta(0.0f)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-12-05 07:15:26 +03:00
|
|
|
void Update(float _time)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
|
|
|
CalculateSunOrbit();
|
2018-12-05 07:15:26 +03:00
|
|
|
UpdateSunPosition(_time - 12.0f);
|
2017-10-04 05:50:05 +03:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:12:00 +03:00
|
|
|
bx::Vec3 m_northDir;
|
|
|
|
bx::Vec3 m_sunDir;
|
|
|
|
bx::Vec3 m_upDir;
|
2017-10-04 05:50:05 +03:00
|
|
|
float m_latitude;
|
|
|
|
Month m_month;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void CalculateSunOrbit()
|
|
|
|
{
|
|
|
|
float day = 30.0f * m_month + 15.0f;
|
|
|
|
float lambda = 280.46f + 0.9856474f * day;
|
2018-12-05 07:15:26 +03:00
|
|
|
lambda = bx::toRad(lambda);
|
|
|
|
m_delta = bx::asin(bx::sin(m_eclipticObliquity) * bx::sin(lambda) );
|
2017-10-04 05:50:05 +03:00
|
|
|
}
|
|
|
|
|
2018-12-05 07:15:26 +03:00
|
|
|
void UpdateSunPosition(float _hour)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-12-06 11:12:00 +03:00
|
|
|
const float latitude = bx::toRad(m_latitude);
|
|
|
|
const float hh = _hour * bx::kPi / 12.0f;
|
|
|
|
const float azimuth = bx::atan2(
|
2018-12-05 07:15:26 +03:00
|
|
|
bx::sin(hh)
|
|
|
|
, bx::cos(hh) * bx::sin(latitude) - bx::tan(m_delta) * bx::cos(latitude)
|
|
|
|
);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2018-12-06 11:12:00 +03:00
|
|
|
const float altitude = bx::asin(
|
2018-12-05 07:15:26 +03:00
|
|
|
bx::sin(latitude) * bx::sin(m_delta) + bx::cos(latitude) * bx::cos(m_delta) * bx::cos(hh)
|
2018-01-14 02:33:50 +03:00
|
|
|
);
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2021-10-09 05:06:53 +03:00
|
|
|
const bx::Quaternion rot0 = bx::fromAxisAngle(m_upDir, -azimuth);
|
2018-12-08 19:56:06 +03:00
|
|
|
const bx::Vec3 dir = bx::mul(m_northDir, rot0);
|
|
|
|
const bx::Vec3 uxd = bx::cross(m_upDir, dir);
|
2018-12-05 07:15:26 +03:00
|
|
|
|
2021-10-09 05:06:53 +03:00
|
|
|
const bx::Quaternion rot1 = bx::fromAxisAngle(uxd, altitude);
|
2018-12-08 19:56:06 +03:00
|
|
|
m_sunDir = bx::mul(dir, rot1);
|
2017-10-04 05:50:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
float m_eclipticObliquity;
|
|
|
|
float m_delta;
|
|
|
|
};
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
struct ScreenPosVertex
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2017-10-05 06:21:23 +03:00
|
|
|
float m_x;
|
|
|
|
float m_y;
|
|
|
|
|
|
|
|
static void init()
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2019-08-17 20:35:21 +03:00
|
|
|
ms_layout
|
2017-10-05 06:21:23 +03:00
|
|
|
.begin()
|
|
|
|
.add(bgfx::Attrib::Position, 2, bgfx::AttribType::Float)
|
|
|
|
.end();
|
|
|
|
}
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2019-08-17 20:35:21 +03:00
|
|
|
static bgfx::VertexLayout ms_layout;
|
2017-10-05 06:21:23 +03:00
|
|
|
};
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2019-08-17 20:35:21 +03:00
|
|
|
bgfx::VertexLayout ScreenPosVertex::ms_layout;
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
// Renders a screen-space grid of triangles.
|
|
|
|
// Because of performance reasons, and because sky color is smooth, sky color is computed in vertex shader.
|
|
|
|
// 32x32 is a reasonable size for the grid to have smooth enough colors.
|
|
|
|
struct ProceduralSky
|
|
|
|
{
|
|
|
|
void init(int verticalCount, int horizontalCount)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
|
|
|
// Create vertex stream declaration.
|
2017-10-05 06:21:23 +03:00
|
|
|
ScreenPosVertex::init();
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
m_skyProgram = loadProgram("vs_sky", "fs_sky");
|
2017-10-04 06:29:40 +03:00
|
|
|
m_skyProgram_colorBandingFix = loadProgram("vs_sky", "fs_sky_color_banding_fix");
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
m_preventBanding = true;
|
|
|
|
|
|
|
|
bx::AllocatorI* allocator = entry::getAllocator();
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
ScreenPosVertex* vertices = (ScreenPosVertex*)BX_ALLOC(allocator
|
|
|
|
, verticalCount * horizontalCount * sizeof(ScreenPosVertex)
|
|
|
|
);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
for (int i = 0; i < verticalCount; i++)
|
|
|
|
{
|
|
|
|
for (int j = 0; j < horizontalCount; j++)
|
|
|
|
{
|
|
|
|
ScreenPosVertex& v = vertices[i * verticalCount + j];
|
|
|
|
v.m_x = float(j) / (horizontalCount - 1) * 2.0f - 1.0f;
|
|
|
|
v.m_y = float(i) / (verticalCount - 1) * 2.0f - 1.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
uint16_t* indices = (uint16_t*)BX_ALLOC(allocator
|
|
|
|
, (verticalCount - 1) * (horizontalCount - 1) * 6 * sizeof(uint16_t)
|
|
|
|
);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
int k = 0;
|
|
|
|
for (int i = 0; i < verticalCount - 1; i++)
|
|
|
|
{
|
|
|
|
for (int j = 0; j < horizontalCount - 1; j++)
|
|
|
|
{
|
|
|
|
indices[k++] = (uint16_t)(j + 0 + horizontalCount * (i + 0));
|
|
|
|
indices[k++] = (uint16_t)(j + 1 + horizontalCount * (i + 0));
|
|
|
|
indices[k++] = (uint16_t)(j + 0 + horizontalCount * (i + 1));
|
|
|
|
|
|
|
|
indices[k++] = (uint16_t)(j + 1 + horizontalCount * (i + 0));
|
|
|
|
indices[k++] = (uint16_t)(j + 1 + horizontalCount * (i + 1));
|
|
|
|
indices[k++] = (uint16_t)(j + 0 + horizontalCount * (i + 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-17 20:35:21 +03:00
|
|
|
m_vbh = bgfx::createVertexBuffer(bgfx::copy(vertices, sizeof(ScreenPosVertex) * verticalCount * horizontalCount), ScreenPosVertex::ms_layout);
|
2017-10-04 05:50:05 +03:00
|
|
|
m_ibh = bgfx::createIndexBuffer(bgfx::copy(indices, sizeof(uint16_t) * k));
|
|
|
|
|
|
|
|
BX_FREE(allocator, indices);
|
|
|
|
BX_FREE(allocator, vertices);
|
|
|
|
}
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
void shutdown()
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
|
|
|
bgfx::destroy(m_ibh);
|
|
|
|
bgfx::destroy(m_vbh);
|
|
|
|
bgfx::destroy(m_skyProgram);
|
|
|
|
bgfx::destroy(m_skyProgram_colorBandingFix);
|
|
|
|
}
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
void draw()
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-02-13 23:35:23 +03:00
|
|
|
bgfx::setState(BGFX_STATE_WRITE_RGB | BGFX_STATE_DEPTH_TEST_EQUAL);
|
2017-10-04 05:50:05 +03:00
|
|
|
bgfx::setIndexBuffer(m_ibh);
|
|
|
|
bgfx::setVertexBuffer(0, m_vbh);
|
|
|
|
bgfx::submit(0, m_preventBanding ? m_skyProgram_colorBandingFix : m_skyProgram);
|
|
|
|
}
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
bgfx::VertexBufferHandle m_vbh;
|
|
|
|
bgfx::IndexBufferHandle m_ibh;
|
|
|
|
|
|
|
|
bgfx::ProgramHandle m_skyProgram;
|
|
|
|
bgfx::ProgramHandle m_skyProgram_colorBandingFix;
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
bool m_preventBanding;
|
|
|
|
};
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
class ExampleProceduralSky : public entry::AppI
|
|
|
|
{
|
|
|
|
public:
|
2019-08-18 00:40:38 +03:00
|
|
|
ExampleProceduralSky(const char* _name, const char* _description, const char* _url)
|
|
|
|
: entry::AppI(_name, _description, _url)
|
2018-12-06 11:12:00 +03:00
|
|
|
{
|
|
|
|
}
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
void init(int32_t _argc, const char* const* _argv, uint32_t _width, uint32_t _height) override
|
|
|
|
{
|
|
|
|
Args args(_argc, _argv);
|
|
|
|
|
|
|
|
m_width = _width;
|
|
|
|
m_height = _height;
|
|
|
|
m_debug = BGFX_DEBUG_NONE;
|
|
|
|
m_reset = BGFX_RESET_VSYNC;
|
|
|
|
|
2018-04-18 01:42:18 +03:00
|
|
|
bgfx::Init init;
|
|
|
|
init.type = args.m_type;
|
|
|
|
init.vendorId = args.m_pciId;
|
|
|
|
init.resolution.width = m_width;
|
|
|
|
init.resolution.height = m_height;
|
|
|
|
init.resolution.reset = m_reset;
|
|
|
|
bgfx::init(init);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
// Enable m_debug text.
|
|
|
|
bgfx::setDebug(m_debug);
|
|
|
|
|
|
|
|
// Set view 0 clear state.
|
|
|
|
bgfx::setViewClear(0
|
|
|
|
, BGFX_CLEAR_COLOR | BGFX_CLEAR_DEPTH
|
|
|
|
, 0x000000ff
|
|
|
|
, 1.0f
|
|
|
|
, 0
|
2018-12-06 11:12:00 +03:00
|
|
|
);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
m_sunLuminanceXYZ.SetMap(sunLuminanceXYZTable);
|
|
|
|
m_skyLuminanceXYZ.SetMap(skyLuminanceXYZTable);
|
|
|
|
|
|
|
|
m_mesh = meshLoad("meshes/test_scene.bin");
|
|
|
|
|
|
|
|
m_lightmapTexture = loadTexture("textures/lightmap.ktx");
|
|
|
|
|
|
|
|
// Imgui.
|
|
|
|
imguiCreate();
|
|
|
|
|
|
|
|
m_timeOffset = bx::getHPCounter();
|
|
|
|
m_time = 0.0f;
|
2017-10-06 06:18:45 +03:00
|
|
|
m_timeScale = 1.0f;
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2019-01-12 01:14:17 +03:00
|
|
|
s_texLightmap = bgfx::createUniform("s_texLightmap", bgfx::UniformType::Sampler);
|
2017-10-05 06:21:23 +03:00
|
|
|
u_sunLuminance = bgfx::createUniform("u_sunLuminance", bgfx::UniformType::Vec4);
|
2017-10-04 05:50:05 +03:00
|
|
|
u_skyLuminanceXYZ = bgfx::createUniform("u_skyLuminanceXYZ", bgfx::UniformType::Vec4);
|
2017-10-05 06:21:23 +03:00
|
|
|
u_skyLuminance = bgfx::createUniform("u_skyLuminance", bgfx::UniformType::Vec4);
|
|
|
|
u_sunDirection = bgfx::createUniform("u_sunDirection", bgfx::UniformType::Vec4);
|
|
|
|
u_parameters = bgfx::createUniform("u_parameters", bgfx::UniformType::Vec4);
|
|
|
|
u_perezCoeff = bgfx::createUniform("u_perezCoeff", bgfx::UniformType::Vec4, 5);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
m_landscapeProgram = loadProgram("vs_sky_landscape", "fs_sky_landscape");
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
m_sky.init(32, 32);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
m_sun.Update(0);
|
|
|
|
|
|
|
|
cameraCreate();
|
|
|
|
|
2018-12-22 08:05:26 +03:00
|
|
|
cameraSetPosition({ 5.0f, 3.0, 0.0f });
|
2017-10-04 05:50:05 +03:00
|
|
|
cameraSetVerticalAngle(bx::kPi / 8.0f);
|
|
|
|
cameraSetHorizontalAngle(-bx::kPi / 3.0f);
|
|
|
|
|
|
|
|
m_turbidity = 2.15f;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int shutdown() override
|
|
|
|
{
|
|
|
|
// Cleanup.
|
|
|
|
cameraDestroy();
|
|
|
|
imguiDestroy();
|
|
|
|
|
|
|
|
meshUnload(m_mesh);
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
m_sky.shutdown();
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
bgfx::destroy(s_texLightmap);
|
2017-10-04 05:50:05 +03:00
|
|
|
bgfx::destroy(u_sunLuminance);
|
|
|
|
bgfx::destroy(u_skyLuminanceXYZ);
|
|
|
|
bgfx::destroy(u_skyLuminance);
|
|
|
|
bgfx::destroy(u_sunDirection);
|
|
|
|
bgfx::destroy(u_parameters);
|
|
|
|
bgfx::destroy(u_perezCoeff);
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
bgfx::destroy(m_lightmapTexture);
|
|
|
|
bgfx::destroy(m_landscapeProgram);
|
|
|
|
|
|
|
|
bgfx::frame();
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
// Shutdown bgfx.
|
|
|
|
bgfx::shutdown();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-06 09:12:54 +03:00
|
|
|
void imgui(float _width)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
|
|
|
ImGui::Begin("ProceduralSky");
|
2017-10-06 09:12:54 +03:00
|
|
|
ImGui::SetWindowSize(ImVec2(_width, 200.0f) );
|
2017-10-06 06:18:45 +03:00
|
|
|
ImGui::SliderFloat("Time scale", &m_timeScale, 0.0f, 1.0f);
|
2017-10-04 05:50:05 +03:00
|
|
|
ImGui::SliderFloat("Time", &m_time, 0.0f, 24.0f);
|
|
|
|
ImGui::SliderFloat("Latitude", &m_sun.m_latitude, -90.0f, 90.0f);
|
|
|
|
ImGui::SliderFloat("Turbidity", &m_turbidity, 1.9f, 10.0f);
|
|
|
|
ImGui::Checkbox("Prevent color banding", &m_sky.m_preventBanding);
|
|
|
|
|
2018-12-06 11:12:00 +03:00
|
|
|
const char* items[] =
|
|
|
|
{
|
2017-10-04 05:50:05 +03:00
|
|
|
"January",
|
|
|
|
"February",
|
|
|
|
"March",
|
|
|
|
"April",
|
|
|
|
"May",
|
|
|
|
"June",
|
|
|
|
"July",
|
|
|
|
"August",
|
|
|
|
"September",
|
|
|
|
"October",
|
|
|
|
"November",
|
|
|
|
"December"
|
|
|
|
};
|
2018-12-06 11:12:00 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
ImGui::Combo("Month", (int*)&m_sun.m_month, items, 12);
|
|
|
|
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool update() override
|
|
|
|
{
|
|
|
|
if (!entry::processEvents(m_width, m_height, m_debug, m_reset, &m_mouseState))
|
|
|
|
{
|
|
|
|
int64_t now = bx::getHPCounter();
|
|
|
|
static int64_t last = now;
|
|
|
|
const int64_t frameTime = now - last;
|
|
|
|
last = now;
|
|
|
|
const double freq = double(bx::getHPFrequency());
|
|
|
|
const float deltaTime = float(frameTime / freq);
|
2017-10-06 06:18:45 +03:00
|
|
|
m_time += m_timeScale * deltaTime;
|
2018-01-14 02:33:50 +03:00
|
|
|
m_time = bx::mod(m_time, 24.0f);
|
2017-10-04 05:50:05 +03:00
|
|
|
m_sun.Update(m_time);
|
|
|
|
|
|
|
|
imguiBeginFrame(m_mouseState.m_mx
|
|
|
|
, m_mouseState.m_my
|
2018-01-14 02:33:50 +03:00
|
|
|
, (m_mouseState.m_buttons[entry::MouseButton::Left] ? IMGUI_MBUT_LEFT : 0)
|
|
|
|
| (m_mouseState.m_buttons[entry::MouseButton::Right] ? IMGUI_MBUT_RIGHT : 0)
|
2017-10-04 05:50:05 +03:00
|
|
|
| (m_mouseState.m_buttons[entry::MouseButton::Middle] ? IMGUI_MBUT_MIDDLE : 0)
|
|
|
|
, m_mouseState.m_mz
|
|
|
|
, uint16_t(m_width)
|
|
|
|
, uint16_t(m_height)
|
2018-01-14 02:33:50 +03:00
|
|
|
);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
showExampleDialog(this);
|
|
|
|
|
|
|
|
ImGui::SetNextWindowPos(
|
2017-10-06 06:18:45 +03:00
|
|
|
ImVec2(m_width - m_width / 5.0f - 10.0f, 10.0f)
|
2017-12-02 08:04:27 +03:00
|
|
|
, ImGuiCond_FirstUseEver
|
2018-01-14 02:33:50 +03:00
|
|
|
);
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-06 06:18:45 +03:00
|
|
|
imgui(m_width / 5.0f - 10.0f);
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-04 05:50:05 +03:00
|
|
|
imguiEndFrame();
|
|
|
|
|
2020-12-27 09:46:26 +03:00
|
|
|
// Update camera.
|
|
|
|
cameraUpdate(deltaTime, m_mouseState, ImGui::MouseOverArea() );
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
// Set view 0 default viewport.
|
|
|
|
bgfx::setViewRect(0, 0, 0, uint16_t(m_width), uint16_t(m_height));
|
|
|
|
|
2017-10-04 06:59:33 +03:00
|
|
|
float view[16];
|
|
|
|
cameraGetViewMtx(view);
|
|
|
|
|
|
|
|
float proj[16];
|
|
|
|
bx::mtxProj(proj, 60.0f, float(m_width) / float(m_height), 0.1f, 2000.0f, bgfx::getCaps()->homogeneousDepth);
|
|
|
|
|
|
|
|
bgfx::setViewTransform(0, view, proj);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
Color sunLuminanceXYZ = m_sunLuminanceXYZ.GetValue(m_time);
|
2018-12-05 07:15:26 +03:00
|
|
|
Color sunLuminanceRGB = xyzToRgb(sunLuminanceXYZ);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
Color skyLuminanceXYZ = m_skyLuminanceXYZ.GetValue(m_time);
|
2018-12-05 07:15:26 +03:00
|
|
|
Color skyLuminanceRGB = xyzToRgb(skyLuminanceXYZ);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2018-12-05 07:15:26 +03:00
|
|
|
bgfx::setUniform(u_sunLuminance, &sunLuminanceRGB.x);
|
|
|
|
bgfx::setUniform(u_skyLuminanceXYZ, &skyLuminanceXYZ.x);
|
|
|
|
bgfx::setUniform(u_skyLuminance, &skyLuminanceRGB.x);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
2018-12-06 11:12:00 +03:00
|
|
|
bgfx::setUniform(u_sunDirection, &m_sun.m_sunDir.x);
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
float exposition[4] = { 0.02f, 3.0f, 0.1f, m_time };
|
|
|
|
bgfx::setUniform(u_parameters, exposition);
|
|
|
|
|
|
|
|
float perezCoeff[4 * 5];
|
2017-10-05 06:21:23 +03:00
|
|
|
computePerezCoeff(m_turbidity, perezCoeff);
|
2017-10-04 05:50:05 +03:00
|
|
|
bgfx::setUniform(u_perezCoeff, perezCoeff, 5);
|
2017-10-04 06:59:33 +03:00
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
bgfx::setTexture(0, s_texLightmap, m_lightmapTexture);
|
2017-10-04 05:50:05 +03:00
|
|
|
meshSubmit(m_mesh, 0, m_landscapeProgram, NULL);
|
|
|
|
|
2017-10-05 06:21:23 +03:00
|
|
|
m_sky.draw();
|
2017-10-04 05:50:05 +03:00
|
|
|
|
|
|
|
bgfx::frame();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-05 07:15:26 +03:00
|
|
|
void computePerezCoeff(float _turbidity, float* _outPerezCoeff)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
const bx::Vec3 turbidity = { _turbidity, _turbidity, _turbidity };
|
|
|
|
for (uint32_t ii = 0; ii < 5; ++ii)
|
2017-10-04 05:50:05 +03:00
|
|
|
{
|
2018-12-05 07:15:26 +03:00
|
|
|
const bx::Vec3 tmp = bx::mad(ABCDE_t[ii], turbidity, ABCDE[ii]);
|
|
|
|
float* out = _outPerezCoeff + 4 * ii;
|
|
|
|
bx::store(out, tmp);
|
|
|
|
out[3] = 0.0f;
|
2017-10-04 05:50:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bgfx::ProgramHandle m_landscapeProgram;
|
2017-10-05 06:21:23 +03:00
|
|
|
bgfx::UniformHandle s_texLightmap;
|
2017-10-04 05:50:05 +03:00
|
|
|
bgfx::TextureHandle m_lightmapTexture;
|
|
|
|
|
|
|
|
bgfx::UniformHandle u_sunLuminance;
|
|
|
|
bgfx::UniformHandle u_skyLuminanceXYZ;
|
|
|
|
bgfx::UniformHandle u_skyLuminance;
|
|
|
|
bgfx::UniformHandle u_sunDirection;
|
|
|
|
bgfx::UniformHandle u_parameters;
|
|
|
|
bgfx::UniformHandle u_perezCoeff;
|
|
|
|
|
|
|
|
ProceduralSky m_sky;
|
|
|
|
SunController m_sun;
|
|
|
|
|
|
|
|
DynamicValueController m_sunLuminanceXYZ;
|
|
|
|
DynamicValueController m_skyLuminanceXYZ;
|
|
|
|
|
|
|
|
uint32_t m_width;
|
|
|
|
uint32_t m_height;
|
|
|
|
uint32_t m_debug;
|
|
|
|
uint32_t m_reset;
|
|
|
|
|
|
|
|
Mesh* m_mesh;
|
|
|
|
|
|
|
|
entry::MouseState m_mouseState;
|
|
|
|
|
|
|
|
float m_time;
|
2017-10-06 06:18:45 +03:00
|
|
|
float m_timeScale;
|
2017-10-04 05:50:05 +03:00
|
|
|
int64_t m_timeOffset;
|
|
|
|
|
|
|
|
float m_turbidity;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2019-08-17 23:25:39 +03:00
|
|
|
ENTRY_IMPLEMENT_MAIN(
|
2019-08-18 00:40:38 +03:00
|
|
|
ExampleProceduralSky
|
|
|
|
, "36-sky"
|
|
|
|
, "Perez dynamic sky model."
|
|
|
|
, "https://bkaradzic.github.io/bgfx/examples.html#sky"
|
|
|
|
);
|