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

天行健 君子當自強而不息

二維圖形的使用(1)

 

貼片與地圖

二維游戲的核心繪制技術就是所謂的貼片技術(tiling),在進行貼圖的過程中,用較小的像素矩形分組(小位圖稱之為貼片)構造一個較大的場景,貼片的繪制過程稱為映射。

如下圖所示,左邊4個編號的小圖像就是貼片,中間一個加了編號的柵格代表了繪制貼片的布局(按編號順序進行描繪的方式)。對于每個柵格單元,開始繪制編號各自代表的貼片,直到整個場景被繪制完。這個柵格就是地圖,當柵格被繪制完成后,便得到右邊的圖像。

 

在DirectX中使用貼片

渲染小型矩形紋理映射的多邊形并不困難,它可以非常完美地表現出貼片。要想實現它,可以通過一個特殊的D3DX對象ID3DXSprite。ID3DXSprite對象惟一的工作就是使用所指定的具體紋理,將矩形多邊形繪制到屏幕上。當然,給出的紋理將被包含在貼片中。

來看看DirectX SDK文檔提供的ID3DXSprite類的簡要信息:

The ID3DXSprite interface provides a set of methods that simplify the process of drawing sprites using Microsoft Direct3D.

ID3DXSprite Members

Method Description
ID3DXSprite::Begin Prepares a device for drawing sprites.
ID3DXSprite::Draw Adds a sprite to the list of batched sprites.
ID3DXSprite::End Calls ID3DXSprite::Flush and restores the device state to how it was before ID3DXSprite::Begin was called.
ID3DXSprite::Flush Forces all batched sprites to be submitted to the device. Device states remain as they were after the last call to ID3DXSprite::Begin. The list of batched sprites is then cleared.
ID3DXSprite::GetDevice Retrieves the device associated with the sprite object.
ID3DXSprite::GetTransform Gets the sprite transform.
ID3DXSprite::OnLostDevice Use this method to release all references to video memory resources and delete all stateblocks. This method should be called whenever a device is lost or before resetting a device.
ID3DXSprite::OnResetDevice Use this method to re-acquire resources and save initial state.
ID3DXSprite::SetTransform Sets the sprite transform.
ID3DXSprite::SetWorldViewLH Sets the left-handed world-view transform for a sprite. A call to this method is required before billboarding or sorting sprites.
ID3DXSprite::SetWorldViewRH Sets the right-handed world-view transform for a sprite. A call to this method is required before billboarding or sorting sprites.

Remarks

The ID3DXSprite interface is obtained by calling the D3DXCreateSprite function.

The application typically first calls ID3DXSprite::Begin, which allows control over the device render state, alpha blending, and sprite transformation and sorting. Then for each sprite to be displayed, call ID3DXSprite::Draw. ID3DXSprite::Draw can be called repeatedly to store any number of sprites. To display the batched sprites to the device, call ID3DXSprite::End or ID3DXSprite::Flush.

The LPD3DXSPRITE type is defined as a pointer to the ID3DXSprite interface.

typedef interface ID3DXSprite ID3DXSprite;
typedef interface ID3DXSprite *LPD3DXSPRITE;

在Direct3D中使用貼片,首先要實例化一個ID3DXSprite對象,使用D3DXCreateSprite功能函數對它進行初始化。

Creates a sprite object which is associated with a particular device. Sprite objects are used to draw 2D images to the screen.

