bgfx/tools/texturev/texturev.cpp

2312 lines
55 KiB
C++
Raw Normal View History

2016-04-22 08:12:35 +03:00
/*
2019-01-14 04:13:25 +03:00
* Copyright 2011-2019 Branimir Karadzic. All rights reserved.
2017-01-01 11:18:41 +03:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-04-22 08:12:35 +03:00
*/
#include "common.h"
2017-11-29 06:18:46 +03:00
2016-04-22 08:12:35 +03:00
#include <bgfx/bgfx.h>
2017-11-29 06:18:46 +03:00
#include <bx/commandline.h>
2017-11-29 06:18:46 +03:00
#include <bx/easing.h>
#include <bx/file.h>
2017-07-14 10:10:33 +03:00
#include <bx/filepath.h>
2017-07-16 07:01:08 +03:00
#include <bx/math.h>
2017-11-29 06:18:46 +03:00
#include <bx/os.h>
#include <bx/process.h>
#include <bx/settings.h>
#include <bx/uint32_t.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 <tinystl/allocator.h>
#include <tinystl/vector.h>
namespace stl = tinystl;
2017-07-18 07:30:03 +03:00
#include <string>
#include <algorithm>
2016-04-23 21:07:20 +03:00
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"
2017-07-09 21:47:13 +03:00
#include "fs_texture_cube2.bin.h"
#include "fs_texture_sdf.bin.h"
2017-11-30 08:06:14 +03:00
#include "fs_texture_msdf.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 1
2017-05-11 06:55:31 +03:00
2017-10-26 02:17:54 +03:00
const float kEvMin = -10.0f;
const float kEvMax = 20.0f;
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),
2017-07-09 21:47:13 +03:00
BGFX_EMBEDDED_SHADER(fs_texture_cube2),
BGFX_EMBEDDED_SHADER(fs_texture_sdf),
2017-11-30 08:06:14 +03:00
BGFX_EMBEDDED_SHADER(fs_texture_msdf),
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",
"gnf",
"jpg",
"jpeg",
"hdr",
"ktx",
"pgm",
"png",
"ppm",
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,
2017-07-11 07:42:50 +03:00
Help,
About,
2016-04-22 08:12:35 +03:00
Count
};
};
2017-07-09 21:47:13 +03:00
struct Geometry
{
enum Enum
{
Quad,
Cross,
Hexagon,
Count
};
};
struct Output
{
enum Enum
{
sRGB,
scRGB,
HDR10,
Count
};
};
2016-04-22 08:12:35 +03:00
static const InputBinding s_bindingApp[] =
{
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
};
2017-07-10 03:11:59 +03:00
const char* s_resetCmd =
"view zoom 1.0\n"
"view rotate 0\n"
"view cubemap\n"
"view pan\n"
2017-10-26 02:17:54 +03:00
"view ev\n"
2017-07-10 03:11:59 +03:00
;
2016-04-22 08:12:35 +03:00
static const InputBinding s_bindingView[] =
{
2017-07-11 07:42:50 +03:00
{ entry::Key::Esc, entry::Modifier::None, 1, NULL, "exit" },
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-07-10 03:11:59 +03:00
{ entry::Key::Key0, entry::Modifier::None, 1, NULL, s_resetCmd },
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-10-25 07:32:31 +03:00
{ entry::Key::KeyI, entry::Modifier::None, 1, NULL, "view info" },
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-07-18 07:30:03 +03:00
{ entry::Key::Return, entry::Modifier::None, 1, NULL, "view files" },
2017-05-26 01:12:07 +03:00
{ entry::Key::KeyS, entry::Modifier::None, 1, NULL, "view sdf" },
2017-07-09 21:47:13 +03:00
{ entry::Key::Space, entry::Modifier::None, 1, NULL, "view geo\n"
"view pan\n" },
2016-04-22 08:12:35 +03:00
INPUT_BINDING_END
};
2017-07-11 07:42:50 +03:00
static const InputBinding s_bindingHelp[] =
{
{ entry::Key::Esc, entry::Modifier::None, 1, NULL, "view help" },
{ entry::Key::KeyH, entry::Modifier::None, 1, NULL, "view help" },
INPUT_BINDING_END
};
static const InputBinding s_bindingAbout[] =
{
{ entry::Key::Esc, entry::Modifier::None, 1, NULL, "view about" },
INPUT_BINDING_END
};
2016-04-22 08:12:35 +03:00
static const char* s_bindingName[] =
{
"App",
"View",
2017-07-11 07:42:50 +03:00
"Help",
"About",
2016-04-22 08:12:35 +03:00
};
BX_STATIC_ASSERT(Binding::Count == BX_COUNTOF(s_bindingName) );
static const InputBinding* s_binding[] =
{
s_bindingApp,
s_bindingView,
2017-07-11 07:42:50 +03:00
s_bindingHelp,
s_bindingAbout,
2016-04-22 08:12:35 +03:00
};
BX_STATIC_ASSERT(Binding::Count == BX_COUNTOF(s_binding) );
2019-02-18 07:19:23 +03:00
static const char* s_filter = ""
"All texture files (bmp, dds, exr, gif, gnf, jpg, jpeg, hdr, ktx, pgm, png, ppm, psd, pvr, tga) | *.bmp *.dds *.exr *.gif *.gnf *.jpg *.jpeg *.hdr *.ktx *.pgm *.png *.ppm *.psd *.pvr *.tga\n"
"Windows Bitmap (bmp) | *.bmp\n"
"Direct Draw Surface (dds) | *.dds\n"
"OpenEXR (exr) | *.exr\n"
"Graphics Interchange Format (gif) | *.gif\n"
"JPEG Interchange Format (jpg, jpeg) | *.jpg *.jpeg\n"
"Radiance RGBE (hdr) | *.hdr\n"
"Khronos Texture (ktx) | *.ktx\n"
"Portable Graymap/Pixmap Format (pgm, ppm) | *.pgm *.ppm\n"
"Portable Network Graphics (png) | *.png\n"
"Photoshop Document (psd) | *.psd\n"
"PowerVR (pvr) | *.pvr\n"
"Truevision TGA (tga) | *.tga\n"
;
struct FileSelectionDialogType
{
enum Enum
{
Open,
Save,
Count
};
};
bool openFileSelectionDialog(
bx::FilePath& _inOutfilePath
, FileSelectionDialogType::Enum _type
, const bx::StringView& _title
, const bx::StringView& _filter = "All Files | *"
)
{
#if BX_PLATFORM_LINUX || BX_PLATFORM_OSX
char tmp[4096];
bx::StaticMemoryBlockWriter writer(tmp, sizeof(tmp) );
bx::Error err;
bx::write(&writer, &err
, "--file-selection%s --title \"%.*s\" --filename \"%s\""
, FileSelectionDialogType::Save == _type ? " --save" : ""
, _title.getLength(), _title.getPtr()
, _inOutfilePath.get()
);
bx::LineReader lr(_filter);
while (!lr.isDone() )
{
const bx::StringView line = lr.next();
bx::write(&writer, &err
, " --file-filter \"%.*s\""
, line.getLength(), line.getPtr()
);
}
if (err.isOk() )
{
bx::ProcessReader pr;
if (bx::open(&pr, "zenity", tmp, &err) )
{
char buffer[1024];
int32_t total = bx::read(&pr, buffer, sizeof(buffer), &err);
bx::close(&pr);
if (0 == pr.getExitCode() )
{
_inOutfilePath.set(bx::strRTrim(bx::StringView(buffer, total), "\n\r") );
return true;
}
}
}
#endif // BX_PLATFORM_LINUX || BX_PLATFORM_OSX
return false;
}
2016-04-22 08:12:35 +03:00
struct View
{
View()
2017-07-09 21:47:13 +03:00
: m_cubeMapGeo(Geometry::Quad)
, m_outputFormat(Output::sRGB)
2017-07-09 21:47:13 +03:00
, m_fileIndex(0)
2016-04-23 21:07:20 +03:00
, 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-10-26 02:17:54 +03:00
, m_ev(0.0f)
, m_evMin(kEvMin)
, m_evMax(kEvMax)
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)
2017-07-20 08:53:48 +03:00
, m_orientation(0.0f)
2017-07-21 06:27:36 +03:00
, m_flipH(0.0f)
, m_flipV(0.0f)
, m_transitionTime(1.0f)
2018-11-03 03:18:22 +03:00
, m_width(1280)
, m_height(720)
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_about(false)
2017-10-25 07:32:31 +03:00
, m_info(false)
2017-07-18 07:30:03 +03:00
, m_files(false)
, m_sdf(false)
, m_inLinear(false)
2016-04-22 08:12:35 +03:00
{
2017-11-29 06:18:46 +03:00
load();
2018-04-19 02:35:57 +03:00
m_textureInfo.format = bgfx::TextureFormat::Count;
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
{
2017-10-26 02:17:54 +03:00
bx::fromString(&mip, _argv[2]);
}
m_mip = bx::uint32_iclamp(mip, 0, m_textureInfo.numMips-1);
}
else
{
m_mip = 0;
}
}
2017-11-07 05:25:14 +03:00
else 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
{
2017-10-26 02:17:54 +03:00
bx::fromString(&layer, _argv[2]);
2016-08-24 08:06:50 +03:00
}
2017-10-25 07:32:31 +03:00
m_layer = bx::uint32_iclamp(layer, 0, m_textureInfo.numLayers-1);
2016-08-24 08:06:50 +03:00
}
else
{
m_layer = 0;
}
}
2017-10-26 02:17:54 +03:00
else if (0 == bx::strCmp(_argv[1], "ev") )
{
if (_argc >= 3)
{
float ev = m_ev;
bx::fromString(&ev, _argv[2]);
2017-12-03 05:15:31 +03:00
m_ev = bx::clamp(ev, kEvMin, kEvMax);
2017-10-26 02:17:54 +03:00
}
else
{
m_ev = 0.0f;
}
}
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-12-03 05:15:31 +03:00
m_zoom = bx::clamp(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);
}
2018-01-14 02:33:50 +03:00
m_angle = bx::wrap(m_angle, bx::kPi*2.0f);
2017-06-03 23:18:12 +03:00
}
else
{
m_angle = 0.0f;
}
}
2017-07-20 08:53:48 +03:00
else if (0 == bx::strCmp(_argv[1], "orientation") )
{
if (_argc >= 3)
{
2017-07-21 06:27:36 +03:00
float* dst = NULL;
char axis = bx::toLower(_argv[2][0]);
switch (axis)
{
case 'x': dst = &m_flipV; break;
case 'y': dst = &m_flipH; break;
case 'z': dst = &m_orientation; break;
default: break;
}
if (NULL != dst)
{
if (_argc >= 4)
{
float angle;
bx::fromString(&angle, _argv[3]);
*dst = bx::toRad(angle);
}
else
{
*dst = 0.0f;
}
}
2017-07-20 08:53:48 +03:00
}
else
{
2017-07-21 06:27:36 +03:00
m_flipH = 0.0f;
m_flipV = 0.0f;
2017-07-20 08:53:48 +03:00
m_orientation = 0.0f;
}
}
else if (0 == bx::strCmp(_argv[1], "transition") )
{
if (_argc >= 3)
{
float time;
2017-11-07 05:25:14 +03:00
bx::fromString(&time, _argv[2]);
2017-12-03 05:15:31 +03:00
m_transitionTime = bx::clamp(time, 0.0f, 5.0f);
}
else
{
m_transitionTime = 1.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)
{
2017-11-28 10:10:34 +03:00
bx::fromString(&m_filter, _argv[2]);
2016-04-22 08:12:35 +03:00
}
else
{
m_filter ^= true;
}
}
else if (0 == bx::strCmp(_argv[1], "fit") )
{
if (_argc >= 3)
{
2017-11-28 10:10:34 +03:00
bx::fromString(&m_fit, _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-07-09 21:47:13 +03:00
else if (0 == bx::strCmp(_argv[1], "geo") )
{
2017-07-10 03:11:59 +03:00
if (_argc >= 3)
{
if (bx::toLower(_argv[2][0]) == 'c')
{
m_cubeMapGeo = Geometry::Cross;
}
else if (bx::toLower(_argv[2][0]) == 'h')
{
m_cubeMapGeo = Geometry::Hexagon;
}
else
{
m_cubeMapGeo = Geometry::Quad;
}
}
else
{
m_cubeMapGeo = Geometry::Enum( (m_cubeMapGeo + 1) % Geometry::Count);
}
2017-07-09 21:47:13 +03:00
}
else if (0 == bx::strCmp(_argv[1], "output") )
{
Output::Enum outputPrev = m_outputFormat;
if (_argc >= 3)
{
if (0 == bx::strCmp(_argv[2], "srgb") )
{
m_outputFormat = Output::sRGB;
}
else if (0 == bx::strCmp(_argv[2], "scrgb") )
{
m_outputFormat = Output::scRGB;
}
else if (0 == bx::strCmp(_argv[2], "hdr10") )
{
m_outputFormat = Output::HDR10;
}
}
else
{
m_outputFormat = Output::Enum( (m_outputFormat + 1) % Output::Count);
}
if (outputPrev != m_outputFormat)
{
bgfx::TextureFormat::Enum format = bgfx::TextureFormat::RGBA8;
uint32_t formatFlag = 0;
if (Output::scRGB == m_outputFormat)
{
format = bgfx::TextureFormat::RGBA16F;
}
else if (Output::HDR10 == m_outputFormat)
{
format = bgfx::TextureFormat::RGB10A2;
formatFlag = BGFX_RESET_HDR10;
}
bgfx::reset(m_width, m_height, BGFX_RESET_VSYNC | formatFlag, format);
}
}
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;
}
else if (0 == bx::strCmp(_argv[1], "about") )
{
m_about ^= true;
}
2017-11-29 06:18:46 +03:00
else if (0 == bx::strCmp(_argv[1], "save") )
{
save();
}
2017-10-25 07:32:31 +03:00
else if (0 == bx::strCmp(_argv[1], "info") )
{
m_info ^= true;
}
2017-07-18 07:30:03 +03:00
else if (0 == bx::strCmp(_argv[1], "files") )
{
m_files ^= true;
}
2016-04-22 08:12:35 +03:00
}
return 0;
}
2017-07-18 07:30:03 +03:00
static bool sortNameAscending(const std::string& _lhs, const std::string& _rhs)
2016-04-23 21:07:20 +03:00
{
2017-07-18 07:30:03 +03:00
return 0 > bx::strCmpV(_lhs.c_str(), _rhs.c_str() );
}
2016-04-23 21:07:20 +03:00
2017-07-18 07:30:03 +03:00
void updateFileList(const bx::FilePath& _filePath)
{
2019-02-17 06:58:18 +03:00
bx::DirectoryReader dr;
2016-04-23 21:07:20 +03:00
2019-02-17 06:58:18 +03:00
if (bx::open(&dr, _filePath) )
{
m_path = _filePath;
}
else if (bx::open(&dr, _filePath.getPath() ) )
2016-04-23 21:07:20 +03:00
{
2017-07-18 07:30:03 +03:00
m_path = _filePath.getPath();
}
else
{
2019-02-17 06:58:18 +03:00
DBG("File path `%s` not found.", _filePath.get() );
return;
2016-04-23 21:07:20 +03:00
}
2019-02-17 06:58:18 +03:00
bx::Error err;
2019-02-18 07:19:23 +03:00
m_fileList.clear();
2019-02-17 06:58:18 +03:00
while (err.isOk() )
2016-04-23 21:07:20 +03:00
{
2019-02-17 06:58:18 +03:00
bx::FileInfo fi;
bx::read(&dr, fi, &err);
if (err.isOk()
&& bx::FileType::File == fi.type)
2016-04-23 21:07:20 +03:00
{
2019-02-17 06:58:18 +03:00
bx::StringView ext = fi.filePath.getExt();
if (!ext.isEmpty() )
2016-04-23 21:07:20 +03:00
{
2019-02-17 06:58:18 +03:00
ext.set(ext.getPtr()+1, ext.getTerm() );
bool supported = false;
for (uint32_t ii = 0; ii < BX_COUNTOF(s_supportedExt); ++ii)
2016-04-23 21:07:20 +03:00
{
2019-02-17 06:58:18 +03:00
if (0 == bx::strCmpI(ext, s_supportedExt[ii]) )
{
2019-02-17 06:58:18 +03:00
supported = true;
break;
}
2019-02-17 06:58:18 +03:00
}
2019-02-17 06:58:18 +03:00
if (supported)
{
2019-02-18 07:19:23 +03:00
const bx::StringView fileName = fi.filePath.getFileName();
m_fileList.push_back(std::string(fileName.getPtr(), fileName.getTerm() ) );
2016-04-23 21:07:20 +03:00
}
}
}
2019-02-17 06:58:18 +03:00
}
2016-04-23 21:07:20 +03:00
2019-02-17 06:58:18 +03:00
bx::close(&dr);
2017-07-18 07:30:03 +03:00
2019-02-17 06:58:18 +03:00
std::sort(m_fileList.begin(), m_fileList.end(), sortNameAscending);
m_fileIndex = 0;
uint32_t idx = 0;
2019-02-18 07:19:23 +03:00
const bx::StringView fileName = _filePath.getFileName();
2019-02-17 06:58:18 +03:00
for (FileList::const_iterator it = m_fileList.begin(); it != m_fileList.end(); ++it, ++idx)
{
2019-02-18 07:19:23 +03:00
if (0 == bx::strCmpI(it->c_str(), fileName) )
2017-07-18 07:30:03 +03:00
{
2019-02-17 06:58:18 +03:00
// If it is case-insensitive match then might be correct one, but keep
// searching.
m_fileIndex = idx;
2019-02-18 07:19:23 +03:00
if (0 == bx::strCmp(it->c_str(), fileName) )
2019-02-17 06:58:18 +03:00
{
// If it is exact match we're done.
break;
2017-07-18 07:30:03 +03:00
}
}
2016-04-23 21:07:20 +03:00
}
}
2017-11-29 06:18:46 +03:00
void load()
{
bx::FilePath filePath(bx::Dir::Home);
filePath.join(".config/bgfx/texturev.ini");
bx::Settings settings(entry::getAllocator() );
bx::FileReader reader;
if (bx::open(&reader, filePath) )
{
bx::read(&reader, settings);
bx::close(&reader);
if (!bx::fromString(&m_transitionTime, settings.get("view/transition") ) )
{
m_transitionTime = 1.0f;
}
2018-11-03 03:18:22 +03:00
if (!bx::fromString(&m_width, settings.get("view/width") ) )
{
m_width = 1280;
}
if (!bx::fromString(&m_height, settings.get("view/height") ) )
{
m_height = 720;
}
2017-11-29 06:18:46 +03:00
}
}
void save()
{
bx::FilePath filePath(bx::Dir::Home);
filePath.join(".config/bgfx/texturev.ini");
if (bx::makeAll(filePath.getPath() ) )
{
bx::Settings settings(entry::getAllocator() );
char tmp[256];
bx::toString(tmp, sizeof(tmp), m_transitionTime);
settings.set("view/transition", tmp);
2018-11-03 03:18:22 +03:00
bx::toString(tmp, sizeof(tmp), m_width);
settings.set("view/width", tmp);
bx::toString(tmp, sizeof(tmp), m_height);
settings.set("view/height", tmp);
2017-11-29 06:18:46 +03:00
bx::FileWriter writer;
if (bx::open(&writer, filePath) )
{
bx::write(&writer, settings);
bx::close(&writer);
}
}
}
2017-07-18 07:30:03 +03:00
bx::FilePath m_path;
2016-04-23 21:07:20 +03:00
typedef stl::vector<std::string> FileList;
FileList m_fileList;
2017-10-25 07:32:31 +03:00
bgfx::TextureInfo m_textureInfo;
2017-07-09 21:47:13 +03:00
Geometry::Enum m_cubeMapGeo;
Output::Enum m_outputFormat;
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-10-26 02:17:54 +03:00
float m_ev;
float m_evMin;
float m_evMax;
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;
2017-07-20 08:53:48 +03:00
float m_orientation;
2017-07-21 06:27:36 +03:00
float m_flipH;
float m_flipV;
float m_transitionTime;
2018-11-03 03:18:22 +03:00
uint32_t m_width;
uint32_t m_height;
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_about;
2017-10-25 07:32:31 +03:00
bool m_info;
2017-07-18 07:30:03 +03:00
bool m_files;
bool m_sdf;
bool m_inLinear;
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);
}
2017-07-09 21:47:13 +03:00
struct PosUvwColorVertex
2016-04-22 08:12:35 +03:00
{
float m_x;
float m_y;
float m_u;
float m_v;
2017-07-09 21:47:13 +03:00
float m_w;
2016-04-22 08:12:35 +03:00
uint32_t m_abgr;
static void init()
{
ms_decl
.begin()
.add(bgfx::Attrib::Position, 2, bgfx::AttribType::Float)
2017-07-09 21:47:13 +03:00
.add(bgfx::Attrib::TexCoord0, 3, bgfx::AttribType::Float)
2016-04-22 08:12:35 +03:00
.add(bgfx::Attrib::Color0, 4, bgfx::AttribType::Uint8, true)
.end();
}
2017-07-09 21:47:13 +03:00
void set(float _x, float _y, float _u, float _v, float _w, uint32_t _abgr)
{
m_x = _x;
m_y = _y;
m_u = _u;
m_v = _v;
m_w = _w;
m_abgr = _abgr;
}
2016-04-22 08:12:35 +03:00
static bgfx::VertexDecl ms_decl;
};
2017-07-09 21:47:13 +03:00
bgfx::VertexDecl PosUvwColorVertex::ms_decl;
static uint32_t addQuad(uint16_t* _indices, uint16_t _idx0, uint16_t _idx1, uint16_t _idx2, uint16_t _idx3)
{
_indices[0] = _idx0;
_indices[1] = _idx3;
_indices[2] = _idx1;
_indices[3] = _idx1;
_indices[4] = _idx3;
_indices[5] = _idx2;
2016-04-22 08:12:35 +03:00
2017-07-09 21:47:13 +03:00
return 6;
}
void setGeometry(
Geometry::Enum _type
2017-11-30 09:30:05 +03:00
, int32_t _x
, int32_t _y
, uint32_t _width
2017-07-09 21:47:13 +03:00
, uint32_t _height
, uint32_t _abgr
, float _maxu = 1.0f
, float _maxv = 1.0f
)
2016-04-22 08:12:35 +03:00
{
2017-07-09 21:47:13 +03:00
if (Geometry::Quad == _type)
2016-04-22 08:12:35 +03:00
{
2017-07-09 21:47:13 +03:00
if (6 == bgfx::getAvailTransientVertexBuffer(6, PosUvwColorVertex::ms_decl) )
{
bgfx::TransientVertexBuffer vb;
bgfx::allocTransientVertexBuffer(&vb, 6, PosUvwColorVertex::ms_decl);
PosUvwColorVertex* vertex = (PosUvwColorVertex*)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;
vertex->set(minx, miny, minu, minv, 0.0f, _abgr); ++vertex;
vertex->set(maxx, miny, maxu, minv, 0.0f, _abgr); ++vertex;
vertex->set(maxx, maxy, maxu, maxv, 0.0f, _abgr); ++vertex;
vertex->set(maxx, maxy, maxu, maxv, 0.0f, _abgr); ++vertex;
vertex->set(minx, maxy, minu, maxv, 0.0f, _abgr); ++vertex;
vertex->set(minx, miny, minu, minv, 0.0f, _abgr); ++vertex;
bgfx::setVertexBuffer(0, &vb);
}
2016-04-22 08:12:35 +03:00
}
2017-07-09 21:47:13 +03:00
else
{
const uint32_t numVertices = 14;
const uint32_t numIndices = 36;
if (checkAvailTransientBuffers(numVertices, PosUvwColorVertex::ms_decl, numIndices) )
{
bgfx::TransientVertexBuffer tvb;
bgfx::allocTransientVertexBuffer(&tvb, numVertices, PosUvwColorVertex::ms_decl);
bgfx::TransientIndexBuffer tib;
bgfx::allocTransientIndexBuffer(&tib, numIndices);
PosUvwColorVertex* vertex = (PosUvwColorVertex*)tvb.data;
uint16_t* indices = (uint16_t*)tib.data;
if (Geometry::Cross == _type)
{
const float sx = _width /1.5f;
const float sy = _height/1.5f;
const float px = float(_x)-sx/4.0f;
const float py = float(_y);
vertex->set(0.0f*sx+px, 0.5f*sy+py, -1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(0.0f*sx+px, 1.0f*sy+py, -1.0f, -1.0f, -1.0f, _abgr); ++vertex;
vertex->set(0.5f*sx+px, 0.0f*sy+py, -1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(0.5f*sx+px, 0.5f*sy+py, -1.0f, 1.0f, 1.0f, _abgr); ++vertex;
vertex->set(0.5f*sx+px, 1.0f*sy+py, -1.0f, -1.0f, 1.0f, _abgr); ++vertex;
vertex->set(0.5f*sx+px, 1.5f*sy+py, -1.0f, -1.0f, -1.0f, _abgr); ++vertex;
vertex->set(1.0f*sx+px, 0.0f*sy+py, 1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(1.0f*sx+px, 0.5f*sy+py, 1.0f, 1.0f, 1.0f, _abgr); ++vertex;
vertex->set(1.0f*sx+px, 1.0f*sy+py, 1.0f, -1.0f, 1.0f, _abgr); ++vertex;
vertex->set(1.0f*sx+px, 1.5f*sy+py, 1.0f, -1.0f, -1.0f, _abgr); ++vertex;
vertex->set(1.5f*sx+px, 0.5f*sy+py, 1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(1.5f*sx+px, 1.0f*sy+py, 1.0f, -1.0f, -1.0f, _abgr); ++vertex;
vertex->set(2.0f*sx+px, 0.5f*sy+py, -1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(2.0f*sx+px, 1.0f*sy+py, -1.0f, -1.0f, -1.0f, _abgr); ++vertex;
indices += addQuad(indices, 0, 3, 4, 1);
indices += addQuad(indices, 2, 6, 7, 3);
indices += addQuad(indices, 3, 7, 8, 4);
indices += addQuad(indices, 4, 8, 9, 5);
indices += addQuad(indices, 7, 10, 11, 8);
indices += addQuad(indices, 10, 12, 13, 11);
}
else
{
2017-07-15 09:38:45 +03:00
const float sx = float(_width);
const float sy = float(_height);
2017-07-09 21:47:13 +03:00
const float px = float(_x) - sx/2.0f;
const float py = float(_y);
vertex->set(0.0f*sx+px, 0.25f*sy+py, -1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(0.0f*sx+px, 0.75f*sy+py, -1.0f, -1.0f, -1.0f, _abgr); ++vertex;
vertex->set(0.5f*sx+px, 0.00f*sy+py, -1.0f, 1.0f, 1.0f, _abgr); ++vertex;
vertex->set(0.5f*sx+px, 0.50f*sy+py, -1.0f, -1.0f, 1.0f, _abgr); ++vertex;
vertex->set(0.5f*sx+px, 1.00f*sy+py, 1.0f, -1.0f, -1.0f, _abgr); ++vertex;
vertex->set(1.0f*sx+px, 0.25f*sy+py, 1.0f, 1.0f, 1.0f, _abgr); ++vertex;
vertex->set(1.0f*sx+px, 0.75f*sy+py, 1.0f, -1.0f, 1.0f, _abgr); ++vertex;
2016-04-22 08:12:35 +03:00
2017-07-09 21:47:13 +03:00
vertex->set(1.0f*sx+px, 0.25f*sy+py, 1.0f, 1.0f, 1.0f, _abgr); ++vertex;
vertex->set(1.0f*sx+px, 0.75f*sy+py, 1.0f, -1.0f, 1.0f, _abgr); ++vertex;
vertex->set(1.5f*sx+px, 0.00f*sy+py, -1.0f, 1.0f, 1.0f, _abgr); ++vertex;
vertex->set(1.5f*sx+px, 0.50f*sy+py, 1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(1.5f*sx+px, 1.00f*sy+py, 1.0f, -1.0f, -1.0f, _abgr); ++vertex;
vertex->set(2.0f*sx+px, 0.25f*sy+py, -1.0f, 1.0f, -1.0f, _abgr); ++vertex;
vertex->set(2.0f*sx+px, 0.75f*sy+py, -1.0f, -1.0f, -1.0f, _abgr); ++vertex;
indices += addQuad(indices, 0, 2, 3, 1);
indices += addQuad(indices, 1, 3, 6, 4);
indices += addQuad(indices, 2, 5, 6, 3);
indices += addQuad(indices, 7, 9, 12, 10);
indices += addQuad(indices, 7, 10, 11, 8);
indices += addQuad(indices, 10, 12, 13, 11);
}
bgfx::setVertexBuffer(0, &tvb);
bgfx::setIndexBuffer(&tib);
}
}
2016-04-22 08:12:35 +03:00
}
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()
{
2018-04-24 02:23:38 +03:00
if (isActive() )
2016-04-22 08:12:35 +03:00
{
const double freq = double(bx::getHPFrequency() );
int64_t now = bx::getHPCounter();
float time = (float)(double(now - offset) / freq);
2017-12-03 05:15:31 +03:00
float lerp = bx::clamp(time, 0.0f, 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;
}
2018-04-24 02:23:38 +03:00
bool isActive() const
{
const double freq = double(bx::getHPFrequency() );
int64_t now = bx::getHPCounter();
float time = (float)(double(now - offset) / freq);
float lerp = bx::clamp(time, 0.0f, duration) / duration;
return lerp < 1.0f;
}
2016-04-22 08:12:35 +03:00
};
2018-01-14 02:33:50 +03:00
typedef InterpolatorT<bx::lerp, bx::easeInOutQuad> Interpolator;
2017-06-03 23:18:12 +03:00
typedef InterpolatorT<bx::angleLerp, bx::easeInOutCubic> InterpolatorAngle;
2018-01-14 02:33:50 +03:00
typedef InterpolatorT<bx::lerp, bx::easeLinear> InterpolatorLinear;
2017-06-03 23:18:12 +03:00
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);
}
2019-02-17 08:25:13 +03:00
#if BX_PLATFORM_WINDOWS
2019-02-17 09:45:54 +03:00
extern "C" void* _stdcall GetModuleHandleA(const char* _moduleName);
extern "C" uint32_t _stdcall GetModuleFileNameA(void* _module, char* _outFilePath, uint32_t _size);
2019-02-17 08:25:13 +03:00
#endif // BX_PLATFORM_WINDOWS
void associate()
{
#if BX_PLATFORM_WINDOWS
std::string str;
2019-02-17 08:25:13 +03:00
char exec[bx::kMaxFilePath];
GetModuleFileNameA(GetModuleHandleA(NULL), exec, sizeof(exec) );
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);
}
2017-11-16 07:30:02 +03:00
bx::FilePath filePath(bx::Dir::Temp);
2017-07-16 07:21:31 +03:00
filePath.join("texture.reg");
2017-06-12 07:01:38 +03:00
bx::FileWriter writer;
bx::Error err;
2017-07-16 07:21:31 +03:00
if (bx::open(&writer, filePath, 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;
2017-07-16 07:21:31 +03:00
bx::stringPrintf(cmd, "/s %s", filePath.get() );
bx::ProcessReader reader;
2017-07-15 09:38:45 +03:00
if (bx::open(&reader, "regedit.exe", 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);
}
2018-04-15 17:57:15 +03:00
bx::stringPrintf(str, "xdg-mime default texturev.desktop image/x-dds\n");
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;
2017-07-15 09:06:03 +03:00
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"
2019-01-14 04:13:25 +03:00
"Copyright 2011-2019 Branimir Karadzic. All rights reserved.\n"
2017-05-11 06:55:31 +03:00
"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;
}
2018-11-03 03:18:22 +03:00
uint32_t debug = BGFX_DEBUG_TEXT;
2016-04-22 08:12:35 +03:00
inputAddBindings(s_bindingName[Binding::App], s_binding[Binding::App]);
inputAddBindings(s_bindingName[Binding::View], s_binding[Binding::View]);
View view;
cmdAdd("view", cmdView, &view);
2018-01-03 06:15:04 +03:00
entry::setWindowFlags(entry::WindowHandle{0}, ENTRY_WINDOW_FLAG_ASPECT_RATIO, false);
2018-11-03 03:18:22 +03:00
entry::setWindowSize(entry::WindowHandle{0}, view.m_width, view.m_height);
bgfx::Init init;
init.resolution.width = view.m_width;
init.resolution.width = view.m_height;
init.resolution.reset = BGFX_RESET_VSYNC;
2018-01-03 06:15:04 +03:00
2018-11-03 03:18:22 +03:00
bgfx::init(init);
2016-04-22 08:12:35 +03:00
// 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();
2017-07-09 21:47:13 +03:00
PosUvwColorVertex::init();
2016-04-22 08:12:35 +03:00
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
bgfx::UniformHandle s_texColor = bgfx::createUniform("s_texColor", bgfx::UniformType::Sampler);
2017-07-09 21:47:13 +03:00
bgfx::UniformHandle u_mtx = bgfx::createUniform("u_mtx", bgfx::UniformType::Mat4);
bgfx::UniformHandle u_params0 = bgfx::createUniform("u_params0", bgfx::UniformType::Vec4);
bgfx::UniformHandle u_params1 = bgfx::createUniform("u_params1", bgfx::UniformType::Vec4);
2017-07-09 21:47:13 +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(
2017-07-09 21:47:13 +03:00
vsTexture
, fsTexture
, true
);
2016-08-24 08:06:50 +03:00
bgfx::ProgramHandle textureArrayProgram = bgfx::createProgram(
2017-07-09 21:47:13 +03:00
vsTexture
, bgfx::isValid(fsTextureArray)
? fsTextureArray
: fsTexture
, true
);
2016-08-24 08:06:50 +03:00
2016-04-22 08:12:35 +03:00
bgfx::ProgramHandle textureCubeProgram = bgfx::createProgram(
2017-07-09 21:47:13 +03:00
bgfx::createEmbeddedShader(s_embeddedShaders, type, "vs_texture_cube")
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_cube")
, true
);
bgfx::ProgramHandle textureCube2Program = bgfx::createProgram(
vsTexture
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_cube2")
, true
);
2016-04-22 08:12:35 +03:00
2017-05-30 00:09:48 +03:00
bgfx::ProgramHandle textureSdfProgram = bgfx::createProgram(
2017-07-09 21:47:13 +03:00
vsTexture
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_sdf")
, true
);
2017-11-30 08:06:14 +03:00
bgfx::ProgramHandle textureMsdfProgram = bgfx::createProgram(
vsTexture
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_msdf")
, true
);
2017-06-20 23:31:22 +03:00
bgfx::ProgramHandle texture3DProgram = bgfx::createProgram(
2017-07-09 21:47:13 +03:00
vsTexture
, bgfx::createEmbeddedShader(s_embeddedShaders, type, "fs_texture_3d")
, true
);
2016-04-22 08:12:35 +03:00
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_SAMPLER_MIN_POINT
| BGFX_SAMPLER_MIP_POINT
| BGFX_SAMPLER_MAG_POINT
, mem
);
}
2016-04-22 08:12:35 +03:00
float speed = 0.37f;
float time = 0.0f;
Interpolator menuFade(5.0f);
2016-08-24 08:06:50 +03:00
Interpolator mip(0.0f);
Interpolator layer(0.0f);
2017-10-26 02:17:54 +03:00
InterpolatorLinear ev(0.0f);
2016-08-24 08:06:50 +03:00
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
2018-04-24 02:23:38 +03:00
auto anyActive = [&]() -> bool
{
return false
2018-05-18 03:24:10 +03:00
|| ImGui::MouseOverArea()
2018-04-24 02:23:38 +03:00
|| menuFade.isActive()
|| mip.isActive()
|| layer.isActive()
|| ev.isActive()
|| zoom.isActive()
|| scale.isActive()
|| posx.isActive()
|| posy.isActive()
|| angle.isActive()
|| angx.isActive()
|| angy.isActive()
;
};
2016-04-24 18:49:49 +03:00
const char* filePath = _argc < 2 ? "" : _argv[1];
2016-04-23 21:07:20 +03:00
std::string path = filePath;
{
2017-07-14 10:10:33 +03:00
bx::FilePath fp(filePath);
2017-07-18 07:30:03 +03:00
view.updateFileList(fp);
2016-04-23 21:07:20 +03:00
}
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
uint32_t fileIndex = 0;
2017-05-26 01:12:07 +03:00
bool dragging = false;
2016-04-23 21:07:20 +03:00
2018-01-05 00:05:36 +03:00
entry::WindowState windowState;
2017-05-25 07:12:30 +03:00
entry::MouseState mouseStatePrev;
2018-11-03 03:18:22 +03:00
while (!entry::processWindowEvents(windowState, debug, init.resolution.reset) )
2016-04-22 08:12:35 +03:00
{
2018-01-05 00:05:36 +03:00
const entry::MouseState& mouseState = windowState.m_mouse;
2018-11-03 03:18:22 +03:00
view.m_width = windowState.m_width;
view.m_height = windowState.m_height;
2018-01-05 00:05:36 +03:00
if (!windowState.m_dropFile.isEmpty() )
{
view.updateFileList(windowState.m_dropFile);
windowState.m_dropFile.clear();
}
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
2018-11-03 03:18:22 +03:00
, uint16_t(view.m_width)
, uint16_t(view.m_height)
2016-04-24 18:49:49 +03:00
);
bool modalWindow = view.m_help || view.m_about;
bool overArea = false
|| ImGui::GetMousePos().y <= ImGui::GetTextLineHeightWithSpacing()
|| ImGui::MouseOverArea()
;
overArea &= !modalWindow;
2017-05-25 07:12:30 +03:00
if (overArea)
2017-05-25 07:12:30 +03:00
{
menuFade.set(5.0f, 0.25f);
2017-05-25 07:12:30 +03:00
}
else if (modalWindow)
2017-05-26 01:12:07 +03:00
{
menuFade.reset(0.0f);
2017-05-26 01:12:07 +03:00
}
else
2017-05-26 01:12:07 +03:00
{
menuFade.set(0.0f, 2.0f);
2017-05-26 01:12:07 +03:00
}
ImGui::PushStyleVar(ImGuiStyleVar_Alpha, bx::clamp(menuFade.getValue(), 0.0f, 1.0f) );
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 0.0f);
2017-05-25 07:12:30 +03:00
if (ImGui::BeginMainMenuBar() )
{
if (ImGui::BeginMenu("File"))
2017-07-10 03:11:59 +03:00
{
2019-02-18 07:19:23 +03:00
if (ImGui::MenuItem("Open File") )
{
bx::FilePath tmp = view.m_path;
if (openFileSelectionDialog(
tmp
, FileSelectionDialogType::Open
, "texturev: Open File"
, s_filter
) )
{
view.updateFileList(tmp);
}
}
if (ImGui::MenuItem("Show File List", NULL, view.m_files) )
{
cmdExec("view files");
}
2017-07-10 03:11:59 +03:00
ImGui::Separator();
if (ImGui::MenuItem("Exit") )
{
cmdExec("exit");
}
2017-10-25 07:32:31 +03:00
ImGui::EndMenu();
2017-07-10 03:11:59 +03:00
}
if (ImGui::BeginMenu("View") )
{
if (ImGui::MenuItem("Info", NULL, view.m_info) )
{
cmdExec("view info");
}
if (ImGui::MenuItem("Reset") )
{
cmdExec(s_resetCmd);
}
ImGui::Separator();
2017-07-10 03:11:59 +03:00
bool filter = view.m_filter;
if (ImGui::MenuItem("Filter", NULL, &filter) )
{
cmdExec("view filter");
}
bool animate = 0.0f < view.m_transitionTime;
if (ImGui::MenuItem("Animate", NULL, &animate) )
{
cmdExec("view transition %f", animate ? 1.0f : 0.0f);
}
2017-10-25 07:32:31 +03:00
if (ImGui::BeginMenu("Cubemap", view.m_textureInfo.cubeMap) )
2017-07-10 03:11:59 +03:00
{
if (ImGui::MenuItem("Quad", NULL, Geometry::Quad == view.m_cubeMapGeo) )
{
cmdExec("view geo quad");
}
if (ImGui::MenuItem("Cross", NULL, Geometry::Cross == view.m_cubeMapGeo) )
{
cmdExec("view geo cross");
}
if (ImGui::MenuItem("Hexagon", NULL, Geometry::Hexagon == view.m_cubeMapGeo) )
{
cmdExec("view geo hexagon");
}
ImGui::EndMenu();
}
if (ImGui::BeginMenu("Output") )
{
const bool hdrCap = (bgfx::getCaps()->supported & BGFX_CAPS_HDR10);
if (ImGui::MenuItem("sRGB", NULL, Output::sRGB == view.m_outputFormat) )
{
cmdExec("view output srgb");
}
if (hdrCap)
{
if (ImGui::MenuItem("scRGB", NULL, Output::scRGB == view.m_outputFormat) )
{
cmdExec("view output scrgb");
}
if (ImGui::MenuItem("HDR10", NULL, Output::HDR10 == view.m_outputFormat) )
{
cmdExec("view output hdr10");
}
}
ImGui::EndMenu();
}
2017-11-30 09:30:05 +03:00
bool sdf = view.m_sdf;
if (ImGui::MenuItem("SDF", NULL, &sdf) )
{
cmdExec("view sdf");
}
2017-07-10 03:11:59 +03:00
bool rr = 0 != (view.m_abgr & 0x000000ff);
if (ImGui::MenuItem("R", NULL, &rr) )
{
cmdExec("view rgb r");
}
bool gg = 0 != (view.m_abgr & 0x0000ff00);
if (ImGui::MenuItem("G", NULL, &gg) )
{
cmdExec("view rgb g");
}
2017-07-10 03:29:51 +03:00
bool bb = 0 != (view.m_abgr & 0x00ff0000);
2017-07-10 03:11:59 +03:00
if (ImGui::MenuItem("B", NULL, &bb) )
{
cmdExec("view rgb b");
}
bool alpha = view.m_alpha;
if (ImGui::MenuItem("Checkerboard", NULL, &alpha) )
{
cmdExec("view rgb a");
}
2017-11-29 06:18:46 +03:00
ImGui::Separator();
if (ImGui::MenuItem("Save Options") )
{
cmdExec("view save");
}
2017-07-10 03:11:59 +03:00
ImGui::EndMenu();
}
if (ImGui::BeginMenu("Help") )
{
if (ImGui::MenuItem("View Help") )
{
cmdExec("view help");
}
ImGui::Separator();
if (ImGui::MenuItem("About") )
{
cmdExec("view about");
}
ImGui::EndMenu();
}
if (0 != view.m_fileList.size() )
{
ImGui::Separator();
ImGui::TextColored(
ImVec4(0.0f, 1.0f, 1.0f, 1.0f)
, view.m_fileList[view.m_fileIndex].c_str()
);
ImGui::Separator();
const char* name = "";
if (view.m_textureInfo.cubeMap)
{
name = " CubeMap";
}
else if (1 < view.m_textureInfo.depth)
{
name = " 3D";
view.m_textureInfo.numLayers = view.m_textureInfo.depth;
}
else if (1 < view.m_textureInfo.numLayers)
{
name = " 2D Array";
}
ImGui::Text("%d x %d%s, mips: %d, layers %d, %s"
, view.m_textureInfo.width
, view.m_textureInfo.height
, name
, view.m_textureInfo.numMips
, view.m_textureInfo.numLayers
, bimg::getName(bimg::TextureFormat::Enum(view.m_textureInfo.format) )
);
}
ImGui::EndMainMenuBar();
}
ImGui::PopStyleVar(2);
static bool help = false;
static bool about = false;
static bool mouseDelta = false;
if (!mouseDelta)
{
mouseStatePrev = mouseState;
mouseDelta = true;
}
2018-04-24 02:23:38 +03:00
int32_t zoomDelta = overArea ? 0 : 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 (!overArea
&& !help
&& mouseState.m_buttons[entry::MouseButton::Left] != mouseStatePrev.m_buttons[entry::MouseButton::Left])
{
dragging = !!mouseState.m_buttons[entry::MouseButton::Left];
}
if (dragging)
{
if (view.m_textureInfo.cubeMap
&& Geometry::Quad == view.m_cubeMapGeo)
{
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);
}
}
mouseStatePrev = mouseState;
2017-07-09 21:47:13 +03:00
if (help != view.m_help)
2016-04-24 18:49:49 +03:00
{
2017-07-09 21:47:13 +03:00
if (!help)
{
ImGui::OpenPopup("Help");
inputRemoveBindings(s_bindingName[Binding::View]);
2017-07-11 07:42:50 +03:00
inputAddBindings(s_bindingName[Binding::Help], s_binding[Binding::Help]);
2017-07-09 21:47:13 +03:00
}
else
{
2017-07-11 07:42:50 +03:00
inputRemoveBindings(s_bindingName[Binding::Help]);
2017-07-09 21:47:13 +03:00
inputAddBindings(s_bindingName[Binding::View], s_binding[Binding::View]);
}
help = view.m_help;
2016-04-24 18:49:49 +03:00
}
if (about != view.m_about)
{
if (!about)
{
ImGui::OpenPopup("About");
inputRemoveBindings(s_bindingName[Binding::View]);
inputAddBindings(s_bindingName[Binding::About], s_binding[Binding::About]);
}
else
{
inputRemoveBindings(s_bindingName[Binding::About]);
inputAddBindings(s_bindingName[Binding::View], s_binding[Binding::View]);
}
about = view.m_about;
}
2017-10-25 07:32:31 +03:00
if (view.m_info)
{
2017-12-02 09:09:02 +03:00
ImGui::SetNextWindowSize(
ImVec2(300.0f, 320.0f)
2017-12-02 09:09:02 +03:00
, ImGuiCond_FirstUseEver
);
if (ImGui::Begin("Info", &view.m_info) )
2017-10-25 07:32:31 +03:00
{
if (ImGui::BeginChild("##info", ImVec2(0.0f, 0.0f) ) )
{
2018-01-04 08:37:42 +03:00
if (!bgfx::isValid(texture) )
{
ImGui::Text("Texture is not loaded.");
}
else
{
ImGui::Text("Name: %s", view.m_fileList[view.m_fileIndex].c_str() );
2018-01-04 08:37:42 +03:00
ImGui::Text("Dimensions: %d x %d"
, view.m_textureInfo.width
, view.m_textureInfo.height
);
2017-10-25 07:32:31 +03:00
2018-01-04 08:37:42 +03:00
ImGui::Text("Format: %s"
, bimg::getName(bimg::TextureFormat::Enum(view.m_textureInfo.format) )
);
2017-10-25 07:32:31 +03:00
uint32_t numLayers = view.m_textureInfo.numLayers;
if (1 < view.m_textureInfo.depth)
{
numLayers = bx::max(1, view.m_textureInfo.depth >> view.m_mip);
}
view.m_layer = bx::clamp<int32_t>(view.m_layer, 0, numLayers - 1);
ImGui::SliderInt("Layer", (int32_t*)&view.m_layer, 0, numLayers - 1);
ImGui::SliderInt("Mip", (int32_t*)&view.m_mip, 0, view.m_textureInfo.numMips - 1);
2017-10-25 07:32:31 +03:00
2018-01-04 08:37:42 +03:00
ImGui::Separator();
2017-10-25 07:32:31 +03:00
2018-01-04 08:37:42 +03:00
ImGui::Checkbox("Input linear", &view.m_inLinear);
ImGui::RangeSliderFloat("EV range", &view.m_evMin, &view.m_evMax, kEvMin, kEvMax);
ImGui::SliderFloat("EV", &view.m_ev, view.m_evMin, view.m_evMax);
2017-10-26 02:17:54 +03:00
2018-01-04 08:37:42 +03:00
ImGui::Separator();
2018-01-03 03:20:03 +03:00
2018-01-04 08:37:42 +03:00
ImGui::Checkbox("Fit to window", &view.m_fit);
ImGui::SliderFloat("Scale", &view.m_zoom, 0.01f, 10.0f);
}
2018-01-03 03:20:03 +03:00
2017-10-25 07:32:31 +03:00
ImGui::EndChild();
}
}
ImGui::End();
2017-10-25 07:32:31 +03:00
}
2017-07-18 07:30:03 +03:00
if (view.m_files)
{
char temp[bx::kMaxFilePath];
bx::snprintf(temp, BX_COUNTOF(temp), "%s##File", view.m_path.get() );
2017-12-02 09:09:02 +03:00
ImGui::SetNextWindowSize(
ImVec2(400.0f, 400.0f)
, ImGuiCond_FirstUseEver
);
if (ImGui::Begin(temp, &view.m_files) )
2017-07-18 07:30:03 +03:00
{
if (ImGui::BeginChild("##file_list", ImVec2(0.0f, 0.0f) ) )
{
ImGui::PushFont(ImGui::Font::Mono);
const float itemHeight = ImGui::GetTextLineHeightWithSpacing();
const float listHeight =
2018-01-14 02:33:50 +03:00
bx::max(1.0f, bx::floor(ImGui::GetWindowHeight()/itemHeight) )
2017-07-18 07:30:03 +03:00
* itemHeight
;
ImGui::PushItemWidth(-1);
if (ImGui::ListBoxHeader("##empty", ImVec2(0.0f, listHeight) ) )
{
const int32_t itemCount = int32_t(view.m_fileList.size() );
2017-07-18 07:30:03 +03:00
int32_t start, end;
ImGui::CalcListClipping(itemCount, itemHeight, &start, &end);
const int32_t index = int32_t(view.m_fileIndex);
if (index <= start)
{
ImGui::SetScrollY(ImGui::GetScrollY() - (start-index+1)*itemHeight);
}
else if (index >= end)
{
ImGui::SetScrollY(ImGui::GetScrollY() + (index-end+1)*itemHeight);
}
ImGuiListClipper clipper(itemCount, itemHeight);
for (int32_t pos = clipper.DisplayStart; pos < clipper.DisplayEnd; ++pos)
{
ImGui::PushID(pos);
bool isSelected = uint32_t(pos) == view.m_fileIndex;
if (ImGui::Selectable(view.m_fileList[pos].c_str(), &isSelected) )
{
view.m_fileIndex = pos;
}
ImGui::PopID();
}
clipper.End();
ImGui::ListBoxFooter();
}
ImGui::PopFont();
ImGui::EndChild();
}
}
ImGui::End();
2017-07-18 07:30:03 +03:00
}
if (ImGui::BeginPopupModal("About", &view.m_about, ImGuiWindowFlags_AlwaysAutoResize) )
2016-04-24 18:49:49 +03:00
{
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"
2019-01-14 04:13:25 +03:00
"Copyright 2011-2019 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::Dummy(ImVec2(0.0f, 0.0f) );
ImGui::SameLine(ImGui::GetWindowWidth() - 136.0f);
if (ImGui::Button("Close", ImVec2(128.0f, 0.0f) )
|| !view.m_about)
{
view.m_about = false;
ImGui::CloseCurrentPopup();
}
ImGui::EndPopup();
}
if (ImGui::BeginPopupModal("Help", &view.m_help, ImGuiWindowFlags_AlwaysAutoResize) )
{
ImGui::SetWindowFontScale(1.0f);
2016-04-24 18:49:49 +03:00
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-07-09 21:47:13 +03:00
keyBindingHelp("<", "Reset MIP level.");
keyBindingHelp(",/,", "MIP level up/down.");
keyBindingHelp("/", "Toggle linear/point texture sampling.");
keyBindingHelp("[space]", "Change cubemap mode.");
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();
}
imguiEndFrame();
2016-04-23 21:07:20 +03:00
2018-01-04 08:37:42 +03:00
if ( (!bgfx::isValid(texture) || view.m_fileIndex != fileIndex)
&& 0 != view.m_fileList.size() )
2016-04-23 21:07:20 +03:00
{
if (bgfx::isValid(texture) )
{
bgfx::destroy(texture);
2016-04-23 21:07:20 +03:00
}
fileIndex = view.m_fileIndex;
2017-07-18 07:30:03 +03:00
bx::FilePath fp = view.m_path;
fp.join(view.m_fileList[view.m_fileIndex].c_str() );
2016-04-23 21:07:20 +03:00
2017-07-20 08:53:48 +03:00
bimg::Orientation::Enum orientation;
2017-07-18 07:30:03 +03:00
texture = loadTexture(fp.get()
2017-07-09 21:47:13 +03:00
, 0
| BGFX_SAMPLER_U_CLAMP
| BGFX_SAMPLER_V_CLAMP
| BGFX_SAMPLER_W_CLAMP
2017-07-09 21:47:13 +03:00
, 0
2017-10-25 07:32:31 +03:00
, &view.m_textureInfo
2017-07-20 08:53:48 +03:00
, &orientation
2017-07-09 21:47:13 +03:00
);
bimg::TextureFormat::Enum format = bimg::TextureFormat::Enum(view.m_textureInfo.format);
if (format < bimg::TextureFormat::Count)
2017-07-20 08:53:48 +03:00
{
view.m_inLinear = bimg::isFloat(format);
switch (orientation)
{
default:
case bimg::Orientation::R0: cmdExec("view orientation\nview orientation z 0"); break;
case bimg::Orientation::R90: cmdExec("view orientation\nview orientation z -90"); break;
case bimg::Orientation::R180: cmdExec("view orientation\nview orientation z -180"); break;
case bimg::Orientation::R270: cmdExec("view orientation\nview orientation z -270"); break;
case bimg::Orientation::HFlip: cmdExec("view orientation\nview orientation x -180"); break;
case bimg::Orientation::HFlipR90: cmdExec("view orientation\nview orientation z -90\nview orientation x -180"); break;
case bimg::Orientation::HFlipR270: cmdExec("view orientation\nview orientation z -270\nview orientation x -180"); break;
case bimg::Orientation::VFlip: cmdExec("view orientation\nview orientation y -180"); break;
}
2017-07-20 08:53:48 +03:00
}
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 = "";
2017-10-25 07:32:31 +03:00
if (view.m_textureInfo.cubeMap)
2017-06-20 23:31:22 +03:00
{
name = " CubeMap";
}
2017-10-25 07:32:31 +03:00
else if (1 < view.m_textureInfo.depth)
2017-06-20 23:31:22 +03:00
{
name = " 3D";
2017-10-25 07:32:31 +03:00
view.m_textureInfo.numLayers = view.m_textureInfo.depth;
2017-06-20 23:31:22 +03:00
}
2017-10-25 07:32:31 +03:00
else if (1 < view.m_textureInfo.numLayers)
2017-06-20 23:31:22 +03:00
{
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-07-18 07:30:03 +03:00
, fp.get()
2017-10-25 07:32:31 +03:00
, view.m_textureInfo.width
, view.m_textureInfo.height
2017-06-20 23:31:22 +03:00
, name
2017-10-25 07:32:31 +03:00
, view.m_textureInfo.numMips
, view.m_textureInfo.numLayers
, bimg::getName(bimg::TextureFormat::Enum(view.m_textureInfo.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);
float transitionTime = dragging ? 0.0f : 0.25f*view.m_transitionTime;
2017-05-26 01:12:07 +03:00
posx.set(view.m_posx, transitionTime);
posy.set(view.m_posy, transitionTime);
2016-04-22 08:12:35 +03:00
float ortho[16];
2017-07-09 21:47:13 +03:00
bx::mtxOrtho(
ortho
, 0.0f
2018-11-03 03:18:22 +03:00
, float(view.m_width)
, float(view.m_height)
2017-07-09 21:47:13 +03:00
, 0.0f
, 0.0f
, 1000.0f
, 0.0f
, caps->homogeneousDepth
);
bgfx::setViewTransform(BACKGROUND_VIEW_ID, NULL, ortho);
2018-11-03 03:18:22 +03:00
bgfx::setViewRect(BACKGROUND_VIEW_ID, 0, 0, uint16_t(view.m_width), uint16_t(view.m_height) );
2017-07-09 21:47:13 +03:00
setGeometry(Geometry::Quad
, 0
, 0
2018-11-03 03:18:22 +03:00
, view.m_width
, view.m_height
2018-01-04 08:37:42 +03:00
, view.m_alpha || !bgfx::isValid(texture) ? UINT32_MAX : 0
2018-11-03 03:18:22 +03:00
, float(view.m_width )/float(checkerBoardSize)
, float(view.m_height)/float(checkerBoardSize)
);
bgfx::setTexture(0
, s_texColor
, checkerBoard
);
bgfx::setState(0
2018-02-14 03:08:49 +03:00
| BGFX_STATE_WRITE_RGB
| BGFX_STATE_WRITE_A
);
bgfx::submit(BACKGROUND_VIEW_ID
2017-07-09 21:47:13 +03:00
, textureProgram
);
2017-05-26 01:12:07 +03:00
float px = posx.getValue();
float py = posy.getValue();
2017-07-09 21:47:13 +03:00
bx::mtxOrtho(
ortho
2018-11-03 03:18:22 +03:00
, px-view.m_width/2.0f
, px+view.m_width/2.0f
, py+view.m_height/2.0f
, py-view.m_height/2.0f
2017-07-21 06:27:36 +03:00
, -10.0f
, 10.0f
2017-07-09 21:47:13 +03:00
, 0.0f
, caps->homogeneousDepth
);
bgfx::setViewTransform(IMAGE_VIEW_ID, NULL, ortho);
2018-11-03 03:18:22 +03:00
bgfx::setViewRect(IMAGE_VIEW_ID, 0, 0, uint16_t(view.m_width), uint16_t(view.m_height) );
2016-04-22 08:12:35 +03:00
bgfx::dbgTextClear();
float orientation[16];
bx::mtxRotateXYZ(orientation, view.m_flipH, view.m_flipV, angle.getValue()+view.m_orientation);
if (view.m_fit)
{
2019-01-04 01:30:59 +03:00
const bx::Vec3 wh = { float(view.m_textureInfo.width), float(view.m_textureInfo.height), 0.0f };
const bx::Vec3 result = bx::round(bx::abs(bx::mul(wh, orientation) ) );
scale.set(bx::min(float(view.m_width) / result.x
, float(view.m_height) / result.y)
, 0.1f*view.m_transitionTime
);
}
else
{
scale.set(1.0f, 0.1f*view.m_transitionTime);
}
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-10-25 07:32:31 +03:00
setGeometry(view.m_textureInfo.cubeMap ? view.m_cubeMapGeo : Geometry::Quad
, -int(view.m_textureInfo.width * ss)/2
, -int(view.m_textureInfo.height * ss)/2
, int(view.m_textureInfo.width * ss)
, int(view.m_textureInfo.height * ss)
, view.m_abgr
2016-04-23 21:07:20 +03:00
);
2016-04-22 08:12:35 +03:00
bgfx::setTransform(orientation);
2017-06-03 23:18:12 +03:00
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);
2017-11-07 05:25:14 +03:00
mip.set(float(view.m_mip), 0.5f*view.m_transitionTime);
layer.set(float(view.m_layer), 0.25f*view.m_transitionTime);
ev.set(view.m_ev, 0.5f*view.m_transitionTime);
2016-04-22 08:12:35 +03:00
float params[4] = { mip.getValue(), layer.getValue(), view.m_inLinear ? 1.0f : 0.0f, ev.getValue() };
2017-10-25 07:32:31 +03:00
if (1 < view.m_textureInfo.depth)
2017-06-20 23:31:22 +03:00
{
params[1] = layer.getValue()/float(bx::max(1, view.m_textureInfo.depth >> view.m_mip) );
2017-06-20 23:31:22 +03:00
}
bgfx::setUniform(u_params0, params);
float params1[4] = { float(view.m_outputFormat), 80.0f, 0.0, 0.0f };
bgfx::setUniform(u_params1, params1);
2016-04-22 08:12:35 +03:00
2017-05-25 08:40:53 +03:00
const uint32_t textureFlags = 0
| BGFX_SAMPLER_U_CLAMP
| BGFX_SAMPLER_V_CLAMP
| BGFX_SAMPLER_W_CLAMP
2017-05-25 08:40:53 +03:00
| (view.m_filter ? 0 : 0
| BGFX_SAMPLER_MIN_POINT
| BGFX_SAMPLER_MIP_POINT
| BGFX_SAMPLER_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
2018-02-14 03:08:49 +03:00
| BGFX_STATE_WRITE_RGB
| BGFX_STATE_WRITE_A
| (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;
2017-10-25 07:32:31 +03:00
if (1 < view.m_textureInfo.depth)
2017-06-20 23:31:22 +03:00
{
program = texture3DProgram;
}
2017-10-25 07:32:31 +03:00
else if (view.m_textureInfo.cubeMap)
2017-06-20 23:31:22 +03:00
{
2017-07-09 21:47:13 +03:00
program = Geometry::Quad == view.m_cubeMapGeo
? textureCubeProgram
: textureCube2Program
;
2017-06-20 23:31:22 +03:00
}
2017-10-25 07:32:31 +03:00
else if (1 < view.m_textureInfo.numLayers)
2017-06-20 23:31:22 +03:00
{
program = textureArrayProgram;
}
else if (view.m_sdf)
{
2017-11-30 08:06:14 +03:00
if (8 < bimg::getBitsPerPixel(bimg::TextureFormat::Enum(view.m_textureInfo.format) ) )
{
program = textureMsdfProgram;
}
else
{
program = textureSdfProgram;
}
2017-06-20 23:31:22 +03:00
}
2018-01-04 08:37:42 +03:00
if (bgfx::isValid(texture) )
{
bgfx::submit(IMAGE_VIEW_ID, program);
}
else
{
bgfx::discard();
}
2016-04-22 08:12:35 +03:00
bgfx::frame();
2018-04-24 02:23:38 +03:00
// Slow down when nothing is animating...
if (!dragging
&& !anyActive() )
{
bx::sleep(100);
}
2016-04-22 08:12:35 +03:00
}
}
if (bgfx::isValid(texture) )
{
bgfx::destroy(texture);
2016-04-22 08:12:35 +03:00
}
2017-07-09 21:47:13 +03:00
bgfx::destroy(checkerBoard);
bgfx::destroy(s_texColor);
bgfx::destroy(u_mtx);
bgfx::destroy(u_params0);
bgfx::destroy(u_params1);
bgfx::destroy(textureProgram);
bgfx::destroy(textureArrayProgram);
bgfx::destroy(textureCubeProgram);
bgfx::destroy(textureCube2Program);
bgfx::destroy(textureSdfProgram);
2018-01-09 06:05:21 +03:00
bgfx::destroy(textureMsdfProgram);
bgfx::destroy(texture3DProgram);
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;
}