青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

天行健 君子當自強而不息

D3D中的字體繪制(1)

9.1 ID3DXFont

在D3DX庫中提供了一個ID3DXFont接口,它能被用于在Direct3D應用程序中繪制文字。

9.1.1創建一個ID3DXFont

我們能夠使用D3DXCreateFontIndirect函數來創建一個ID3DXFont接口。

Creates a font object indirectly for both a device and a font.

HRESULT D3DXCreateFontIndirect(
LPDIRECT3DDEVICE9 pDevice,
CONST D3DXFONT_DESC * pDesc,
LPD3DXFONT * ppFont
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, the device to be associated with the font object.
pDesc
[in] Pointer to a D3DXFONT_DESC structure, describing the attributes of the font object to create. If the compiler settings require Unicode, the data type D3DXFONT_DESC resolves to D3DXFONT_DESCW; otherwise, the data type resolves to D3DXFONT_DESCA. See Remarks.
ppFont
[out] Returns a pointer to an ID3DXFont interface, representing the created font object.

Return Values

If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be one of the following: D3DERR_INVALIDCALL, E_OUTOFMEMORY.

Remarks

The compiler setting also determines the function version. If Unicode is defined, the function call resolves to D3DXCreateFontIndirectW. Otherwise, the function call resolves to D3DXCreateFontIndirectA because ANSI strings are being used.

Defines the attributes of a font.

typedef struct D3DXFONT_DESC {
INT Height;
UINT Width;
UINT Weight;
UINT MipLevels;
BOOL Italic;
BYTE CharSet;
BYTE OutputPrecision;
BYTE Quality;
BYTE PitchAndFamily;
TCHAR FaceName[LF_FACESIZE];
} D3DXFONT_DESC, *LPD3DXFONT_DESC;

Members

Height
Height, in logical units, of the font's character cell or character.
Width
Width, in logical units, of characters in the font.
Weight
Weight of the font in the range from 0 through 1000.
MipLevels
Number of mip levels requested. If this value is zero or D3DX_DEFAULT, a complete mipmap chain is created. If the value is 1, the texture space is mapped identically to the screen space.
Italic
Set to TRUE for an Italic font.
CharSet
Character set.
OutputPrecision
Output precision. The output precision defines how closely the output must match the requested font height, width, character orientation, escapement, pitch, and font type.
Quality
Output quality.
PitchAndFamily
Pitch and family of the font.
FaceName
A null-terminated string or characters that specifies the typeface name of the font. The length of the string must not exceed 32 characters, including the terminating null character. If FaceName is an empty string, the first font that matches the other specified attributes will be used. If the compiler settings require Unicode, the data type TCHAR resolves to WCHAR; otherwise, the data type resolves to CHAR. See Remarks.

Remarks

The compiler setting also determines the structure type. If Unicode is defined, the D3DXFONT_DESC structure type resolves to a D3DXFONT_DESCW; otherwise the structure type resolves to a D3DXFONT_DESCA.

Possible values of the above members are given in the GDI LOGFONT structure.

下面的代碼片段顯示了怎樣使用這個函數:

    D3DXFONT_DESC font_desc;
    ZeroMemory(
&font_desc, sizeof(font_desc));

    font_desc.Height            
= 25;        // in logical units
    font_desc.Width                = 12;        // in logical units
    font_desc.Weight            = 500;        // boldness, range 0(light) - 1000(bold)
    font_desc.Italic            = FALSE;
    font_desc.CharSet            
= DEFAULT_CHARSET;
    font_desc.OutputPrecision    
= 0;
    font_desc.Quality            
= 0;
    font_desc.PitchAndFamily    
= 0;

    strcpy(font_desc.FaceName, 
"Times New Roman");

    
if(FAILED(D3DXCreateFontIndirect(g_d3d_device, &font_desc, &g_d3d_font)))
    {
        MessageBox(NULL, 
"D3DXCreateFontIndirect() - FAILED", NULL, MB_OK);
        PostQuitMessage(
0);
    }

 

注意:你也能夠使用D3DXCreateFont函數來獲得一個ID3DXFont接口指針。

9.1.2繪制文本

一旦我們獲得了ID3DXFont接口指針,繪制文本就是很簡單的事情了,我們只要調用ID3DXFont::DrawText方法就可以實現了。

Draws formatted text. This method supports ANSI and Unicode strings.

INT DrawText(
LPD3DXSPRITE pSprite,
LPCTSTR pString,
INT Count,
LPRECT pRect,
DWORD Format,
D3DCOLOR Color
);

Parameters

pSprite
[in] Pointer to an ID3DXSprite object that contains the string. Can be NULL, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if ID3DXFont::DrawText is to be called more than once in a row.
pString
[in] Pointer to a string to draw.If the Count parameter is -1, the string must be null-terminated.
Count
[in] Specifies the number of characters in the string. If Count is -1, then the pString parameter is assumed to be a pointer to a null-terminated string and ID3DXFont::DrawText computes the character count automatically.
pRect
[in] Pointer to a RECT structure that contains the rectangle, in logical coordinates, in which the text is to be formatted. As with any RECT object, the coordinate value of the rectangle's right side must be greater than that of its left side. Likewise, the coordinate value of the bottom must be greater than that of the top.
Format
[in] Specifies the method of formatting the text. It can be any combination of the following values:
DT_BOTTOM
Justifies the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE.
DT_CALCRECT
Determines the width and height of the rectangle. If there are multiple lines of text, ID3DXFont::DrawText uses the width of the rectangle pointed to by the pRect parameter and extends the base of the rectangle to bound the last line of text. If there is only one line of text, ID3DXFont::DrawText modifies the right side of the rectangle so that it bounds the last character in the line. In either case, ID3DXFont::DrawText returns the height of the formatted text but does not draw the text.
DT_CENTER
Centers text horizontally in the rectangle.
DT_EXPANDTABS
Expands tab characters. The default number of characters per tab is eight.
DT_LEFT
Aligns text to the left.
DT_NOCLIP
Draws without clipping. ID3DXFont::DrawText is somewhat faster when DT_NOCLIP is used.
DT_RIGHT
Aligns text to the right.
DT_RTLREADING
Displays text in right-to-left reading order for bidirectional text when a Hebrew or Arabic font is selected. The default reading order for all text is left-to-right.
DT_SINGLELINE
Displays text on a single line only. Carriage returns and line feeds do not break the line.
DT_TOP
Top-justifies text.
DT_VCENTER
Centers text vertically (single line only).
DT_WORDBREAK
Breaks words. Lines are automatically broken between words if a word would extend past the edge of the rectangle specified by the pRect parameter. A carriage return/line feed sequence also breaks the line.
Color
[in] Color of the text. For more information, see D3DCOLOR.

Return Values

If the function succeeds, the return value is the height of the text in logical units. If DT_VCENTER or DT_BOTTOM is specified, the return value is the offset from pRect (top to the bottom) of the drawn text. If the function fails, the return value is zero.

Remarks

The parameters of this method are very similar to those of the GDI DrawText function.

This method supports both ANSI and Unicode strings.

This method must be called inside a IDirect3DDevice9::BeginScene ... IDirect3DDevice9::EndScene block. The only exception is when an application calls ID3DXFont::DrawText with DT_CALCRECT to calculate the size of a given block of text.

Unless the DT_NOCLIP format is used, this method clips the text so that it does not appear outside the specified rectangle. All formatting is assumed to have multiple lines unless the DT_SINGLELINE format is specified.

If the selected font is too large for the rectangle, this method does not attempt to substitute a smaller font.

This method supports only fonts whose escapement and orientation are both zero.

運行截圖:

主程序:

/**************************************************************************************
  Shows how to calculate the number of frames rendered per second and demonstrates 
  how to render text with the ID3DXFont interface.  
 *************************************************************************************
*/

#include 
<stdio.h>
#include 
"d3dUtility.h"

#pragma warning(disable : 
4100 4996)

