2023-06-20 04:33:09 +00:00
|
|
|
#include "StarGuiContext.hpp"
|
|
|
|
#include "StarRoot.hpp"
|
|
|
|
#include "StarConfiguration.hpp"
|
|
|
|
#include "StarMixer.hpp"
|
|
|
|
#include "StarAssets.hpp"
|
|
|
|
#include "StarImageMetadataDatabase.hpp"
|
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
GuiContext* GuiContext::s_singleton;
|
|
|
|
|
|
|
|
GuiContext* GuiContext::singletonPtr() {
|
|
|
|
return s_singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
GuiContext& GuiContext::singleton() {
|
|
|
|
if (!s_singleton)
|
|
|
|
throw GuiContextException("GuiContext::singleton() called with no GuiContext instance available");
|
|
|
|
else
|
|
|
|
return *s_singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
GuiContext::GuiContext(MixerPtr mixer, ApplicationControllerPtr appController) {
|
|
|
|
if (s_singleton)
|
|
|
|
throw GuiContextException("Singleton GuiContext has been constructed twice");
|
|
|
|
|
|
|
|
s_singleton = this;
|
|
|
|
|
2024-02-19 15:55:19 +00:00
|
|
|
m_mixer = std::move(mixer);
|
|
|
|
m_applicationController = std::move(appController);
|
2023-06-20 04:33:09 +00:00
|
|
|
|
|
|
|
m_interfaceScale = 1;
|
|
|
|
|
|
|
|
m_shiftHeld = false;
|
|
|
|
|
|
|
|
refreshKeybindings();
|
|
|
|
}
|
|
|
|
|
|
|
|
GuiContext::~GuiContext() {
|
|
|
|
s_singleton = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::renderInit(RendererPtr renderer) {
|
2024-02-19 15:55:19 +00:00
|
|
|
m_renderer = std::move(renderer);
|
2023-06-20 04:33:09 +00:00
|
|
|
auto textureGroup = m_renderer->createTextureGroup();
|
|
|
|
m_textureCollection = make_shared<AssetTextureGroup>(textureGroup);
|
|
|
|
m_drawablePainter = make_shared<DrawablePainter>(m_renderer, m_textureCollection);
|
2023-06-21 09:46:23 +00:00
|
|
|
m_textPainter = make_shared<TextPainter>(m_renderer, textureGroup);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MixerPtr const& GuiContext::mixer() const {
|
|
|
|
return m_mixer;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApplicationControllerPtr const& GuiContext::applicationController() const {
|
|
|
|
return m_applicationController;
|
|
|
|
}
|
|
|
|
|
|
|
|
RendererPtr const& GuiContext::renderer() const {
|
|
|
|
if (!m_renderer)
|
|
|
|
throw GuiContextException("GuiContext::renderer() called before renderInit");
|
|
|
|
return m_renderer;
|
|
|
|
}
|
|
|
|
|
|
|
|
AssetTextureGroupPtr const& GuiContext::assetTextureGroup() const {
|
|
|
|
if (!m_textureCollection)
|
|
|
|
throw GuiContextException("GuiContext::assetTextureGroup() called before renderInit");
|
|
|
|
return m_textureCollection;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextPainterPtr const& GuiContext::textPainter() const {
|
|
|
|
if (!m_textPainter)
|
|
|
|
throw GuiContextException("GuiContext::textPainter() called before renderInit");
|
|
|
|
return m_textPainter;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned GuiContext::windowWidth() const {
|
|
|
|
return renderer()->screenSize()[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned GuiContext::windowHeight() const {
|
|
|
|
return renderer()->screenSize()[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
Vec2U GuiContext::windowSize() const {
|
|
|
|
return renderer()->screenSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
Vec2U GuiContext::windowInterfaceSize() const {
|
|
|
|
return Vec2U::ceil(Vec2F(windowSize()) / interfaceScale());
|
|
|
|
}
|
|
|
|
|
|
|
|
int GuiContext::interfaceScale() const {
|
|
|
|
return m_interfaceScale;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setInterfaceScale(int interfaceScale) {
|
|
|
|
m_interfaceScale = interfaceScale;
|
|
|
|
}
|
|
|
|
|
2023-07-17 12:20:39 +00:00
|
|
|
Maybe<Vec2I> GuiContext::mousePosition(InputEvent const& event, int pixelRatio) const {
|
|
|
|
auto getInterfacePosition = [pixelRatio](Vec2I pos) {
|
|
|
|
return Vec2I(pos) / pixelRatio;
|
2023-06-20 04:33:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (auto mouseMoveEvent = event.ptr<MouseMoveEvent>())
|
|
|
|
return getInterfacePosition(mouseMoveEvent->mousePosition);
|
|
|
|
else if (auto mouseDownEvent = event.ptr<MouseButtonDownEvent>())
|
|
|
|
return getInterfacePosition(mouseDownEvent->mousePosition);
|
|
|
|
else if (auto mouseUpEvent = event.ptr<MouseButtonUpEvent>())
|
|
|
|
return getInterfacePosition(mouseUpEvent->mousePosition);
|
|
|
|
else if (auto mouseWheelEvent = event.ptr<MouseWheelEvent>())
|
|
|
|
return getInterfacePosition(mouseWheelEvent->mousePosition);
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-07-17 12:20:39 +00:00
|
|
|
Maybe<Vec2I> GuiContext::mousePosition(InputEvent const& event) const {
|
|
|
|
return mousePosition(event, interfaceScale());
|
|
|
|
}
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
Set<InterfaceAction> GuiContext::actions(InputEvent const& event) const {
|
|
|
|
return m_keyBindings.actions(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
Set<InterfaceAction> GuiContext::actionsForKey(Key key) const {
|
|
|
|
return m_keyBindings.actionsForKey(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::refreshKeybindings() {
|
|
|
|
m_keyBindings = KeyBindings(Root::singleton().configuration()->get("bindings"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setInterfaceScissorRect(RectI const& scissor) {
|
|
|
|
renderer()->setScissorRect(RectI(scissor).scaled(interfaceScale()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::resetInterfaceScissorRect() {
|
|
|
|
renderer()->setScissorRect({});
|
|
|
|
}
|
|
|
|
|
2023-06-24 15:16:40 +00:00
|
|
|
Vec2U GuiContext::textureSize(AssetPath const& texName) {
|
2023-06-20 04:33:09 +00:00
|
|
|
return assetTextureGroup()->loadTexture(texName)->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawQuad(RectF const& screenCoords, Vec4B const& color) {
|
2023-06-29 18:34:10 +00:00
|
|
|
renderer()->immediatePrimitives().emplace_back(std::in_place_type_t<RenderQuad>(), screenCoords, color, 0.0f);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
2023-06-24 15:16:40 +00:00
|
|
|
void GuiContext::drawQuad(AssetPath const& texName, RectF const& screenCoords, Vec4B const& color) {
|
2023-06-29 18:34:10 +00:00
|
|
|
renderer()->immediatePrimitives().emplace_back(std::in_place_type_t<RenderQuad>(), assetTextureGroup()->loadTexture(texName), screenCoords, color, 0.0f);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 11:33:15 +00:00
|
|
|
void GuiContext::drawQuad(AssetPath const& texName, Vec2F const& screenPos, float pixelRatio, Vec4B const& color) {
|
2023-06-29 18:34:10 +00:00
|
|
|
renderer()->immediatePrimitives().emplace_back(std::in_place_type_t<RenderQuad>(), assetTextureGroup()->loadTexture(texName), screenPos, pixelRatio, color, 0.0f);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
2023-06-24 15:16:40 +00:00
|
|
|
void GuiContext::drawQuad(AssetPath const& texName, RectF const& texCoords, RectF const& screenCoords, Vec4B const& color) {
|
2023-06-29 18:34:10 +00:00
|
|
|
renderer()->immediatePrimitives().emplace_back(std::in_place_type_t<RenderQuad>(), assetTextureGroup()->loadTexture(texName),
|
|
|
|
screenCoords.min(), texCoords.min(),
|
|
|
|
Vec2F(screenCoords.xMax(), screenCoords.yMin()), Vec2F(texCoords.xMax(), texCoords.yMin()),
|
|
|
|
screenCoords.max(), texCoords.max(),
|
|
|
|
Vec2F(screenCoords.xMin(), screenCoords.yMax()), Vec2F(texCoords.xMin(), texCoords.yMax()),
|
|
|
|
color, 0.0f);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 11:33:15 +00:00
|
|
|
void GuiContext::drawDrawable(Drawable drawable, Vec2F const& screenPos, float pixelRatio, Vec4B const& color) {
|
2023-06-20 04:33:09 +00:00
|
|
|
if (drawable.isLine())
|
|
|
|
drawable.linePart().width *= pixelRatio;
|
|
|
|
|
|
|
|
drawable.scale(pixelRatio);
|
|
|
|
drawable.translate(screenPos);
|
|
|
|
drawable.color *= Color::rgba(color);
|
|
|
|
m_drawablePainter->drawDrawable(drawable);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawLine(Vec2F const& begin, Vec2F const end, Vec4B const& color, float lineWidth) {
|
|
|
|
Vec2F left = vnorm(Vec2F(end) - Vec2F(begin)).rot90() * lineWidth / 2.0f;
|
2023-06-29 18:34:10 +00:00
|
|
|
renderer()->immediatePrimitives().emplace_back(std::in_place_type_t<RenderQuad>(),
|
|
|
|
begin + left,
|
|
|
|
begin - left,
|
|
|
|
end - left,
|
|
|
|
end + left,
|
|
|
|
color, 0.0f);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawPolyLines(PolyF const& poly, Vec4B const& color, float lineWidth) {
|
|
|
|
for (size_t i = 0; i < poly.sides(); ++i)
|
|
|
|
drawLine(poly.vertex(i), poly.vertex(i + 1), color, lineWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawTriangles(List<tuple<Vec2F, Vec2F, Vec2F>> const& triangles, Vec4B const& color) {
|
2023-06-29 18:34:10 +00:00
|
|
|
for (auto& poly : triangles) {
|
|
|
|
renderer()->immediatePrimitives().emplace_back(std::in_place_type_t<RenderTriangle>(),
|
|
|
|
get<0>(poly), get<1>(poly), get<2>(poly), color, 0.0f);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawInterfaceDrawable(Drawable drawable, Vec2F const& screenPos, Vec4B const& color) {
|
2024-02-19 15:55:19 +00:00
|
|
|
drawDrawable(std::move(drawable), screenPos * interfaceScale(), (float)interfaceScale(), color);
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawInterfaceLine(Vec2F const& begin, Vec2F const end, Vec4B const& color, float lineWidth) {
|
|
|
|
drawLine(begin * interfaceScale(), end * interfaceScale(), color, lineWidth * interfaceScale());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawInterfacePolyLines(PolyF poly, Vec4B const& color, float lineWidth) {
|
|
|
|
poly.scale(interfaceScale());
|
|
|
|
drawPolyLines(poly, color, lineWidth * interfaceScale());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawInterfaceQuad(RectF const& screenCoords, Vec4B const& color) {
|
|
|
|
drawQuad(screenCoords.scaled(interfaceScale()), color);
|
|
|
|
}
|
|
|
|
|
2023-06-24 15:16:40 +00:00
|
|
|
void GuiContext::drawInterfaceQuad(AssetPath const& texName, Vec2F const& screenCoords, Vec4B const& color) {
|
2023-06-20 04:33:09 +00:00
|
|
|
drawQuad(texName, screenCoords * interfaceScale(), interfaceScale(), color);
|
|
|
|
}
|
|
|
|
|
2023-06-24 15:16:40 +00:00
|
|
|
void GuiContext::drawInterfaceQuad(AssetPath const& texName, Vec2F const& screenCoords, float scale, Vec4B const& color) {
|
2023-06-20 04:33:09 +00:00
|
|
|
drawQuad(texName, screenCoords * interfaceScale(), interfaceScale() * scale, color);
|
|
|
|
}
|
|
|
|
|
2023-06-24 15:16:40 +00:00
|
|
|
void GuiContext::drawInterfaceQuad(AssetPath const& texName, RectF const& texCoords, RectF const& screenCoords, Vec4B const& color) {
|
2023-06-20 04:33:09 +00:00
|
|
|
drawQuad(texName, texCoords, screenCoords.scaled(interfaceScale()), color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawInterfaceTriangles(List<tuple<Vec2F, Vec2F, Vec2F>> const& triangles, Vec4B const& color) {
|
|
|
|
drawTriangles(triangles.transformed([this](tuple<Vec2F, Vec2F, Vec2F> const& poly) {
|
|
|
|
return tuple<Vec2F, Vec2F, Vec2F>(get<0>(poly) * interfaceScale(), get<1>(poly) * interfaceScale(), get<2>(poly) * interfaceScale());
|
|
|
|
}), color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::drawImageStretchSet(ImageStretchSet const& imageSet, RectF const& screenPos, GuiDirection direction, Vec4B const& color) {
|
|
|
|
int innerSize;
|
|
|
|
int innerOffset = 0;
|
|
|
|
RectF begin, end, inner;
|
|
|
|
if (direction == GuiDirection::Horizontal) {
|
|
|
|
innerSize = screenPos.width();
|
|
|
|
if (imageSet.begin.size())
|
|
|
|
innerOffset = textureSize(imageSet.begin)[0];
|
|
|
|
|
|
|
|
if (imageSet.end.size())
|
|
|
|
innerSize = std::max(0, innerSize - innerOffset - Vec2I(textureSize(imageSet.end))[0]);
|
|
|
|
else
|
|
|
|
innerSize = std::max(0, innerSize - innerOffset);
|
|
|
|
|
|
|
|
if (imageSet.begin.size())
|
|
|
|
begin = RectF::withSize(screenPos.min(), Vec2F(textureSize(imageSet.begin)[0], screenPos.height()));
|
|
|
|
else
|
|
|
|
begin = RectF::withSize(screenPos.min(), Vec2F(0, screenPos.height()));
|
|
|
|
|
|
|
|
inner = RectF::withSize(screenPos.min() + Vec2F(innerOffset, 0), Vec2F(innerSize, screenPos.height()));
|
|
|
|
if (imageSet.end.size())
|
|
|
|
end = RectF::withSize(screenPos.min() + Vec2F(innerOffset + innerSize, 0), Vec2F(textureSize(imageSet.end)[0], screenPos.height()));
|
|
|
|
else
|
|
|
|
end = RectF::withSize(screenPos.min(), Vec2F(0, screenPos.height()));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
innerSize = screenPos.height();
|
|
|
|
if (imageSet.begin.size())
|
|
|
|
innerOffset = textureSize(imageSet.begin)[1];
|
|
|
|
|
|
|
|
if (imageSet.end.size())
|
|
|
|
innerSize = std::max(0, innerSize - innerOffset - Vec2I(textureSize(imageSet.end))[1]);
|
|
|
|
else
|
|
|
|
innerSize = std::max(0, innerSize - innerOffset);
|
|
|
|
|
|
|
|
if (imageSet.begin.size())
|
|
|
|
begin = RectF::withSize(screenPos.min(), Vec2F(screenPos.width(), textureSize(imageSet.begin)[1]));
|
|
|
|
else
|
|
|
|
begin = RectF::withSize(screenPos.min(), Vec2F(screenPos.width(), 0));
|
|
|
|
|
|
|
|
inner = RectF::withSize(screenPos.min() + Vec2F(0, innerOffset), Vec2F(screenPos.width(), innerSize));
|
|
|
|
if (imageSet.end.size()) {
|
|
|
|
end = RectF::withSize(screenPos.min() + Vec2F(0, innerOffset + innerSize), Vec2F(screenPos.width(), textureSize(imageSet.end)[1]));
|
|
|
|
} else {
|
|
|
|
end = RectF::withSize(screenPos.min(), Vec2F(screenPos.width(), 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imageSet.begin.size())
|
|
|
|
drawInterfaceQuad(imageSet.begin, RectF(Vec2F(), Vec2F(textureSize(imageSet.begin))), begin, color);
|
|
|
|
|
|
|
|
if (imageSet.type == ImageStretchSet::ImageStretchType::Stretch) {
|
|
|
|
drawInterfaceQuad(imageSet.inner, RectF(Vec2F(), Vec2F(textureSize(imageSet.inner))), inner, color);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
int position = 0;
|
|
|
|
auto texSize = Vec2F(textureSize(imageSet.inner));
|
|
|
|
if (direction == GuiDirection::Horizontal) {
|
|
|
|
starAssert(texSize[0] > 0);
|
|
|
|
while (position < inner.width()) {
|
|
|
|
RectF partialImage = RectF::withSize(Vec2F(), Vec2F(std::min(inner.width() - position, texSize[0]), texSize[1]));
|
|
|
|
drawInterfaceQuad(imageSet.inner, partialImage, RectF::withSize(inner.min() + Vec2F(position, 0), partialImage.size()), color);
|
|
|
|
position += partialImage.size()[0];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
starAssert(texSize[1] > 0);
|
|
|
|
while (position < inner.height()) {
|
|
|
|
RectF partialImage = RectF::withSize(
|
|
|
|
Vec2F(0, max(0.0f, texSize[1] - (inner.height() - position))),
|
|
|
|
Vec2F(texSize[0], std::min(inner.height() - position, texSize[1])));
|
|
|
|
drawInterfaceQuad(imageSet.inner, partialImage, RectF::withSize(inner.min() + Vec2F(0, position), partialImage.size()), color);
|
|
|
|
position += partialImage.size()[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imageSet.end.size())
|
|
|
|
drawInterfaceQuad(imageSet.end, RectF(Vec2F(), Vec2F(textureSize(imageSet.end))), end, color);
|
|
|
|
}
|
|
|
|
|
2023-06-23 08:13:26 +00:00
|
|
|
bool GuiContext::trySetCursor(Drawable const& drawable, Vec2I const& offset, int pixelRatio) {
|
|
|
|
if (!drawable.isImage())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto assets = Root::singleton().assets();
|
|
|
|
auto& imagePath = drawable.imagePart().image;
|
2023-06-24 12:49:47 +00:00
|
|
|
return applicationController()->setCursorImage(AssetPath::join(imagePath), assets->image(imagePath), pixelRatio, offset);
|
2023-06-23 08:13:26 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
RectF GuiContext::renderText(String const& s, TextPositioning const& position) {
|
|
|
|
return textPainter()->renderText(s, position);
|
|
|
|
}
|
|
|
|
|
|
|
|
RectF GuiContext::renderInterfaceText(String const& s, TextPositioning const& position) {
|
|
|
|
auto res = renderText(s, {
|
|
|
|
position.pos * interfaceScale(),
|
|
|
|
position.hAnchor,
|
|
|
|
position.vAnchor,
|
|
|
|
position.wrapWidth.apply(bind(std::multiplies<int>(), _1, interfaceScale())),
|
|
|
|
position.charLimit
|
|
|
|
});
|
|
|
|
return RectF(res).scaled(1.0f / interfaceScale());
|
|
|
|
}
|
|
|
|
|
|
|
|
RectF GuiContext::determineTextSize(String const& s, TextPositioning const& positioning) {
|
|
|
|
return textPainter()->determineTextSize(s, positioning);
|
|
|
|
}
|
|
|
|
|
|
|
|
RectF GuiContext::determineInterfaceTextSize(String const& s, TextPositioning const& positioning) {
|
|
|
|
auto res = determineTextSize(s, {
|
|
|
|
positioning.pos * interfaceScale(),
|
|
|
|
positioning.hAnchor,
|
|
|
|
positioning.vAnchor,
|
|
|
|
positioning.wrapWidth.apply(bind(std::multiplies<int>(), _1, interfaceScale()))
|
|
|
|
});
|
|
|
|
return RectF(res).scaled(1.0f / interfaceScale());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setFontSize(unsigned size) {
|
|
|
|
setFontSize(size, interfaceScale());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setFontSize(unsigned size, int pixelRatio) {
|
|
|
|
textPainter()->setFontSize(size * pixelRatio);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setFontColor(Vec4B const& color) {
|
|
|
|
textPainter()->setFontColor(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setFontMode(FontMode mode) {
|
|
|
|
textPainter()->setMode(mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setFontProcessingDirectives(String const& directives) {
|
|
|
|
textPainter()->setProcessingDirectives(directives);
|
|
|
|
}
|
|
|
|
|
2023-06-21 12:29:40 +00:00
|
|
|
void GuiContext::setFont(String const& font) {
|
|
|
|
textPainter()->setFont(font);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setDefaultFont() {
|
|
|
|
textPainter()->setFont("");
|
|
|
|
}
|
|
|
|
|
2024-04-21 20:07:59 +00:00
|
|
|
TextStyle& GuiContext::setTextStyle(TextStyle const& textStyle, int pixelRatio) {
|
|
|
|
TextStyle& setStyle = textPainter()->setTextStyle(textStyle);
|
|
|
|
setStyle.fontSize *= pixelRatio;
|
|
|
|
return setStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextStyle& GuiContext::setTextStyle(TextStyle const& textStyle) {
|
|
|
|
return setTextStyle(textStyle, interfaceScale());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::clearTextStyle() {
|
|
|
|
textPainter()->clearTextStyle();
|
|
|
|
}
|
|
|
|
|
2023-06-20 04:33:09 +00:00
|
|
|
void GuiContext::setLineSpacing(float lineSpacing) {
|
|
|
|
textPainter()->setLineSpacing(lineSpacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setDefaultLineSpacing() {
|
|
|
|
textPainter()->setLineSpacing(DefaultLineSpacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
int GuiContext::stringWidth(String const& s) {
|
|
|
|
return textPainter()->stringWidth(s);
|
|
|
|
}
|
|
|
|
|
2023-06-27 15:54:37 +00:00
|
|
|
//TODO: Make this use StringView
|
2023-06-20 04:33:09 +00:00
|
|
|
int GuiContext::stringInterfaceWidth(String const& s) {
|
|
|
|
if (interfaceScale()) {
|
|
|
|
// font size is already adjusted UP by interfaceScale, so we have to adjust
|
|
|
|
// it back down
|
|
|
|
return stringWidth(s) / interfaceScale();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringList GuiContext::wrapText(String const& s, Maybe<unsigned> wrapWidth) {
|
|
|
|
return textPainter()->wrapText(s, wrapWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringList GuiContext::wrapInterfaceText(String const& s, Maybe<unsigned> wrapWidth) {
|
|
|
|
if (wrapWidth)
|
|
|
|
*wrapWidth *= interfaceScale();
|
|
|
|
return wrapText(s, wrapWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GuiContext::shiftHeld() const {
|
|
|
|
return m_shiftHeld;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setShiftHeld(bool held) {
|
|
|
|
m_shiftHeld = held;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::playAudio(AudioInstancePtr audioInstance) {
|
|
|
|
m_mixer->play(audioInstance);
|
|
|
|
}
|
|
|
|
|
2023-08-18 13:14:53 +00:00
|
|
|
void GuiContext::playAudio(String const& audioAsset, int loops, float volume, float pitch) {
|
2023-06-20 04:33:09 +00:00
|
|
|
auto assets = Root::singleton().assets();
|
|
|
|
auto config = Root::singleton().configuration();
|
|
|
|
auto audioInstance = make_shared<AudioInstance>(*assets->audio(audioAsset));
|
|
|
|
audioInstance->setVolume(volume);
|
2023-08-18 13:14:53 +00:00
|
|
|
audioInstance->setPitchMultiplier(pitch);
|
2023-06-20 04:33:09 +00:00
|
|
|
audioInstance->setLoops(loops);
|
2024-02-19 15:55:19 +00:00
|
|
|
m_mixer->play(std::move(audioInstance));
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String GuiContext::getClipboard() const {
|
|
|
|
return m_applicationController->getClipboard().value();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::setClipboard(String text) {
|
2024-02-19 15:55:19 +00:00
|
|
|
m_applicationController->setClipboard(std::move(text));
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GuiContext::cleanup() {
|
|
|
|
int64_t textureTimeout = Root::singleton().assets()->json("/rendering.config:textureTimeout").toInt();
|
|
|
|
if (m_textureCollection)
|
|
|
|
m_textureCollection->cleanup(textureTimeout);
|
|
|
|
if (m_textPainter)
|
|
|
|
m_textPainter->cleanup(textureTimeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|