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

天行健 君子當自強而不息

D3D中的字體繪制示例

技巧如下:

字體的繪制需要使用ID3DXFont對象和 D3DXCreateFontIndirect函數。

DirectX SDK文檔對ID3DXFont做了簡要的說明:

The ID3DXFont interface encapsulates the textures and resources needed to render a specific font on a specific device.

The ID3DXFont interface is obtained by calling D3DXCreateFont or D3DXCreateFontIndirect.

我們來看看SDK文檔提供的關于 D3DXCreateFontIndirect的使用說明:

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.

該函數的第二個參數使用了一個結構體D3DXFONT_DESC,來看看它的具體定義:

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;

   // create the font
    ZeroMemory(&font_desc, sizeof(font_desc));
    
    
// set font descripter
    strcpy(font_desc.FaceName, "Arial");
    font_desc.Height = 32;

    
// Creates a font object indirectly for both a device and a font
    D3DXCreateFontIndirect(g_d3d_device, &font_desc, &g_font);

通過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.


我們可以這樣使用該函數:

    RECT rect = { 0, 0, WINDOW_WIDTH, WINDOW_HEIGHT };

    // Begin scene
    if(SUCCEEDED(g_d3d_device->BeginScene()))
    {
        
// draw some text
        g_font->DrawTextA(NULL, "Programming is fun!", -1, &rect, DT_CENTER | DT_VCENTER, 0xFFFFFFFF);

        
// end the scene
        g_d3d_device->EndScene();
    }

完整源碼如下:

 
/***************************************************************************************
PURPOSE:
    Font Demo

Required libraries:
  D3D9.LIB and D3DX9.LIB
 ***************************************************************************************/


#include <windows.h>
#include <stdio.h>
#include "d3d9.h"
#include "d3dx9.h"

#pragma comment(lib, "d3d9.lib")
#pragma comment(lib, "d3dx9.lib")

#pragma warning(disable : 4996)

#define WINDOW_WIDTH    400
#define WINDOW_HEIGHT   400

#define Safe_Release(p) if((p)) (p)->Release();

// window handles, class and caption text.
HWND g_hwnd;
HINSTANCE g_inst;
static char g_class_name[] = "FontClass";
static char g_caption[]    = "Font Demo";

// the Direct3D and device object
IDirect3D9* g_d3d = NULL;
IDirect3DDevice9* g_d3d_device = NULL;

// the font object
ID3DXFont* g_font = NULL;

//--------------------------------------------------------------------------------
// Window procedure.
//--------------------------------------------------------------------------------
long WINAPI Window_Proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    
switch(msg)
    {
    
case WM_DESTROY:
        PostQuitMessage(0);
        
return 0;
    }

    
return (long) DefWindowProc(hwnd, msg, wParam, lParam);
}

//--------------------------------------------------------------------------------
// Initialize d3d, d3d device, vertex buffer, texutre. 
//--------------------------------------------------------------------------------
BOOL Do_Init()
{
    D3DPRESENT_PARAMETERS   present_param;
    D3DDISPLAYMODE          display_mode;
    D3DXFONT_DESC           font_desc;

    
// do a windowed mode initialization of Direct3D
    if((g_d3d = Direct3DCreate9(D3D_SDK_VERSION)) == NULL)
        
return FALSE;

    
// retrieves the current display mode of the adapter
    if(FAILED(g_d3d->GetAdapterDisplayMode(D3DADAPTER_DEFAULT, &display_mode)))
        
return FALSE;

    ZeroMemory(&present_param, 
sizeof(present_param));

    
// initialize d3d presentation parameter
    present_param.Windowed          = TRUE;
    present_param.SwapEffect        = D3DSWAPEFFECT_DISCARD;
    present_param.BackBufferFormat  = display_mode.Format;    

    
// creates a device to represent the display adapter
    if(FAILED(g_d3d->CreateDevice(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, g_hwnd,
                                  D3DCREATE_SOFTWARE_VERTEXPROCESSING, &present_param, &g_d3d_device)))
        
return FALSE;     

    
// create the font
    ZeroMemory(&font_desc, sizeof(font_desc));
    
    
// set font descripter
    strcpy(font_desc.FaceName, "Arial");
    font_desc.Height = 32;

    
// Creates a font object indirectly for both a device and a font
    D3DXCreateFontIndirect(g_d3d_device, &font_desc, &g_font);

    
return TRUE;
}

//--------------------------------------------------------------------------------
// Release all d3d resource.
//--------------------------------------------------------------------------------
BOOL Do_Shutdown()
{
    Safe_Release(g_font);
    Safe_Release(g_d3d_device);
    Safe_Release(g_d3d);

    
return TRUE;
}

