|
不至于那么麻烦 放两个我写的函数吧
//present的偏移自己决定
//主要给你们一下createfont和drawmytext的方法
ID3DXFont* _stdcall CreateMyFont12(LPDIRECT3DDEVICE9 pDxdevice,int model)
{
// pDxdevice->BeginScene();//开始绘制
//
//
D3DXFONT_DESCA lf;
ZeroMemory(&lf, sizeof(D3DXFONT_DESCA));
if (model==1)
{
lf.Height = 16; //字体高度
lf.Width = 8; // 字体宽度
lf.Weight = 100;
}
if(model==2){
lf.Height = 20; //字体高度
lf.Width =10; // 字体宽度
lf.Weight = 100;
}
if(model==3){
lf.Height = 18; //字体高度
lf.Width =9; // 字体宽度
lf.Weight = 100;
}
if (model==4)
{
lf.Height = 22; //字体高度
lf.Width =11; // 字体宽度
lf.Weight = 100;
}
if (model==5)
{
lf.Height = 6; //字体高度
lf.Width =3; // 字体宽度
lf.Weight = 10;
}
lf.Italic = false;
lf.CharSet = DEFAULT_CHARSET;
strcpy(lf.FaceName, "微软雅黑"); // 字型
ID3DXFont* font=NULL;
if(D3D_OK!=D3DXCreateFontIndirect(pDxdevice, &lf, &font)) //创建字体对象
return 0;
return font;
}
BOOL _stdcall DrawMyText(LPDIRECT3DDEVICE9 pDxdevice,TCHAR* strText ,int nbuf,int x,int y,ID3DXFont* myFont,int colorINT)
{
RECT myrect;
myrect.top=y; //文本块的y坐标
myrect.left=x; //文本块的左坐标
myrect.right=500+myrect.left;
myrect.bottom=500+myrect.top;
pDxdevice->BeginScene();//开始绘制
switch(colorINT){
case 1: myFont->DrawText(NULL,strText,nbuf,&myrect, DT_TOP | DT_LEFT,D3DCOLOR_XRGB(227,23,13));break;//红色
case 2: myFont->DrawText(NULL,strText,nbuf,&myrect, DT_TOP | DT_LEFT,D3DCOLOR_XRGB(255,255,255));break;
case 3: myFont->DrawText(NULL,strText,nbuf,&myrect, DT_TOP | DT_LEFT,D3DCOLOR_XRGB(3,168,158));break; //欢迎字体
case 4: myFont->DrawText(NULL,strText,nbuf,&myrect, DT_TOP | DT_LEFT,D3DCOLOR_XRGB(0,191,255));break;
case 5: myFont->DrawText(NULL,strText,nbuf,&myrect, DT_TOP | DT_LEFT,D3DCOLOR_XRGB(255,250,250));break; //白色
case 6: myFont->DrawText(NULL,strText,nbuf,&myrect, DT_TOP | DT_LEFT,D3DCOLOR_XRGB(30,144,255));break;
}
pDxdevice->EndScene();
return true;
}
直接在present的hook里调用就行了,对了 顺便说一句,如果游戏全屏了 记得切出去的自己释放掉资源,否则会因为丢失设备的原因导致游戏白屏。 |
|