2017-12-08 21:46:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/viewer/ImGuiLayer.h"
|
2017-12-08 21:46:09 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkImage.h"
|
|
|
|
#include "include/core/SkPixmap.h"
|
|
|
|
#include "include/core/SkSurface.h"
|
|
|
|
#include "include/core/SkSwizzle.h"
|
|
|
|
#include "include/core/SkTime.h"
|
|
|
|
#include "include/core/SkVertices.h"
|
2017-12-08 21:46:09 +00:00
|
|
|
|
|
|
|
#include "imgui.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
using namespace sk_app;
|
|
|
|
|
|
|
|
ImGuiLayer::ImGuiLayer() {
|
|
|
|
// ImGui initialization:
|
2018-06-29 18:30:48 +00:00
|
|
|
ImGui::CreateContext();
|
2017-12-08 21:46:09 +00:00
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
|
|
|
|
// Keymap...
|
2019-08-29 14:39:22 +00:00
|
|
|
io.KeyMap[ImGuiKey_Tab] = (int)skui::Key::kTab;
|
|
|
|
io.KeyMap[ImGuiKey_LeftArrow] = (int)skui::Key::kLeft;
|
|
|
|
io.KeyMap[ImGuiKey_RightArrow] = (int)skui::Key::kRight;
|
|
|
|
io.KeyMap[ImGuiKey_UpArrow] = (int)skui::Key::kUp;
|
|
|
|
io.KeyMap[ImGuiKey_DownArrow] = (int)skui::Key::kDown;
|
|
|
|
io.KeyMap[ImGuiKey_PageUp] = (int)skui::Key::kPageUp;
|
|
|
|
io.KeyMap[ImGuiKey_PageDown] = (int)skui::Key::kPageDown;
|
|
|
|
io.KeyMap[ImGuiKey_Home] = (int)skui::Key::kHome;
|
|
|
|
io.KeyMap[ImGuiKey_End] = (int)skui::Key::kEnd;
|
|
|
|
io.KeyMap[ImGuiKey_Delete] = (int)skui::Key::kDelete;
|
|
|
|
io.KeyMap[ImGuiKey_Backspace] = (int)skui::Key::kBack;
|
|
|
|
io.KeyMap[ImGuiKey_Enter] = (int)skui::Key::kOK;
|
|
|
|
io.KeyMap[ImGuiKey_Escape] = (int)skui::Key::kEscape;
|
|
|
|
io.KeyMap[ImGuiKey_A] = (int)skui::Key::kA;
|
|
|
|
io.KeyMap[ImGuiKey_C] = (int)skui::Key::kC;
|
|
|
|
io.KeyMap[ImGuiKey_V] = (int)skui::Key::kV;
|
|
|
|
io.KeyMap[ImGuiKey_X] = (int)skui::Key::kX;
|
|
|
|
io.KeyMap[ImGuiKey_Y] = (int)skui::Key::kY;
|
|
|
|
io.KeyMap[ImGuiKey_Z] = (int)skui::Key::kZ;
|
2017-12-08 21:46:09 +00:00
|
|
|
|
|
|
|
int w, h;
|
|
|
|
unsigned char* pixels;
|
|
|
|
io.Fonts->GetTexDataAsAlpha8(&pixels, &w, &h);
|
|
|
|
SkImageInfo info = SkImageInfo::MakeA8(w, h);
|
|
|
|
SkPixmap pmap(info, pixels, info.minRowBytes());
|
2020-05-21 16:11:27 +00:00
|
|
|
SkMatrix localMatrix = SkMatrix::Scale(1.0f / w, 1.0f / h);
|
2017-12-08 21:46:09 +00:00
|
|
|
auto fontImage = SkImage::MakeFromRaster(pmap, nullptr, nullptr);
|
|
|
|
auto fontShader = fontImage->makeShader(&localMatrix);
|
|
|
|
fFontPaint.setShader(fontShader);
|
|
|
|
fFontPaint.setColor(SK_ColorWHITE);
|
|
|
|
fFontPaint.setFilterQuality(kLow_SkFilterQuality);
|
|
|
|
io.Fonts->TexID = &fFontPaint;
|
|
|
|
}
|
|
|
|
|
2018-06-29 18:30:48 +00:00
|
|
|
ImGuiLayer::~ImGuiLayer() {
|
|
|
|
ImGui::DestroyContext();
|
|
|
|
}
|
|
|
|
|
2017-12-08 21:46:09 +00:00
|
|
|
void ImGuiLayer::onAttach(Window* window) {
|
|
|
|
fWindow = window;
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
bool ImGuiLayer::onMouse(int x, int y, skui::InputState state, skui::ModifierKey modifiers) {
|
2017-12-08 21:46:09 +00:00
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
io.MousePos.x = static_cast<float>(x);
|
|
|
|
io.MousePos.y = static_cast<float>(y);
|
2019-08-29 14:39:22 +00:00
|
|
|
if (skui::InputState::kDown == state) {
|
2017-12-08 21:46:09 +00:00
|
|
|
io.MouseDown[0] = true;
|
2019-08-29 14:39:22 +00:00
|
|
|
} else if (skui::InputState::kUp == state) {
|
2017-12-08 21:46:09 +00:00
|
|
|
io.MouseDown[0] = false;
|
|
|
|
}
|
|
|
|
return io.WantCaptureMouse;
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
bool ImGuiLayer::onMouseWheel(float delta, skui::ModifierKey modifiers) {
|
2017-12-08 21:46:09 +00:00
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
io.MouseWheel += delta;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImGuiLayer::skiaWidget(const ImVec2& size, SkiaWidgetFunc func) {
|
|
|
|
intptr_t funcIndex = fSkiaWidgetFuncs.count();
|
|
|
|
fSkiaWidgetFuncs.push_back(func);
|
|
|
|
ImGui::Image((ImTextureID)funcIndex, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImGuiLayer::onPrePaint() {
|
|
|
|
// Update ImGui input
|
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
2019-02-07 19:10:44 +00:00
|
|
|
|
|
|
|
static double previousTime = 0.0;
|
|
|
|
double currentTime = SkTime::GetSecs();
|
|
|
|
io.DeltaTime = static_cast<float>(currentTime - previousTime);
|
|
|
|
previousTime = currentTime;
|
|
|
|
|
2017-12-08 21:46:09 +00:00
|
|
|
io.DisplaySize.x = static_cast<float>(fWindow->width());
|
|
|
|
io.DisplaySize.y = static_cast<float>(fWindow->height());
|
|
|
|
|
2020-07-01 15:12:19 +00:00
|
|
|
io.KeyAlt = io.KeysDown[static_cast<int>(skui::Key::kOption)];
|
|
|
|
io.KeyCtrl = io.KeysDown[static_cast<int>(skui::Key::kCtrl)];
|
2019-08-29 14:39:22 +00:00
|
|
|
io.KeyShift = io.KeysDown[static_cast<int>(skui::Key::kShift)];
|
2020-07-01 15:12:19 +00:00
|
|
|
io.KeySuper = io.KeysDown[static_cast<int>(skui::Key::kSuper)];
|
2017-12-08 21:46:09 +00:00
|
|
|
|
|
|
|
ImGui::NewFrame();
|
|
|
|
}
|
|
|
|
|
2019-03-04 16:00:10 +00:00
|
|
|
void ImGuiLayer::onPaint(SkSurface* surface) {
|
2017-12-08 21:46:09 +00:00
|
|
|
// This causes ImGui to rebuild vertex/index data based on all immediate-mode commands
|
|
|
|
// (widgets, etc...) that have been issued
|
|
|
|
ImGui::Render();
|
|
|
|
|
|
|
|
// Then we fetch the most recent data, and convert it so we can render with Skia
|
|
|
|
const ImDrawData* drawData = ImGui::GetDrawData();
|
|
|
|
SkTDArray<SkPoint> pos;
|
|
|
|
SkTDArray<SkPoint> uv;
|
|
|
|
SkTDArray<SkColor> color;
|
|
|
|
|
2019-03-04 16:00:10 +00:00
|
|
|
auto canvas = surface->getCanvas();
|
|
|
|
|
2017-12-08 21:46:09 +00:00
|
|
|
for (int i = 0; i < drawData->CmdListsCount; ++i) {
|
|
|
|
const ImDrawList* drawList = drawData->CmdLists[i];
|
|
|
|
|
|
|
|
// De-interleave all vertex data (sigh), convert to Skia types
|
|
|
|
pos.rewind(); uv.rewind(); color.rewind();
|
2019-01-17 14:17:35 +00:00
|
|
|
for (int j = 0; j < drawList->VtxBuffer.size(); ++j) {
|
|
|
|
const ImDrawVert& vert = drawList->VtxBuffer[j];
|
2018-08-08 15:23:41 +00:00
|
|
|
pos.push_back(SkPoint::Make(vert.pos.x, vert.pos.y));
|
|
|
|
uv.push_back(SkPoint::Make(vert.uv.x, vert.uv.y));
|
|
|
|
color.push_back(vert.col);
|
2017-12-08 21:46:09 +00:00
|
|
|
}
|
|
|
|
// ImGui colors are RGBA
|
|
|
|
SkSwapRB(color.begin(), color.begin(), color.count());
|
|
|
|
|
|
|
|
int indexOffset = 0;
|
|
|
|
|
|
|
|
// Draw everything with canvas.drawVertices...
|
|
|
|
for (int j = 0; j < drawList->CmdBuffer.size(); ++j) {
|
|
|
|
const ImDrawCmd* drawCmd = &drawList->CmdBuffer[j];
|
|
|
|
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
|
|
|
|
// TODO: Find min/max index for each draw, so we know how many vertices (sigh)
|
|
|
|
if (drawCmd->UserCallback) {
|
|
|
|
drawCmd->UserCallback(drawList, drawCmd);
|
|
|
|
} else {
|
|
|
|
intptr_t idIndex = (intptr_t)drawCmd->TextureId;
|
|
|
|
if (idIndex < fSkiaWidgetFuncs.count()) {
|
|
|
|
// Small image IDs are actually indices into a list of callbacks. We directly
|
|
|
|
// examing the vertex data to deduce the image rectangle, then reconfigure the
|
|
|
|
// canvas to be clipped and translated so that the callback code gets to use
|
|
|
|
// Skia to render a widget in the middle of an ImGui panel.
|
|
|
|
ImDrawIdx rectIndex = drawList->IdxBuffer[indexOffset];
|
|
|
|
SkPoint tl = pos[rectIndex], br = pos[rectIndex + 2];
|
|
|
|
canvas->clipRect(SkRect::MakeLTRB(tl.fX, tl.fY, br.fX, br.fY));
|
|
|
|
canvas->translate(tl.fX, tl.fY);
|
|
|
|
fSkiaWidgetFuncs[idIndex](canvas);
|
|
|
|
} else {
|
|
|
|
SkPaint* paint = static_cast<SkPaint*>(drawCmd->TextureId);
|
|
|
|
SkASSERT(paint);
|
|
|
|
|
|
|
|
canvas->clipRect(SkRect::MakeLTRB(drawCmd->ClipRect.x, drawCmd->ClipRect.y,
|
|
|
|
drawCmd->ClipRect.z, drawCmd->ClipRect.w));
|
|
|
|
auto vertices = SkVertices::MakeCopy(SkVertices::kTriangles_VertexMode,
|
|
|
|
drawList->VtxBuffer.size(),
|
|
|
|
pos.begin(), uv.begin(), color.begin(),
|
|
|
|
drawCmd->ElemCount,
|
|
|
|
drawList->IdxBuffer.begin() + indexOffset);
|
|
|
|
canvas->drawVertices(vertices, SkBlendMode::kModulate, *paint);
|
|
|
|
}
|
2019-02-08 15:07:16 +00:00
|
|
|
indexOffset += drawCmd->ElemCount;
|
2017-12-08 21:46:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fSkiaWidgetFuncs.reset();
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
bool ImGuiLayer::onKey(skui::Key key, skui::InputState state, skui::ModifierKey modifiers) {
|
2017-12-08 21:46:09 +00:00
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
2019-08-29 14:39:22 +00:00
|
|
|
io.KeysDown[static_cast<int>(key)] = (skui::InputState::kDown == state);
|
2017-12-08 21:46:09 +00:00
|
|
|
return io.WantCaptureKeyboard;
|
|
|
|
}
|
|
|
|
|
2019-08-29 14:39:22 +00:00
|
|
|
bool ImGuiLayer::onChar(SkUnichar c, skui::ModifierKey modifiers) {
|
2017-12-08 21:46:09 +00:00
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
if (io.WantTextInput) {
|
|
|
|
if (c > 0 && c < 0x10000) {
|
|
|
|
io.AddInputCharacter(c);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|