//--------------------------------------------------------------------------------
// Render a frame.
//--------------------------------------------------------------------------------
BOOL Do_Frame()
{
    RECT rect = { 0, 0, WINDOW_WIDTH, WINDOW_HEIGHT };

    
// clear device back buffer
    g_d3d_device->Clear(0, NULL, D3DCLEAR_TARGET, D3DCOLOR_RGBA(0, 64, 128, 255), 1.0f, 0);

    
// Begin scene
    if(SUCCEEDED(g_d3d_device->BeginScene()))
    {
        
// draw some text
        g_font->DrawTextA(NULL, "Programming is fun!", -1, &rect, DT_CENTER | DT_VCENTER, 0xFFFFFFFF);

        
// end the scene
        g_d3d_device->EndScene();
    }

    
// present the contents of the next buffer in the sequence of back buffers owned by the device
    g_d3d_device->Present(NULL, NULL, NULL, NULL);

    
return TRUE;
}

//--------------------------------------------------------------------------------
// Main function, routine entry.
//--------------------------------------------------------------------------------
int WINAPI WinMain(HINSTANCE inst, HINSTANCE, LPSTR cmd_line, int cmd_show)
{
    WNDCLASSEX  win_class;
    MSG         msg;

    g_inst = inst;

    
// create window class and register it
    win_class.cbSize        = sizeof(win_class);
    win_class.style         = CS_CLASSDC;
    win_class.lpfnWndProc   = Window_Proc;
    win_class.cbClsExtra    = 0;
    win_class.cbWndExtra    = 0;
    win_class.hInstance     = inst;
    win_class.hIcon         = LoadIcon(NULL, IDI_APPLICATION);
    win_class.hCursor       = LoadCursor(NULL, IDC_ARROW);
    win_class.hbrBackground = NULL;
    win_class.lpszMenuName  = NULL;
    win_class.lpszClassName = g_class_name;
    win_class.hIconSm       = LoadIcon(NULL, IDI_APPLICATION);

    
if(! RegisterClassEx(&win_class))
        
return FALSE;

    
// create the main window
    g_hwnd = CreateWindow(g_class_name, g_caption, WS_CAPTION | WS_SYSMENU, 0, 0,
                          WINDOW_WIDTH, WINDOW_HEIGHT, NULL, NULL, inst, NULL);

    
if(g_hwnd == NULL)
        
return FALSE;

    ShowWindow(g_hwnd, SW_NORMAL);
    UpdateWindow(g_hwnd);

    
// initialize game
    if(Do_Init() == FALSE)
        
return FALSE;

    
// start message pump, waiting for signal to quit.
    ZeroMemory(&msg, sizeof(MSG));

    
while(msg.message != WM_QUIT)
    {
        
if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
        
        
// draw a frame
        if(Do_Frame() == FALSE)
            
break;
    }

    
// run shutdown function
    Do_Shutdown();

    UnregisterClass(g_class_name, inst);
    
    
return (int) msg.wParam;
}
 

效果圖如下:



posted on 2007-07-03 19:33 lovedday 閱讀(3418) 評論(1)  編輯 收藏 引用 所屬分類: ■ DirectX 9 Program

評論

# re: D3D中的字體繪制示例 2007-08-20 15:01 RISE

不錯,支持了.  回復  更多評論   

公告

導航

統計

常用鏈接

