mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
41 lines
1 KiB
C++
41 lines
1 KiB
C++
#pragma once
|
|
|
|
#include "ppsspp_config.h"
|
|
|
|
#include <map>
|
|
#include "Common/Render/Text/draw_text.h"
|
|
|
|
#if PPSSPP_PLATFORM(ANDROID)
|
|
|
|
#include <jni.h>
|
|
|
|
struct AndroidFontEntry {
|
|
float size;
|
|
};
|
|
|
|
class TextDrawerAndroid : public TextDrawer {
|
|
public:
|
|
TextDrawerAndroid(Draw::DrawContext *draw);
|
|
~TextDrawerAndroid();
|
|
|
|
bool IsReady() const override;
|
|
uint32_t SetFont(const char *fontName, int size, int flags) override;
|
|
void SetFont(uint32_t fontHandle) override; // Shortcut once you've set the font once.
|
|
bool DrawStringBitmap(std::vector<uint8_t> &bitmapData, TextStringEntry &entry, Draw::DataFormat texFormat, std::string_view str, int align, bool fullColor) override;
|
|
|
|
protected:
|
|
void MeasureStringInternal(std::string_view str, float *w, float *h) override;
|
|
bool SupportsColorEmoji() const override { return true; }
|
|
|
|
void ClearFonts() override;
|
|
|
|
private:
|
|
// JNI functions
|
|
jclass cls_textRenderer;
|
|
jmethodID method_measureText;
|
|
jmethodID method_renderText;
|
|
|
|
std::map<uint32_t, AndroidFontEntry> fontMap_;
|
|
};
|
|
|
|
#endif
|