bgfx/tools/texturev/texturev.cpp

1325 lines
30 KiB
C++
Raw Normal View History

2016-04-22 08:12:35 +03:00
/*
2017-01-01 11:18:41 +03:00
* Copyright 2011-2017 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-04-22 08:12:35 +03:00
*/
#include "common.h"
#include <bgfx/bgfx.h>
#include <bx/commandline.h>
2016-04-22 08:12:35 +03:00
#include <bx/os.h>
#include <bx/string.h>
#include <bx/uint32_t.h>
2017-06-03 23:18:12 +03:00
#include <bx/fpumath.h>
#include <bx/easing.h>
2016-04-22 08:12:35 +03:00
#include <entry/entry.h>
#include <entry/input.h>
#include <entry/cmd.h>
2016-04-24 18:49:49 +03:00
#include <imgui/imgui.h>
2016-04-22 08:12:35 +03:00
#include <bgfx_utils.h>
2016-04-23 21:07:20 +03:00
#include <dirent.h>
2016-04-22 08:12:35 +03:00
#include <bx/crtimpl.h>
2016-04-23 21:07:20 +03:00
#include <tinystl/allocator.h>
#include <tinystl/vector.h>
#include <string>
namespace stl = tinystl;
2017-04-04 08:42:27 +03:00
#include <bimg/decode.h>
2016-12-06 07:59:32 +03:00
#include <bgfx/embedded_shader.h>
#include "vs_texture.bin.h"
2017-06-20 23:31:22 +03:00
#include "vs_texture_cube.bin.h"
2016-12-06 07:59:32 +03:00
#include "fs_texture.bin.h"
#include "fs_texture_array.bin.h"
#include "fs_texture_cube.bin.h"
#include "fs_texture_sdf.bin.h"
2017-06-20 23:31:22 +03:00
#include "fs_texture_3d.bin.h"
2016-12-06 07:59:32 +03:00
#define BACKGROUND_VIEW_ID 0
#define IMAGE_VIEW_ID 1
2017-05-11 06:55:31 +03:00
#define BGFX_TEXTUREV_VERSION_MAJOR 1
#define BGFX_TEXTUREV_VERSION_MINOR 0
2016-12-06 07:59:32 +03:00
static const bgfx::EmbeddedShader s_embeddedShaders[] =
{
BGFX_EMBEDDED_SHADER(vs_texture),
BGFX_EMBEDDED_SHADER(fs_texture),
BGFX_EMBEDDED_SHADER(fs_texture_array),
BGFX_EMBEDDED_SHADER(vs_texture_cube),
BGFX_EMBEDDED_SHADER(fs_texture_cube),
BGFX_EMBEDDED_SHADER(fs_texture_sdf),
2017-06-20 23:31:22 +03:00
BGFX_EMBEDDED_SHADER(fs_texture_3d),
2016-12-06 07:59:32 +03:00
BGFX_EMBEDDED_SHADER_END()
};
static const char* s_supportedExt[] =
{
2016-06-17 08:10:33 +03:00
"bmp",
"dds",
"exr",
2016-12-19 07:50:15 +03:00
"gif",
"jpg",
"jpeg",
"hdr",
"ktx",
"png",
2016-06-18 05:19:51 +03:00
"psd",
"pvr",
"tga",
};
2016-04-22 08:12:35 +03:00
struct Binding
{
enum Enum
{
App,
View,
Count
};
};
static const InputBinding s_bindingApp[] =
{
2016-04-24 18:49:49 +03:00
{ entry::Key::Esc, entry::Modifier::None, 1, NULL, "exit" },
2017-05-27 19:40:25 +03:00
{ entry::Key::KeyQ, entry::Modifier::None, 1, NULL, "exit" },
2016-04-24 18:49:49 +03:00
{ entry::Key::KeyF, entry::Modifier::None, 1, NULL, "graphics fullscreen" },
2016-04-22 08:12:35 +03:00
INPUT_BINDING_END
};
static const InputBinding s_bindingView[] =
{
2017-05-26 01:12:07 +03:00
{ entry::Key::Comma, entry::Modifier::None, 1, NULL, "view mip prev" },
{ entry::Key::Period, entry::Modifier::None, 1, NULL, "view mip next" },
{ entry::Key::Comma, entry::Modifier::LeftShift, 1, NULL, "view mip" },
{ entry::Key::Comma, entry::Modifier::RightShift, 1, NULL, "view mip" },
2016-04-23 21:07:20 +03:00
2017-05-26 01:12:07 +03:00
{ entry::Key::Slash, entry::Modifier::None, 1, NULL, "view filter" },
2016-04-22 08:12:35 +03:00
{ entry::Key::Key1, entry::Modifier::None, 1, NULL, "view zoom 1.0\n"
"view fit\n" },
2017-06-03 23:18:12 +03:00
{ entry::Key::Key0, entry::Modifier::None, 1, NULL, "view zoom 1.0\n"
"view rotate 0\n"
"view cubemap\n"
"view pan\n" },
2017-05-26 01:12:07 +03:00
{ entry::Key::Plus, entry::Modifier::None, 1, NULL, "view zoom +0.1" },
{ entry::Key::Minus, entry::Modifier::None, 1, NULL, "view zoom -0.1" },
2016-04-22 08:12:35 +03:00
2017-06-03 23:18:12 +03:00
{ entry::Key::KeyZ, entry::Modifier::None, 1, NULL, "view rotate -90" },
{ entry::Key::KeyZ, entry::Modifier::LeftShift, 1, NULL, "view rotate +90" },
{ entry::Key::Up, entry::Modifier::None, 1, NULL, "view pan\n"
"view file-up" },
{ entry::Key::Down, entry::Modifier::None, 1, NULL, "view pan\n"
"view file-down" },
{ entry::Key::PageUp, entry::Modifier::None, 1, NULL, "view pan\n"
"view file-pgup" },
{ entry::Key::PageDown, entry::Modifier::None, 1, NULL, "view pan\n"
"view file-pgdown" },
2016-04-22 08:12:35 +03:00
2017-05-26 01:12:07 +03:00
{ entry::Key::Left, entry::Modifier::None, 1, NULL, "view layer prev" },
{ entry::Key::Right, entry::Modifier::None, 1, NULL, "view layer next" },
2016-08-24 08:06:50 +03:00
2017-05-26 01:12:07 +03:00
{ entry::Key::KeyR, entry::Modifier::None, 1, NULL, "view rgb r" },
{ entry::Key::KeyG, entry::Modifier::None, 1, NULL, "view rgb g" },
{ entry::Key::KeyB, entry::Modifier::None, 1, NULL, "view rgb b" },
{ entry::Key::KeyA, entry::Modifier::None, 1, NULL, "view rgb a" },
2017-05-26 01:12:07 +03:00
{ entry::Key::KeyH, entry::Modifier::None, 1, NULL, "view help" },
2016-04-24 18:49:49 +03:00
2017-05-26 01:12:07 +03:00
{ entry::Key::KeyS, entry::Modifier::None, 1, NULL, "view sdf" },
2016-04-22 08:12:35 +03:00
INPUT_BINDING_END
};
static const char* s_bindingName[] =
{
"App",
"View",
};
BX_STATIC_ASSERT(Binding::Count == BX_COUNTOF(s_bindingName) );
static const InputBinding* s_binding[] =
{
s_bindingApp,
s_bindingView,
};
BX_STATIC_ASSERT(Binding::Count == BX_COUNTOF(s_binding) );
struct View
{
View()
2016-04-23 21:07:20 +03:00
: m_fileIndex(0)
, m_scaleFn(0)
2016-04-22 08:12:35 +03:00
, m_mip(0)
2016-08-24 08:06:50 +03:00
, m_layer(0)
, m_abgr(UINT32_MAX)
2017-05-26 01:12:07 +03:00
, m_posx(0.0f)
, m_posy(0.0f)
, m_angx(0.0f)
, m_angy(0.0f)
2016-04-22 08:12:35 +03:00
, m_zoom(1.0f)
2017-06-03 23:18:12 +03:00
, m_angle(0.0f)
2016-04-22 08:12:35 +03:00
, m_filter(true)
, m_fit(true)
, m_alpha(false)
2016-04-24 18:49:49 +03:00
, m_help(false)
, m_sdf(false)
2016-04-22 08:12:35 +03:00
{
}
~View()
{
}
int32_t cmd(int32_t _argc, char const* const* _argv)
{
if (_argc >= 2)
{
2017-05-26 01:12:07 +03:00
if (0 == bx::strCmp(_argv[1], "mip") )
2016-04-22 08:12:35 +03:00
{
if (_argc >= 3)
{
uint32_t mip = m_mip;
2017-05-26 01:12:07 +03:00
if (0 == bx::strCmp(_argv[2], "next") )
2016-04-22 08:12:35 +03:00
{
++mip;
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[2], "prev") )
2016-04-22 08:12:35 +03:00
{
--mip;
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[2], "last") )
2016-04-22 08:12:35 +03:00
{
mip = INT32_MAX;
}
else
{
mip = atoi(_argv[2]);
}
m_mip = bx::uint32_iclamp(mip, 0, m_info.numMips-1);
}
else
{
m_mip = 0;
}
}
2017-05-26 01:12:07 +03:00
if (0 == bx::strCmp(_argv[1], "layer") )
2016-08-24 08:06:50 +03:00
{
if (_argc >= 3)
{
uint32_t layer = m_layer;
2017-05-26 01:12:07 +03:00
if (0 == bx::strCmp(_argv[2], "next") )
2016-08-24 08:06:50 +03:00
{
++layer;
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[2], "prev") )
2016-08-24 08:06:50 +03:00
{
--layer;
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[2], "last") )
2016-08-24 08:06:50 +03:00
{
layer = INT32_MAX;
}
else
{
layer = atoi(_argv[2]);
}
m_layer = bx::uint32_iclamp(layer, 0, m_info.numLayers-1);
}
else
{
m_layer = 0;
}
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "pan") )
{
if (_argc >= 3)
{
if (_argc >= 4)
{
2017-06-18 03:03:02 +03:00
float yy;
bx::fromString(&yy, _argv[3]);
2017-05-26 01:12:07 +03:00
if (_argv[3][0] == '+'
|| _argv[3][0] == '-')
{
m_posy += yy;
}
else
{
m_posy = yy;
}
}
2017-06-18 03:03:02 +03:00
float xx;
bx::fromString(&xx, _argv[2]);
2017-05-26 01:12:07 +03:00
if (_argv[2][0] == '+'
|| _argv[2][0] == '-')
{
m_posx += xx;
}
else
{
m_posx = xx;
}
}
else
{
m_posx = 0.0f;
m_posy = 0.0f;
}
}
else if (0 == bx::strCmp(_argv[1], "cubemap") )
{
if (_argc >= 3)
{
if (_argc >= 4)
{
float yy;
bx::fromString(&yy, _argv[3]);
if (_argv[3][0] == '+'
|| _argv[3][0] == '-')
{
m_angy += bx::toRad(yy);
}
else
{
m_angy = bx::toRad(yy);
}
}
float xx;
bx::fromString(&xx, _argv[2]);
if (_argv[2][0] == '+'
|| _argv[2][0] == '-')
{
m_angx += bx::toRad(xx);
}
else
{
m_angx = bx::toRad(xx);
}
}
else
{
m_angx = 0.0f;
m_angy = 0.0f;
}
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "zoom") )
2016-04-22 08:12:35 +03:00
{
if (_argc >= 3)
{
2017-06-18 03:03:02 +03:00
float zoom;
bx::fromString(&zoom, _argv[2]);
2016-04-22 08:12:35 +03:00
if (_argv[2][0] == '+'
|| _argv[2][0] == '-')
{
m_zoom += zoom;
}
else
{
m_zoom = zoom;
}
2017-05-25 07:12:30 +03:00
m_zoom = bx::fclamp(m_zoom, 0.01f, 10.0f);
2016-04-22 08:12:35 +03:00
}
else
{
m_zoom = 1.0f;
}
}
2017-06-03 23:18:12 +03:00
else if (0 == bx::strCmp(_argv[1], "rotate") )
{
if (_argc >= 3)
{
2017-06-18 03:03:02 +03:00
float angle;
bx::fromString(&angle, _argv[2]);
2017-06-03 23:18:12 +03:00
if (_argv[2][0] == '+'
|| _argv[2][0] == '-')
{
m_angle += bx::toRad(angle);
}
else
{
m_angle = bx::toRad(angle);
}
2017-06-10 06:08:52 +03:00
m_angle = bx::fwrap(m_angle, bx::kPi*2.0f);
2017-06-03 23:18:12 +03:00
}
else
{
m_angle = 0.0f;
}
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "filter") )
2016-04-22 08:12:35 +03:00
{
if (_argc >= 3)
{
m_filter = bx::toBool(_argv[2]);
}
else
{
m_filter ^= true;
}
}
else if (0 == bx::strCmp(_argv[1], "fit") )
{
if (_argc >= 3)
{
m_fit = bx::toBool(_argv[2]);
}
else
{
m_fit ^= true;
}
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "file-up") )
2016-04-23 21:07:20 +03:00
{
m_fileIndex = bx::uint32_satsub(m_fileIndex, 1);
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "file-down") )
2016-04-23 21:07:20 +03:00
{
uint32_t numFiles = bx::uint32_satsub(uint32_t(m_fileList.size() ), 1);
++m_fileIndex;
m_fileIndex = bx::uint32_min(m_fileIndex, numFiles);
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "rgb") )
{
if (_argc >= 3)
{
if (_argv[2][0] == 'r')
{
m_abgr ^= 0x000000ff;
}
else if (_argv[2][0] == 'g')
{
m_abgr ^= 0x0000ff00;
}
else if (_argv[2][0] == 'b')
{
m_abgr ^= 0x00ff0000;
}
else if (_argv[2][0] == 'a')
{
m_alpha ^= true;
}
}
else
{
m_abgr = UINT32_MAX;
m_alpha = false;
}
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "sdf") )
{
m_sdf ^= true;
}
2017-05-26 01:12:07 +03:00
else if (0 == bx::strCmp(_argv[1], "help") )
2016-04-24 18:49:49 +03:00
{
m_help ^= true;
}
2016-04-22 08:12:35 +03:00
}
return 0;
}
2016-04-23 21:07:20 +03:00
void updateFileList(const char* _path, const char* _fileName = "")
{
std::string path = _path;
DIR* dir = opendir(_path);
if (NULL == dir)
{
path = ".";
}
dir = opendir(path.c_str() );
if (NULL != dir)
{
for (dirent* item = readdir(dir); NULL != item; item = readdir(dir) )
{
if (0 == (item->d_type & DT_DIR) )
{
2017-04-23 00:47:02 +03:00
const char* ext = bx::strRFind(item->d_name, '.');
2016-04-23 21:07:20 +03:00
if (NULL != ext)
{
ext += 1;
bool supported = false;
for (uint32_t ii = 0; ii < BX_COUNTOF(s_supportedExt); ++ii)
{
2017-04-23 00:47:02 +03:00
if (0 == bx::strCmpI(ext, s_supportedExt[ii]) )
{
supported = true;
break;
}
}
if (supported)
2016-04-23 21:07:20 +03:00
{
2017-05-26 01:12:07 +03:00
if (0 == bx::strCmp(_fileName, item->d_name) )
2016-04-23 21:07:20 +03:00
{
m_fileIndex = uint32_t(m_fileList.size() );
}
std::string name = path;
2016-04-30 21:08:56 +03:00
char ch = name[name.size()-1];
2016-04-23 21:07:20 +03:00
name += '/' == ch || '\\' == ch ? "" : "/";
name += item->d_name;
m_fileList.push_back(name);
}
}
}
}
closedir(dir);
}
}
typedef stl::vector<std::string> FileList;
FileList m_fileList;
2016-04-22 08:12:35 +03:00
bgfx::TextureInfo m_info;
2016-04-23 21:07:20 +03:00
uint32_t m_fileIndex;
2016-04-22 08:12:35 +03:00
uint32_t m_scaleFn;
uint32_t m_mip;
2016-08-24 08:06:50 +03:00
uint32_t m_layer;
uint32_t m_abgr;
2017-05-26 01:12:07 +03:00
float m_posx;
float m_posy;
float m_angx;
float m_angy;
2016-04-22 08:12:35 +03:00
float m_zoom;
2017-06-03 23:18:12 +03:00
float m_angle;
2016-04-22 08:12:35 +03:00
bool m_filter;
bool m_fit;
bool m_alpha;
2016-04-24 18:49:49 +03:00
bool m_help;
bool m_sdf;
2016-04-22 08:12:35 +03:00
};
int cmdView(CmdContext* /*_context*/, void* _userData, int _argc, char const* const* _argv)
{
View* view = static_cast<View*>(_userData);
return view->cmd(_argc, _argv);
}
struct PosUvColorVertex
{
float m_x;
float m_y;
float m_u;
float m_v;
uint32_t m_abgr;
static void init()
{
ms_decl
.begin()
.add(bgfx::Attrib::Position, 2, bgfx::AttribType::Float)
.add(bgfx::Attrib::TexCoord0, 2, bgfx::AttribType::Float)
.add(bgfx::Attrib::Color0, 4, bgfx::AttribType::Uint8, true)
.end();
}
static bgfx::VertexDecl ms_decl;
};
bgfx::VertexDecl PosUvColorVertex::ms_decl;
bool screenQuad(int32_t _x, int32_t _y, int32_t _width, uint32_t _height, uint32_t _abgr, float _maxu = 1.0f, float _maxv = 1.0f)
2016-04-22 08:12:35 +03:00
{
if (6 == bgfx::getAvailTransientVertexBuffer(6, PosUvColorVertex::ms_decl) )
2016-04-22 08:12:35 +03:00
{
bgfx::TransientVertexBuffer vb;
bgfx::allocTransientVertexBuffer(&vb, 6, PosUvColorVertex::ms_decl);
PosUvColorVertex* vertex = (PosUvColorVertex*)vb.data;
const float widthf = float(_width);
const float heightf = float(_height);
const float minx = float(_x);
const float miny = float(_y);
const float maxx = minx+widthf;
const float maxy = miny+heightf;
const float minu = 0.0f;
const float maxu = _maxu;
const float minv = 0.0f;
const float maxv = _maxv;
2016-04-22 08:12:35 +03:00
vertex[0].m_x = minx;
vertex[0].m_y = miny;
vertex[0].m_u = minu;
vertex[0].m_v = minv;
vertex[1].m_x = maxx;
vertex[1].m_y = miny;
vertex[1].m_u = maxu;
vertex[1].m_v = minv;
vertex[2].m_x = maxx;
vertex[2].m_y = maxy;
vertex[2].m_u = maxu;
vertex[2].m_v = maxv;
vertex[3].m_x = maxx;
vertex[3].m_y = maxy;
vertex[3].m_u = maxu;
vertex[3].m_v = maxv;
vertex[4].m_x = minx;
vertex[4].m_y = maxy;
vertex[4].m_u = minu;
vertex[4].m_v = maxv;
vertex[5].m_x = minx;
vertex[5].m_y = miny;
vertex[5].m_u = minu;
vertex[5].m_v = minv;
vertex[0].m_abgr = _abgr;
vertex[1].m_abgr = _abgr;
vertex[2].m_abgr = _abgr;
vertex[3].m_abgr = _abgr;
vertex[4].m_abgr = _abgr;
vertex[5].m_abgr = _abgr;
2016-04-22 08:12:35 +03:00
2017-05-14 21:48:59 +03:00
bgfx::setVertexBuffer(0, &vb);
2016-04-22 08:12:35 +03:00
return true;
}
return false;
}
2017-06-03 23:18:12 +03:00
template<bx::LerpFn lerpT, bx::EaseFn easeT>
struct InterpolatorT
2016-04-22 08:12:35 +03:00
{
float from;
float to;
float duration;
int64_t offset;
2017-06-03 23:18:12 +03:00
InterpolatorT(float _value)
2016-04-22 08:12:35 +03:00
{
reset(_value);
}
void reset(float _value)
{
from = _value;
to = _value;
duration = 0.0;
offset = bx::getHPCounter();
}
void set(float _value, float _duration)
{
if (_value != to)
{
from = getValue();
to = _value;
duration = _duration;
offset = bx::getHPCounter();
}
}
float getValue()
{
if (duration > 0.0)
{
const double freq = double(bx::getHPFrequency() );
int64_t now = bx::getHPCounter();
float time = (float)(double(now - offset) / freq);
float lerp = bx::fclamp(time, 0.0, duration) / duration;
2017-06-03 23:18:12 +03:00
return lerpT(from, to, easeT(lerp) );
2016-04-22 08:12:35 +03:00
}
return to;
}
};
2017-06-03 23:18:12 +03:00
typedef InterpolatorT<bx::flerp, bx::easeInOutQuad> Interpolator;
typedef InterpolatorT<bx::angleLerp, bx::easeInOutCubic> InterpolatorAngle;
2017-06-04 01:38:03 +03:00
void keyBindingHelp(const char* _bindings, const char* _description)
{
ImGui::TextColored(ImVec4(1.0f, 1.0f, 0.0f, 1.0f), _bindings);
ImGui::SameLine(100);
ImGui::Text(_description);
}
void associate()
{
#if BX_PLATFORM_WINDOWS
std::string str;
char exec[MAX_PATH];
GetModuleFileNameA(GetModuleHandleA(NULL), exec, MAX_PATH);
2016-05-06 20:55:41 +03:00
std::string strExec = bx::replaceAll<std::string>(exec, "\\", "\\\\");
std::string value;
bx::stringPrintf(value, "@=\"\\\"%s\\\" \\\"%%1\\\"\"\r\n\r\n", strExec.c_str() );
str += "Windows Registry Editor Version 5.00\r\n\r\n";
str += "[HKEY_CLASSES_ROOT\\texturev\\shell\\open\\command]\r\n";
str += value;
str += "[HKEY_CLASSES_ROOT\\Applications\\texturev.exe\\shell\\open\\command]\r\n";
str += value;
for (uint32_t ii = 0; ii < BX_COUNTOF(s_supportedExt); ++ii)
{
const char* ext = s_supportedExt[ii];
bx::stringPrintf(str, "[-HKEY_CLASSES_ROOT\\.%s]\r\n\r\n", ext);
bx::stringPrintf(str, "[-HKEY_CURRENT_USER\\Software\\Classes\\.%s]\r\n\r\n", ext);
bx::stringPrintf(str, "[HKEY_CLASSES_ROOT\\.%s]\r\n@=\"texturev\"\r\n\r\n", ext);
bx::stringPrintf(str, "[HKEY_CURRENT_USER\\Software\\Classes\\.%s]\r\n@=\"texturev\"\r\n\r\n", ext);
}
char temp[MAX_PATH];
GetTempPathA(MAX_PATH, temp);
2017-05-26 07:31:44 +03:00
bx::strCat(temp, MAX_PATH, "\\texturev.reg");
2017-06-12 07:01:38 +03:00
bx::FileWriter writer;
bx::Error err;
if (bx::open(&writer, temp, false, &err) )
{
2016-08-24 23:16:04 +03:00
bx::write(&writer, str.c_str(), uint32_t(str.length()), &err);
bx::close(&writer);
if (err.isOk() )
{
std::string cmd;
bx::stringPrintf(cmd, "regedit.exe /s %s", temp);
bx::ProcessReader reader;
if (bx::open(&reader, cmd.c_str(), &err) )
{
bx::close(&reader);
}
}
}
#elif BX_PLATFORM_LINUX
std::string str;
str += "#/bin/bash\n\n";
for (uint32_t ii = 0; ii < BX_COUNTOF(s_supportedExt); ++ii)
{
const char* ext = s_supportedExt[ii];
bx::stringPrintf(str, "xdg-mime default texturev.desktop image/%s\n", ext);
}
str += "\n";
2017-06-12 07:01:38 +03:00
bx::FileWriter writer;
bx::Error err;
if (bx::open(&writer, "/tmp/texturev.sh", false, &err) )
{
2016-08-24 23:16:04 +03:00
bx::write(&writer, str.c_str(), uint32_t(str.length()), &err);
bx::close(&writer);
if (err.isOk() )
{
bx::ProcessReader reader;
if (bx::open(&reader, "/bin/bash /tmp/texturev.sh", &err) )
{
bx::close(&reader);
}
}
}
#endif // BX_PLATFORM_WINDOWS
}
2017-05-11 06:55:31 +03:00
void help(const char* _error = NULL)
{
if (NULL != _error)
{
fprintf(stderr, "Error:\n%s\n\n", _error);
}
fprintf(stderr
, "texturev, bgfx texture viewer tool, version %d.%d.%d.\n"
"Copyright 2011-2017 Branimir Karadzic. All rights reserved.\n"
"License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n\n"
, BGFX_TEXTUREV_VERSION_MAJOR
, BGFX_TEXTUREV_VERSION_MINOR
, BGFX_API_VERSION
);
fprintf(stderr
, "Usage: texturev <file path>\n"
"\n"
"Supported input file types:\n"
);
for (uint32_t ii = 0; ii < BX_COUNTOF(s_supportedExt); ++ii)
{
fprintf(stderr, " *.%s\n", s_supportedExt[ii]);
}
fprintf(stderr
, "\n"
"Options:\n"
" -h, --help Help.\n"
" -v, --version Version information only.\n"
" --associate Associate file extensions with texturev.\n"
"\n"
"For additional information, see https://github.com/bkaradzic/bgfx\n"
);
}
2016-04-22 08:12:35 +03:00
int _main_(int _argc, char** _argv)
{
bx::CommandLine cmdLine(_argc, _argv);
2017-05-11 06:55:31 +03:00
if (cmdLine.hasArg('v', "version") )
{
fprintf(stderr
, "texturev, bgfx texture viewer tool, version %d.%d.%d.\n"
, BGFX_TEXTUREV_VERSION_MAJOR
, BGFX_TEXTUREV_VERSION_MINOR
, BGFX_API_VERSION
);
2017-06-21 07:42:23 +03:00
return bx::kExitSuccess;
2017-05-11 06:55:31 +03:00
}
if (cmdLine.hasArg('h', "help") )
{
help();
2017-06-21 07:42:23 +03:00
return bx::kExitFailure;
}
else if (cmdLine.hasArg("associate") )
{
associate();
2017-06-21 07:42:23 +03:00
return bx::kExitFailure;
}
2016-04-22 08:12:35 +03:00
uint32_t width = 1280;
uint32_t height = 720;
uint32_t debug = BGFX_DEBUG_TEXT;
uint32_t reset = BGFX_RESET_VSYNC;
inputAddBindings(s_bindingName[Binding::App], s_binding[Binding::App]);
inputAddBindings(s_bindingName[Binding::View], s_binding[Binding::View]);
View view;
cmdAdd("view", cmdView, &view);
bgfx::init();
bgfx::reset(width, height, reset);
// Set view 0 clear state.
bgfx::setViewClear(BACKGROUND_VIEW_ID
2016-04-22 08:12:35 +03:00
, BGFX_CLEAR_COLOR|BGFX_CLEAR_DEPTH
, 0x000000ff
2016-04-22 08:12:35 +03:00
, 1.0f
, 0
);
2016-04-24 18:49:49 +03:00
imguiCreate();
2016-04-22 08:12:35 +03:00
PosUvColorVertex::init();
2017-06-13 08:43:07 +03:00
const bgfx::Caps* caps = bgfx::getCaps();
bgfx::RendererType::Enum type = caps->rendererType;
2016-04-22 08:12:35 +03:00
2016-12-06 07:59:32 +03:00
bgfx::ShaderHandle vsTexture = bgfx::createEmbeddedShader(s_embeddedShaders, type, "vs_texture");
bgfx::ShaderHandle fsTexture = bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture");
bgfx::ShaderHandle fsTextureArray = bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_array");
2016-08-24 08:06:50 +03:00
2016-04-22 08:12:35 +03:00
bgfx::ProgramHandle textureProgram = bgfx::createProgram(
2016-08-24 08:06:50 +03:00
vsTexture
2016-08-24 08:57:16 +03:00
, fsTexture
2016-04-22 08:12:35 +03:00
, true
);
2016-08-24 08:06:50 +03:00
bgfx::ProgramHandle textureArrayProgram = bgfx::createProgram(
vsTexture
2016-12-06 07:59:32 +03:00
, bgfx::isValid(fsTextureArray)
? fsTextureArray
2016-08-24 08:57:16 +03:00
: fsTexture
2016-08-24 08:06:50 +03:00
, true
);
2016-04-22 08:12:35 +03:00
bgfx::ProgramHandle textureCubeProgram = bgfx::createProgram(
2016-12-06 07:59:32 +03:00
bgfx::createEmbeddedShader(s_embeddedShaders, type, "vs_texture_cube")
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_cube")
2016-04-22 08:12:35 +03:00
, true
);
2017-05-30 00:09:48 +03:00
bgfx::ProgramHandle textureSdfProgram = bgfx::createProgram(
vsTexture
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_sdf")
, true);
2017-06-20 23:31:22 +03:00
bgfx::ProgramHandle texture3DProgram = bgfx::createProgram(
vsTexture
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_3d")
, true);
2016-04-22 08:12:35 +03:00
bgfx::UniformHandle s_texColor = bgfx::createUniform("s_texColor", bgfx::UniformType::Int1);
bgfx::UniformHandle u_mtx = bgfx::createUniform("u_mtx", bgfx::UniformType::Mat4);
bgfx::UniformHandle u_params = bgfx::createUniform("u_params", bgfx::UniformType::Vec4);
const uint32_t checkerBoardSize = 64;
bgfx::TextureHandle checkerBoard;
{
const bgfx::Memory* mem = bgfx::alloc(checkerBoardSize*checkerBoardSize*4);
bimg::imageCheckerboard(mem->data, checkerBoardSize, checkerBoardSize, 8, 0xff8e8e8e, 0xff5d5d5d);
checkerBoard = bgfx::createTexture2D(checkerBoardSize, checkerBoardSize, false, 1
, bgfx::TextureFormat::BGRA8
, 0
| BGFX_TEXTURE_MIN_POINT
| BGFX_TEXTURE_MIP_POINT
| BGFX_TEXTURE_MAG_POINT
, mem
);
}
2016-04-22 08:12:35 +03:00
float speed = 0.37f;
float time = 0.0f;
2016-08-24 08:06:50 +03:00
Interpolator mip(0.0f);
Interpolator layer(0.0f);
Interpolator zoom(1.0f);
Interpolator scale(1.0f);
2017-05-26 01:12:07 +03:00
Interpolator posx(0.0f);
Interpolator posy(0.0f);
InterpolatorAngle angle(0.0f);
InterpolatorAngle angx(0.0f);
InterpolatorAngle angy(0.0f);
2016-04-22 08:12:35 +03:00
2016-04-24 18:49:49 +03:00
const char* filePath = _argc < 2 ? "" : _argv[1];
2016-04-23 21:07:20 +03:00
bool directory = false;
bx::FileInfo fi;
bx::stat(filePath, fi);
directory = bx::FileInfo::Directory == fi.m_type;
std::string path = filePath;
if (!directory)
{
const char* fileName = directory ? filePath : bx::baseName(filePath);
path.assign(filePath, fileName);
view.updateFileList(path.c_str(), fileName);
}
else
{
view.updateFileList(path.c_str() );
}
2016-04-22 08:12:35 +03:00
2017-06-21 07:42:23 +03:00
int exitcode = bx::kExitSuccess;
2016-04-23 21:07:20 +03:00
bgfx::TextureHandle texture = BGFX_INVALID_HANDLE;
2016-04-22 08:12:35 +03:00
2016-04-23 21:07:20 +03:00
if (view.m_fileList.empty() )
2016-04-22 08:12:35 +03:00
{
2017-06-21 07:42:23 +03:00
exitcode = bx::kExitFailure;
2016-04-24 18:49:49 +03:00
if (2 > _argc)
{
help("File path is not specified.");
}
else
{
fprintf(stderr, "Unable to load '%s' texture.\n", filePath);
}
2016-04-22 08:12:35 +03:00
}
else
{
2016-04-23 21:07:20 +03:00
uint32_t fileIndex = 0;
2017-05-26 01:12:07 +03:00
bool dragging = false;
2016-04-23 21:07:20 +03:00
2017-05-25 07:12:30 +03:00
entry::MouseState mouseStatePrev;
2016-04-22 08:12:35 +03:00
entry::MouseState mouseState;
while (!entry::processEvents(width, height, debug, reset, &mouseState) )
{
2016-04-24 18:49:49 +03:00
imguiBeginFrame(mouseState.m_mx
2017-05-25 07:12:30 +03:00
, mouseState.m_my
2016-04-24 18:49:49 +03:00
, (mouseState.m_buttons[entry::MouseButton::Left ] ? IMGUI_MBUT_LEFT : 0)
| (mouseState.m_buttons[entry::MouseButton::Right ] ? IMGUI_MBUT_RIGHT : 0)
| (mouseState.m_buttons[entry::MouseButton::Middle] ? IMGUI_MBUT_MIDDLE : 0)
2017-05-25 07:12:30 +03:00
, mouseState.m_mz
2017-03-12 01:44:00 +03:00
, uint16_t(width)
, uint16_t(height)
2016-04-24 18:49:49 +03:00
);
static bool help = false;
2017-05-25 07:12:30 +03:00
static bool mouseDelta = false;
if (!mouseDelta)
{
mouseStatePrev = mouseState;
mouseDelta = true;
}
int32_t zoomDelta = mouseState.m_mz - mouseStatePrev.m_mz;
if (zoomDelta != 0)
{
char exec[64];
bx::snprintf(exec, BX_COUNTOF(exec), "view zoom %+f", -zoomDelta*0.1f);
cmdExec(exec);
}
const float xDelta = float(mouseStatePrev.m_mx - mouseState.m_mx);
const float yDelta = float(mouseStatePrev.m_my - mouseState.m_my);
if (!ImGui::MouseOverArea()
&& !help
&& mouseState.m_buttons[entry::MouseButton::Left] != mouseStatePrev.m_buttons[entry::MouseButton::Left])
2017-05-26 01:12:07 +03:00
{
dragging = !!mouseState.m_buttons[entry::MouseButton::Left];
}
if (dragging)
{
if (view.m_info.cubeMap)
{
char exec[64];
bx::snprintf(exec, BX_COUNTOF(exec), "view cubemap %+f %+f", -yDelta, -xDelta);
cmdExec(exec);
}
else
{
char exec[64];
bx::snprintf(exec, BX_COUNTOF(exec), "view pan %+f %+f", xDelta, yDelta);
cmdExec(exec);
}
2017-05-26 01:12:07 +03:00
}
2017-05-25 07:12:30 +03:00
mouseStatePrev = mouseState;
if (ImGui::BeginPopupContextVoid("Menu") )
{
if (ImGui::MenuItem("Open") )
{
}
if (ImGui::MenuItem("Save As") )
{
}
ImGui::Separator();
if (ImGui::MenuItem("Help") )
{
view.m_help = true;
}
ImGui::Separator();
if (ImGui::MenuItem("Exit") )
{
cmdExec("exit");
}
ImGui::EndPopup();
}
2016-04-24 18:49:49 +03:00
if (help == false
&& help != view.m_help)
{
ImGui::OpenPopup("Help");
}
if (ImGui::BeginPopupModal("Help", NULL, ImGuiWindowFlags_AlwaysAutoResize) )
{
ImGui::SetWindowFontScale(1.0f);
2016-04-24 18:49:49 +03:00
ImGui::Text(
2017-05-11 06:55:31 +03:00
"texturev, bgfx texture viewer tool " ICON_KI_WRENCH ", version %d.%d.%d.\n"
2017-01-01 11:18:41 +03:00
"Copyright 2011-2017 Branimir Karadzic. All rights reserved.\n"
2016-04-24 18:49:49 +03:00
"License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n"
2017-05-11 06:55:31 +03:00
, BGFX_TEXTUREV_VERSION_MAJOR
, BGFX_TEXTUREV_VERSION_MINOR
, BGFX_API_VERSION
2016-04-24 18:49:49 +03:00
);
ImGui::Separator();
ImGui::NextLine();
ImGui::Text("Key bindings:\n\n");
2016-05-29 03:14:19 +03:00
ImGui::PushFont(ImGui::Font::Mono);
2017-06-04 01:38:03 +03:00
keyBindingHelp("ESC", "Exit.");
keyBindingHelp("h", "Toggle help screen.");
keyBindingHelp("f", "Toggle full-screen.");
ImGui::NextLine();
2017-06-04 01:38:03 +03:00
keyBindingHelp("LMB+drag", "Pan.");
keyBindingHelp("=/- or MW", "Zoom in/out.");
keyBindingHelp("z/Z", "Rotate.");
keyBindingHelp("0", "Reset.");
keyBindingHelp("1", "Fit to window.");
2016-04-24 18:49:49 +03:00
ImGui::NextLine();
2017-06-04 01:38:03 +03:00
keyBindingHelp("<", "Reset MIP level.");
keyBindingHelp(",/,", "MIP level up/down.");
keyBindingHelp("/", "Toggle linear/point texture sampling.");
2017-06-03 23:37:42 +03:00
ImGui::NextLine();
2017-06-04 01:38:03 +03:00
keyBindingHelp("left", "Previous layer in texture array.");
keyBindingHelp("right", "Next layer in texture array.");
2016-04-24 18:49:49 +03:00
ImGui::NextLine();
2017-06-04 01:38:03 +03:00
keyBindingHelp("up", "Previous texture.");
keyBindingHelp("down", "Next texture.");
2016-08-24 09:18:41 +03:00
ImGui::NextLine();
2017-06-04 01:38:03 +03:00
keyBindingHelp("r/g/b", "Toggle R, G, or B color channel.");
keyBindingHelp("a", "Toggle alpha blending.");
2016-04-24 18:49:49 +03:00
ImGui::NextLine();
2017-06-04 01:38:03 +03:00
keyBindingHelp("s", "Toggle Multi-channel SDF rendering");
ImGui::NextLine();
2016-05-29 03:14:19 +03:00
ImGui::PopFont();
2016-04-24 18:49:49 +03:00
ImGui::Dummy(ImVec2(0.0f, 0.0f) );
ImGui::SameLine(ImGui::GetWindowWidth() - 136.0f);
if (ImGui::Button("Close", ImVec2(128.0f, 0.0f) )
|| !view.m_help)
{
view.m_help = false;
ImGui::CloseCurrentPopup();
}
ImGui::EndPopup();
}
help = view.m_help;
imguiEndFrame();
2016-04-23 21:07:20 +03:00
if (!bgfx::isValid(texture)
|| view.m_fileIndex != fileIndex)
{
if (bgfx::isValid(texture) )
{
bgfx::destroyTexture(texture);
}
fileIndex = view.m_fileIndex;
filePath = view.m_fileList[view.m_fileIndex].c_str();
texture = loadTexture(filePath
, 0
| BGFX_TEXTURE_U_CLAMP
| BGFX_TEXTURE_V_CLAMP
| BGFX_TEXTURE_W_CLAMP
, 0
, &view.m_info
);
std::string title;
2017-03-29 03:35:16 +03:00
if (isValid(texture) )
{
2017-06-20 23:31:22 +03:00
const char* name = "";
if (view.m_info.cubeMap)
{
name = " CubeMap";
}
else if (1 < view.m_info.depth)
{
name = " 3D";
view.m_info.numLayers = view.m_info.depth;
}
else if (1 < view.m_info.numLayers)
{
name = " 2D Array";
}
2017-04-28 07:09:44 +03:00
bx::stringPrintf(title, "%s (%d x %d%s, mips: %d, layers %d, %s)"
2017-03-29 03:35:16 +03:00
, filePath
, view.m_info.width
, view.m_info.height
2017-06-20 23:31:22 +03:00
, name
2017-04-28 07:09:44 +03:00
, view.m_info.numMips
, view.m_info.numLayers
2017-04-04 08:42:27 +03:00
, bimg::getName(bimg::TextureFormat::Enum(view.m_info.format) )
2017-03-29 03:35:16 +03:00
);
}
else
{
bx::stringPrintf(title, "Failed to load %s!", filePath);
}
entry::WindowHandle handle = { 0 };
entry::setWindowTitle(handle, title.c_str() );
2016-04-23 21:07:20 +03:00
}
2016-04-22 08:12:35 +03: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() );
time += (float)(frameTime*speed/freq);
2017-05-26 01:12:07 +03:00
float transitionTime = dragging ? 0.0f : 0.25f;
posx.set(view.m_posx, transitionTime);
posy.set(view.m_posy, transitionTime);
2016-04-22 08:12:35 +03:00
float ortho[16];
2017-06-13 08:43:07 +03:00
bx::mtxOrtho(ortho, 0.0f, float(width), float(height), 0.0f, 0.0f, 1000.0f, 0.0f, caps->homogeneousDepth);
bgfx::setViewTransform(BACKGROUND_VIEW_ID, NULL, ortho);
bgfx::setViewRect(BACKGROUND_VIEW_ID, 0, 0, uint16_t(width), uint16_t(height) );
screenQuad(
0
, 0
, width
, height
, view.m_alpha ? UINT32_MAX : 0
, float(width )/float(checkerBoardSize)
, float(height)/float(checkerBoardSize)
);
bgfx::setTexture(0
, s_texColor
, checkerBoard
);
bgfx::setState(0
| BGFX_STATE_RGB_WRITE
| BGFX_STATE_ALPHA_WRITE
);
bgfx::submit(BACKGROUND_VIEW_ID
, textureProgram
);
2017-05-26 01:12:07 +03:00
float px = posx.getValue();
float py = posy.getValue();
2017-06-13 08:43:07 +03:00
bx::mtxOrtho(ortho, px-width/2, px+width/2, py+height/2, py-height/2, 0.0f, 1000.0f, 0.0f, caps->homogeneousDepth);
bgfx::setViewTransform(IMAGE_VIEW_ID, NULL, ortho);
bgfx::setViewRect(IMAGE_VIEW_ID, 0, 0, uint16_t(width), uint16_t(height) );
2016-04-22 08:12:35 +03:00
bgfx::dbgTextClear();
if (view.m_fit)
{
scale.set(bx::fmin(float(width) / float(view.m_info.width)
, float(height) / float(view.m_info.height) )
, 0.1f
);
}
else
{
scale.set(1.0f, 0.1f);
}
2017-05-26 01:12:07 +03:00
zoom.set(view.m_zoom, transitionTime);
2017-06-03 23:18:12 +03:00
angle.set(view.m_angle, transitionTime);
angx.set(view.m_angx, transitionTime);
angy.set(view.m_angy, transitionTime);
2016-04-22 08:12:35 +03:00
2017-05-26 06:24:02 +03:00
float ss = scale.getValue()
* zoom.getValue()
;
2016-04-22 08:12:35 +03:00
2017-05-26 06:24:02 +03:00
screenQuad(
2017-06-03 23:18:12 +03:00
-int(view.m_info.width * ss)/2
, -int(view.m_info.height * ss)/2
, int(view.m_info.width * ss)
, int(view.m_info.height * ss)
, view.m_abgr
2016-04-23 21:07:20 +03:00
);
2016-04-22 08:12:35 +03:00
2017-06-03 23:18:12 +03:00
float rotz[16];
bx::mtxRotateZ(rotz, angle.getValue() );
bgfx::setTransform(rotz);
2016-04-22 08:12:35 +03:00
float mtx[16];
bx::mtxRotateXY(mtx, angx.getValue(), angy.getValue() );
2016-04-22 08:12:35 +03:00
bgfx::setUniform(u_mtx, mtx);
2016-08-24 08:06:50 +03:00
mip.set(float(view.m_mip), 0.5f);
layer.set(float(view.m_layer), 0.25f);
2016-04-22 08:12:35 +03:00
2016-08-24 08:06:50 +03:00
float params[4] = { mip.getValue(), layer.getValue(), 0.0f, 0.0f };
2017-06-20 23:31:22 +03:00
if (1 < view.m_info.depth)
{
params[1] = layer.getValue()/view.m_info.depth;
}
2016-04-22 08:12:35 +03:00
bgfx::setUniform(u_params, params);
2017-05-25 08:40:53 +03:00
const uint32_t textureFlags = 0
| BGFX_TEXTURE_U_CLAMP
| BGFX_TEXTURE_V_CLAMP
| BGFX_TEXTURE_W_CLAMP
| (view.m_filter ? 0 : 0
2016-04-23 21:07:20 +03:00
| BGFX_TEXTURE_MIN_POINT
| BGFX_TEXTURE_MIP_POINT
| BGFX_TEXTURE_MAG_POINT
2017-05-25 08:40:53 +03:00
)
;
bgfx::setTexture(0
, s_texColor
, texture
, textureFlags
2016-04-23 21:07:20 +03:00
);
2016-04-22 08:12:35 +03:00
bgfx::setState(0
2016-04-23 21:07:20 +03:00
| BGFX_STATE_RGB_WRITE
| BGFX_STATE_ALPHA_WRITE
| (view.m_alpha ? BGFX_STATE_BLEND_ALPHA : BGFX_STATE_NONE)
2016-04-23 21:07:20 +03:00
);
2017-06-20 23:31:22 +03:00
bgfx:: ProgramHandle program = textureProgram;
if (1 < view.m_info.depth)
{
program = texture3DProgram;
}
else if (view.m_info.cubeMap)
{
program = textureCubeProgram;
}
else if (1 < view.m_info.numLayers)
{
program = textureArrayProgram;
}
else if (view.m_sdf)
{
program = textureSdfProgram;
}
bgfx::submit(IMAGE_VIEW_ID, program);
2016-04-22 08:12:35 +03:00
bgfx::frame();
}
}
if (bgfx::isValid(texture) )
{
bgfx::destroyTexture(texture);
}
bgfx::destroyTexture(checkerBoard);
2016-04-22 08:12:35 +03:00
bgfx::destroyUniform(s_texColor);
bgfx::destroyUniform(u_mtx);
bgfx::destroyUniform(u_params);
bgfx::destroyProgram(textureProgram);
2016-08-24 08:06:50 +03:00
bgfx::destroyProgram(textureArrayProgram);
2016-04-22 08:12:35 +03:00
bgfx::destroyProgram(textureCubeProgram);
2017-05-30 00:09:48 +03:00
bgfx::destroyProgram(textureSdfProgram);
2016-04-22 08:12:35 +03:00
2016-04-24 18:49:49 +03:00
imguiDestroy();
2016-04-22 08:12:35 +03:00
bgfx::shutdown();
return exitcode;
}