在SDL中显示GBK点阵汉字

大家注意到没有,RA2的中文版本使用的是GBK点阵字库,这样做有一个好处:不管玩家是用的简体还是繁体都能识别显示的文字。

GBK的意思大概是“国家标准汉字扩展字符集”吧,记不清了。但它的确是个好东东,比GB2312、BIG5什么的强多了。因为它包括GB2312、GBK的所有字符而且还补充了很多字,另外,还包括日文、朝鲜文以及大量的符号字符。

我在UCDOS for win版本里面找到了GBK的点阵字库(HZK12.GBK、HZK14.GBK、HZK16.GBK)。分析了一下,知道了结构。这里是我写的一个演示 程序,程序编译需要有sdl库。遵循“惯例”,按F4切换全屏/窗口状态,Esc退出。程序把标准输出和标准错误重定向到"stdout.txt"和 "stderr.txt"中。

#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>

#include "sdl.h"
#include "SDL_image.h"
#include "sfont.h"

//---------------------------------------------------------------------------
#define STDOUT_FILE "stdout.txt"
#define STDERR_FILE "stderr.txt"

SDL_Surface *screen;
Uint32 fps;
Uint32 AppStartTime = 0;
Uint32 frame_count = 0;
static Uint32 frames;

SDL_Event event;
SDL_Surface * SetMode( int Width, int Height, int BPP, int Flags );
SDL_Surface * LoadBMP( char * filename );
void MainLoops( int ( * EventFunc)( ), void ( * DrawFunc )( ), int DelayTime );
void Blt( SDL_Surface * image, int x, int y );
void TileBlt( SDL_Surface * image, int x, int y );
void SetTransparentColor( SDL_Surface * sprite, int R, int G, int B );
void IoRedirect( );
void cleanup_output( );
void initfps();

//---------------------------------------------------------------------------
Uint8 HZK12[574560];
Uint8 HZK14[670320];
Uint8 HZK16[766080];
BOOL HZ_Init();
BOOL HZ_TextOut( SDL_Surface * image, int x, int y, int width, int space, unsigned char * str );
//---------------------------------------------------------------------------

int ProcessEvent();
void DrawFrame();

SDL_Surface * bg, * font;
int ix, iy, jx, jy;
int Width = 640;
int Height = 480;
int bpp = 16;
int ScreenMode = 0;

WINAPI WinMain(HINSTANCE hInstPre, HINSTANCE hInstance, LPSTR cmd, int xxx )
{
char TimeString[256];
time_t timer;
struct tm *tblock;

HZ_Init();
IoRedirect( );
frames = 0;
timer = time(NULL);
tblock = localtime(&timer);
strftime( TimeString, 256, "Time=%Z: %Y-%m-%d %a %H:%M:%S", tblock );
printf( "%s\\n", TimeString );

SetMode( Width, Height, bpp, SDL_SWSURFACE|ScreenMode);
SDL_ShowCursor(0);
SDL_WM_SetCaption("demo", "demo");

bg = IMG_Load( ".\\\\2k_bg.gif" );
font = IMG_Load( ".\\\\small.gif" );

InitFont(font);
SDL_SetAlpha(font, SDL_SRCALPHA|SDL_RLEACCEL, 127);

ix=iy=0;
jx=jy= Height>>1;
srand((Uint32)timer);

MainLoops(ProcessEvent, DrawFrame, 0);

printf("ScreenMode=%d*%d*%d\\nFPS=%u", Width, Height, bpp, fps);

return 0;
}

int ProcessEvent()
{
Uint8 *keystate;

keystate = SDL_GetKeyState( NULL );
if ( ( keystate[SDLK_ESCAPE] ) || ( keystate[SDLK_q] ) )
return 0;
if ( keystate[SDLK_F4] )
{
if ( ScreenMode )
ScreenMode = 0;
else
ScreenMode = SDL_FULLSCREEN;

SetMode( Width, Height, bpp, SDL_SWSURFACE|ScreenMode );
initfps( );
}

return 1;
}

