From: John Hodge Date: Sun, 28 Nov 2010 01:44:12 +0000 (+0800) Subject: Fixed GUI font rendering X-Git-Tag: rel0.07~43 X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=commitdiff_plain;h=7758e1bf2e2a1ad35def1eb8cf9aab55d13e05a0 Fixed GUI font rendering - can now print "Ace" to menu button :) --- diff --git a/Usermode/Applications/axwin2_src/WM/common.h b/Usermode/Applications/axwin2_src/WM/common.h index 7a455eed..ff60f8c6 100644 --- a/Usermode/Applications/axwin2_src/WM/common.h +++ b/Usermode/Applications/axwin2_src/WM/common.h @@ -15,6 +15,44 @@ typedef struct sFont tFont; +// === MACROS === +static inline uint32_t Video_AlphaBlend(uint32_t _orig, uint32_t _new, uint8_t _alpha) +{ + int ao,ro,go,bo; + int an,rn,gn,bn; + if( _alpha == 0 ) return _orig; + if( _alpha == 255 ) return _new; + + ao = (_orig >> 24) & 0xFF; + ro = (_orig >> 16) & 0xFF; + go = (_orig >> 8) & 0xFF; + bo = (_orig >> 0) & 0xFF; + + an = (_new >> 24) & 0xFF; + rn = (_new >> 16) & 0xFF; + gn = (_new >> 8) & 0xFF; + bn = (_new >> 0) & 0xFF; + + if( _alpha == 0x80 ) { + ao = (ao + an) / 2; + ro = (ro + rn) / 2; + go = (go + gn) / 2; + bo = (bo + bn) / 2; + } + else { + ao = ao*(255-_alpha) + an*_alpha; + ro = ro*(255-_alpha) + rn*_alpha; + go = go*(255-_alpha) + gn*_alpha; + bo = bo*(255-_alpha) + bn*_alpha; + ao /= 255*2; + ro /= 255*2; + go /= 255*2; + bo /= 255*2; + } + + return (ao << 24) | (ro << 16) | (go << 8) | bo; +} + // === GLOBALS === extern char *gsTerminalDevice; extern char *gsMouseDevice; diff --git a/Usermode/Applications/axwin2_src/WM/video_text.c b/Usermode/Applications/axwin2_src/WM/video_text.c index ed297e28..5dc462f2 100644 --- a/Usermode/Applications/axwin2_src/WM/video_text.c +++ b/Usermode/Applications/axwin2_src/WM/video_text.c @@ -23,7 +23,7 @@ typedef struct sGlyph { short TrueHeight; // Bitmap Data - uint8_t Bitmap[]; + uint8_t Bitmap[]; // 8-bit alpha } tGlyph; @@ -105,7 +105,7 @@ tGlyph *_GetGlyph(tFont *Font, uint32_t Codepoint) if( Codepoint < 128 ) { if( Font->AsciiGlyphs[Codepoint] == NULL ) { - Font->CacheGlyph(Font, Codepoint); + Font->AsciiGlyphs[Codepoint] = Font->CacheGlyph(Font, Codepoint); } return Font->AsciiGlyphs[Codepoint]; @@ -188,7 +188,37 @@ tGlyph *_GetGlyph(tFont *Font, uint32_t Codepoint) */ void _RenderGlyph(short X, short Y, tGlyph *Glyph, uint32_t Color) { - + int xStart = 0, yStart = 0; + int x, y; + uint32_t *outBuf; + uint8_t *inBuf; + // TODO: Implement + + X += Glyph->OffsetX; + if( X < 0 ) { // If -ve, skip the first -X collums + xStart = -X; + X = 0; + } + + Y += Glyph->OffsetY; + if( Y < 0 ) { // If -ve, skip the first -Y lines + yStart = -Y; + Y = 0; + } + + outBuf = gpScreenBuffer + Y*giScreenWidth + X; + inBuf = Glyph->Bitmap + yStart*Glyph->TrueWidth; + + for( y = yStart; y < Glyph->TrueHeight; y ++ ) + { + for( x = xStart; x < Glyph->TrueWidth; x ++ ) + { + outBuf[x] = Video_AlphaBlend( outBuf[x], Color, inBuf[x] ); + } + outBuf += giScreenWidth; + inBuf += Glyph->TrueWidth; + + } } // Load system font (8x16 monospace) @@ -201,6 +231,9 @@ tGlyph *_SystemFont_CacheGlyph(tFont *Font, uint32_t Codepoint) int i; uint8_t index = 0; tGlyph *ret; + uint8_t *data; + + _SysDebug("_SystemFont_CacheGlyph: (Font=%p, Codepoint=0x%06x)", Font, Codepoint); if( Codepoint < 128 ) { index = Codepoint; @@ -209,8 +242,12 @@ tGlyph *_SystemFont_CacheGlyph(tFont *Font, uint32_t Codepoint) index = '?'; // Unknowns come out as a question mark } + _SysDebug(" index = %i", index); + ret = malloc( sizeof(tGlyph) + FONT_WIDTH*FONT_HEIGHT ); + ret->Codepoint = Codepoint; + ret->Width = FONT_WIDTH; ret->Height = FONT_HEIGHT; @@ -220,16 +257,18 @@ tGlyph *_SystemFont_CacheGlyph(tFont *Font, uint32_t Codepoint) ret->OffsetX = 0; ret->OffsetY = 0; + data = &VTermFont[index * FONT_HEIGHT]; + for( i = 0; i < FONT_HEIGHT; i ++ ) { - ret->Bitmap[ i * 8 + 0 ] = VTermFont[index] & (1 << 0) ? 255 : 0; - ret->Bitmap[ i * 8 + 1 ] = VTermFont[index] & (1 << 1) ? 255 : 0; - ret->Bitmap[ i * 8 + 2 ] = VTermFont[index] & (1 << 2) ? 255 : 0; - ret->Bitmap[ i * 8 + 3 ] = VTermFont[index] & (1 << 3) ? 255 : 0; - ret->Bitmap[ i * 8 + 4 ] = VTermFont[index] & (1 << 4) ? 255 : 0; - ret->Bitmap[ i * 8 + 5 ] = VTermFont[index] & (1 << 5) ? 255 : 0; - ret->Bitmap[ i * 8 + 6 ] = VTermFont[index] & (1 << 6) ? 255 : 0; - ret->Bitmap[ i * 8 + 7 ] = VTermFont[index] & (1 << 7) ? 255 : 0; + ret->Bitmap[ i * 8 + 0 ] = data[i] & (1 << 7) ? 255 : 0; + ret->Bitmap[ i * 8 + 1 ] = data[i] & (1 << 6) ? 255 : 0; + ret->Bitmap[ i * 8 + 2 ] = data[i] & (1 << 5) ? 255 : 0; + ret->Bitmap[ i * 8 + 3 ] = data[i] & (1 << 4) ? 255 : 0; + ret->Bitmap[ i * 8 + 4 ] = data[i] & (1 << 3) ? 255 : 0; + ret->Bitmap[ i * 8 + 5 ] = data[i] & (1 << 2) ? 255 : 0; + ret->Bitmap[ i * 8 + 6 ] = data[i] & (1 << 1) ? 255 : 0; + ret->Bitmap[ i * 8 + 7 ] = data[i] & (1 << 0) ? 255 : 0; } return ret;