Loading and blitting bitmaps
Explains how to load bitmaps using the ddutil library.
I'll just rape this tutorial from a few posts I made on GameDev.net. Ya know, GameDev kicks ass! For more bitmap blitting and loading functions, look at the notTETRIS source. (See attached resource)
Words of wisdom:
[color="#000080"]posted November 04, 1999 09:23 PM[/color]
Ok, so you have DirectDraw set up and you want to load a bitmap and display it on the screen, right? It's really easy, there's only a couple of steps you need to follow:
- Create a surface for the bitmap.
- Load the bitmap into the surface.
- Blit the bitmap onto the back buffer.
- Flip the back buffer to the primary surface. (you can do this, right?)
Luckily, Microsoft made a function that creates an offscreen surface and loads a bitmap into it: DDLoadBitmap(). To use this, though, you need to get the files "ddutil.cpp" and "ddutil.h" from the DirectDraw SDK. If you don't have them and want em, I can send them to you.
Now, after you've included the ddutil.h file, call DDLoadBitmap() like this:
LPDIRECTDRAWSURFACE4 lpDDSBitmap = NULL;
if ( ( lpDDSBitmap = DDLoadBitmap( lpDD, "bitmap.bmp", 0, 0) ) == NULL )
return FALSE;3.
To blit the bitmap onto the back buffer, call BltFast():
RECT rcFrom;
rcFrom.left = 0;
rcFrom.top = 0;
rcFrom.right = BITMAP_WIDTH;
rcFrom.bottom = BITMAP_HEIGHT;
if ( FAILED( lpDDSBack->BltFast( 0, 0, lpDDSBitmap, &rcFrom, DDBLTFAST_WAIT ) ) )
return FALSE; If you need any more help, send me and email or post to this thread.
I would suggest that you look over the function really well before you use it so you know what it's doing...
[hr]
[color="#000080"] posted November 08, 1999 02:44 PM[/color]
To make a couple of back buffers, you have to make the primary surface with the "two back buffers" flag:
// You have to zero the memory so random bits that were in the memory
// where the variable was created won't mess up the things up.
ZeroMemory( &ddsd, sizeof( ddsd ) );
// This is so the functions know how big the ddsd variable is.
ddsd.dwSize = sizeof( ddsd );
// The DDSD_CAPS flag lets DirectDraw know that the ddsd.ddsCaps.dwCaps
// variable is being used. DDSD_BACKBUFFERCOUNT lets the program know
// that the ddsd.dwBackBufferCount variable is valid (and that there
// will be back buffers to this surface).
ddsd.dwFlags = DDSD_CAPS | DDSD_BACKBUFFERCOUNT;
// DDSCAPS_PRIMARYSURFACE: lets DirectDraw know that this is the primary
// surface. DDSCAPS_FLIP: it can be flipped (back buffers can be used).
// DDSCAPS_COMPLEX: the surface has backbuffers, so it's complex.
ddsd.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE | DDSCAPS_FLIP | DDSCAPS_COMPLEX;
ddsd.dwBackBufferCount = 2;
// Create the primary surface.
if ( FAILED( lpDD->CreateSurface( &ddsd, &lpDDSPrimary, NULL ) ) )
return FALSE;// Again, make sure the memory is cleared.
ZeroMemory( &ddscaps, sizeof( ddscaps ) );
// The surface being created is a back buffer.
ddscaps.dwCaps = DDSCAPS_BACKBUFFER;
// Get the back buffer!
if ( FAILED( lpDDSPrimary->GetAttachedSurface( &ddscaps, &lpDDSBack ) ) )
return FALSE;You really have two back buffers (dwBackBufferCount) but you only need to draw onto one of them. The other one is kind of a "middlebuffer". This is how it works: you write to the back buffer, call "flip", the back buffer goes to the middlebuffer, call flip again and the middle buffer goes to the primary surface. This may seem slower, but it really speeds things up. Read the part in Inside DirectX about back buffers.
Now that you have a back buffer and a primary surface, what you need to do is:
- create another surface
- load a bitmap into it
- blit that onto the back buffer
- 4. flip the surfaces
You should have it call BltFast() and Flip() in a loop, say in WinMain() after it processes a message.
I really hope that is what you wanted because it took a damn long time to write.
If it doesn't help, post back here. Or I suppose you could get on ICQ...
[hr]
[color="#000080"] posted November 08, 1999 02:51 PM[/color]
Here's some code to grind on:
int PASCAL WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow )
{
// This stores the messages that Windows sends the program.
MSG message;
// Init the system stuff.
if ( sys_Init( hInstance, nCmdShow ) == FALSE )
return FALSE;
// Get, Translate, and Dispatch the messages that Windows give the program.
while ( TRUE )
{
// Process All Pending Window Messages
while ( PeekMessage( &message, NULL, 0, 0, PM_NOREMOVE ) == TRUE )
{
if ( GetMessage( &message, NULL, 0, 0 ) )
{
TranslateMessage( &message );
DispatchMessage( &message );
}
else
return TRUE;
}
// Blit to the back buffer. xTo and yTo are where it's blitted to.
// It blits the whole lpDDSBitmap surface.
int xTo = 0, yTo = 0;
if ( FAILED( lpDDSBack->BltFast( xTo, yTo, lpDDSBitmap, NULL, DDBLTFAST_WAIT ) ) )
return FALSE;
// Flip the surface. This makes the back buffer the primary surface and vice versa.
if ( FAILED( lpDDSPrimary->Flip( NULL, DDFLIP_WAIT ) ) )
return FALSE;
}
return message.wParam;
}Related Tutorials
Procedural Generation of 2D Tile Maps in Games
The article explains how to build a procedural 2D cave map generator using cellular automata. It covers map representat…
Localizing A Game Into French — Which Variant Should You Choose?
So, you’re making an awesome indie game, and now you’re thinking about localizing it into French? Great idea! There ar…
How Long Does It Take To Localize An Indie Game?
So you’re planning on localizing your indie game, but you’re not sure how much time to schedule in. While the timing o…
Creating game videos: best practices and pitfalls to avoid
Game video production: practical tips on how to create a game trailer or teaser that you can be proud of. Give your aud…
Adopting CI/CD: How Midwinter Entertainment iterates at speed with the help of IMS
Game development was once like one long sprint: a huge effort until you reached the finish line — at which point you co…
GameDev.net
5 Things to Consider When Making a Video to Promote Your App or Game
How can you show an app or game in your video in a way that attracts new users? Let’s take a look at what to go by when…
Discussion
More from Matthew Allen
Comparing Shadow Mapping Techniques with Shadow Explorer
New Incentives and a Whole New Platform From The Intel AppUp developer program
The final installment in this series on Intel's AppUp program details additional incentives and opportunities for devel…
The Game Maker
This book excerpt contains the first chapter of the book that introduces beginning game developers to the Game Maker pr…
Discussion