void DrawFrame( )
{
char tmp[256];
int step = 4;

//
sprintf( tmp, "TotalFrame=%u", frames );

TileBlt( bg, 0, 0 );

SDL_SetAlpha( font, SDL_SRCALPHA|SDL_RLEACCEL, 4 );
PutString( screen, ix % Width - 6, iy % Height - 6, tmp );
SDL_SetAlpha( font, SDL_SRCALPHA|SDL_RLEACCEL, 8 );
PutString( screen, ix % Width - 5, iy % Height - 5, tmp );
SDL_SetAlpha( font, SDL_SRCALPHA|SDL_RLEACCEL, 16 );
PutString( screen, ix % Width - 4, iy % Height - 4, tmp );
SDL_SetAlpha( font, SDL_SRCALPHA|SDL_RLEACCEL, 32 );
PutString( screen, ix % Width - 3, iy % Height - 3, tmp );
SDL_SetAlpha( font, SDL_SRCALPHA|SDL_RLEACCEL, 64 );
PutString( screen, ix % Width - 2, iy % Height - 2, tmp );
SDL_SetAlpha( font, SDL_SRCALPHA|SDL_RLEACCEL, 128 );
PutString( screen, ix % Width - 1, iy % Height - 1, tmp );
SDL_SetAlpha( font, SDL_SRCALPHA|SDL_RLEACCEL, 192 );
PutString( screen, ix % Width, iy % Height, tmp );

PutString( screen, ix % Width, iy % Height + 40, tmp );

if ( rand( ) % 400 < 2 )
{
jx = rand( ) % ( Width - 10 );
jy = rand( ) % ( Height - 10 );
}

sprintf( tmp, "FPS=%d", fps );
PutString( screen, 7, 7, tmp );
//聞波,2000 
HZ_TextOut( screen, 10, 300, 16, 0, "十步殺一人,千里不留行");
HZ_TextOut( screen, 10, 318, 14, 0, "十步殺一人,千里不留行" );
HZ_TextOut( screen, 10, 334, 12, 0, "十步殺一人,千里不留行" );
ix += step;
iy += step;
}
//---------------------------------------------------------------------------

//---------------------------------------------------------------------------
SDL_Surface * SetMode( int Width, int Height, int BPP, int Flags )
{
/* Initialize the SDL library */
if ( SDL_Init( SDL_INIT_VIDEO ) < 0 )
{
fprintf(stderr, "Couldn‘t initialize SDL: %s\\n", SDL_GetError( ) );
return NULL;
}

/* Clean up on exit */
atexit(SDL_Quit);

/* Initialize the display in a 640x480 8-bit palettized mode */
screen = SDL_SetVideoMode( Width, Height, BPP, Flags );
if ( screen == NULL )
{
fprintf( stderr, "Couldn‘t set %dx%dx%d video mode: %s\\n", Width, Height, BPP, SDL_GetError( ) );
}

return screen;
}
//---------------------------------------------------------------------------

void initfps( )
{
AppStartTime = SDL_GetTicks();
frame_count = 0;
}
//---------------------------------------------------------------------------

void MainLoops( int ( * EventFunc)( ), void ( * DrawFunc)( ), int DelayTime )
{
if ( EventFunc&&DrawFunc )
{
memset( &event, 0, sizeof( SDL_Event ) );
initfps( );

while( EventFunc( ) )
{
SDL_PollEvent(&event);
if ( event.type == SDL_ACTIVEEVENT )
{
if ( ( ( event.active.state & SDL_APPACTIVE ) == FALSE ) ||
( event.active.gain == FALSE ) )
initfps( );
}
SDL_PumpEvents();
DrawFunc( );
SDL_UpdateRect(screen,0, 0, 0, 0);
frame_count ++;
frames ++;
fps = frame_count * 1000 / ( SDL_GetTicks( ) - AppStartTime );
if ( DelayTime ) SDL_Delay( DelayTime );
}
}
}
//---------------------------------------------------------------------------

