quakeforge/include/QF/ui/text.h
Bill Currie 1a56376f98 [scene,ui] Be more consistent with component enum names
Actual registry component counts are *_comp_count while hierarchy type
component counts are *_type_count.
2022-12-12 13:37:01 +09:00

124 lines
3.4 KiB
C

/*
text.h
Text management
Copyright (C) 2022 Bill Currie <bill@taniwha.org>
Author: Bill Currie <bill@taniwha.org>
Date: 2022/9/4
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
*/
#ifndef __QF_ui_text_h
#define __QF_ui_text_h
#include <hb.h>
#include <hb-ft.h>
#include "QF/darray.h"
#include "QF/ecs/component.h"
// These can be converted to hb_direction_t simply by oring with 4
typedef enum {
text_right_down, // left to right, then down horizontal text
text_left_down, // right to left, then down horizontal text
text_down_right, // top to bottom, then right vertical text
text_up_right, // bottom to top, then right vertical text
text_right_up, // left to right, then up horizontal text
text_left_up, // right to left, then up horizontal text
text_down_left, // top to bottom, then left vertical text
text_up_left, // bottom to top, then left vertical text
} text_dir_e;
typedef struct script_component_s {
hb_language_t language;
hb_script_t script;
text_dir_e direction;
} script_component_t;
typedef struct glyphobj_s {
int glyphid;
int x, y;
int fontid;
} glyphobj_t;
typedef struct glyphref_s {
uint32_t start;
uint32_t count;
} glyphref_t;
typedef struct glyphset_s {
glyphobj_t *glyphs;
uint32_t count;
} glyphset_t;
typedef struct text_s {
const char *text;
const char *language;
hb_script_t script;
hb_direction_t direction;
} text_t;
enum {
// covers both view and passage text object hierarcies
text_href,
// all the glyphs in a passage. Always on only the root view of the passage.
text_passage_glyphs,
// glyphs for a single text object
text_glyphs,
// text_script, text_font and text_features on the passage root object set
// the defaults for all text objects in the passage. The settings can be
// overridden at the paragraph level or individiual text object level by
// adding the appropriate component to that text object.
// script settings for the text object
text_script,
// font id for the text object
text_font,
// harfbuzz font features for the text object
text_features,
text_comp_count
};
typedef struct featureset_s DARRAY_TYPE (hb_feature_t) featureset_t;
extern hb_feature_t LigatureOff;
extern hb_feature_t LigatureOn;
extern hb_feature_t KerningOff;
extern hb_feature_t KerningOn;
extern hb_feature_t CligOff;
extern hb_feature_t CligOn;
struct font_s;
struct passage_s;
extern struct ecs_registry_s *text_reg;
void Text_Init (void);
struct view_s Text_View (struct font_s *font, struct passage_s *passage);
void Text_SetScript (int textid, const char *lang, hb_script_t script,
text_dir_e dir);
void Text_SetFont (int textid, struct font_s *font);
void Text_SetFeatures (int textid, featureset_t *features);
void Text_AddFeature (int textid, hb_feature_t feature);
#endif//__QF_ui_text_h