Files
ppsspp/Common/UI/Context.h

150 lines
4.4 KiB
C
Raw Permalink Normal View History

#pragma once
2020-08-18 01:07:51 -07:00
#include <memory>
2013-05-28 00:32:00 +02:00
#include <vector>
#include <cstdint>
2022-03-31 17:03:34 +02:00
#include <string>
2013-05-28 00:32:00 +02:00
#include "Common/Math/geom2d.h"
#include "Common/Math/lin/vec3.h"
#include "Common/Render/TextureAtlas.h"
2013-05-28 00:32:00 +02:00
// Everything you need to draw a UI collected into a single unit that can be passed around.
// Everything forward declared so this header is safe everywhere.
2016-12-25 18:18:19 +01:00
namespace Draw {
2016-12-25 21:01:57 +01:00
class DrawContext;
class Pipeline;
2016-12-25 20:54:37 +01:00
class DepthStencilState;
class Texture;
class BlendState;
2016-12-25 20:54:37 +01:00
class SamplerState;
class RasterState;
2016-12-25 18:18:19 +01:00
}
class Texture;
2020-08-18 01:07:51 -07:00
class ManagedTexture;
class DrawBuffer;
class TextDrawer;
2013-05-28 00:32:00 +02:00
namespace UI {
struct Drawable;
2020-08-18 01:07:51 -07:00
struct EventParams;
2013-05-28 00:32:00 +02:00
struct Theme;
struct FontStyle;
2020-08-18 01:07:51 -07:00
class Event;
class View;
2013-05-28 00:32:00 +02:00
}
class DrawBuffer;
struct UITransform {
// TODO: Or just use a matrix?
Lin::Vec3 translate;
Lin::Vec3 scale;
float alpha;
};
class UIContext {
public:
UIContext();
~UIContext();
void Init(Draw::DrawContext *thin3d, Draw::Pipeline *uipipe, Draw::Pipeline *uipipenotex, DrawBuffer *uidrawbuffer, DrawBuffer *uidrawbufferTop);
void BeginFrame();
void Begin();
2013-03-30 19:23:02 +01:00
void BeginNoTex();
void BeginPipeline(Draw::Pipeline *pipeline, Draw::SamplerState *samplerState);
void Flush();
2013-03-30 19:23:02 +01:00
void RebindTexture() const;
void BindFontTexture() const;
2013-05-28 00:32:00 +02:00
// TODO: Support transformed bounds using stencil
void PushScissor(const Bounds &bounds);
void PopScissor();
Bounds GetScissorBounds();
2013-05-28 00:32:00 +02:00
void ActivateTopScissor();
DrawBuffer *Draw() const { return uidrawbuffer_; }
DrawBuffer *DrawTop() const { return uidrawbufferTop_; }
2013-05-28 00:32:00 +02:00
// Utility methods
TextDrawer *Text() const { return textDrawer_; }
2022-12-27 15:18:35 -08:00
void SetTintSaturation(float tint, float sat);
// High level drawing functions. They generally assume the default texture to be bounds.
void SetFontStyle(const UI::FontStyle &style);
2013-11-26 14:36:22 +01:00
const UI::FontStyle &GetFontStyle() { return *fontStyle_; }
void SetFontScale(float scaleX, float scaleY);
2016-08-07 16:49:50 -07:00
void MeasureTextCount(const UI::FontStyle &style, float scaleX, float scaleY, const char *str, int count, float *x, float *y, int align = 0) const;
void MeasureText(const UI::FontStyle &style, float scaleX, float scaleY, const char *str, float *x, float *y, int align = 0) const;
void MeasureTextRect(const UI::FontStyle &style, float scaleX, float scaleY, const char *str, int count, const Bounds &bounds, float *x, float *y, int align = 0) const;
void DrawText(const char *str, float x, float y, uint32_t color, int align = 0);
void DrawTextShadow(const char *str, float x, float y, uint32_t color, int align = 0);
void DrawTextRect(const char *str, const Bounds &bounds, uint32_t color, int align = 0);
void DrawTextShadowRect(const char *str, const Bounds &bounds, uint32_t color, int align = 0);
2023-07-17 11:44:36 +02:00
// Will squeeze the text into the bounds if needed.
void DrawTextRectSqueeze(const char *str, const Bounds &bounds, uint32_t color, int align = 0);
float CalculateTextScale(const char *text, float availWidth, float availHeight) const;
void FillRect(const UI::Drawable &drawable, const Bounds &bounds);
void DrawRectDropShadow(const Bounds &bounds, float radius, float alpha, uint32_t color = 0);
2021-01-17 13:44:57 +01:00
void DrawImageVGradient(ImageID image, uint32_t color1, uint32_t color2, const Bounds &bounds);
// in dps, like dp_xres and dp_yres
void SetBounds(const Bounds &b) { bounds_ = b; }
const Bounds &GetBounds() const { return bounds_; }
Bounds GetLayoutBounds() const;
Draw::DrawContext *GetDrawContext() { return draw_; }
const UI::Theme &GetTheme() const {
return *theme;
}
void SetCurZ(float curZ);
void PushTransform(const UITransform &transform);
void PopTransform();
Bounds TransformBounds(const Bounds &bounds);
2022-03-31 17:03:34 +02:00
void setUIAtlas(const std::string &name);
void SetScreenTag(const char *tag) {
screenTag_ = tag;
}
// TODO: Move to private.
const UI::Theme *theme;
private:
Draw::DrawContext *draw_ = nullptr;
Bounds bounds_;
float fontScaleX_ = 1.0f;
float fontScaleY_ = 1.0f;
UI::FontStyle *fontStyle_ = nullptr;
TextDrawer *textDrawer_ = nullptr;
2014-08-17 12:17:59 +02:00
Draw::SamplerState *sampler_ = nullptr;
Draw::Pipeline *ui_pipeline_ = nullptr;
Draw::Pipeline *ui_pipeline_notex_ = nullptr;
std::unique_ptr<ManagedTexture> uitexture_;
std::unique_ptr<ManagedTexture> fontTexture_;
2014-08-17 12:17:59 +02:00
DrawBuffer *uidrawbuffer_ = nullptr;
DrawBuffer *uidrawbufferTop_ = nullptr;
2013-05-28 00:32:00 +02:00
std::vector<Bounds> scissorStack_;
std::vector<UITransform> transformStack_;
2022-03-31 17:03:34 +02:00
std::string lastUIAtlas_;
std::string UIAtlas_ = "ui_atlas.zim";
const char *screenTag_ = nullptr;
};