SDL_Surface * LoadBMP( char * filename )
{
SDL_Surface * imagebmp, * image;

imagebmp = SDL_LoadBMP( filename );
if ( imagebmp == NULL )
return NULL;

if ( imagebmp->format->palette != NULL )
{
SDL_SetColors( screen, imagebmp->format->palette->colors, 0, imagebmp->format->palette->ncolors );
}

/* Convert the image to the video format (maps colors) */
image = SDL_DisplayFormat( imagebmp );
SDL_FreeSurface( imagebmp );

return image;
}
//---------------------------------------------------------------------------

void Blt( SDL_Surface * image, int x, int y )
{
int Row, Col, r, c, shiftx, shifty;
SDL_Rect dest, src;

/* out of screen */
if ( ( x > screen->w ) || ( y > screen->h ) ||
( x + image->w < 1 ) || ( y + image->h < 1 ) )
return;

src.x = 0;
src.y = 0;
src.w = image->w;
src.h = image->h;
dest.x = x;
dest.y = y;
dest.w = src.w;
if ( y < 0 )
{
src.y = 0 - y;
src.h = image->h + src.y;
dest.y = 0;
}
dest.h = src.h;

SDL_BlitSurface( image, &src, screen, &dest );
}
//---------------------------------------------------------------------------

void TileBlt( SDL_Surface * image, int x, int y )
{
int Row, Col, r, c, shiftx, shifty;
SDL_Rect dest, src;

shiftx = x % image->w;
shifty = y % image->h;

if ( shiftx >0 ) shiftx -= image->w;
if ( shifty >0 ) shifty -= image->h;

Row = screen->h / image->h + 2;
Col = screen->w / image->w + 2;

dest.x = 0;
dest.y = 0;
dest.w = image->w;
dest.h = image->h;
src.x = 0;
src.y = 0;
src.w = image->w;
src.h = image->h;

for ( r = 0; r < Row; r ++ )
{
if ( r )
{
src.y = 0;
src.h = image->h;
dest.h = image->h;
dest.y = image->h * r + shifty;
}
else
{ /* first line ? */
src.y = 0 - shifty;
src.h = image->h;
dest.h = image->h + shifty;
dest.y = 0;
}

for ( c = 0; c < Col; c ++ )
{
dest.x = image->w * c + shiftx;
SDL_BlitSurface( image, &src, screen, &dest );
}
}
}
//---------------------------------------------------------------------------

void SetTransparentColor( SDL_Surface * sprite, int R, int G, int B )
{
SDL_SetColorKey( sprite, SDL_SRCCOLORKEY|SDL_RLEACCEL, SDL_MapRGB( sprite->format, R, G, B ) );
}
//---------------------------------------------------------------------------

/* Remove the output files if there was no output written */
static void cleanup_output( )
{
FILE *file;
int empty;

/* Flush the output in case anything is queued */
fclose(stdout);
fclose(stderr);

/* See if the files have any output in them */
file = fopen(STDOUT_FILE, "rb");
if ( file )
{
empty = (fgetc(file) == EOF) ? 1 : 0;
fclose(file);
if ( empty )
remove(STDOUT_FILE);
}
file = fopen(STDERR_FILE, "rb");
if ( file )
{
empty = (fgetc(file) == EOF) ? 1 : 0;
fclose(file);
if ( empty )
remove(STDERR_FILE);
}
}
//---------------------------------------------------------------------------

void IoRedirect( )
{
FILE *newfp;

/* Redirect standard standard output */
newfp = freopen(STDOUT_FILE, "w", stdout);
if ( newfp == NULL )
{ /* This happens on NT */
#if !defined(stdout)
stdout = fopen(STDOUT_FILE, "w");
#else
newfp = fopen(STDOUT_FILE, "w");
if ( newfp ) *stdout = *newfp;
#endif
}

/* Redirect standard standard error */
newfp = freopen(STDERR_FILE, "w", stderr);
if ( newfp == NULL )
{ /* This happens on NT */
#if !defined(stderr)
stderr = fopen(STDERR_FILE, "w");
#else
newfp = fopen(STDERR_FILE, "w");
if ( newfp ) *stderr = *newfp;
#endif
}

setvbuf(stdout, NULL, _IOLBF, BUFSIZ); /* Line buffered */
setbuf(stderr, NULL); /* No buffering */
atexit(cleanup_output);
}
//---------------------------------------------------------------------------