HRESULT D3DXCreateSprite(
LPDIRECT3DDEVICE9 pDevice,
LPD3DXSPRITE * ppSprite
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, the device to be associated with the sprite.
ppSprite
[out] Address of a pointer to an ID3DXSprite interface. This interface allows the user to access sprite functions.

Return Values

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

Remarks

This interface can be used to draw two dimensional images in screen space of the associated device.

繪制貼片可以調用ID3DXSprite::Draw函數。

Adds a sprite to the list of batched sprites.

HRESULT Draw(
LPDIRECT3DTEXTURE9 pTexture,
CONST RECT * pSrcRect,
CONST D3DXVECTOR3 * pCenter,
CONST D3DXVECTOR3 * pPosition,
D3DCOLOR Color
);

Parameters

pTexture
[in] Pointer to an IDirect3DTexture9 interface that represents the sprite texture.
pSrcRect
[in] Pointer to a RECT structure that indicates the portion of the source texture to use for the sprite. If this parameter is NULL, then the entire source image is used for the sprite.
pCenter
[in] Pointer to a D3DXVECTOR3 vector that identifies the center of the sprite. If this argument is NULL, the point (0,0,0) is used, which is the upper-left corner.
pPosition
[in] Pointer to a D3DXVECTOR3 vector that identifies the position of the sprite. If this argument is NULL, the point (0,0,0) is used, which is the upper-left corner.
Color
[in] D3DCOLOR type. The color and alpha channels are modulated by this value. A value of 0xFFFFFFFF maintains the original source color and alpha data. Use the D3DCOLOR_RGBA macro to help generate this color.

Return Values

If the method succeeds, the return value is S_OK. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.

Remarks

To scale, rotate, or translate a sprite, call ID3DXSprite::SetTransform with a matrix that contains the scale, rotate, and translate (SRT) values, before calling ID3DXSprite::Draw. For information about setting SRT values in a matrix, see Matrix Transforms.

使用Draw函數的技巧就是構造一個源矩形的RECT結構以及貼片紋理的坐標。比如,有一個256 x 256像素大小的紋理,它包含了64個貼片(每個貼片為32 x 32像素大小),排列布置為8行8列,如下圖所示:

如果需要對要繪制的貼片進行旋轉、縮放、平移等操作,則需要在調用Draw之前調用SetTransform進行設置。

Sets the sprite transform.

HRESULT SetTransform(
CONST D3DXMATRIX * pTransform
);

Parameters

pTransform
[in] Pointer to a D3DXMATRIX that contains a transform of the sprite from the original world space. Use this transform to scale, rotate, or transform the sprite.

Return Values

If the method succeeds, the return value is S_OK. If the method fails, the following value will be returned.

D3DERR_INVALIDCALL

 

構造處理貼片的類

貼片類的代碼以創建游戲內核中編寫的游戲內核代碼為基礎。

來看看TILE類的定義:

//=========================================================================================
// This class encapsulate 2D graphics tile draw.
//=========================================================================================
typedef class TILE
{
private:
    GRAPHICS_PTR    _graphics;          
// parent graphics
        
    
long            _num_textures;      // number of textures
    TEXTURE_PTR     _textures;          // TEXTURE array

    
long*           _tile_widths;       // tile width array
    long*           _tile_heights;      // tile height array
    long*           _tile_columns;      // number of tile columns in texture

public:
    TILE();
    ~TILE();

    
// functions to create and free the tile interface
    BOOL create(GRAPHICS_PTR graphics, long num_textures);
    
void free();

    
// functions to load and free a single texture
    
    BOOL load_texture(
long texture_index, const char* texture_filename,
                      
short tile_width = 0, short tile_height = 0,
                      D3DCOLOR transparent = 0,
                      D3DFORMAT format = D3DFMT_A1R5G5B5);

    
void free_texture(long texture_index);

    
// functions to retrieve tile dimensions and number of tiles in a texture
    long get_tile_width(long texture_index);
    
long get_tile_height(long texture_index);
    
long get_tile_number(long texture_index);

    
// enable or disable transparent blitting
    BOOL set_transparent(BOOL enabled = TRUE);

    
// draw a single tile at specified location
    BOOL draw_tile(long texture_index, long tile_index,
                   
long screen_x, long screen_y,
                   D3DCOLOR color = 0xFFFFFFFF,
                   
float x_scale = 1.0f, float y_scale = 1.0f);
} *TILE_PTR;

構造函數初始化數據,析構函數釋放已分配的內存:
 
//----------------------------------------------------------------------------------
// Constructor, zero member data.
//----------------------------------------------------------------------------------
TILE::TILE()
{
    memset(
this, 0, sizeof(*this));
}

//----------------------------------------------------------------------------------
// Destructor, free allocated resource.
//----------------------------------------------------------------------------------
TILE::~TILE()
{
    free();
}

//----------------------------------------------------------------------------------
// Free allocated resource.
//----------------------------------------------------------------------------------
void TILE::free()
{
    _graphics = NULL;

    
// free all tetxures
    if(_num_textures)
    {
        
for(short i = 0; i < _num_textures; i++)
            _textures[i].free();
    }

    delete[] _textures;
    _textures = NULL;
    
    
// free width, height, and column arrays.
    delete[] _tile_widths;
    delete[] _tile_heights;
    delete[] _tile_columns;

    _tile_widths = _tile_heights = _tile_columns = NULL;

    _num_textures = 0;
}

create函數分配TEXTURE對象數組以便在其中存儲貼片,請確保給該函數傳遞一個預先初始化好的GRAPHICS對象。
 
//----------------------------------------------------------------------------------
// Allocate memory.
//----------------------------------------------------------------------------------
BOOL TILE::create(GRAPHICS_PTR graphics, long num_textures)
{
    
// free in case of existing data
    free();

    
// error checking
    if((_graphics = graphics) == NULL)
        
return FALSE;

    
if((_num_textures = num_textures) == 0)
        
return FALSE;

    
// allocate texture objects
    if((_textures = new TEXTURE[_num_textures]) == NULL)
        
return FALSE;

    
// allocate width, height, and column count arrays
    _tile_widths  = new long[_num_textures];
    _tile_heights = 
new long[_num_textures];
    _tile_columns = 
new long[_num_textures];

    
return TRUE;
}

load_texture負責將一個紋理加載到指定的紋理數組中。例如,如果創建TILE對象使用了5個紋理,可以指定從0-4的任何元素去加載一個紋理。所有的紋理都是通過它們在紋理數組中的索引來進行引用的。當加載一個紋理文件時,必須指定存儲在紋理上的貼片的大?。ㄒ韵袼赜嫞?,那些貼片將被裝配到紋理上,從左到右從上到下,第一個貼片從紋理左上角的像素開始。

如果想使用透明位塊傳送,最后的兩個參數將會非常有用。將transparent參數設置為一個有效的D3DCOLOR數值(使用 D3DCOLOR_RGBA或其他類似的宏,請確保使用alpha值255),而且讓format保留它的默認設置D3DFMT_A1R5G5B5,或者從Direect3D提供的可用格式列表中指定一個。

//----------------------------------------------------------------------------------
// Load texture from file.
//----------------------------------------------------------------------------------
BOOL TILE::load_texture(long texture_index, const char* texture_filename,
                        
short tile_width, short tile_height, 
                        D3DCOLOR transparent, D3DFORMAT format)
{
    
// error checking
    if(texture_index >= _num_textures || _textures == NULL || texture_filename == NULL)
        
return FALSE;

    
// free older texture resource
    free_texture(texture_index);

    
// load the texture
    if(! _textures[texture_index].load(_graphics, texture_filename, transparent, format))
        
return FALSE;

    
// store width value (get width of texture if no tile_width was specified).
    if(tile_width == 0)
        _tile_widths[texture_index] = _textures[texture_index].get_width();
    
else
        _tile_widths[texture_index] = tile_width;

    
// store height value (get height of texture if no tile_height was specified).
    if(tile_height == 0)
        _tile_heights[texture_index] = _textures[texture_index].get_height();
    
else
        _tile_heights[texture_index] = tile_height;

    
// Calculate how many columns of tiles there are in the texture.
    // This is used to speed up calculations when drawing tiles.                                                         
    _tile_columns[texture_index] = _textures[texture_index].get_width() / _tile_widths[texture_index];

    
return TRUE;
}

釋放特定的紋理資源可以調用free_texture函數。
 
//----------------------------------------------------------------------------------
// Free specified texture.
//----------------------------------------------------------------------------------
void TILE::free_texture(long texture_index)
{
    
// error checking
    if(texture_index >= _num_textures || _textures == NULL)
        
return;

    
// free a single texture resource
    _textures[texture_index].free();
}

使用get_tile_width,get_tile_height,get_tile_number來分別獲得指定紋理貼片的寬度、高度、貼片總數。
 
//----------------------------------------------------------------------------------
// Return tile width.
//----------------------------------------------------------------------------------
long TILE::get_tile_width(long texture_index)
{
    
// error checking
    if(texture_index >= _num_textures || _tile_widths == NULL)
        
return 0;

    
return _tile_widths[texture_index];
}

//----------------------------------------------------------------------------------
// Return tile height.
//----------------------------------------------------------------------------------
long TILE::get_tile_height(long texture_index)
{
    
// error checking
    if(texture_index >= _num_textures || _tile_widths == NULL)
        
return 0;

    
return _tile_heights[texture_index];
}

//----------------------------------------------------------------------------------
// Return number of tiles.
//----------------------------------------------------------------------------------
long TILE::get_tile_number(long texture_index)
{
    
// error checking
    if(texture_index >= _num_textures || _textures == NULL || 
       _tile_columns == NULL || _tile_widths == NULL || _tile_heights == NULL)
    {
       
return 0;
    }

    
return _tile_columns[texture_index] * (_textures[texture_index].get_height() / _tile_heights[texture_index]);
}

使用set_transparent來啟用或禁用alpha測試,這意味著當啟動時,被加載的帶有適當透明色彩及顏色格式的紋理將使用透明位塊傳送。默認情況下,enabled被設置為TRUE。
 
//----------------------------------------------------------------------------------
// Enable or disable alpha testing.
//----------------------------------------------------------------------------------
BOOL TILE::set_transparent(BOOL enabled)
{
    
// error checking
    if(_graphics == NULL)
        
return FALSE;

    
return _graphics->enable_alpha_testing(enabled);
}

繪制貼片使用draw_tile方法:
 
//----------------------------------------------------------------------------------
// Draw tile.
//----------------------------------------------------------------------------------
BOOL TILE::draw_tile(long texture_index, long tile_index, 
                     
long screen_x, long screen_y, 
                     D3DCOLOR color, 
                     
float x_scale, float y_scale)
{
    
// error checking
    if(_graphics == NULL || _textures == NULL || texture_index >= _num_textures)
        
return FALSE;

    
// calculate the source tile coordinates from texture
    long src_x = (tile_index % _tile_columns[texture_index]) * _tile_widths[texture_index];
    
long src_y = (tile_index / _tile_columns[texture_index]) * _tile_heights[texture_index];

    
return _textures[texture_index].blit(screen_x ,screen_y, src_x, src_y,
        _tile_widths[texture_index], _tile_heights[texture_index], x_scale, y_scale, color);
}
 

posted on 2007-10-16 00:09 lovedday 閱讀(1524) 評論(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>
            日韩视频免费看| 欧美一区网站| 欧美激情综合在线| 日韩视频在线免费| 亚洲日产国产精品| 欧美激情视频在线免费观看 欧美视频免费一 | 欧美在线视频免费| 狠狠色丁香久久婷婷综合丁香| 老鸭窝亚洲一区二区三区| 久久亚洲视频| 日韩视频不卡中文| 一区二区日韩伦理片| 国产偷国产偷精品高清尤物| 美日韩精品视频免费看| 欧美精品一区在线观看| 亚洲在线观看免费视频| 欧美一区二区视频免费观看| 永久域名在线精品| 亚洲人成亚洲人成在线观看图片| 欧美日韩综合在线免费观看| 欧美一区二区三区在线观看视频| 久久精品国产综合| 99re66热这里只有精品4| 亚洲欧美日韩一区| 亚洲福利视频一区| 亚洲午夜成aⅴ人片| 国产小视频国产精品| 欧美激情一区在线| 国产精一区二区三区| 亚洲福利小视频| 国产精品视屏| 亚洲日产国产精品| 韩日精品在线| 99国产精品久久久| 1000部国产精品成人观看| 亚洲少妇在线| 亚洲日本va午夜在线影院| 亚洲欧美中文日韩在线| 99精品视频免费全部在线| 欧美一级视频| 亚洲欧美日韩国产另类专区| 美女亚洲精品| 久久人91精品久久久久久不卡 | 99这里只有精品| 精品动漫3d一区二区三区免费版 | 欧美在线视频免费| 制服丝袜亚洲播放| 欧美 日韩 国产精品免费观看| 欧美在线影院| 欧美四级剧情无删版影片| 亚洲第一网站| 国产综合香蕉五月婷在线| 亚洲无人区一区| a4yy欧美一区二区三区| 美女日韩欧美| 欧美成人亚洲成人| 尤物九九久久国产精品的特点 | 亚洲国产精品一区| 激情视频一区二区| 欧美中日韩免费视频| 欧美一区二区三区免费视频| 国产精品国产三级国产普通话蜜臀 | 狠狠色狠狠色综合日日tαg| 亚洲欧美www| 香蕉精品999视频一区二区| 欧美亚一区二区| 一本久久综合| 亚洲免费中文字幕| 国产精品卡一卡二| 亚洲综合不卡| 久久精品导航| 激情小说亚洲一区| 久久久不卡网国产精品一区| 美女91精品| 亚洲欧洲一区| 欧美另类一区| 一区二区不卡在线视频 午夜欧美不卡在 | 最新成人av在线| 蜜臀av性久久久久蜜臀aⅴ| 欧美aa在线视频| 亚洲韩国精品一区| 欧美国产欧美亚洲国产日韩mv天天看完整| 欧美肥婆bbw| 日韩亚洲国产欧美| 国产精品久久久久久久电影| 亚洲欧美在线x视频| 久久中文字幕一区二区三区| 亚洲电影天堂av| 欧美乱妇高清无乱码| 中日韩午夜理伦电影免费| 欧美在线网址| 91久久国产精品91久久性色| 欧美日韩国产欧美日美国产精品| 亚洲视频一区二区| 久久一区二区精品| 日韩一级欧洲| 国产亚洲欧美另类中文| 免费成人黄色片| 99精品国产福利在线观看免费| 欧美淫片网站| 亚洲精品欧洲精品| 国产精品乱子乱xxxx| 久久天堂成人| 亚洲午夜日本在线观看| 欧美jizzhd精品欧美喷水| 99在线|亚洲一区二区| 国产夜色精品一区二区av| 免费在线观看一区二区| 亚洲尤物视频在线| 亚洲黄页视频免费观看| 久久成人国产| 在线中文字幕日韩| 亚洲高清视频一区二区| 国产精品一区二区男女羞羞无遮挡| 久久午夜羞羞影院免费观看| 亚洲一区二区3| 亚洲国产日韩欧美| 久久婷婷丁香| 亚洲欧美日韩综合| 亚洲精品乱码久久久久久按摩观 | 欧美理论电影在线观看| 欧美综合激情网| 亚洲视频第一页| 亚洲欧洲一区二区三区在线观看| 久久这里只有| 欧美在线短视频| 亚洲一区一卡| 亚洲最快最全在线视频| 亚洲第一福利社区| 国产亚洲欧美日韩在线一区| 国产精品久久久久久久久久久久| 欧美成人免费视频| 噜噜噜噜噜久久久久久91| 欧美一区二区三区四区在线| 亚洲一级二级在线| 一区二区免费在线视频| 99re热这里只有精品视频| 亚洲激情视频网站| 欧美高清视频在线观看| 欧美jizz19性欧美| 欧美aⅴ一区二区三区视频| 久久野战av| 毛片基地黄久久久久久天堂| 久久久久久久久久久久久9999| 欧美一区二区精品久久911| 香蕉久久一区二区不卡无毒影院 | 午夜一区不卡| 小黄鸭精品密入口导航| 亚洲欧美在线播放| 性欧美办公室18xxxxhd| 久久9热精品视频| 久久激情中文| 久久一区国产| 欧美xart系列在线观看| 亚洲成人在线视频播放 | 老司机精品视频网站| 久久婷婷丁香| 欧美本精品男人aⅴ天堂| 欧美国产日韩精品免费观看| 亚洲大胆女人| 亚洲人体一区| 夜夜嗨av一区二区三区四季av| 在线视频精品一| 午夜免费日韩视频| 久久久人人人| 欧美精品九九99久久| 国产精品草草| 国内精品一区二区三区| 亚洲高清免费| 在线性视频日韩欧美| 午夜久久久久久| 麻豆精品视频在线观看视频| 亚洲国产欧美日韩| 亚洲一区二区网站| 久久久久久黄| 欧美日韩一区在线视频| 国产一区二区高清| 亚洲乱码国产乱码精品精98午夜 | 亚洲国产精品一区二区三区| 一本色道久久综合亚洲91| 久久国产精品99精品国产| 欧美电影免费观看网站| 亚洲深夜av| 老司机免费视频久久| 国产精品久久久久久av福利软件 | 欧美区一区二| 国内揄拍国内精品少妇国语| 99精品国产在热久久婷婷| 欧美亚洲视频一区二区| 91久久精品国产91性色 | 亚洲电影免费在线观看| 亚洲尤物在线视频观看| 欧美国产日韩一区二区三区| 国产日产亚洲精品系列| 一区二区三区免费网站| 欧美成人69av| 欧美亚洲三区| 国产精品成人一区二区艾草| 亚洲破处大片| 久久综合久久久久88|