mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 01:45:19 +01:00
247 lines
4.6 KiB
C
247 lines
4.6 KiB
C
/*
|
|
utflib.c - small unicode conversion library
|
|
Copyright (C) 2024 Alibek Omarov
|
|
|
|
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 3 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.
|
|
*/
|
|
#include "utflib.h"
|
|
#include "xash3d_types.h"
|
|
|
|
uint32_t Q_DecodeUTF8( utfstate_t *s, uint32_t in )
|
|
{
|
|
// get character length
|
|
if( s->len == 0 )
|
|
{
|
|
// init state
|
|
s->uc = 0;
|
|
|
|
// expect ASCII symbols by default
|
|
if( likely( in <= 0x7fu ))
|
|
return in;
|
|
|
|
// invalid sequence
|
|
if( unlikely( in >= 0xf8u ))
|
|
return 0;
|
|
|
|
s->k = 0;
|
|
|
|
if( in >= 0xf0u )
|
|
{
|
|
s->uc = in & 0x07u;
|
|
s->len = 3;
|
|
}
|
|
else if( in >= 0xe0u )
|
|
{
|
|
s->uc = in & 0x0fu;
|
|
s->len = 2;
|
|
}
|
|
else if( in >= 0xc0u )
|
|
{
|
|
s->uc = in & 0x1fu;
|
|
s->len = 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// invalid sequence, reset
|
|
if( unlikely( in > 0xbfu ))
|
|
{
|
|
s->len = 0;
|
|
return 0;
|
|
}
|
|
|
|
s->uc <<= 6;
|
|
s->uc += in & 0x3fu;
|
|
s->k++;
|
|
|
|
// sequence complete, reset and return code point
|
|
if( likely( s->k == s->len ))
|
|
{
|
|
s->len = 0;
|
|
return s->uc;
|
|
}
|
|
|
|
// feed more characters
|
|
return 0;
|
|
}
|
|
|
|
uint32_t Q_DecodeUTF16( utfstate_t *s, uint32_t in )
|
|
{
|
|
// get character length
|
|
if( s->len == 0 )
|
|
{
|
|
// init state
|
|
s->uc = 0;
|
|
|
|
// expect simple case, after all decoding UTF-16 must be easy
|
|
if( likely( in < 0xd800u || in > 0xdfffu ))
|
|
return in;
|
|
|
|
s->uc = (( in - 0xd800u ) << 10 ) + 0x10000u;
|
|
s->len = 1;
|
|
s->k = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// invalid sequence, reset
|
|
if( unlikely( in < 0xdc00u || in > 0xdfffu ))
|
|
{
|
|
s->len = 0;
|
|
return 0;
|
|
}
|
|
|
|
s->uc |= in - 0xdc00u;
|
|
s->k++;
|
|
|
|
// sequence complete, reset and return code point
|
|
if( likely( s->k == s->len ))
|
|
{
|
|
s->len = 0;
|
|
return s->uc;
|
|
}
|
|
|
|
// feed more characters (should never happen with UTF-16)
|
|
return 0;
|
|
}
|
|
|
|
size_t Q_EncodeUTF8( char dst[4], uint32_t ch )
|
|
{
|
|
if( ch <= 0x7fu )
|
|
{
|
|
dst[0] = ch;
|
|
return 1;
|
|
}
|
|
else if( ch <= 0x7ffu )
|
|
{
|
|
dst[0] = 0xc0u | (( ch >> 6 ) & 0x1fu );
|
|
dst[1] = 0x80u | (( ch ) & 0x3fu );
|
|
return 2;
|
|
}
|
|
else if( ch <= 0xffffu )
|
|
{
|
|
dst[0] = 0xe0u | (( ch >> 12 ) & 0x0fu );
|
|
dst[1] = 0x80u | (( ch >> 6 ) & 0x3fu );
|
|
dst[2] = 0x80u | (( ch ) & 0x3fu );
|
|
return 3;
|
|
}
|
|
|
|
dst[0] = 0xf0u | (( ch >> 18 ) & 0x07u );
|
|
dst[1] = 0x80u | (( ch >> 12 ) & 0x3fu );
|
|
dst[2] = 0x80u | (( ch >> 6 ) & 0x3fu );
|
|
dst[3] = 0x80u | (( ch ) & 0x3fu );
|
|
return 4;
|
|
}
|
|
|
|
size_t Q_UTF8Length( const char *s )
|
|
{
|
|
size_t len = 0;
|
|
utfstate_t state = { 0 };
|
|
|
|
if( !s )
|
|
return 0;
|
|
|
|
for( ; *s; s++ )
|
|
{
|
|
uint32_t ch = Q_DecodeUTF8( &state, (uint32_t)*s );
|
|
|
|
if( ch == 0 )
|
|
continue;
|
|
|
|
len++;
|
|
}
|
|
|
|
return len;
|
|
}
|
|
|
|
static size_t Q_CodepointLength( uint32_t ch )
|
|
{
|
|
if( ch <= 0x7fu )
|
|
return 1;
|
|
else if( ch <= 0x7ffu )
|
|
return 2;
|
|
else if( ch <= 0xffffu )
|
|
return 3;
|
|
|
|
return 4;
|
|
}
|
|
|
|
size_t Q_UTF16ToUTF8( char *dst, size_t dstsize, const uint16_t *src, size_t srcsize )
|
|
{
|
|
utfstate_t state = { 0 };
|
|
size_t dsti = 0, srci;
|
|
|
|
if( !dst || !src || !dstsize || !srcsize )
|
|
return 0;
|
|
|
|
for( srci = 0; srci < srcsize && src[srci]; srci++ )
|
|
{
|
|
uint32_t ch;
|
|
size_t len;
|
|
|
|
ch = Q_DecodeUTF16( &state, src[srci] );
|
|
|
|
if( ch == 0 )
|
|
continue;
|
|
|
|
len = Q_CodepointLength( ch );
|
|
|
|
if( dsti + len + 1 > dstsize )
|
|
break;
|
|
|
|
dsti += Q_EncodeUTF8( &dst[dsti], ch );
|
|
}
|
|
|
|
dst[dsti] = 0;
|
|
|
|
return dsti;
|
|
}
|
|
|
|
static uint16_t table_cp1251[64] = {
|
|
0x0402, 0x0403, 0x201A, 0x0453, 0x201E, 0x2026, 0x2020, 0x2021,
|
|
0x20AC, 0x2030, 0x0409, 0x2039, 0x040A, 0x040C, 0x040B, 0x040F,
|
|
0x0452, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
|
|
0x007F, 0x2122, 0x0459, 0x203A, 0x045A, 0x045C, 0x045B, 0x045F,
|
|
0x00A0, 0x040E, 0x045E, 0x0408, 0x00A4, 0x0490, 0x00A6, 0x00A7,
|
|
0x0401, 0x00A9, 0x0404, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x0407,
|
|
0x00B0, 0x00B1, 0x0406, 0x0456, 0x0491, 0x00B5, 0x00B6, 0x00B7,
|
|
0x0451, 0x2116, 0x0454, 0x00BB, 0x0458, 0x0405, 0x0455, 0x0457
|
|
};
|
|
|
|
uint32_t Q_UnicodeToCP1251( uint32_t uc )
|
|
{
|
|
size_t i;
|
|
|
|
if( uc < 0x80 )
|
|
return uc;
|
|
|
|
if( uc >= 0x0410 && uc <= 0x042F )
|
|
return uc - 0x410 + 0xC0;
|
|
|
|
if( uc >= 0x0430 && uc <= 0x044F )
|
|
return uc - 0x430 + 0xE0;
|
|
|
|
for( i = 0; i < sizeof( table_cp1251 ) / sizeof( table_cp1251[0] ); i++ )
|
|
{
|
|
if( uc == (uint32_t)table_cp1251[i] )
|
|
return i + 0x80;
|
|
}
|
|
|
|
return '?';
|
|
}
|
|
|
|
uint32_t Q_UnicodeToCP1252( uint32_t uc )
|
|
{
|
|
// this is NOT valid way to convert Unicode codepoint back to CP1252!!!
|
|
return uc < 0xFF ? uc : '?';
|
|
}
|