BOOL HZ_Init()
{
FILE * file;

file = fopen( ".\\\\HZK16.GBK", "rb" );
fread( HZK16, 32, 0x5d84, file );
fclose( file );
file = fopen( ".\\\\HZK14.GBK", "rb" );
fread( HZK14, 28, 0x5d84, file );
fclose( file );
file = fopen( ".\\\\HZK12.GBK", "rb" );
fread( HZK12, 24, 0x5d84, file );
fclose( file );

return TRUE;
}
//---------------------------------------------------------------------------

BOOL HZ_TextOut( SDL_Surface * image, int x, int y, int width, int space, unsigned char * str )
{
Uint8 * bufptr;
Uint8 * HZK;
Uint16 Bits[16];
int i,j,k, m, offset = 0;
unsigned char q;
unsigned char w;

switch ( width )
{
case 12:
HZK = HZK12;
break;
case 14:
HZK = HZK14;
break;
case 16:
HZK = HZK16;
break;
default:
return FALSE;
}
bufptr = (unsigned char*)image->pixels;

m = strlen( str );
for ( k = 0; k < m; k +=2 )
{
Uint32 X, Y, Z, M;
q = str[k];
w = str[k+1];

if ( w > 0xa0 )
{
M = 0x5e;
Y = w - 0xa1;
if ( q > 0xa0 )
{
X = q - 0xa1;
Z = 0;
}
else
{
X = q - 0x81;
Z = 0x2284;
}
}
else
{
M = 0x60;
if ( w > 0x7f ) Y = w - 0x41;
else Y = w - 0x40;

if ( q > 0xa0 )
{
X = q - 0xa1;
Z = 0x3a44;
}
else
{
X = q - 0x81;
Z = 0x2e44;
}
}
memcpy( Bits, HZK + ( X * M + Y + Z ) * width * 2, width * 2 );

for (i = 0; i < width; i ++) // row
{
Uint16 line;

line = Bits[i];
line = (line >> 8 ) + (line << 8);

for (j = 0; j < 16 ; j ++) //col
{
int index;
int mask = 1;

index = offset + x + 16 - j - 1 + ( y + i ) * image->pitch / image->format->BytesPerPixel;
mask <<= j;
if (mask & line)
{
bufptr[index * 2] = 0xff;
bufptr[index * 2 + 1] = 0xff;
}
}
}
offset += width + space;
}
return TRUE;
}

http://www.rosoo.net/a/201003/8785.html

时间: 2024-08-10 17:01:51

在SDL中显示GBK点阵汉字的相关文章

Java Web项目中HTML文件中的汉字在浏览器中显示乱码的解决方案

今天在做一个Java Web项目的时候,html中的汉字在浏览器中显示为乱码,分析其可能原因有: (1)html文件属性中有默认的编码方式,如果它的设置与html文档中content charset属性设置有冲突,则显示为乱码. (2)与浏览器有关,如果html的编码方式与浏览器默认的编码方式不同,则会出现乱码. 下面直接上图,看我的实验: (1)html的文件属性和content charset都设置为UTF-8,但是浏览器默认是GBK编码,显示乱码.我用了谷歌Chrome浏览器和搜狗浏览器都

(转)在SDL工程中让SDL_ttf渲染汉字

有时候在关于SDL的博文中看到一些评论,说SDL对中文的支持不佳,因为当程序涉及中文时总是输出乱码. 照我个人观点,这里面很多都是误解.下面就根据我在windows下使用SDL的情况,说说我的观点. SDL作为一个跨平台的库,在字符方面有它独特的地方.那就是,它的运行库支持的字符编码为UTF8,而不是windows中常见的各种本地字符编码.比如中文版windows使用的codepage 936,也有称其为GBK的,实际上是对基于GB2312字符集的EUC-CN编码方式做了一个基于UNICODE字

