本文整理汇总了C++中LPD3DXSPRITE类的典型用法代码示例。如果您正苦于以下问题:C++ LPD3DXSPRITE类的具体用法?C++ LPD3DXSPRITE怎么用?C++ LPD3DXSPRITE使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了LPD3DXSPRITE类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: fn_drawButton
HRESULT Li_lstBtnSprite::fn_drawButton(LPD3DXSPRITE dxSpriteInterface)
{
// Build our matrix to rotate, scale and position our sprite
D3DXMATRIX mat;
RECT srcRect;
srcRect.left = 0;
srcRect.right = m_Width;
switch (m_direction)
{
case 0: // Down
{
// draw the selected button in the list
srcRect.top = m_Height / m_lstSize * m_curSelect;
srcRect.bottom = m_Height / m_lstSize * (m_curSelect + 1);
} break;
default: break;
}
D3DXVECTOR3 translation;
translation.x = m_pos.x;
translation.y = m_pos.y;
translation.z = 0;
// out, scaling centre, scaling rotation, scaling, rotation centre, rotation, translation
D3DXMatrixTransformation(&mat, NULL, NULL, NULL, NULL, NULL, &translation);
dxSpriteInterface->SetTransform(&mat);
return dxSpriteInterface->Draw(m_dxTexture,&srcRect,NULL,NULL,0xFFFFFFFF);
}
示例2:
//
// --------------------------------------------------------
// Renders the edit box and the internal text.
// --------------------------------------------------------
void DirectX::GUI::EditBox::render( LPD3DXSPRITE d3dsprite, const POINT* pos )
{
// Compute absolute offset
int xpos = m_posX + pos->x;
int ypos = m_posY + pos->y;
// Render edit box background sprite
Matrix fieldTransform;
float fieldScaleX = (float)m_sizeX / (float)(m_style->selectionBox.right - m_style->selectionBox.left);
float fieldScaleY = (float)m_sizeY / (float)(m_style->selectionBox.bottom - m_style->selectionBox.top);
D3DXMatrixTransformation2D( &fieldTransform, NULL, 0.0, &Vector2( fieldScaleX, fieldScaleY ), NULL,
NULL, &Vector2( (float)xpos, (float)ypos ) );
// Render the properly positioned sprite
d3dsprite->SetTransform( &fieldTransform );
d3dsprite->Draw( m_style->spriteSheet.getImage( ),
&m_style->selectionBox, NULL, NULL, 0xFFFFFFFF );
// Draw button text
if( m_state&FOCUSED ) m_cursorPosition = m_text.insert( m_cursorPosition, '|' );
Matrix iden; RECT textRect = { xpos, ypos, xpos+m_sizeX, ypos+m_sizeY };
D3DXMatrixIdentity( &iden ); d3dsprite->SetTransform( &iden );
m_style->font.getFont( )->DrawTextW( d3dsprite, m_text.c_str( ), -1,
&textRect, m_alignment, m_style->color );
if( m_state&FOCUSED ) { std::wstring::iterator next = m_cursorPosition; next++;
m_cursorPosition = m_text.erase( m_cursorPosition, next ); }
}
示例3: currentPosition
void CTextureDx9::RenderWithoutTransform(LPD3DXSPRITE _lpDSpriteHandle, D3DXVECTOR2 position, D3DXVECTOR2 Center, D3DXVECTOR2 scale, float angle, D3DCOLOR color, RECT *srcRect, float deep)
{
D3DXVECTOR2 CamTransDistance;
CamTransDistance.x = -Camera::getInstance()->GetMatrixTranslate()._41;
CamTransDistance.y = Camera::getInstance()->GetMatrixTranslate()._42;
position.y += Camera::getInstance()->getBound().bottom;
Center.y += Camera::getInstance()->getBound().bottom;
D3DXVECTOR3 currentPosition(position.x + CamTransDistance.x, position.y, deep); //toa do trong the gioi thuc
D3DXMATRIX oldMatrix; //ma tran luu lai phep transform cua SpriteBatch
_lpDSpriteHandle->GetTransform(&oldMatrix);
D3DXVECTOR2 centerScale = D3DXVECTOR2(position.x, position.y);//lay vi tri cua vat the lam tam xoay(vi vi tri cua vat la vi tri chinh giua cua vat)
D3DXMATRIX matrixScalingRotate; //ma tran rotate, scale
D3DXMatrixTransformation2D(&matrixScalingRotate, ¢erScale, 0.0f, &scale, &Center, D3DXToRadian(angle), 0);
D3DXMATRIX finalMatrix = matrixScalingRotate * oldMatrix;
_lpDSpriteHandle->SetTransform(&finalMatrix); //ma tran chuyen toa do vi tri cua vat the tu the gioi thuc sang toa do trong directX de ve
_lpDSpriteHandle->Draw(
this->m_lpTexture,
srcRect,
&D3DXVECTOR3((float)(srcRect->right - srcRect->left)/2, (float)(srcRect->bottom - srcRect->top)/2, 0),
¤tPosition,
color);
_lpDSpriteHandle->SetTransform(&oldMatrix);
}
示例4: Render
void CGameEnd::Render(LPDIRECT3DDEVICE9& dxdevice, LPD3DXSPRITE& dxsprite)
{
dxsprite->Begin(D3DXSPRITE_ALPHABLEND);
dxsprite->Draw(GMAIN->m_pGameTex[6].m_pTex, &(GMAIN->rc), NULL, &(GMAIN->vcPos), D3DXCOLOR(1, 1, 1, 1.f));
////////////////////////////////////////////////////////////////////////////////
dxsprite->End();
GMAIN->m_text.Begin();
char scoreBuf[80];
TCHAR fpsBuf[128];
if (GMAIN->m_nGameBeforePhase == ST_MULTI) {
sprintf(scoreBuf, "%d", GGAMEMULTI->score);//멀티 게임 점수
}
else {
sprintf(scoreBuf, "%d", GGAME->score);//싱글 게임 점수.
}
GMAIN->m_text.Draw("Game Over", 355, 250, D3DXCOLOR(0, 0, 0, 1));
GMAIN->m_text.Draw("Total Score", 355, 300, D3DXCOLOR(0, 0, 0, 1));
GMAIN->m_text.Draw(scoreBuf, 355, 320, D3DXCOLOR(0, 0, 0, 1));
GMAIN->m_text.Draw("Press Enter for going back to Menu", 250, 400, D3DXCOLOR(0, 0, 0, 1));
////////////////////////////////////////////////////////////////////////////////
//FPS 화면에 출력
sprintf(fpsBuf, "FPS: %4.1f", GMAIN->m_fFps);
GMAIN->m_text.Draw(fpsBuf, 700, 300);
GMAIN->m_text.End();
}
示例5: DrawSprite
void CImage::DrawSprite(LPD3DXSPRITE SpriteInterface, LPDIRECT3DTEXTURE9 TextureInterface, int PosX, int PosY, int Rotation, int Align)
{
if(SpriteInterface == NULL || TextureInterface == NULL)
return;
D3DXVECTOR3 Vec;
Vec.x = (FLOAT)PosX;
Vec.y = (FLOAT)PosY;
Vec.z = (FLOAT)0.0f;
D3DXMATRIX mat;
D3DXVECTOR2 scaling(1.0f, 1.0f);
D3DSURFACE_DESC desc;
TextureInterface->GetLevelDesc(0, &desc);
D3DXVECTOR2 spriteCentre;
if(Align == 1)
spriteCentre = D3DXVECTOR2((FLOAT)desc.Width / 2, (FLOAT)desc.Height / 2);
else
spriteCentre = D3DXVECTOR2(0, 0);
D3DXVECTOR2 trans = D3DXVECTOR2(0, 0);
D3DXMatrixTransformation2D(&mat, NULL, 0.0, &scaling, &spriteCentre, (FLOAT)Rotation, &trans);
SpriteInterface->SetTransform(&mat);
SpriteInterface->Begin(D3DXSPRITE_ALPHABLEND);
SpriteInterface->Draw(TextureInterface, NULL, NULL, &Vec, 0xFFFFFFFF);
SpriteInterface->End();
}
示例6: GetSprite
void CMessageBoxScene::Draw(float dt)
{
LPD3DXSPRITE pSprite = GetSprite();
LPD3DXFONT pFont = GetFont();
// Darken down any other Scenes that were drawn beneath the popup.
float alpha = 1 - GetTransPos();
GetEngine()->DrawColourTint(D3DXCOLOR(0, 0, 0, alpha * 2 / 3));
// compute the sizes
RECT scr = GetEngine()->GetWindowRect();
D3DXVECTOR2 scrSize((float)scr.right, (float)scr.bottom);
D3DXVECTOR2 textSize = GetTextSize(pFont, mText.c_str());
D3DXVECTOR2 textPos = (scrSize - textSize) / 2;
const int VPAD = 16, HPAD = 32; // padding
RECT bg;
bg.left = (int)textPos.x - HPAD;
bg.top = (int)textPos.y - VPAD;
bg.right = bg.left + (int)textSize.x + HPAD * 2;
bg.bottom = bg.top + (int)textSize.y + VPAD * 2;
D3DCOLOR col = D3DCOLOR_ARGB((int)(255 * alpha), 255, 255, 255);
pSprite->Begin(D3DXSPRITE_ALPHABLEND); // must have ALPHABLEND or font looks awful
// stretch the 8x8 background into its area
DrawSprite(pSprite, mpTexture, bg, col);
// add text (using the sprite batch)
DrawD3DFontEx(pFont, pSprite, mText.c_str(), (int)textPos.x, (int)textPos.y,
col);
pSprite->End();
}
示例7: zz_assert
void zz_font_d3d::draw_text_prim_offset (const zz_font_text& text_item, float offsetx, float offsety)
{
zz_assert(!text_item.to_texture);
zz_assert(text_item.msg.get());
zz_assert(text_item.msg.size());
zz_assert(_d3d_font);
if (!_d3d_font)
return;
zz_renderer_d3d * r = (zz_renderer_d3d *)(znzin->renderer);
assert(r->is_a(ZZ_RUNTIME_TYPE(zz_renderer_d3d)));
LPD3DXSPRITE sprite = r->get_sprite();
zz_assert(sprite);
HRESULT hr;
D3DXMATRIX saved_tm;
D3DXMATRIX new_tm;
zz_assert(r->sprite_began());
r->flush_sprite();
r->get_sprite_transform((float*)&saved_tm); // save tm
// adjust offset
new_tm = saved_tm;
// assert not-zero-scale
assert(saved_tm._11 != 0);
assert(saved_tm._22 != 0);
assert(saved_tm._33 != 0);
// we does not support rotation
assert(saved_tm._12 == 0);
assert(saved_tm._13 == 0);
assert(saved_tm._21 == 0);
assert(saved_tm._23 == 0);
assert(saved_tm._31 == 0);
assert(saved_tm._32 == 0);
new_tm._41 += offsetx * saved_tm._11;
new_tm._42 += offsety * saved_tm._22;
r->set_sprite_transform((float*)&new_tm);
RECT rect = text_item.rect;
if (FAILED(hr = _draw_text(
sprite,
text_item.msg.get(), -1,
&rect,
text_item.format,
text_item.color )))
{
ZZ_LOG("font_d3d: DrawText() failed\n", zz_renderer_d3d::get_hresult_string(hr));
}
sprite->SetTransform(&saved_tm); // restore tm
}
示例8: drawStringMarkup
/**
* CBitmapFont::drawStringMarkup
* @date Modified Mar 29, 2006
*/
void CBitmapFont::drawStringMarkup(CString str, float fX, float fY, D3DCOLOR dwColor, bool bHandleSprite)
{
CRenderDevice& oDev = CRenderSystem::getInstance().getRenderDevice();
LPD3DXSPRITE pSprite = oDev.getD3DXSprite();
RECT rChar;
char cChar;
D3DXVECTOR3 vPos, vZero;
vPos.x = fX;
vPos.y = fY;
vPos.z = 0.0f;
vZero.x = vZero.y = vZero.z = 0.0f;
if(bHandleSprite)
beginSprite();
// Split strings
bool bFirst = false;
std::vector<CString> vStrings;
str.ToList(vStrings, TEXT("{}"));
if(str.GetChar(0) == '{')
bFirst = true;
// Iterate split strings, and change color if needed.
for(size_t v = 0; v < vStrings.size(); ++v)
{
// Get string, and read color
if((bFirst && v % 2 == 0) || (!bFirst && v % 2 == 1))
{
dwColor = vStrings[v].ToUlongFromHex();
continue;
}
// Iterate string and draw characters.
size_t nSize = vStrings[v].GetLength();
for(size_t i = 0; i < nSize; ++i)
{
cChar = vStrings[v].GetChar(i);
switch(cChar)
{
case '\n':
vPos.y += m_cLineHeight;
vPos.x = fX;
break;
case '\t':
vPos.x += m_mCharMap['X'] * 4;
break;
default:
getCharRect(cChar, &rChar);
pSprite->Draw(m_poTexture->getD3DTexture(), &rChar, NULL, &vPos, dwColor);
vPos.x += (rChar.right - rChar.left);
break;
}
}
}
if(bHandleSprite)
endSprite();
}
示例9: Draw
void Sprite::Draw(D3DMATRIX _World,InfoSprite _info,LPD3DXSPRITE _Handler)
{
D3DXMATRIX ma;
ma = _info.getMatrixTransform()*_World;
_Handler->SetTransform(&ma);
_Handler->Draw(m_Image,&this->getRect(_info.getCurFrame()),NULL,
&D3DXVECTOR3(0,0,_info.getDepth()),_info.getColor());
}
示例10: DrawSprite
void DrawSprite(LPD3DXSPRITE pSpriteBat,LPDIRECT3DTEXTURE9 pSpriteTex,
const RECT& to,D3DCOLOR col)
{
int w,h;
GetSpriteSize(pSpriteTex,w,h);
float sx=float(to.right-to.left)/w;
float sy=float(to.bottom-to.top)/h;
D3DXMATRIX scale;
D3DXMatrixScaling(&scale,sx,sy,1);
pSpriteBat->SetTransform(&scale);
pSpriteBat->Draw(pSpriteTex,NULL,NULL,
&D3DXVECTOR3(to.left/sx,to.top/sy,0),col);
pSpriteBat->SetTransform(&IDENTITY_MAT); // reset the matrix
}
示例11: center
void HookD3D9::DrawSprite(unsigned int texId, long left, long top, long right, long bottom, float posX,
float posY, int r, int g, int b, int a)
{
RECT destRect = {left, top, right, bottom};
LPD3DXSPRITE sprite = sprites[texId];
LPDIRECT3DTEXTURE9 texture = textures[texId];
D3DXVECTOR3 center(0.0f, 0.0f, 0.0f);
D3DXVECTOR3 pos(posX, posY, 0.0f);
sprite->Begin(D3DXSPRITE_ALPHABLEND);
sprite->Draw(texture, NULL, NULL, &pos, D3DCOLOR_RGBA(r, g, b, a));
sprite->End();
}
示例12: loadFromFile
HRESULT Texture::loadFromFile(LPD3DXSPRITE spriteHandle, LPWSTR filePath, D3DXCOLOR color)
{
HRESULT result;
result = D3DXGetImageInfoFromFile(filePath, &this->_imageInfo);
if (result != D3D_OK)
{
return result;
}
LPDIRECT3DDEVICE9 _device = DeviceManager::getInstance()->getDevice();
spriteHandle->GetDevice(&_device);
result = D3DXCreateTextureFromFileEx(
_device,
filePath,
this->_imageInfo.Width,
this->_imageInfo.Height,
1,
D3DUSAGE_DYNAMIC,
D3DFMT_UNKNOWN,
D3DPOOL_DEFAULT,
D3DX_DEFAULT,
D3DX_DEFAULT,
color,
&this->_imageInfo,
nullptr,
&this->_texture);
_color = color;
return result;
}
示例13: spriteTransformDraw
/** Draw a transformed sprite; does all the matrix shit for you */
void Sprite::spriteTransformDraw(LPDIRECT3DTEXTURE9 texture, LPD3DXSPRITE SpriteObj)
{
//Create 2D vectors for scale and translate values (indicate scale x-wise and y-wise)
D3DXVECTOR2 scale(this->scalingX, this->scalingY);
D3DXVECTOR2 translate(x, y);
//Set center by dividing width and height by 2, take scaling into account
D3DXVECTOR2 center((double)(this->width * this->scalingX)/2, (double)(this->height * this->scalingY)/2);
//The 2D transformation matrix and the function that actually sets the matrix values
D3DXMATRIX mat;
D3DXMatrixTransformation2D(
&mat, //The matrix; note pass by reference
NULL, //scaling center point (not used)
0, //scaling rotation value (not used)
&scale, //scaling vector
¢er, //rotation / pivot center
rotation, //rotation angle in RADIANS
&translate //translation vector
);
//Tell sprite object to use the matrix
SpriteObj->SetTransform(&mat);
//calculate frame location in source image (only useful if it's a spritesheet)
int fx = (this->frame % columns) * this->width;
int fy = (this->frame / columns) * this->height;
RECT sourceRect = {fx, fy, fx + this->width, fy + this->height};
//Draw the sprite frame; note we are not filling in pivot center or position because those are already set
//by the matrix
SpriteObj->Draw(texture, &sourceRect, NULL, NULL, this->color);
/** More on spriteObj->Draw
pSrcTexture - a pointer to the texture to be used, see textures
pSrcRect - pointer to a rectangle defining the area of the texture to use or NULL for the whole texture
pCenter- pointer to a 3D vector specifying the position in the sprite around which it can be rotated or
NULL for top left
pPosition - pointer to a 3D vector defining the screen position of the sprite. Note: in Direct3D 0,0
is the top left of the screen.
Color - colour value that can be used to modulate the texture colours. A value of 0xFFFFFFFF maintains
the colour from the texture. Note: you can use the D3DCOLOR_COLORVALUE macro to create a D3DCOLOR
from RGB values.
*/
}//end spriteTransformDraw
示例14: Render
void Sprite::Render()
{
if( m_isUse == false ) return;
D3DXMATRIX Tmat, rotation, scale, translation[2];
float width = AVTexture2D::m_Rect.right - AVTexture2D::m_Rect.left;
float height = AVTexture2D::m_Rect.bottom - AVTexture2D::m_Rect.top;
//float width = m_Info.Width;
//float height = m_Info.Height;
static LPD3DXSPRITE sprite = AVDirector::GetDiector()->GetApplication()->GetD3DSprite();
D3DXMatrixIdentity(&rotation);
D3DXMatrixIdentity(&scale);
for(int i=0; i<2; i++)D3DXMatrixIdentity(&translation[i]);
sprite->SetTransform( &scale ); // 한개만 해줘도 상관없음.
D3DXMatrixTranslation(&translation[0],
-(width * m_anchorPoint.x),
-(height* m_anchorPoint.y),
0);
D3DXMatrixScaling(&scale, m_scale.x, m_scale.y, 1.f);
D3DXMatrixRotationZ(&rotation, m_angle);
D3DXVECTOR2 vector = AVTexture2D::m_vPosition;
D3DXMatrixTranslation(&translation[1],
AVTexture2D::m_vPosition.x,
AVTexture2D::m_vPosition.y,
0);
Tmat = translation[0] * scale * rotation * translation[1];
sprite->SetTransform( &Tmat );
D3DCOLOR color = D3DCOLOR_ARGB((int)m_Color.a, (int)m_Color.r, (int)m_Color.g, (int)m_Color.b);
sprite->Draw(m_Texture, &m_Rect, NULL, NULL, color);
D3DXMatrixIdentity(&scale);
sprite->SetTransform( &scale );
}
示例15: Sprite_Transform_Draw
void Sprite_Transform_Draw(LPDIRECT3DTEXTURE9 image, int x, int y, int width, int height,
int frame, int columns, float rotation, float scaling, D3DCOLOR color)
{
//create a scale vector
D3DXVECTOR2 scale( scaling, scaling );
//create a translate vector
D3DXVECTOR2 trans( (float)x, (float)y );
//set center by dividing width and height by two
D3DXVECTOR2 center( (float)( width * scaling )/2, (float)( height * scaling )/2);
//create 2D transformation matrix
D3DXMATRIX mat;
D3DXMatrixTransformation2D( &mat, NULL, 0, &scale, ¢er, rotation, &trans );
//tell sprite object to use the transform
spriteobj->SetTransform( &mat );
//calculate frame location in source image
int fx = (frame % columns) * width;
int fy = (frame / columns) * height;
RECT srcRect = {fx, fy, fx + width, fy + height};
//draw the sprite frame
spriteobj->Draw( image, &srcRect, NULL, NULL, color );
}