2016-02-29 03:06:27 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Dario Manesku. All rights reserved.
|
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "bgfx_utils.h"
|
|
|
|
#include "imgui/imgui.h"
|
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
struct DrawMode
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2016-03-07 02:29:22 +03:00
|
|
|
enum
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2016-03-07 02:29:22 +03:00
|
|
|
WireframeShaded,
|
|
|
|
Wireframe,
|
|
|
|
Shaded,
|
2016-02-29 03:06:27 +03:00
|
|
|
};
|
2016-03-07 02:29:22 +03:00
|
|
|
};
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
struct Camera
|
|
|
|
{
|
|
|
|
Camera()
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2016-03-07 02:29:22 +03:00
|
|
|
reset();
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void reset()
|
|
|
|
{
|
2021-09-06 19:03:26 +03:00
|
|
|
m_target.curr = bx::init::Zero;
|
|
|
|
m_target.dest = bx::init::Zero;
|
2018-12-08 06:42:34 +03:00
|
|
|
|
|
|
|
m_pos.curr = { 0.0f, 0.0f, -2.0f };
|
|
|
|
m_pos.dest = { 0.0f, 0.0f, -2.0f };
|
2016-03-07 02:29:22 +03:00
|
|
|
|
|
|
|
m_orbit[0] = 0.0f;
|
|
|
|
m_orbit[1] = 0.0f;
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void mtxLookAt(float* _outViewMtx)
|
|
|
|
{
|
2018-12-08 06:42:34 +03:00
|
|
|
bx::mtxLookAt(_outViewMtx, m_pos.curr, m_target.curr);
|
2016-03-07 02:29:22 +03:00
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void orbit(float _dx, float _dy)
|
|
|
|
{
|
|
|
|
m_orbit[0] += _dx;
|
|
|
|
m_orbit[1] += _dy;
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void dolly(float _dz)
|
|
|
|
{
|
2018-12-08 06:42:34 +03:00
|
|
|
const float cnear = 1.0f;
|
|
|
|
const float cfar = 100.0f;
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2018-12-08 06:42:34 +03:00
|
|
|
const bx::Vec3 toTarget = bx::sub(m_target.dest, m_pos.dest);
|
|
|
|
const float toTargetLen = bx::length(toTarget);
|
|
|
|
const float invToTargetLen = 1.0f / (toTargetLen + bx::kFloatMin);
|
|
|
|
const bx::Vec3 toTargetNorm = bx::mul(toTarget, invToTargetLen);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2018-12-08 06:42:34 +03:00
|
|
|
float delta = toTargetLen * _dz;
|
2016-03-07 02:29:22 +03:00
|
|
|
float newLen = toTargetLen + delta;
|
2018-12-08 06:42:34 +03:00
|
|
|
if ( (cnear < newLen || _dz < 0.0f)
|
|
|
|
&& (newLen < cfar || _dz > 0.0f) )
|
2016-03-07 02:29:22 +03:00
|
|
|
{
|
2018-12-08 06:42:34 +03:00
|
|
|
m_pos.dest = bx::mad(toTargetNorm, delta, m_pos.dest);
|
2016-02-29 03:06:27 +03:00
|
|
|
}
|
2016-03-07 02:29:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void consumeOrbit(float _amount)
|
|
|
|
{
|
|
|
|
float consume[2];
|
2018-12-08 06:42:34 +03:00
|
|
|
consume[0] = m_orbit[0] * _amount;
|
|
|
|
consume[1] = m_orbit[1] * _amount;
|
2016-03-07 02:29:22 +03:00
|
|
|
m_orbit[0] -= consume[0];
|
|
|
|
m_orbit[1] -= consume[1];
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2018-12-08 06:42:34 +03:00
|
|
|
const bx::Vec3 toPos = bx::sub(m_pos.curr, m_target.curr);
|
|
|
|
const float toPosLen = bx::length(toPos);
|
|
|
|
const float invToPosLen = 1.0f / (toPosLen + bx::kFloatMin);
|
|
|
|
const bx::Vec3 toPosNorm = bx::mul(toPos, invToPosLen);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
float ll[2];
|
2018-12-08 06:42:34 +03:00
|
|
|
bx::toLatLong(&ll[0], &ll[1], toPosNorm);
|
2016-03-07 02:29:22 +03:00
|
|
|
ll[0] += consume[0];
|
|
|
|
ll[1] -= consume[1];
|
2017-12-03 05:15:31 +03:00
|
|
|
ll[1] = bx::clamp(ll[1], 0.02f, 0.98f);
|
2016-03-07 02:29:22 +03:00
|
|
|
|
2018-12-08 06:42:34 +03:00
|
|
|
const bx::Vec3 tmp = bx::fromLatLong(ll[0], ll[1]);
|
|
|
|
const bx::Vec3 diff = bx::mul(bx::sub(tmp, toPosNorm), toPosLen);
|
2016-03-07 02:29:22 +03:00
|
|
|
|
2018-12-08 06:42:34 +03:00
|
|
|
m_pos.curr = bx::add(m_pos.curr, diff);
|
|
|
|
m_pos.dest = bx::add(m_pos.dest, diff);
|
2016-03-07 02:29:22 +03:00
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void update(float _dt)
|
|
|
|
{
|
2018-12-08 06:42:34 +03:00
|
|
|
const float amount = bx::min(_dt / 0.12f, 1.0f);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
consumeOrbit(amount);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2018-12-08 06:42:34 +03:00
|
|
|
m_target.curr = bx::lerp(m_target.curr, m_target.dest, amount);
|
|
|
|
m_pos.curr = bx::lerp(m_pos.curr, m_pos.dest, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void envViewMtx(float* _mtx)
|
|
|
|
{
|
|
|
|
const bx::Vec3 toTarget = bx::sub(m_target.curr, m_pos.curr);
|
|
|
|
const float toTargetLen = bx::length(toTarget);
|
|
|
|
const float invToTargetLen = 1.0f / (toTargetLen + bx::kFloatMin);
|
|
|
|
const bx::Vec3 toTargetNorm = bx::mul(toTarget, invToTargetLen);
|
|
|
|
|
|
|
|
const bx::Vec3 right = bx::normalize(bx::cross({ 0.0f, 1.0f, 0.0f }, toTargetNorm) );
|
|
|
|
const bx::Vec3 up = bx::normalize(bx::cross(toTargetNorm, right) );
|
|
|
|
|
|
|
|
_mtx[ 0] = right.x;
|
|
|
|
_mtx[ 1] = right.y;
|
|
|
|
_mtx[ 2] = right.z;
|
|
|
|
_mtx[ 3] = 0.0f;
|
|
|
|
_mtx[ 4] = up.x;
|
|
|
|
_mtx[ 5] = up.y;
|
|
|
|
_mtx[ 6] = up.z;
|
|
|
|
_mtx[ 7] = 0.0f;
|
|
|
|
_mtx[ 8] = toTargetNorm.x;
|
|
|
|
_mtx[ 9] = toTargetNorm.y;
|
|
|
|
_mtx[10] = toTargetNorm.z;
|
|
|
|
_mtx[11] = 0.0f;
|
|
|
|
_mtx[12] = 0.0f;
|
|
|
|
_mtx[13] = 0.0f;
|
|
|
|
_mtx[14] = 0.0f;
|
|
|
|
_mtx[15] = 1.0f;
|
2016-03-07 02:29:22 +03:00
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
struct Interp3f
|
|
|
|
{
|
2021-09-06 19:03:26 +03:00
|
|
|
bx::Vec3 curr = bx::init::None;
|
|
|
|
bx::Vec3 dest = bx::init::None;
|
2016-02-29 03:06:27 +03:00
|
|
|
};
|
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
Interp3f m_target;
|
|
|
|
Interp3f m_pos;
|
|
|
|
float m_orbit[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Mouse
|
|
|
|
{
|
|
|
|
Mouse()
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2016-03-07 02:29:22 +03:00
|
|
|
m_dx = 0.0f;
|
|
|
|
m_dy = 0.0f;
|
|
|
|
m_prevMx = 0.0f;
|
|
|
|
m_prevMx = 0.0f;
|
|
|
|
m_scroll = 0;
|
|
|
|
m_scrollPrev = 0;
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void update(float _mx, float _my, int32_t _mz, uint32_t _width, uint32_t _height)
|
|
|
|
{
|
|
|
|
const float widthf = float(int32_t(_width));
|
|
|
|
const float heightf = float(int32_t(_height));
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
// Delta movement.
|
|
|
|
m_dx = float(_mx - m_prevMx)/widthf;
|
|
|
|
m_dy = float(_my - m_prevMy)/heightf;
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
m_prevMx = _mx;
|
|
|
|
m_prevMy = _my;
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
// Scroll.
|
|
|
|
m_scroll = _mz - m_scrollPrev;
|
|
|
|
m_scrollPrev = _mz;
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
float m_dx; // Screen space.
|
|
|
|
float m_dy;
|
|
|
|
float m_prevMx;
|
|
|
|
float m_prevMy;
|
|
|
|
int32_t m_scroll;
|
|
|
|
int32_t m_scrollPrev;
|
|
|
|
};
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
struct MeshMtx
|
|
|
|
{
|
|
|
|
MeshMtx()
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2016-03-07 02:29:22 +03:00
|
|
|
m_mesh = NULL;
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void init(const char* _path
|
2017-06-26 07:44:04 +03:00
|
|
|
, float _scale = 1.0f
|
|
|
|
, float _rotX = 0.0f
|
|
|
|
, float _rotY = 0.0f
|
|
|
|
, float _rotZ = 0.0f
|
|
|
|
, float _transX = 0.0f
|
|
|
|
, float _transY = 0.0f
|
|
|
|
, float _transZ = 0.0f
|
|
|
|
)
|
2016-03-07 02:29:22 +03:00
|
|
|
{
|
|
|
|
m_mesh = meshLoad(_path);
|
|
|
|
bx::mtxSRT(m_mtx
|
2017-06-26 07:44:04 +03:00
|
|
|
, _scale
|
|
|
|
, _scale
|
|
|
|
, _scale
|
|
|
|
, _rotX
|
|
|
|
, _rotY
|
|
|
|
, _rotZ
|
|
|
|
, _transX
|
|
|
|
, _transY
|
|
|
|
, _transZ
|
|
|
|
);
|
2016-03-07 02:29:22 +03:00
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void destroy()
|
|
|
|
{
|
|
|
|
if (NULL != m_mesh)
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2016-03-07 02:29:22 +03:00
|
|
|
meshUnload(m_mesh);
|
2016-02-29 03:06:27 +03:00
|
|
|
}
|
2016-03-07 02:29:22 +03:00
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
Mesh* m_mesh;
|
|
|
|
float m_mtx[16];
|
|
|
|
};
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
struct Uniforms
|
|
|
|
{
|
|
|
|
enum { NumVec4 = 3 };
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void init()
|
|
|
|
{
|
|
|
|
m_camPos[0] = 0.0f;
|
|
|
|
m_camPos[1] = 1.0f;
|
|
|
|
m_camPos[2] = -2.5f;
|
|
|
|
m_wfColor[0] = 1.0f;
|
|
|
|
m_wfColor[1] = 0.0f;
|
|
|
|
m_wfColor[2] = 0.0f;
|
2017-06-26 07:44:04 +03:00
|
|
|
m_wfColor[3] = 1.0f;
|
2016-03-07 02:29:22 +03:00
|
|
|
m_drawEdges = 0.0f;
|
|
|
|
m_wfThickness = 1.5f;
|
|
|
|
|
|
|
|
u_params = bgfx::createUniform("u_params", bgfx::UniformType::Vec4, NumVec4);
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void submit()
|
|
|
|
{
|
|
|
|
bgfx::setUniform(u_params, m_params, NumVec4);
|
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
void destroy()
|
|
|
|
{
|
2017-07-18 08:29:43 +03:00
|
|
|
bgfx::destroy(u_params);
|
2016-03-07 02:29:22 +03:00
|
|
|
}
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2016-03-07 02:29:22 +03:00
|
|
|
/*0*/struct { float m_camPos[3], m_unused0; };
|
2017-06-26 07:44:04 +03:00
|
|
|
/*1*/struct { float m_wfColor[4]; };
|
2016-03-07 02:29:22 +03:00
|
|
|
/*2*/struct { float m_drawEdges, m_wfThickness, m_unused2[2]; };
|
2016-02-29 03:06:27 +03:00
|
|
|
};
|
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
float m_params[NumVec4*4];
|
2016-02-29 03:06:27 +03:00
|
|
|
};
|
|
|
|
|
2016-03-07 02:29:22 +03:00
|
|
|
bgfx::UniformHandle u_params;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ExampleWireframe : public entry::AppI
|
|
|
|
{
|
2017-06-26 07:44:04 +03:00
|
|
|
public:
|
2019-08-18 00:40:38 +03:00
|
|
|
ExampleWireframe(const char* _name, const char* _description, const char* _url)
|
|
|
|
: entry::AppI(_name, _description, _url)
|
2017-06-26 07:44:04 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-07-15 10:17:29 +03:00
|
|
|
void init(int32_t _argc, const char* const* _argv, uint32_t _width, uint32_t _height) override
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
|
|
|
Args args(_argc, _argv);
|
|
|
|
|
2017-06-30 08:23:18 +03:00
|
|
|
m_width = _width;
|
|
|
|
m_height = _height;
|
2017-06-26 07:44:04 +03:00
|
|
|
m_debug = BGFX_DEBUG_NONE;
|
2016-03-05 22:38:32 +03:00
|
|
|
m_reset = 0
|
|
|
|
| BGFX_RESET_VSYNC
|
|
|
|
| BGFX_RESET_MSAA_X16
|
|
|
|
;
|
2016-02-29 03:06:27 +03:00
|
|
|
|
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);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
|
|
|
// Enable m_debug text.
|
|
|
|
bgfx::setDebug(m_debug);
|
|
|
|
|
|
|
|
// Set view 0 clear state.
|
|
|
|
bgfx::setViewClear(0
|
2017-07-05 02:32:35 +03:00
|
|
|
, BGFX_CLEAR_COLOR|BGFX_CLEAR_DEPTH
|
|
|
|
, 0x303030ff
|
|
|
|
, 1.0f
|
|
|
|
, 0
|
|
|
|
);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
|
|
|
m_wfProgram = loadProgram("vs_wf_wireframe", "fs_wf_wireframe");
|
|
|
|
m_meshProgram = loadProgram("vs_wf_mesh", "fs_wf_mesh");
|
|
|
|
|
|
|
|
m_uniforms.init();
|
|
|
|
|
2017-06-10 06:08:52 +03:00
|
|
|
m_meshes[0].init("meshes/bunny.bin", 1.0f, 0.0f, bx::kPi, 0.0f, 0.0f, -0.8f, 0.0f);
|
2016-02-29 03:06:27 +03:00
|
|
|
m_meshes[1].init("meshes/hollowcube.bin", 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
m_meshes[2].init("meshes/orb.bin", 1.2f, 0.0f, 0.0f, 0.0f, 0.0f, -0.65f, 0.0f);
|
|
|
|
|
|
|
|
// Imgui.
|
|
|
|
imguiCreate();
|
|
|
|
|
|
|
|
m_oldWidth = 0;
|
|
|
|
m_oldHeight = 0;
|
|
|
|
m_oldReset = m_reset;
|
|
|
|
|
|
|
|
m_meshSelection = 1;
|
|
|
|
m_drawMode = DrawMode::WireframeShaded;
|
|
|
|
}
|
|
|
|
|
2017-07-15 10:17:29 +03:00
|
|
|
virtual int shutdown() override
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
|
|
|
// Cleanup.
|
|
|
|
imguiDestroy();
|
|
|
|
|
|
|
|
m_meshes[0].destroy();
|
|
|
|
m_meshes[1].destroy();
|
|
|
|
m_meshes[2].destroy();
|
|
|
|
|
2017-07-18 08:29:43 +03:00
|
|
|
bgfx::destroy(m_wfProgram);
|
|
|
|
bgfx::destroy(m_meshProgram);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
|
|
|
m_uniforms.destroy();
|
|
|
|
|
|
|
|
// Shutdown bgfx.
|
|
|
|
bgfx::shutdown();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-07-15 10:17:29 +03:00
|
|
|
bool update() override
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
|
|
|
if (!entry::processEvents(m_width, m_height, m_debug, m_reset, &m_mouseState) )
|
|
|
|
{
|
|
|
|
if (m_oldWidth != m_width
|
|
|
|
|| m_oldHeight != m_height
|
|
|
|
|| m_oldReset != m_reset)
|
|
|
|
{
|
|
|
|
// Recreate variable size render targets when resolution changes.
|
|
|
|
m_oldWidth = m_width;
|
|
|
|
m_oldHeight = m_height;
|
|
|
|
m_oldReset = m_reset;
|
|
|
|
}
|
|
|
|
|
|
|
|
imguiBeginFrame(m_mouseState.m_mx
|
2017-07-05 02:32:35 +03:00
|
|
|
, m_mouseState.m_my
|
|
|
|
, (m_mouseState.m_buttons[entry::MouseButton::Left ] ? IMGUI_MBUT_LEFT : 0)
|
|
|
|
| (m_mouseState.m_buttons[entry::MouseButton::Right ] ? IMGUI_MBUT_RIGHT : 0)
|
|
|
|
| (m_mouseState.m_buttons[entry::MouseButton::Middle] ? IMGUI_MBUT_MIDDLE : 0)
|
|
|
|
, m_mouseState.m_mz
|
|
|
|
, uint16_t(m_width)
|
|
|
|
, uint16_t(m_height)
|
|
|
|
);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2017-06-30 09:19:20 +03:00
|
|
|
showExampleDialog(this);
|
2017-06-26 07:44:04 +03:00
|
|
|
|
2017-06-27 08:51:56 +03:00
|
|
|
ImGui::SetNextWindowPos(
|
|
|
|
ImVec2(m_width - m_width / 5.0f - 10.0f, 10.0f)
|
2017-12-02 08:04:27 +03:00
|
|
|
, ImGuiCond_FirstUseEver
|
|
|
|
);
|
|
|
|
ImGui::SetNextWindowSize(
|
|
|
|
ImVec2(m_width / 5.0f, m_height * 0.75f)
|
|
|
|
, ImGuiCond_FirstUseEver
|
2017-06-27 08:51:56 +03:00
|
|
|
);
|
2017-06-24 00:36:52 +03:00
|
|
|
ImGui::Begin("Settings"
|
|
|
|
, NULL
|
2017-12-02 08:04:27 +03:00
|
|
|
, 0
|
2017-06-24 00:36:52 +03:00
|
|
|
);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
2017-06-24 00:36:52 +03:00
|
|
|
ImGui::Separator();
|
|
|
|
ImGui::Text("Draw mode:");
|
|
|
|
ImGui::RadioButton("Wireframe + Shaded", &m_drawMode, 0);
|
|
|
|
ImGui::RadioButton("Wireframe", &m_drawMode, 1);
|
|
|
|
ImGui::RadioButton("Shaded", &m_drawMode, 2);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
|
|
|
const bool wfEnabled = (DrawMode::Shaded != m_drawMode);
|
2017-06-24 00:36:52 +03:00
|
|
|
if ( wfEnabled )
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2017-06-24 00:36:52 +03:00
|
|
|
ImGui::Separator();
|
|
|
|
|
|
|
|
ImGui::ColorWheel("Color", m_uniforms.m_wfColor, 0.6f);
|
|
|
|
ImGui::SliderFloat("Thickness", &m_uniforms.m_wfThickness, 0.6f, 2.2f);
|
2016-02-29 03:06:27 +03:00
|
|
|
}
|
|
|
|
|
2017-06-24 00:36:52 +03:00
|
|
|
ImGui::Separator();
|
|
|
|
ImGui::Text("Mesh:");
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
2017-06-24 00:36:52 +03:00
|
|
|
bool meshChanged = false;
|
|
|
|
meshChanged |= ImGui::RadioButton("Bunny", &m_meshSelection, 0);
|
|
|
|
meshChanged |= ImGui::RadioButton("Hollowcubes", &m_meshSelection, 1);
|
|
|
|
meshChanged |= ImGui::RadioButton("Orb", &m_meshSelection, 2);
|
|
|
|
|
|
|
|
if (meshChanged)
|
2016-02-29 03:06:27 +03:00
|
|
|
{
|
|
|
|
m_camera.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-24 00:36:52 +03:00
|
|
|
ImGui::End();
|
2016-02-29 03:06:27 +03:00
|
|
|
imguiEndFrame();
|
|
|
|
|
|
|
|
// This dummy draw call is here to make sure that view 0 is cleared
|
|
|
|
// if no other draw calls are submitted to view 0.
|
|
|
|
bgfx::touch(0);
|
|
|
|
|
|
|
|
int64_t now = bx::getHPCounter();
|
|
|
|
static int64_t last = now;
|
|
|
|
const int64_t frameTime = now - last;
|
|
|
|
last = now;
|
|
|
|
const double freq = double(bx::getHPFrequency() );
|
2016-02-29 22:43:09 +03:00
|
|
|
const float deltaTimeSec = float(double(frameTime)/freq);
|
2016-02-29 03:06:27 +03:00
|
|
|
|
|
|
|
// Setup view.
|
|
|
|
bgfx::setViewRect(0, 0, 0, bgfx::BackbufferRatio::Equal);
|
|
|
|
bgfx::setViewClear(0, BGFX_CLEAR_COLOR|BGFX_CLEAR_DEPTH, 0x303030ff, 1.0f, 0);
|
|
|
|
|
2017-06-24 01:26:28 +03:00
|
|
|
const bool mouseOverGui = ImGui::MouseOverArea();
|
2016-02-29 22:43:09 +03:00
|
|
|
m_mouse.update(float(m_mouseState.m_mx), float(m_mouseState.m_my), m_mouseState.m_mz, m_width, m_height);
|
2016-02-29 03:06:27 +03:00
|
|
|
if (!mouseOverGui)
|
|
|
|
{
|
|
|
|
if (m_mouseState.m_buttons[entry::MouseButton::Left])
|
|
|
|
{
|
|
|
|
m_camera.orbit(m_mouse.m_dx, m_mouse.m_dy);
|
|
|
|
}
|
|
|
|
else if (m_mouseState.m_buttons[entry::MouseButton::Right])
|
|
|
|
{
|
|
|
|
m_camera.dolly(m_mouse.m_dx + m_mouse.m_dy);
|
|
|
|
}
|
|
|
|
else if (0 != m_mouse.m_scroll)
|
|
|
|
{
|
|
|
|
m_camera.dolly(float(m_mouse.m_scroll)*0.1f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float view[16];
|
|
|
|
float proj[16];
|
|
|
|
m_camera.update(deltaTimeSec);
|
2018-12-08 06:42:34 +03:00
|
|
|
bx::memCopy(m_uniforms.m_camPos, &m_camera.m_pos.curr.x, 3*sizeof(float));
|
2016-02-29 03:06:27 +03:00
|
|
|
m_camera.mtxLookAt(view);
|
2017-02-23 09:26:39 +03:00
|
|
|
bx::mtxProj(proj, 60.0f, float(m_width)/float(m_height), 0.1f, 100.0f, bgfx::getCaps()->homogeneousDepth);
|
2016-02-29 03:06:27 +03:00
|
|
|
bgfx::setViewTransform(0, view, proj);
|
|
|
|
|
2016-02-29 22:43:09 +03:00
|
|
|
m_uniforms.m_drawEdges = (DrawMode::WireframeShaded == m_drawMode) ? 1.0f : 0.0f;
|
2016-02-29 03:06:27 +03:00
|
|
|
m_uniforms.submit();
|
|
|
|
|
|
|
|
if (DrawMode::Wireframe == m_drawMode)
|
|
|
|
{
|
|
|
|
uint64_t state = 0
|
2018-02-13 23:35:23 +03:00
|
|
|
| BGFX_STATE_WRITE_RGB
|
|
|
|
| BGFX_STATE_WRITE_A
|
|
|
|
| BGFX_STATE_WRITE_Z
|
2017-07-05 02:32:35 +03:00
|
|
|
| BGFX_STATE_CULL_CCW
|
|
|
|
| BGFX_STATE_MSAA
|
|
|
|
| BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_SRC_ALPHA, BGFX_STATE_BLEND_INV_SRC_ALPHA)
|
|
|
|
;
|
2016-02-29 03:06:27 +03:00
|
|
|
meshSubmit(m_meshes[m_meshSelection].m_mesh, 0, m_wfProgram, m_meshes[m_meshSelection].m_mtx, state);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uint64_t state = 0
|
2018-02-13 23:35:23 +03:00
|
|
|
| BGFX_STATE_WRITE_RGB
|
|
|
|
| BGFX_STATE_WRITE_A
|
2017-07-05 02:32:35 +03:00
|
|
|
| BGFX_STATE_DEPTH_TEST_LESS
|
2018-02-13 23:35:23 +03:00
|
|
|
| BGFX_STATE_WRITE_Z
|
2017-07-05 02:32:35 +03:00
|
|
|
| BGFX_STATE_CULL_CCW
|
|
|
|
| BGFX_STATE_MSAA
|
|
|
|
;
|
2016-02-29 03:06:27 +03:00
|
|
|
meshSubmit(m_meshes[m_meshSelection].m_mesh, 0, m_meshProgram, m_meshes[m_meshSelection].m_mtx, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advance to next frame. Rendering thread will be kicked to
|
|
|
|
// process submitted rendering primitives.
|
|
|
|
bgfx::frame();
|
|
|
|
|
2017-06-30 09:19:20 +03:00
|
|
|
return true;
|
2016-02-29 03:06:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry::MouseState m_mouseState;
|
|
|
|
|
|
|
|
bgfx::ProgramHandle m_wfProgram;
|
|
|
|
bgfx::ProgramHandle m_meshProgram;
|
|
|
|
|
|
|
|
uint32_t m_width;
|
|
|
|
uint32_t m_height;
|
|
|
|
uint32_t m_debug;
|
|
|
|
uint32_t m_reset;
|
|
|
|
|
|
|
|
uint32_t m_oldWidth;
|
|
|
|
uint32_t m_oldHeight;
|
|
|
|
uint32_t m_oldReset;
|
|
|
|
|
|
|
|
Camera m_camera;
|
|
|
|
Mouse m_mouse;
|
|
|
|
Uniforms m_uniforms;
|
|
|
|
MeshMtx m_meshes[3];
|
2017-06-24 00:36:52 +03:00
|
|
|
int32_t m_meshSelection;
|
|
|
|
int32_t m_drawMode; // Holds data for 'DrawMode'.
|
2016-02-29 03:06:27 +03:00
|
|
|
};
|
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
} // namespace
|
|
|
|
|
2019-08-17 23:25:39 +03:00
|
|
|
ENTRY_IMPLEMENT_MAIN(
|
2019-08-18 00:40:38 +03:00
|
|
|
ExampleWireframe
|
|
|
|
, "28-wirefame"
|
|
|
|
, "Drawing wireframe mesh."
|
|
|
|
, "https://bkaradzic.github.io/bgfx/examples.html#wireframe"
|
|
|
|
);
|