2013-05-15 17:07:04 +04:00
|
|
|
/*
|
2013-05-17 07:37:54 +04:00
|
|
|
* Copyright 2013 Jeremie Roy. All rights reserved.
|
2016-01-01 11:11:04 +03:00
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2013-05-17 07:37:54 +04:00
|
|
|
*/
|
2013-05-15 17:07:04 +04:00
|
|
|
|
2013-05-24 09:07:54 +04:00
|
|
|
#include "common.h"
|
2015-01-23 08:01:09 +03:00
|
|
|
#include "bgfx_utils.h"
|
2013-08-08 08:45:56 +04:00
|
|
|
|
2015-09-19 06:16:24 +03:00
|
|
|
#include <bgfx/bgfx.h>
|
2013-04-23 00:42:11 +04:00
|
|
|
#include <bx/timer.h>
|
2014-05-27 06:31:37 +04:00
|
|
|
#include <bx/fpumath.h>
|
2013-04-23 00:42:11 +04:00
|
|
|
|
2013-05-24 09:07:54 +04:00
|
|
|
#include "font/font_manager.h"
|
|
|
|
#include "font/text_metrics.h"
|
|
|
|
#include "font/text_buffer_manager.h"
|
|
|
|
#include "imgui/imgui.h"
|
2013-05-22 19:20:23 +04:00
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2013-08-09 09:18:19 +04:00
|
|
|
TrueTypeHandle loadTtf(FontManager* _fm, const char* _filePath)
|
2013-05-30 08:53:19 +04:00
|
|
|
{
|
2016-12-09 07:45:01 +03:00
|
|
|
uint32_t size;
|
|
|
|
void* data = load(_filePath, &size);
|
|
|
|
|
|
|
|
if (NULL != data)
|
2013-05-30 08:53:19 +04:00
|
|
|
{
|
2016-12-09 07:45:01 +03:00
|
|
|
TrueTypeHandle handle = _fm->createTtf( (uint8_t*)data, size);
|
|
|
|
BX_FREE(entry::getAllocator(), data);
|
2013-08-09 09:18:19 +04:00
|
|
|
return handle;
|
2013-05-30 08:53:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
TrueTypeHandle invalid = BGFX_INVALID_HANDLE;
|
|
|
|
return invalid;
|
|
|
|
}
|
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
class ExampleFontSDF : public entry::AppI
|
2013-04-23 00:42:11 +04:00
|
|
|
{
|
2017-06-26 07:44:04 +03:00
|
|
|
public:
|
|
|
|
ExampleFontSDF(const char* _name, const char* _description)
|
|
|
|
: entry::AppI(_name, _description)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
void init(int _argc, char** _argv) BX_OVERRIDE
|
2013-04-23 00:42:11 +04:00
|
|
|
{
|
2017-06-12 22:52:48 +03:00
|
|
|
Args args(_argc, _argv);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_width = 1280;
|
|
|
|
m_height = 720;
|
2017-06-26 07:44:04 +03:00
|
|
|
m_debug = BGFX_DEBUG_NONE;
|
2017-06-12 22:52:48 +03:00
|
|
|
m_reset = BGFX_RESET_VSYNC;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
bgfx::init(args.m_type, args.m_pciId);
|
|
|
|
bgfx::reset(m_width, m_height, m_reset);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Enable debug text.
|
|
|
|
bgfx::setDebug(m_debug);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Set view 0 clear state.
|
|
|
|
bgfx::setViewClear(0
|
2017-06-17 21:47:39 +03:00
|
|
|
, BGFX_CLEAR_COLOR | BGFX_CLEAR_DEPTH
|
|
|
|
, 0x303030ff
|
|
|
|
, 1.0f
|
|
|
|
, 0
|
|
|
|
);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Imgui.
|
|
|
|
imguiCreate();
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_bigText = (char*)load("text/sherlock_holmes_a_scandal_in_bohemia_arthur_conan_doyle.txt");
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Init the text rendering system.
|
|
|
|
m_fontManager = new FontManager(512);
|
|
|
|
m_textBufferManager = new TextBufferManager(m_fontManager);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_font = loadTtf(m_fontManager, "font/special_elite.ttf");
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Create a distance field font.
|
|
|
|
m_fontSdf = m_fontManager->createFontByPixelSize(m_font, 0, 48, FONT_TYPE_DISTANCE);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Create a scaled down version of the same font (without adding anything to the atlas).
|
|
|
|
m_fontScaled = m_fontManager->createScaledFontToPixelSize(m_fontSdf, 14);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_metrics = TextLineMetrics(m_fontManager->getFontInfo(m_fontScaled) );
|
|
|
|
m_lineCount = m_metrics.getLineCount(m_bigText);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_visibleLineCount = 20.0f;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_textBegin = 0;
|
|
|
|
m_textEnd = 0;
|
|
|
|
m_metrics.getSubText(m_bigText, 0, (uint32_t)m_visibleLineCount, m_textBegin, m_textEnd);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_scrollableBuffer = m_textBufferManager->createTextBuffer(FONT_TYPE_DISTANCE, BufferType::Transient);
|
|
|
|
m_textBufferManager->setTextColor(m_scrollableBuffer, 0xFFFFFFFF);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_textBufferManager->appendText(m_scrollableBuffer, m_fontScaled, m_textBegin, m_textEnd);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_textScroll = 0.0f;
|
|
|
|
m_textRotation = 0.0f;
|
|
|
|
m_textScale = 1.0f;
|
|
|
|
m_textSize = 14.0f;
|
|
|
|
}
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
virtual int shutdown() BX_OVERRIDE
|
|
|
|
{
|
|
|
|
imguiDestroy();
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
BX_FREE(entry::getAllocator(), m_bigText);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_fontManager->destroyTtf(m_font);
|
|
|
|
// Destroy the fonts.
|
|
|
|
m_fontManager->destroyFont(m_fontSdf);
|
|
|
|
m_fontManager->destroyFont(m_fontScaled);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
m_textBufferManager->destroyTextBuffer(m_scrollableBuffer);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
delete m_textBufferManager;
|
|
|
|
delete m_fontManager;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Shutdown bgfx.
|
|
|
|
bgfx::shutdown();
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2014-11-04 06:11:08 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
bool update() BX_OVERRIDE
|
|
|
|
{
|
|
|
|
if (!entry::processEvents(m_width, m_height, m_debug, m_reset, &m_mouseState) )
|
2014-11-04 06:11:08 +03:00
|
|
|
{
|
2017-06-12 22:52:48 +03:00
|
|
|
imguiBeginFrame(m_mouseState.m_mx
|
2017-06-17 21:47:39 +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)
|
|
|
|
);
|
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
bool restart = showExampleDialog(this);
|
|
|
|
|
2017-06-27 08:51:56 +03:00
|
|
|
ImGui::SetNextWindowPos(
|
|
|
|
ImVec2(m_width - m_width / 5.0f - 10.0f, 10.0f)
|
|
|
|
, ImGuiSetCond_FirstUseEver
|
|
|
|
);
|
|
|
|
ImGui::Begin("Settings"
|
2017-06-17 21:47:39 +03:00
|
|
|
, NULL
|
2017-06-27 08:51:56 +03:00
|
|
|
, ImVec2(m_width / 5.0f, m_height / 2.0f)
|
2017-06-17 21:47:39 +03:00
|
|
|
, ImGuiWindowFlags_AlwaysAutoResize
|
|
|
|
);
|
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
bool recomputeVisibleText = false;
|
2017-06-27 08:51:56 +03:00
|
|
|
recomputeVisibleText |= ImGui::SliderFloat("# of lines", &m_visibleLineCount, 1.0f, 177.0f);
|
2017-06-17 21:47:39 +03:00
|
|
|
|
2017-06-17 21:14:44 +03:00
|
|
|
if (ImGui::SliderFloat("Font size", &m_textSize, 6.0f, 64.0f) )
|
2017-06-12 22:52:48 +03:00
|
|
|
{
|
|
|
|
m_fontManager->destroyFont(m_fontScaled);
|
|
|
|
m_fontScaled = m_fontManager->createScaledFontToPixelSize(m_fontSdf, (uint32_t) m_textSize);
|
|
|
|
m_metrics = TextLineMetrics(m_fontManager->getFontInfo(m_fontScaled) );
|
|
|
|
recomputeVisibleText = true;
|
|
|
|
}
|
2017-06-17 21:47:39 +03:00
|
|
|
|
2017-06-17 21:14:44 +03:00
|
|
|
recomputeVisibleText |= ImGui::SliderFloat("Scroll", &m_textScroll, 0.0f, (m_lineCount-m_visibleLineCount));
|
|
|
|
ImGui::SliderFloat("Rotate", &m_textRotation, 0.0f, bx::kPi*2.0f);
|
|
|
|
recomputeVisibleText |= ImGui::SliderFloat("Scale", &m_textScale, 0.1f, 10.0f);
|
2017-06-17 21:47:39 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
if (recomputeVisibleText)
|
|
|
|
{
|
|
|
|
m_textBufferManager->clearTextBuffer(m_scrollableBuffer);
|
|
|
|
m_metrics.getSubText(m_bigText,(uint32_t)m_textScroll, (uint32_t)(m_textScroll+m_visibleLineCount), m_textBegin, m_textEnd);
|
|
|
|
m_textBufferManager->appendText(m_scrollableBuffer, m_fontScaled, m_textBegin, m_textEnd);
|
|
|
|
}
|
2017-06-17 21:47:39 +03:00
|
|
|
|
2017-06-17 21:14:44 +03:00
|
|
|
ImGui::End();
|
2017-06-17 21:47:39 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
imguiEndFrame();
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Set view 0 default viewport.
|
|
|
|
bgfx::setViewRect(0, 0, 0, uint16_t(m_width), uint16_t(m_height) );
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// 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);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
float at[3] = { 0.0f, 0.0f, 0.0f };
|
|
|
|
float eye[3] = { 0.0f, 0.0f, -1.0f };
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
float view[16];
|
|
|
|
bx::mtxLookAt(view, eye, at);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
const float centering = 0.5f;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Setup a top-left ortho matrix for screen space drawing.
|
2017-06-13 08:43:07 +03:00
|
|
|
const bgfx::HMD* hmd = bgfx::getHMD();
|
|
|
|
const bgfx::Caps* caps = bgfx::getCaps();
|
2017-06-17 21:47:39 +03:00
|
|
|
if (NULL != hmd
|
|
|
|
&& 0 != (hmd->flags & BGFX_HMD_RENDERING) )
|
2017-06-12 22:52:48 +03:00
|
|
|
{
|
|
|
|
float proj[16];
|
2017-06-13 08:43:07 +03:00
|
|
|
bx::mtxProj(proj, hmd->eye[0].fov, 0.1f, 100.0f, caps->homogeneousDepth);
|
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
static float time = 0.0f;
|
|
|
|
time += 0.05f;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
const float dist = 10.0f;
|
|
|
|
const float offset0 = -proj[8] + (hmd->eye[0].viewOffset[0] / dist * proj[0]);
|
|
|
|
const float offset1 = -proj[8] + (hmd->eye[1].viewOffset[0] / dist * proj[0]);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
float ortho[2][16];
|
|
|
|
const float viewOffset = m_width/4.0f;
|
|
|
|
const float viewWidth = m_width/2.0f;
|
2017-06-13 08:43:07 +03:00
|
|
|
bx::mtxOrtho(ortho[0], centering + viewOffset, centering + viewOffset + viewWidth, m_height + centering, centering, -1.0f, 1.0f, offset0, caps->homogeneousDepth);
|
|
|
|
bx::mtxOrtho(ortho[1], centering + viewOffset, centering + viewOffset + viewWidth, m_height + centering, centering, -1.0f, 1.0f, offset1, caps->homogeneousDepth);
|
2017-06-12 22:52:48 +03:00
|
|
|
bgfx::setViewTransform(0, view, ortho[0], BGFX_VIEW_STEREO, ortho[1]);
|
|
|
|
bgfx::setViewRect(0, 0, 0, hmd->width, hmd->height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float ortho[16];
|
2017-06-13 08:43:07 +03:00
|
|
|
bx::mtxOrtho(ortho, centering, m_width + centering, m_height + centering, centering, -1.0f, 1.0f, 0.0f, caps->homogeneousDepth);
|
2017-06-12 22:52:48 +03:00
|
|
|
bgfx::setViewTransform(0, view, ortho);
|
|
|
|
bgfx::setViewRect(0, 0, 0, uint16_t(m_width), uint16_t(m_height) );
|
|
|
|
}
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
//very crude approximation :(
|
|
|
|
float textAreaWidth = 0.5f * 66.0f * m_fontManager->getFontInfo(m_fontScaled).maxAdvanceWidth;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
float textRotMat[16];
|
|
|
|
float textCenterMat[16];
|
|
|
|
float textScaleMat[16];
|
|
|
|
float screenCenterMat[16];
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
bx::mtxRotateZ(textRotMat, m_textRotation);
|
|
|
|
bx::mtxTranslate(textCenterMat, -(textAreaWidth * 0.5f), (-m_visibleLineCount)*m_metrics.getLineHeight()*0.5f, 0);
|
|
|
|
bx::mtxScale(textScaleMat, m_textScale, m_textScale, 1.0f);
|
|
|
|
bx::mtxTranslate(screenCenterMat, ( (m_width) * 0.5f), ( (m_height) * 0.5f), 0);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
//first translate to text center, then scale, then rotate
|
|
|
|
float tmpMat[16];
|
|
|
|
bx::mtxMul(tmpMat, textCenterMat, textRotMat);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
float tmpMat2[16];
|
|
|
|
bx::mtxMul(tmpMat2, tmpMat, textScaleMat);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
float tmpMat3[16];
|
|
|
|
bx::mtxMul(tmpMat3, tmpMat2, screenCenterMat);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Set model matrix for rendering.
|
|
|
|
bgfx::setTransform(tmpMat3);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Draw your text.
|
|
|
|
m_textBufferManager->submitTextBuffer(m_scrollableBuffer, 0);
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Advance to next frame. Rendering thread will be kicked to
|
|
|
|
// process submitted rendering primitives.
|
|
|
|
bgfx::frame();
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
return !restart;
|
2014-11-04 06:11:08 +03:00
|
|
|
}
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
return false;
|
2013-04-23 00:42:11 +04:00
|
|
|
}
|
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
entry::MouseState m_mouseState;
|
|
|
|
uint32_t m_width;
|
|
|
|
uint32_t m_height;
|
|
|
|
uint32_t m_debug;
|
|
|
|
uint32_t m_reset;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
char* m_bigText;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
// Init the text rendering system.
|
|
|
|
FontManager* m_fontManager;
|
|
|
|
TextBufferManager* m_textBufferManager;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
TrueTypeHandle m_font;
|
|
|
|
FontHandle m_fontSdf;
|
|
|
|
FontHandle m_fontScaled;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
TextBufferHandle m_scrollableBuffer;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
TextLineMetrics m_metrics = TextLineMetrics(FontInfo());
|
|
|
|
uint32_t m_lineCount;
|
|
|
|
float m_visibleLineCount;
|
|
|
|
const char* m_textBegin;
|
|
|
|
const char* m_textEnd;
|
2017-06-13 08:43:07 +03:00
|
|
|
|
2017-06-12 22:52:48 +03:00
|
|
|
float m_textScroll;
|
|
|
|
float m_textRotation;
|
|
|
|
float m_textScale;
|
|
|
|
float m_textSize;
|
|
|
|
};
|
|
|
|
|
2017-06-26 07:44:04 +03:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
ENTRY_IMPLEMENT_MAIN(ExampleFontSDF, "11-fontsdf", "Use a single distance field font to render text of various size.");
|