隨筆分類(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>
            亚洲综合清纯丝袜自拍| 午夜在线一区二区| 女仆av观看一区| 91久久精品国产91久久性色| 免费亚洲一区二区| 美女露胸一区二区三区| 亚洲精品欧美一区二区三区| 亚洲国产精品嫩草影院| 免费观看成人| 一区二区三区波多野结衣在线观看| 亚洲国产精品va在线看黑人| 欧美美女bbbb| 亚洲自拍偷拍福利| 久久精品日韩欧美| 91久久精品日日躁夜夜躁国产| 亚洲国产欧美国产综合一区| 欧美日韩视频在线| 久久九九全国免费精品观看| 两个人的视频www国产精品| 99国产精品久久久久久久久久 | 日韩视频在线一区| 国产九九精品视频| 久久网站免费| 欧美日韩国产小视频| 亚洲视频中文字幕| 久久国产欧美精品| 亚洲最黄网站| 久久精品一区二区三区不卡牛牛| 亚洲动漫精品| 亚洲在线播放| 亚洲久久成人| 香港成人在线视频| 日韩午夜电影av| 久久精品国产99精品国产亚洲性色| 亚洲免费成人av| 久久国产主播| 亚洲深夜福利在线| 麻豆精品视频在线观看| 午夜在线a亚洲v天堂网2018| 欧美成人有码| 久久亚洲色图| 国产精品美女一区二区| 亚洲黄色大片| 亚洲国产精品传媒在线观看| 亚洲一区观看| 亚洲一区二区三区在线观看视频| 久久伊人亚洲| 久久一区精品| 国产午夜精品一区二区三区欧美| 亚洲另类视频| 亚洲精品一区二区三| 久久久精品国产免大香伊| 午夜精品亚洲一区二区三区嫩草| 欧美高清视频在线 | 91久久久国产精品| 欧美中文字幕在线播放| 亚洲在线视频观看| 欧美日韩在线视频观看| 亚洲国产日韩美| 亚洲成人在线网| 久久久久久久久伊人| 久久精品国产亚洲aⅴ| 国产精品成人久久久久| 夜夜嗨av一区二区三区四季av| 亚洲精品日日夜夜| 免费成人黄色| 亚洲承认在线| 亚洲欧洲视频| 欧美理论在线播放| 99精品视频免费全部在线| 亚洲精品久久嫩草网站秘色 | 久久精品夜色噜噜亚洲aⅴ| 午夜精品一区二区三区四区| 国产精品成人国产乱一区 | 久久久7777| 国产综合久久| 久久精品人人做人人爽| 久久久女女女女999久久| 国内精品国语自产拍在线观看| 欧美诱惑福利视频| 快播亚洲色图| 亚洲精品欧美激情| 欧美午夜大胆人体| 亚洲一区二区三区免费观看 | 欧美一二三区精品| 国产一区二区精品丝袜| 久久精品系列| 亚洲欧洲在线看| 亚洲欧美精品中文字幕在线| 国产色爱av资源综合区| 久久www成人_看片免费不卡| 欧美sm视频| 亚洲图片在线观看| 国产亚洲欧美另类一区二区三区| 久久精品一二三| 亚洲国产精品视频一区| 亚洲永久在线| 韩国视频理论视频久久| 欧美激情精品久久久久久黑人 | 免费人成精品欧美精品| 日韩系列欧美系列| 久久激情网站| 一区二区免费看| 国内成人自拍视频| 欧美久久久久中文字幕| 性做久久久久久免费观看欧美 | 一本大道久久a久久综合婷婷| 国产精品久久久久久久久久ktv| 午夜久久久久久久久久一区二区| 欧美刺激性大交免费视频| 国产精品99久久久久久久久久久久 | 亚洲在线观看视频| 欧美承认网站| 欧美亚洲免费电影| 亚洲美女区一区| 国产综合激情| 国产精品美女久久久久av超清| 噜噜噜久久亚洲精品国产品小说| 亚洲天堂久久| 最近中文字幕日韩精品 | 亚洲视频久久| 亚洲第一综合天堂另类专| 国产精品乱人伦中文| 欧美成人免费在线观看| 午夜精品美女久久久久av福利| 欧美激情1区2区| 久久午夜精品一区二区| 亚洲一区二区精品视频| 亚洲精选中文字幕| 在线不卡亚洲| 国产一区二区三区电影在线观看| 欧美日韩国产另类不卡| 欧美va亚洲va日韩∨a综合色| 欧美在线91| 亚洲女人天堂av| 亚洲视频欧洲视频| 亚洲三级网站| 亚洲精品一区二区三区福利| 欧美激情视频在线免费观看 欧美视频免费一| 篠田优中文在线播放第一区| 亚洲在线黄色| 亚洲免费视频成人| 亚洲一区二区网站| 亚洲一区尤物| 欧美亚洲视频在线看网址| 亚洲男人av电影| 亚洲欧美日韩另类精品一区二区三区| 正在播放亚洲| 亚洲一级一区| 亚洲欧美中日韩| 性欧美18~19sex高清播放| 午夜在线精品| 久久久99久久精品女同性| 久久se精品一区二区| 久久精品视频在线免费观看| 久久裸体艺术| 欧美成人激情在线| 嫩模写真一区二区三区三州| 亚洲福利在线视频| 亚洲日韩欧美视频一区| 一区二区三区毛片| 亚洲专区欧美专区| 久久国产成人| 欧美激情精品久久久久久久变态| 欧美激情一区二区三区全黄| 欧美色另类天堂2015| 国产欧美精品日韩区二区麻豆天美| 国产亚洲一级高清| 亚洲黄色免费网站| 亚洲一区二区三区免费视频| 久久av在线看| 亚洲国产cao| 亚洲一区二区三区涩| 久久久久久高潮国产精品视| 免费观看不卡av| 国产精品豆花视频| 1024国产精品| 亚洲欧美日本国产有色| 久久久久欧美精品| 亚洲国产精品一区| 亚洲男女毛片无遮挡| 免费成人黄色| 国产乱码精品一区二区三区忘忧草 | 亚洲一区二区三区精品动漫| 久久超碰97中文字幕| 亚洲盗摄视频| 亚洲欧美日韩国产一区二区三区| 麻豆精品国产91久久久久久| 国产精品va在线| 最近中文字幕mv在线一区二区三区四区| 中文成人激情娱乐网| 久久亚洲国产精品日日av夜夜| 亚洲日本精品国产第一区| 欧美一区二区精品在线| 欧美日韩 国产精品| 在线观看欧美视频| 欧美怡红院视频| 亚洲精品视频免费在线观看| 久久精品国产免费看久久精品| 欧美日韩你懂的|