CubicSDR/src/util/GLFont.h

132 lines
3.1 KiB
C
Raw Normal View History

2014-12-08 02:16:06 -05:00
#pragma once
#include <map>
#include <string>
#include <sstream>
2016-03-15 21:19:29 -04:00
#include <mutex>
#include <atomic>
2014-12-08 02:16:06 -05:00
#include "lodepng.h"
#include "wx/glcanvas.h"
#include "wx/filename.h"
#include "wx/stdpaths.h"
2014-12-08 02:16:06 -05:00
class GLFontStringCache {
public:
GLFontStringCache();
int drawlen;
int vpx, vpy;
int pxHeight;
float msgWidth;
std::atomic_int gc;
std::vector<float> gl_vertices;
std::vector<float> gl_uv;
};
2014-12-08 02:16:06 -05:00
class GLFontChar {
public:
GLFontChar();
~GLFontChar();
void setId(int idval);
// Returns the code point of the 16bit character, supposely Unicode.
2014-12-08 02:16:06 -05:00
int getId();
void setXOffset(int xofs);
int getXOffset();
void setYOffset(int yofs);
int getYOffset();
void setX(int xpos);
int getX();
void setY(int ypos);
int getY();
void setWidth(int w);
int getWidth();
void setHeight(int h);
int getHeight();
void setXAdvance(int xadv);
int getXAdvance();
float getAspect();
void setIndex(unsigned int idx);
int getIndex();
private:
// this is the code point of the 16bit character, supposely Unicode.
int id;
2014-12-08 02:16:06 -05:00
int x, y, width, height;
int xoffset, yoffset;
int xadvance;
float aspect;
int index;
};
class GLFont {
public:
2014-12-08 20:39:38 -05:00
enum Align {
2014-12-16 21:30:03 -05:00
GLFONT_ALIGN_LEFT, GLFONT_ALIGN_RIGHT, GLFONT_ALIGN_CENTER, GLFONT_ALIGN_TOP, GLFONT_ALIGN_BOTTOM
2014-12-08 20:39:38 -05:00
};
2015-06-30 23:07:39 -04:00
enum GLFontSize {
GLFONT_SIZE12, GLFONT_SIZE16, GLFONT_SIZE18, GLFONT_SIZE24, GLFONT_SIZE32, GLFONT_SIZE48, GLFONT_MAX
};
2014-12-08 20:39:38 -05:00
2014-12-08 02:16:06 -05:00
GLFont();
~GLFont();
2014-12-08 19:38:38 -05:00
void loadFont(const std::wstring& fontFile);
2014-12-08 02:16:06 -05:00
2015-06-30 23:07:39 -04:00
static GLFont &getFont(GLFontSize esize);
//Public drawing font, 16 bit char version.
void drawString(const std::wstring& str, float xpos, float ypos, int pxHeight, Align hAlign = GLFONT_ALIGN_LEFT, Align vAlign = GLFONT_ALIGN_TOP, int vpx=0, int vpy=0, bool cacheable = false);
//Public drawing font, 8 bit char version.
void drawString(const std::string& str, float xpos, float ypos, int pxHeight, Align hAlign = GLFONT_ALIGN_LEFT, Align vAlign = GLFONT_ALIGN_TOP, int vpx = 0, int vpy = 0, bool cacheable = false);
private:
std::wstring nextParam(std::wistringstream &str);
std::wstring getParamKey(const std::wstring& param_str);
std::wstring getParamValue(const std::wstring& param_str);
static GLFont fonts[GLFONT_MAX];
2015-06-30 23:07:39 -04:00
GLFontStringCache *cacheString(const std::wstring& str, int pxHeight, int vpx, int vpy);
void drawCacheString(GLFontStringCache *fc, float xpos, float ypos, Align hAlign, Align vAlign);
void doCacheGC();
bool isLoaded();
float getStringWidth(const std::wstring& str, float size, float viewAspect);
std::map<std::wstring, GLFontStringCache * > stringCache;
2014-12-08 02:16:06 -05:00
int lineHeight;
int base;
int imageWidth, imageHeight;
bool loaded;
2014-12-08 02:16:06 -05:00
std::map<int, GLFontChar *> characters;
std::vector<float> gl_vertices;
std::vector<float> gl_uv;
std::wstring fontName;
std::wstring imageFile;
std::wstring fontFileSource;
2014-12-08 02:16:06 -05:00
GLuint texId;
int gcCounter;
std::mutex cache_busy;
2014-12-08 02:16:06 -05:00
};