summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen/font.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-07-29 09:21:45 +0200
committerUros Majstorovic <majstor@majstor.org>2020-07-29 09:21:45 +0200
commit0e518d5117b73fd54081decf1c0eb9f9d3173ff6 (patch)
tree9ef8f4529e3b24cd9ca16e6c46a89781abc8c670 /code/fe310/eos/eve/screen/font.c
parent5a39774e6ed9002de3f0ec1f2cdbba2ebbe9fbde (diff)
unicode support
Diffstat (limited to 'code/fe310/eos/eve/screen/font.c')
-rw-r--r--code/fe310/eos/eve/screen/font.c38
1 files changed, 29 insertions, 9 deletions
diff --git a/code/fe310/eos/eve/screen/font.c b/code/fe310/eos/eve/screen/font.c
index 6fc7d39..da02983 100644
--- a/code/fe310/eos/eve/screen/font.c
+++ b/code/fe310/eos/eve/screen/font.c
@@ -1,6 +1,8 @@
#include <stdlib.h>
#include "eve.h"
+#include "unicode.h"
+
#include "font.h"
void eve_font_init(EVEFont *font, uint8_t font_id) {
@@ -14,23 +16,41 @@ void eve_font_init(EVEFont *font, uint8_t font_id) {
eve_readb(p, font->w_ch, 128);
}
-uint16_t eve_font_str_w(EVEFont *font, char *s) {
+uint8_t eve_font_ch_w(EVEFont *font, utf32_t ch) {
+ if (ch < 128) return font->w_ch[ch];
+ return 0;
+}
+
+uint16_t eve_font_str_w(EVEFont *font, utf8_t *str) {
uint16_t r = 0;
+ utf32_t ch;
+ uint8_t ch_w;
+ uint8_t ch_l;
- while (*s) {
- r += font->w_ch[*s];
- s++;
+ if (str == NULL) return 0;
+
+ while (*str) {
+ ch_l = utf8_dec(str, &ch);
+ ch_w = eve_font_ch_w(font, ch);
+ r += ch_w;
+ str += ch_l;
}
return r;
}
-uint16_t eve_font_buf_w(EVEFont *font, char *buf, uint16_t buf_len) {
- int i;
+uint16_t eve_font_buf_w(EVEFont *font, utf8_t *buf, uint16_t buf_len) {
+ int i = 0;
uint16_t r = 0;
-
- for (i=0; i<buf_len; i++) {
- r += font->w_ch[*(buf + i)];
+ utf32_t ch;
+ uint8_t ch_w;
+ uint8_t ch_l;
+
+ while (i < buf_len) {
+ ch_l = utf8_dec(buf + i, &ch);
+ ch_w = eve_font_ch_w(font, ch);
+ r += ch_w;
+ i += ch_l;
}
return r;