Added portuguese letters to chat font

This commit is contained in:
MysterD 2023-03-28 00:57:05 -07:00
parent 4fcb226db6
commit 93f5f9b1db
18 changed files with 96 additions and 0 deletions

View File

@ -3657,6 +3657,63 @@ ALIGNED8 static const u8 texture_font_normal_char_squ[] = {
#include "textures/segment2/custom_font_normal_char_squ.ia4.inc.c"
};
// portuguese
ALIGNED8 static const u8 texture_font_normal_char_pa[] = {
#include "textures/segment2/custom_font_normal_char_pa.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pa2[] = {
#include "textures/segment2/custom_font_normal_char_pa2.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pa3[] = {
#include "textures/segment2/custom_font_normal_char_pa3.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pc[] = {
#include "textures/segment2/custom_font_normal_char_pc.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pca[] = {
#include "textures/segment2/custom_font_normal_char_pca.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pca2[] = {
#include "textures/segment2/custom_font_normal_char_pca2.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pca3[] = {
#include "textures/segment2/custom_font_normal_char_pca3.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pcc[] = {
#include "textures/segment2/custom_font_normal_char_pcc.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pce2[] = {
#include "textures/segment2/custom_font_normal_char_pce2.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pco2[] = {
#include "textures/segment2/custom_font_normal_char_pco2.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pco3[] = {
#include "textures/segment2/custom_font_normal_char_pco3.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_pe2[] = {
#include "textures/segment2/custom_font_normal_char_pe2.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_po2[] = {
#include "textures/segment2/custom_font_normal_char_po2.ia4.inc.c"
};
ALIGNED8 static const u8 texture_font_normal_char_po3[] = {
#include "textures/segment2/custom_font_normal_char_po3.ia4.inc.c"
};
const u8* const font_normal_chars[] = {
texture_font_char_us_exclamation, // !
@ -3772,6 +3829,20 @@ const u8* const font_normal_chars[] = {
texture_font_normal_char_sex, // ¡
texture_font_normal_char_squ, // ¿
texture_font_normal_char_pa, // à
texture_font_normal_char_pa2, // â
texture_font_normal_char_pa3, // ã
texture_font_normal_char_pe2, // ê
texture_font_normal_char_po2, // ô
texture_font_normal_char_po3, // õ
texture_font_normal_char_pc, // ç
texture_font_normal_char_pca, // À
texture_font_normal_char_pca2, // Â
texture_font_normal_char_pca3, // Ã
texture_font_normal_char_pce2, // Ê
texture_font_normal_char_pco2, // Ô
texture_font_normal_char_pco3, // Õ
texture_font_normal_char_pcc, // Ç
};
const f32 font_normal_widths[] = {
@ -3796,6 +3867,12 @@ const f32 font_normal_widths[] = {
0.3750f, 0.3750f, 0.3125f, 0.3750f, 0.3750f, 0.3750f, 0.5000f,
/* ¡ ¿ */
0.3125f, 0.4375f,
/* à â ã ê ô õ ç */
0.3750f, 0.3750f, 0.3750f, 0.3125f, 0.3125f, 0.3125f, 0.3125f,
/* À Â Ã Ê Ô Õ Ç */
0.3750f, 0.3750f, 0.3750f, 0.3750f, 0.3750f, 0.3750f, 0.3750f,
};

View File

@ -24,13 +24,31 @@ struct SmCodeGlyph sSmCodeGlyphs[] = {
{ -61, -111, 141 }, // Ñ
{ -62, -95, 142 }, // ¡
{ -62, -65, 143 }, // ¿
{ -61, -96, 144 }, // à
{ -61, -94, 145 }, // â
{ -61, -93, 146 }, // ã
{ -61, -86, 147 }, // ê
{ -61, -76, 148 }, // ô
{ -61, -75, 149 }, // õ
{ -61, -89, 150 }, // ç
{ -61, -128, 151 }, // À
{ -61, -126, 152 }, // Â
{ -61, -125, 153 }, // Ã
{ -61, -118, 154 }, // Ê
{ -61, -108, 155 }, // Ô
{ -61, -107, 156 }, // Õ
{ -61, -121, 157 }, // Ç
};
void djui_font_convert_to_smcode(char* text) {
size_t glyphCount = sizeof(sSmCodeGlyphs) / sizeof(sSmCodeGlyphs[0]);
//printf("....................\n");
//printf("%s\n", text);
char* t = text;
while (*t != '\0') {
//printf("%d ", *t);
for (size_t i = 0; i < glyphCount; i++) {
struct SmCodeGlyph* glyph = &sSmCodeGlyphs[i];
if (t[0] == glyph->unicode1 && t[1] == glyph->unicode2) {
@ -43,6 +61,7 @@ void djui_font_convert_to_smcode(char* text) {
}
t++;
}
//printf("\n....................\n");
}
bool djui_font_valid_smcode(char c) {

Binary file not shown.

After

Width:  |  Height:  |  Size: 509 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 511 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 513 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 520 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 504 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 B