2013-05-15 09:07:04 -04:00
|
|
|
/*
|
2013-05-16 23:37:54 -04:00
|
|
|
* Copyright 2013 Jeremie Roy. All rights reserved.
|
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
2013-05-15 09:07:04 -04:00
|
|
|
|
2013-05-24 01:07:54 -04:00
|
|
|
#include "common.h"
|
2013-04-22 16:42:11 -04:00
|
|
|
#include <bgfx.h>
|
|
|
|
#include <bx/timer.h>
|
2013-05-24 01:07:54 -04:00
|
|
|
#include "entry.h"
|
|
|
|
#include "dbg.h"
|
|
|
|
#include "fpumath.h"
|
|
|
|
#include "processevents.h"
|
2013-04-22 16:42:11 -04:00
|
|
|
|
2013-05-24 01: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 11:20:23 -04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2013-04-22 16:42:11 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
long int fsize(FILE* _file)
|
|
|
|
{
|
|
|
|
long int pos = ftell(_file);
|
|
|
|
fseek(_file, 0L, SEEK_END);
|
|
|
|
long int size = ftell(_file);
|
|
|
|
fseek(_file, pos, SEEK_SET);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* loadText(const char* _textFile)
|
|
|
|
{
|
|
|
|
FILE* pFile;
|
|
|
|
pFile = fopen(_textFile, "rb");
|
|
|
|
if (pFile == NULL)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go to the end of the file.
|
|
|
|
if (fseek(pFile, 0L, SEEK_END) == 0)
|
|
|
|
{
|
|
|
|
// Get the size of the file.
|
|
|
|
long bufsize = ftell(pFile);
|
|
|
|
if (bufsize == -1)
|
|
|
|
{
|
|
|
|
fclose(pFile);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* buffer = new char[bufsize];
|
|
|
|
|
|
|
|
// Go back to the start of the file.
|
|
|
|
fseek(pFile, 0L, SEEK_SET);
|
|
|
|
|
|
|
|
// Read the entire file into memory.
|
2013-05-23 00:34:21 -04:00
|
|
|
size_t newLen = fread( (void*)buffer, sizeof(char), bufsize, pFile);
|
2013-05-22 11:20:23 -04:00
|
|
|
if (newLen == 0)
|
|
|
|
{
|
|
|
|
fclose(pFile);
|
|
|
|
delete[] buffer;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(pFile);
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-05-30 00:53:19 -04:00
|
|
|
TrueTypeHandle loadTtf(FontManager* _fm, const char* _fontPath)
|
|
|
|
{
|
|
|
|
FILE* pFile;
|
|
|
|
pFile = fopen(_fontPath, "rb");
|
|
|
|
if (NULL != pFile)
|
|
|
|
{
|
|
|
|
if (0 == fseek(pFile, 0L, SEEK_END) )
|
|
|
|
{
|
|
|
|
// Get the size of the file.
|
|
|
|
long bufsize = ftell(pFile);
|
|
|
|
if (bufsize == -1)
|
|
|
|
{
|
|
|
|
fclose(pFile);
|
|
|
|
TrueTypeHandle invalid = BGFX_INVALID_HANDLE;
|
|
|
|
return invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t* buffer = new uint8_t[bufsize];
|
|
|
|
|
|
|
|
// Go back to the start of the file.
|
|
|
|
fseek(pFile, 0L, SEEK_SET);
|
|
|
|
|
|
|
|
// Read the entire file into memory.
|
|
|
|
uint32_t newLen = fread( (void*)buffer, sizeof(char), bufsize, pFile);
|
|
|
|
if (newLen == 0)
|
|
|
|
{
|
|
|
|
fclose(pFile);
|
|
|
|
delete[] buffer;
|
|
|
|
TrueTypeHandle invalid = BGFX_INVALID_HANDLE;
|
|
|
|
return invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(pFile);
|
|
|
|
|
|
|
|
return _fm->createTtf(buffer, bufsize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TrueTypeHandle invalid = BGFX_INVALID_HANDLE;
|
|
|
|
return invalid;
|
|
|
|
}
|
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
int _main_(int /*_argc*/, char** /*_argv*/)
|
|
|
|
{
|
2013-05-15 09:21:23 -04:00
|
|
|
uint32_t width = 1280;
|
2013-04-22 16:42:11 -04:00
|
|
|
uint32_t height = 720;
|
|
|
|
uint32_t debug = BGFX_DEBUG_TEXT;
|
2013-05-17 11:45:12 -04:00
|
|
|
uint32_t reset = BGFX_RESET_VSYNC;
|
2013-04-22 16:42:11 -04:00
|
|
|
|
|
|
|
bgfx::init();
|
|
|
|
|
2013-05-17 11:45:12 -04:00
|
|
|
bgfx::reset(width, height, reset);
|
2013-04-22 16:42:11 -04:00
|
|
|
|
|
|
|
// Enable debug text.
|
|
|
|
bgfx::setDebug(debug);
|
|
|
|
|
|
|
|
// Set view 0 clear state.
|
|
|
|
bgfx::setViewClear(0
|
2013-05-16 23:35:08 -04:00
|
|
|
, BGFX_CLEAR_COLOR_BIT | BGFX_CLEAR_DEPTH_BIT
|
|
|
|
, 0x303030ff
|
|
|
|
, 1.0f
|
|
|
|
, 0
|
|
|
|
);
|
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
FILE* file = fopen("font/droidsans.ttf", "rb");
|
|
|
|
uint32_t size = (uint32_t)fsize(file);
|
|
|
|
void* data = malloc(size);
|
|
|
|
size_t ignore = fread(data, 1, size, file);
|
|
|
|
BX_UNUSED(ignore);
|
|
|
|
fclose(file);
|
2013-05-16 23:35:08 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
imguiCreate(data, size);
|
2013-05-15 09:21:23 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
free(data);
|
2013-05-08 17:55:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
char* bigText = loadText( "text/sherlock_holmes_a_scandal_in_bohemia_arthur_conan_doyle.txt");
|
2013-05-15 09:21:23 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
// Init the text rendering system.
|
|
|
|
FontManager* fontManager = new FontManager(512);
|
|
|
|
TextBufferManager* textBufferManager = new TextBufferManager(fontManager);
|
2013-05-15 09:21:23 -04:00
|
|
|
|
2013-05-30 00:53:19 -04:00
|
|
|
TrueTypeHandle font_tt = loadTtf(fontManager, "font/special_elite.ttf");
|
2013-05-08 17:55:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
// Create a distance field font.
|
|
|
|
FontHandle base_distance_font = fontManager->createFontByPixelSize(font_tt, 0, 48, FONT_TYPE_DISTANCE);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
// Create a scaled down version of the same font (without adding anything to the atlas).
|
|
|
|
FontHandle scaled_font = fontManager->createScaledFontToPixelSize(base_distance_font, 14);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
|
|
|
TextLineMetrics metrics(fontManager->getFontInfo(scaled_font) );
|
2013-05-22 11:20:23 -04:00
|
|
|
uint32_t lineCount = metrics.getLineCount(bigText);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
float visibleLineCount = 20.0f;
|
|
|
|
|
|
|
|
const char* textBegin = 0;
|
|
|
|
const char* textEnd = 0;
|
|
|
|
metrics.getSubText(bigText, 0, (uint32_t)visibleLineCount, textBegin, textEnd);
|
|
|
|
|
|
|
|
TextBufferHandle scrollableBuffer = textBufferManager->createTextBuffer(FONT_TYPE_DISTANCE, TRANSIENT);
|
|
|
|
textBufferManager->setTextColor(scrollableBuffer, 0xFFFFFFFF);
|
|
|
|
|
|
|
|
textBufferManager->appendText(scrollableBuffer, scaled_font, textBegin, textEnd);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
MouseState mouseState;
|
|
|
|
int32_t scrollArea = 0;
|
|
|
|
while (!processEvents(width, height, debug, reset, &mouseState) )
|
2013-04-22 16:42:11 -04:00
|
|
|
{
|
2013-05-22 11:20:23 -04:00
|
|
|
imguiBeginFrame(mouseState.m_mx
|
|
|
|
, mouseState.m_my
|
|
|
|
, (mouseState.m_buttons[entry::MouseButton::Left ] ? IMGUI_MBUT_LEFT : 0)
|
|
|
|
| (mouseState.m_buttons[entry::MouseButton::Right ] ? IMGUI_MBUT_RIGHT : 0)
|
|
|
|
, 0
|
|
|
|
, width
|
|
|
|
, height
|
|
|
|
);
|
|
|
|
|
|
|
|
const int guiPanelWidth = 250;
|
|
|
|
const int guiPanelHeight = 200;
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
imguiBeginScrollArea("Text Area", width - guiPanelWidth - 10, 10, guiPanelWidth, guiPanelHeight, &scrollArea);
|
|
|
|
imguiSeparatorLine();
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
static float textScroll = 0.0f;
|
|
|
|
static float textRotation = 0.0f;
|
|
|
|
static float textScale = 1.0f;
|
|
|
|
static float textSize = 14.0f;
|
2013-05-24 01:07:54 -04:00
|
|
|
|
|
|
|
bool recomputeVisibleText = false;
|
2013-05-22 13:23:24 -04:00
|
|
|
recomputeVisibleText |= imguiSlider("Number of lines", &visibleLineCount, 1.0f, 177.0f , 1.0f);
|
2013-05-22 11:20:23 -04:00
|
|
|
if(imguiSlider("Font size", &textSize, 6.0f, 64.0f , 1.0f))
|
|
|
|
{
|
|
|
|
fontManager->destroyFont(scaled_font);
|
|
|
|
scaled_font = fontManager->createScaledFontToPixelSize(base_distance_font, (uint32_t) textSize);
|
2013-05-24 01:07:54 -04:00
|
|
|
metrics = TextLineMetrics(fontManager->getFontInfo(scaled_font) );
|
2013-05-22 11:20:23 -04:00
|
|
|
recomputeVisibleText = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
recomputeVisibleText |= imguiSlider("Scroll", &textScroll, 0.0f, (lineCount-visibleLineCount) , 1.0f);
|
|
|
|
imguiSlider("Rotate", &textRotation, 0.0f, (float) M_PI *2.0f , 0.1f);
|
2013-05-22 13:23:24 -04:00
|
|
|
recomputeVisibleText |= imguiSlider("Scale", &textScale, 0.1f, 10.0f , 0.1f);
|
2013-05-22 11:20:23 -04:00
|
|
|
|
|
|
|
if( recomputeVisibleText)
|
|
|
|
{
|
|
|
|
textBufferManager->clearTextBuffer(scrollableBuffer);
|
|
|
|
metrics.getSubText(bigText,(uint32_t)textScroll, (uint32_t)(textScroll+visibleLineCount), textBegin, textEnd);
|
|
|
|
textBufferManager->appendText(scrollableBuffer, scaled_font, textBegin, textEnd);
|
|
|
|
}
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
imguiEndScrollArea();
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
imguiEndFrame();
|
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
// Set view 0 default viewport.
|
|
|
|
bgfx::setViewRect(0, 0, 0, width, height);
|
|
|
|
|
|
|
|
// 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::submit(0);
|
|
|
|
|
2013-04-23 08:32:31 -04:00
|
|
|
int64_t now = bx::getHPCounter();
|
|
|
|
static int64_t last = now;
|
|
|
|
const int64_t frameTime = now - last;
|
|
|
|
last = now;
|
|
|
|
const double freq = double(bx::getHPFrequency() );
|
2013-05-15 09:21:23 -04:00
|
|
|
const double toMs = 1000.0 / freq;
|
2013-04-23 08:32:31 -04:00
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
// Use debug font to print information about this example.
|
|
|
|
bgfx::dbgTextClear();
|
2013-04-23 11:23:00 -04:00
|
|
|
bgfx::dbgTextPrintf(0, 1, 0x4f, "bgfx/examples/11-fontsdf");
|
|
|
|
bgfx::dbgTextPrintf(0, 2, 0x6f, "Description: Use a single distance field font to render text of various size.");
|
2013-05-15 09:21:23 -04:00
|
|
|
bgfx::dbgTextPrintf(0, 3, 0x0f, "Frame: % 7.3f[ms]", double(frameTime) * toMs);
|
2013-04-23 08:32:31 -04:00
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
float at[3] = { 0, 0, 0.0f };
|
|
|
|
float eye[3] = {0, 0, -1.0f };
|
2013-05-08 17:55:54 -04:00
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
float view[16];
|
|
|
|
float proj[16];
|
2013-05-08 17:55:54 -04:00
|
|
|
mtxLookAt(view, eye, at);
|
2013-04-22 16:42:11 -04:00
|
|
|
float centering = 0.5f;
|
2013-05-16 23:37:54 -04:00
|
|
|
|
2013-05-16 23:35:08 -04:00
|
|
|
// Setup a top-left ortho matrix for screen space drawing.
|
2013-05-15 09:21:23 -04:00
|
|
|
mtxOrtho(proj, centering, width + centering, height + centering, centering, -1.0f, 1.0f);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
// Set view and projection matrix for view 0.
|
2013-05-15 09:21:23 -04:00
|
|
|
bgfx::setViewTransform(0, view, proj);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
//very crude approximation :(
|
|
|
|
float textAreaWidth = 0.5f * 66.0f * fontManager->getFontInfo(scaled_font).maxAdvanceWidth;
|
|
|
|
|
|
|
|
float textRotMat[16];
|
|
|
|
float textCenterMat[16];
|
|
|
|
float textScaleMat[16];
|
|
|
|
float screenCenterMat[16];
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
mtxRotateZ(textRotMat, textRotation);
|
|
|
|
mtxTranslate(textCenterMat, -(textAreaWidth * 0.5f), (-visibleLineCount)*metrics.getLineHeight()*0.5f, 0);
|
|
|
|
mtxScale(textScaleMat, textScale, textScale, 1.0f);
|
|
|
|
mtxTranslate(screenCenterMat, ( (width) * 0.5f), ( (height) * 0.5f), 0);
|
|
|
|
|
|
|
|
//first translate to text center, then scale, then rotate
|
|
|
|
float tmpMat[16];
|
|
|
|
mtxMul(tmpMat, textCenterMat, textRotMat);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
float tmpMat2[16];
|
|
|
|
mtxMul(tmpMat2, tmpMat, textScaleMat);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
float tmpMat3[16];
|
|
|
|
mtxMul(tmpMat3, tmpMat2, screenCenterMat);
|
2013-05-15 09:21:23 -04:00
|
|
|
|
2013-05-08 17:55:54 -04:00
|
|
|
// Set model matrix for rendering.
|
2013-05-22 11:20:23 -04:00
|
|
|
bgfx::setTransform(tmpMat3);
|
2013-05-24 01:07:54 -04:00
|
|
|
|
2013-05-16 23:35:08 -04:00
|
|
|
// Draw your text.
|
2013-05-22 11:20:23 -04:00
|
|
|
textBufferManager->submitTextBuffer(scrollableBuffer, 0);
|
2013-04-22 16:42:11 -04:00
|
|
|
|
2013-05-15 09:21:23 -04:00
|
|
|
// Advance to next frame. Rendering thread will be kicked to
|
2013-04-22 16:42:11 -04:00
|
|
|
// process submitted rendering primitives.
|
|
|
|
bgfx::frame();
|
|
|
|
}
|
|
|
|
|
2013-05-30 00:53:19 -04:00
|
|
|
fontManager->destroyTtf(font_tt);
|
2013-05-16 23:35:08 -04:00
|
|
|
// Destroy the fonts.
|
2013-05-22 11:20:23 -04:00
|
|
|
fontManager->destroyFont(base_distance_font);
|
|
|
|
fontManager->destroyFont(scaled_font);
|
2013-05-15 09:21:23 -04:00
|
|
|
|
2013-05-22 11:20:23 -04:00
|
|
|
textBufferManager->destroyTextBuffer(scrollableBuffer);
|
2013-05-07 09:51:19 -04:00
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
delete textBufferManager;
|
2013-05-15 09:21:23 -04:00
|
|
|
delete fontManager;
|
2013-05-16 23:35:08 -04:00
|
|
|
|
2013-04-22 16:42:11 -04:00
|
|
|
// Shutdown bgfx.
|
2013-05-15 09:21:23 -04:00
|
|
|
bgfx::shutdown();
|
2013-04-22 16:42:11 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|