C Tips:显示点阵汉字的小样例

非常简陋的一段小程序,演示怎样显示点阵字库.有时间的时候再详解. #include <stdio.h> #include <stdlib.h> struct HzkInfoStruct { int HzkSelect; int HzkSquare; char * fileName; FILE * file; int martixBytesCount; unsigned char *pMatrix; }; typedef struct HzkInfoStruct HzkInfo; v

dedecms为什么文档标题最大长度只能显示二十个汉字呢?

今天遇到文章标题无论怎么修改,超出二十个汉字不能全部保存,系统只截取前二十个汉字的内容进行保存. 在后台查看系统设置: 系统——其它选项——文档标题最大长度,的值是60,对应的数据库表字段char的长度也是60. 一个汉字占2个字节,按说应该能保存30个汉字才对,搜索后发现以下内容 原因分析:因为UTF-8编码1个中文汉字占用的是3个字节,GBK占用的是2个字节. 对应自己的织梦系统编码为UTF-8,那么60对应的就是20个汉字了. 于是将文档标题最大长度进行修改,如100 数据库dede_ar

在emwin中显示字库芯片GT23L24M0140的字模

?? 在emwin中显示字库芯片GT23L24M0140的字模 本文博客链接:http://blog.csdn.net/jdh99,作者:jdh,转载请注明. 环境: 主机:WIN8 开发环境:MDK5.13 mcu: stm32f407VGIGH6 emwin: STemWin5.22 字库芯片:GT23L24M0140 说明: 项目中需要显示生僻字,所以不能使用GB2312,选择字库芯片GT23L24M0140,支持GB18030标准. 难点在于在emwin中嵌入此字库芯片的字符,emwin

制作自己的字库并在工程中显示

此篇教程操作很复杂,但有着实用价值,可以用来提取网上下载的字库并制作自己的字库拿到工程项目中去显示.有时候加载自定义中文字体会非常大,动辄8-9M大小的中文字库还是很占大小的,而我们也只需要里面的几个汉字,这篇博文就是做这事情的. 首先是制作字体篇 1. 下载工具 2. 下载字体 3. 将字体导入到工具中,并根据汉字查找出汉字 4. 新建自己的字体 5. 查找出游贤明3个字的字符,并复制粘贴,赋值代码点以及名称 6. 导出为ttf字体 这样子就制作好自定义字体了. 以下是显示字体篇 源码: //

【转载】在Windows终端中显示UTF-8字符

一直苦恼于如何在Windows终端中显示UTF-8字符的问题.比如,在MySQL命令行下,如果数据库的编码是UTF-8,那么,在查询数据库的时候,里面的中文都会变成乱码.今天半无意的搜索了一下,结果发现解决方案非常简单:1. 修改终端的代码页.在终端中输入:chcp 65001 2. 右键点击任务栏上的终端(也可以单击窗口左上角的图标),在快捷菜单中选择属性,在里面选择字体——如 Lucida Console,不要选择“点阵字体”:确定之后,再次测试UTF-8输出,你看到了什么. :)要切换回原

centos7安装vim以及在vim中显示中文

1.centos7安装vim yum -y install vim(简单粗暴安装方法) 2.在vim中显示中文不出现乱码 (1).vim ~/.vimrc (~/.vimrc为vim配置文件) (2).输入: set fileencodings=utf-8,gb2312,gbk,gb18030 set termencoding=utf-8 set fileformats=unix set encoding=prc 3.~/.vimrc ~表示root目录 .表示隐藏文件 ls -a /root/

&amp;nbsp在IE和FireFox中显示不一致

&nbsp在IE和FireFox中显示不一致 在做新闻发布系统后台登陆界面时,为了界面美观,想在"密码"二字中间添加空格,从而让"用户名"."密    码"."验证码"垂直对齐. 于是在代码中加了两个" ",在FireFox中达到预期效果了: 我们都知道,一个" "为一个字符大小.可我明明已经在"密码"二字中间添加了两个" "了,刚好为一个