const int WIDTH  = 640;
const int HEIGHT = 480;

IDirect3DDevice9
*        g_d3d_device;
ID3DXFont
*                g_d3d_font;

DWORD    g_frame_count;
float    g_time_elapsed;
float    g_fps;
char    g_fps_string[9];

////////////////////////////////////////////////////////////////////////////////////////////////////

bool setup()
{    
    D3DXFONT_DESC font_desc;
    ZeroMemory(
&font_desc, sizeof(font_desc));

    font_desc.Height            
= 25;        // in logical units
    font_desc.Width                = 12;        // in logical units
    font_desc.Weight            = 500;        // boldness, range 0(light) - 1000(bold)
    font_desc.Italic            = FALSE;
    font_desc.CharSet            
= DEFAULT_CHARSET;
    font_desc.OutputPrecision    
= 0;
    font_desc.Quality            
= 0;
    font_desc.PitchAndFamily    
= 0;

    strcpy(font_desc.FaceName, 
"Times New Roman");

    
if(FAILED(D3DXCreateFontIndirect(g_d3d_device, &font_desc, &g_d3d_font)))
    {
        MessageBox(NULL, 
"D3DXCreateFontIndirect() - FAILED", NULL, MB_OK);
        PostQuitMessage(
0);
    }
    
    
return true;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////

void cleanup()
{    
    safe_release
<ID3DXFont*>(g_d3d_font);    
}

///////////////////////////////////////////////////////////////////////////////////////////////////////

bool display(float time_delta)
{
    
// update: compute the frames per second.

    g_frame_count
++;
    g_time_elapsed 
+= time_delta;

    
if(g_time_elapsed >= 1.0f)
    {
        g_fps 
= g_frame_count / g_time_elapsed;

        sprintf(g_fps_string, 
"%f", g_fps);
        g_fps_string[
8= '\0';    // mark end of string

        g_time_elapsed 
= 0.0f;
        g_frame_count  
= 0;
    }

    
// render

    g_d3d_device
->Clear(0, NULL, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, 0xffffffff1.0f0);

    g_d3d_device
->BeginScene();

    RECT rect 
= {00, WIDTH, HEIGHT};
    g_d3d_font
->DrawText(NULL, g_fps_string, -1&rect, DT_TOP | DT_LEFT, 0xff000000);

    g_d3d_device
->EndScene();

    g_d3d_device
->Present(NULL, NULL, NULL, NULL);

    
return true;
}

///////////////////////////////////////////////////////////////////////////////////////////////////////

LRESULT CALLBACK wnd_proc(HWND hwnd, UINT msg, WPARAM word_param, LPARAM long_param)
{
    
switch(msg)
    {
    
case WM_DESTROY:
        PostQuitMessage(
0);
        
break;

    
case WM_KEYDOWN:
        
if(word_param == VK_ESCAPE)
            DestroyWindow(hwnd);
        
break;
    }

    
return DefWindowProc(hwnd, msg, word_param, long_param);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////

int WINAPI WinMain(HINSTANCE inst, HINSTANCE, PSTR cmd_line, int cmd_show)
{
    
if(! init_d3d(inst, WIDTH, HEIGHT, true, D3DDEVTYPE_HAL, &g_d3d_device))
    {
        MessageBox(NULL, 
"init_d3d() - failed."0, MB_OK);
        
return 0;
    }

    
if(! setup())
    {
        MessageBox(NULL, 
"Steup() - failed."0, MB_OK);
        
return 0;
    }

    enter_msg_loop(display);

    cleanup();
    g_d3d_device
->Release();

    
return 0;
}

 

下載源程序

posted on 2008-03-26 16:50 lovedday 閱讀(3275) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


公告

導航

統計

常用鏈接

隨筆分類(178)

3D游戲編程相關鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久成人精品无人区| 欧美韩日高清| 激情综合自拍| 国产精品一区二区久久久久| 欧美丝袜一区二区| 国产精品欧美在线| 国产小视频国产精品| 国产一区二区日韩精品| 一区二区在线观看视频| 日韩视频不卡| 欧美伦理91i| 欧美性事在线| 好吊视频一区二区三区四区 | 中国女人久久久| 亚洲综合色视频| 久久精品久久综合| 欧美激情区在线播放| 国产精品毛片| 1204国产成人精品视频| 亚洲天堂网在线观看| 欧美在线精品一区| 欧美成人a视频| 亚洲少妇自拍| 老司机aⅴ在线精品导航| 欧美日韩蜜桃| 欲色影视综合吧| 亚洲欧美精品在线观看| 免费91麻豆精品国产自产在线观看| 亚洲日本久久| 亚洲视频视频在线| 美女脱光内衣内裤视频久久网站| 国产精品免费看| 亚洲精品一区二区三区樱花| 午夜影院日韩| 亚洲人体1000| 麻豆成人在线观看| 国产麻豆视频精品| 夜夜嗨av一区二区三区免费区| 久久久人成影片一区二区三区观看| 亚洲日本无吗高清不卡| 久久免费的精品国产v∧| 国产精品视频第一区| 99精品国产热久久91蜜凸| 久久久www| 亚洲欧美日韩成人高清在线一区| 欧美成人午夜| 亚洲国产老妈| 欧美成年网站| 狼狼综合久久久久综合网| 国产麻豆综合| 欧美亚洲免费在线| 亚洲在线视频一区| 国产精品久久97| 亚洲一区二区视频在线| 亚洲另类自拍| 欧美日韩精品| 中国亚洲黄色| 洋洋av久久久久久久一区| 欧美日韩福利| 亚洲图片欧美日产| 一区二区三区欧美亚洲| 欧美亚一区二区| 欧美一级大片在线观看| 国产精品99久久不卡二区| 国产精品看片你懂得| 亚洲欧美另类中文字幕| 久久综合一区二区| 亚洲欧美www| 99在线热播精品免费99热| 欧美激情亚洲自拍| 一区二区三区欧美在线| 一个人看的www久久| 国产精品国产a级| 亚洲欧美综合精品久久成人| 亚洲在线成人精品| 国产原创一区二区| 免费观看日韩av| 欧美高清在线精品一区| 一本大道av伊人久久综合| 亚洲视频axxx| 好吊视频一区二区三区四区| 欧美va亚洲va香蕉在线| 欧美精品二区| 欧美一区二区在线播放| 久久精品视频导航| 日韩视频在线播放| 亚洲在线一区二区| 在线观看亚洲精品| 99xxxx成人网| 国内外成人免费视频| 亚洲大胆视频| 国产精品丝袜91| 欧美激情日韩| 国产精品久久久久久久久久尿| 久久久久久午夜| 欧美日韩成人精品| 久久全球大尺度高清视频| 欧美日韩国产另类不卡| 久久蜜桃精品| 欧美体内she精视频在线观看| 久久久噜噜噜| 国产精品二区三区四区| 欧美国产视频一区二区| 国产精品视频xxxx| 亚洲国产高清在线观看视频| 国产偷久久久精品专区| 亚洲国产精品成人精品| 国产精品自拍三区| 亚洲三级观看| 在线观看国产欧美| 亚洲免费一区二区| 一区二区三区**美女毛片| 久久久人人人| 久久国产一区二区三区| 欧美日韩性生活视频| 欧美国产一区视频在线观看| 国产视频在线观看一区 | 夜夜嗨av一区二区三区四季av| 欧美尤物巨大精品爽| 亚洲欧美精品在线| 欧美视频成人| 亚洲毛片在线免费观看| 亚洲乱码一区二区| 美女国产精品| 欧美sm视频| 亚洲成在线观看| 欧美一区午夜精品| 欧美资源在线观看| 国产精品综合av一区二区国产馆| 99精品视频网| 在线成人欧美| 在线亚洲免费| 欧美成人精品高清在线播放| 亚洲一区二区成人| 又紧又大又爽精品一区二区| 国产精品你懂得| 欧美视频成人| 国产精品乱子乱xxxx| 国产欧美精品va在线观看| 欧美日韩系列| 国产亚洲欧美日韩一区二区| 国产日韩三区| 亚洲激情不卡| 亚洲自拍另类| 久久在线免费观看| 亚洲激情视频在线播放| 亚洲精品久久久一区二区三区| 欧美激情小视频| 亚洲欧美另类综合偷拍| 免费日韩成人| 欧美日本亚洲| 国产一区在线观看视频| 亚洲人成网站影音先锋播放| 亚洲欧美不卡| 亚洲国产精品久久久久久女王| 亚洲一区999| 久热精品视频在线观看| 国产精品美女久久久久久2018| 国产一区二区三区自拍| 亚洲视频网在线直播| 91久久精品久久国产性色也91| 这里是久久伊人| 国产精品美女久久久| 在线观看成人av| 久久蜜桃资源一区二区老牛 | 亚洲欧美春色| 亚洲久久一区| 伊大人香蕉综合8在线视| 亚洲一区999| 日韩视频三区| 久久久噜久噜久久综合| 一区二区欧美在线观看| 久久久五月天| 久久xxxx精品视频| 欧美视频四区| 日韩亚洲精品在线| 在线精品国精品国产尤物884a| 亚洲视频在线观看三级| 亚洲精品乱码久久久久久久久| 午夜国产一区| 日韩一区二区电影网| 亚洲精品一区中文| 欧美体内she精视频| 久久精品91久久久久久再现| 亚洲免费一区二区| 亚洲人成绝费网站色www| 夜色激情一区二区| 国产精品美女久久久久久2018 | 午夜综合激情| 好看的av在线不卡观看| 模特精品在线| 国内精品亚洲| 久久国产色av| 欧美中在线观看| 国产精品国产三级国产普通话99 | 激情综合中文娱乐网| 99在线精品观看| 亚洲自拍高清| 国产精品女主播一区二区三区| 亚洲精品久久久久久久久|