Using DDraw

Started by
8 comments, last by JwayneT 23 years, 12 months ago
Hello, I am a newbie here, so please be kind. This forum looked the best place to post my question. I have read John De Goes'' book on how to build an engine, and I have about three years of working with C++. But I don''t know where to get started with DDraw. I want to write a software rastarizer before I attempt to write to 3D acceleration. How do I use DDraw?
a.h{text-decoration:none;color:blue;};a.h:hover{text-decoration:underline;background:red;};

Why is it called a hot water heater? Isn't it cold when it goes in the tank?

[email=jtaylor@gtemail.net" class="h]-=CF=-[/email]
Advertisement
Download the SDK at www.microsoft.com/directx

Soon you''ll be making Quake and Diablo 2.
what do you need help with? blitting, setting up the window, clipper, etc...
-------------I am a Juggalo.
I am fairly inexperianced in windows programing. I have written in vb, and I have done plenty of dos. I know how to set up a dos driver, what I want to know is how to do the same in windows. So right from the begining, how to set up the window, how to set up a buffer for bliting. If it is too much writing or whatever just some recomended reading would be apreciated.

a.h{text-decoration:none;color:blue;};a.h:hover{text-decoration:underline;background:red;};

Why is it called a hot water heater? Isn't it cold when it goes in the tank?

[email=jtaylor@gtemail.net" class="h]-=CF=-[/email]
Which De Goes book do you have? _3d Game Programming With C++_ by De Goes has some intro stuff in it.

A better book might be _Tricks of the Windows Game Programming Gurus_

Or, if you''d like to save some dough, there are a some good Win32/DirectX intro tutorials here on GameDev. Not too much covering DirectX 7, but once you learn how to setup and use any of the DirectDraw versions, you''ll be set.

Jesse Chounard
I have the -3D games in C++- book by De Goes, but in it he said look at the sdk documentation for use. I have borland builder 4, and there exists no such thing.

a.h{text-decoration:none;color:blue;};a.h:hover{text-decoration:underline;background:red;};

Why is it called a hot water heater? Isn't it cold when it goes in the tank?

[email=jtaylor@gtemail.net" class="h]-=CF=-[/email]
You're in luck. Microsoft has put the docs up on the web.
They're available here

Jesse Chounard

Edited by - Jesse Chounard on 4/29/00 5:52:02 PM
here''s a demo from Tricks of the Windows Game Programming Gururs (or whatever) by Andre Lamoth. You have to instruct the compiler to include ddraw.lib also.


// DEMO7_5.CPP 8-bit page flipping demo

// INCLUDES ///////////////////////////////////////////////

#define WIN32_LEAN_AND_MEAN // just say no to MFC

#define INITGUID

#include // include important windows stuff
#include
#include
#include // include important C/C++ stuff
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include

#include // include directdraw

// DEFINES ////////////////////////////////////////////////

// defines for windows
#define WINDOW_CLASS_NAME "WINCLASS1"

// default screen size
#define SCREEN_WIDTH 640 // size of screen
#define SCREEN_HEIGHT 480
#define SCREEN_BPP 8 // bits per pixel

// TYPES //////////////////////////////////////////////////////

// basic unsigned types
typedef unsigned short USHORT;
typedef unsigned short WORD;
typedef unsigned char UCHAR;
typedef unsigned char BYTE;

// MACROS /////////////////////////////////////////////////

#define KEYDOWN(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 1 : 0)
#define KEYUP(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 0 : 1)

// initializes a direct draw struct
#define DDRAW_INIT_STRUCT(ddstruct) { memset(&ddstruct,0,sizeof(ddstruct)); ddstruct.dwSize=sizeof(ddstruct); }

// GLOBALS ////////////////////////////////////////////////
HWND main_window_handle = NULL; // globally track main window
int window_closed = 0; // tracks if window is closed
HINSTANCE hinstance_app = NULL; // globally track hinstance

// directdraw stuff
LPDIRECTDRAW4 lpdd4 = NULL; // dd4 object
LPDIRECTDRAWSURFACE4 lpddsprimary = NULL; // dd primary surface
LPDIRECTDRAWSURFACE4 lpddsback = NULL; // dd back surface
LPDIRECTDRAWPALETTE lpddpal = NULL; // a pointer to the created dd palette
LPDIRECTDRAWCLIPPER lpddclipper = NULL; // dd clipper
PALETTEENTRY palette[256]; // color palette
PALETTEENTRY save_palette[256]; // used to save palettes
DDSURFACEDESC2 ddsd; // a direct draw surface description struct
DDBLTFX ddbltfx; // used to fill
DDSCAPS2 ddscaps; // a direct draw surface capabilities struct
HRESULT ddrval; // result back from dd calls
DWORD start_clock_count = 0; // used for timing

char buffer[80]; // general printing buffer

// FUNCTIONS //////////////////////////////////////////////

LRESULT CALLBACK WindowProc(HWND hwnd,
UINT msg,
WPARAM wparam,
LPARAM lparam)
{
// this is the main message handler of the system
PAINTSTRUCT ps; // used in WM_PAINT
HDC hdc; // handle to a device context
char buffer[80]; // used to print strings

// what is the message
switch(msg)
{
case WM_CREATE:
{
// do initialization stuff here
// return success
return(0);
} break;

case WM_PAINT:
{
// simply validate the window
hdc = BeginPaint(hwnd,&ps);

// end painting
EndPaint(hwnd,&ps);

// return success
return(0);
} break;

case WM_DESTROY:
{

// kill the application, this sends a WM_QUIT message
PostQuitMessage(0);

// return success
return(0);
} break;

default:break;

} // end switch

// process any messages that we didn''t take care of
return (DefWindowProc(hwnd, msg, wparam, lparam));

} // end WinProc

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

int Game_Main(void *parms = NULL, int num_parms = 0)
{
// this is the main loop of the game, do all your processing
// here

// make sure this isn''t executed again
if (window_closed)
return(0);

// for now test if user is hitting ESC and send WM_CLOSE
if (KEYDOWN(VK_ESCAPE))
{
PostMessage(main_window_handle,WM_CLOSE,0,0);
window_closed = 1;
} // end if

// lock the back buffer
DDRAW_INIT_STRUCT(ddsd);
lpddsback->Lock(NULL,&ddsd, DDLOCK_SURFACEMEMORYPTR / DDLOCK_WAIT,NULL);

// alias pointer to back buffer surface
UCHAR *back_buffer = (UCHAR *)ddsd.lpSurface;

// now clear the back buffer out

// linear memory?
if (ddsd.lPitch == SCREEN_WIDTH)
memset(back_buffer,0,SCREEN_WIDTH*SCREEN_HEIGHT);
else
{
// non-linear memory

// make copy of video pointer
UCHAR *dest_ptr = back_buffer;

// clear out memory one line at a time
for (int y=0; y {
// clear next line
memset(dest_ptr,0,SCREEN_WIDTH);

// advance pointer to next line
dest_ptr+=ddsd.lPitch;

} // end for y

} // end else


// you would perform game logic...

// draw the next frame into the back buffer, notice that we
// must use the lpitch since it''s a surface and may not be linear

// plot 5000 random pixels
for (int index=0; index < 5000; index++)
{
int x = rand()%SCREEN_WIDTH;
int y = rand()%SCREEN_HEIGHT;
UCHAR col = rand()%256;
back_buffer[x+y*ddsd.lPitch] = col;
} // end for index

// unlock the back buffer
if (FAILED(lpddsback->Unlock(NULL)))
return(0);

// perform the flip
while (FAILED(lpddsprimary->Flip(NULL, DDFLIP_WAIT)));

// wait a sec
Sleep(500);

// return success or failure or your own return code here
return(1);

} // end Game_Main

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

int Game_Init(void *parms = NULL, int num_parms = 0)
{
// this is called once after the initial window is created and
// before the main event loop is entered, do all your initialization
// here

LPDIRECTDRAW lpdd_temp;

// first create base IDirectDraw interface
if (FAILED(DirectDrawCreate(NULL, &lpdd_temp, NULL)))
return(0);

// now query for IDirectDraw4
if (FAILED(lpdd_temp->QueryInterface(IID_IDirectDraw4,
(LPVOID *)&lpdd4)))
return(0);

// set cooperation to full screen
if (FAILED(lpdd4->SetCooperativeLevel(main_window_handle,
DDSCL_FULLSCREEN / DDSCL_ALLOWMODEX /
DDSCL_EXCLUSIVE / DDSCL_ALLOWREBOOT)))
return(0);

// set display mode to 640x480x8
if (FAILED(lpdd4->SetDisplayMode(SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP,0,0)))
return(0);


// clear ddsd and set size
DDRAW_INIT_STRUCT(ddsd);

// enable valid fields
ddsd.dwFlags = DDSD_CAPS / DDSD_BACKBUFFERCOUNT;

// set the backbuffer count field to 1, use 2 for triple buffering
ddsd.dwBackBufferCount = 1;

// request a complex, flippable
ddsd.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE / DDSCAPS_COMPLEX / DDSCAPS_FLIP;

// create the primary surface
if (FAILED(lpdd4->CreateSurface(&ddsd, &lpddsprimary, NULL)))
return(0);

// now query for attached surface from the primary surface

// this line is needed by the call
ddsd.ddsCaps.dwCaps = DDSCAPS_BACKBUFFER;

// get the attached back buffer surface
if (FAILED(lpddsprimary->GetAttachedSurface(&ddsd.ddsCaps, &lpddsback)))
return(0);

// build up the palette data array
for (int color=1; color < 255; color++)
{
// fill with random RGB values
palette.peRed = rand()%256;<br> palette.peGreen = rand()%256;<br> palette.peBlue = rand()%256;<br><br> // set flags field to PC_NOCOLLAPSE<br> palette.peFlags = PC_NOCOLLAPSE;<br> } // end for color<br><br>// now fill in entry 0 and 255 with black and white<br>palette[0].peRed = 0;<br>palette[0].peGreen = 0;<br>palette[0].peBlue = 0;<br>palette[0].peFlags = PC_NOCOLLAPSE;<br><br>palette[255].peRed = 255;<br>palette[255].peGreen = 255;<br>palette[255].peBlue = 255;<br>palette[255].peFlags = PC_NOCOLLAPSE;<br><br>// create the palette object<br>if (FAILED(lpdd4->CreatePalette(DDPCAPS_8BIT / DDPCAPS_ALLOW256 / <br> DDPCAPS_INITIALIZE, <br> palette,&lpddpal, NULL)))<br>return(0);<br><br>// finally attach the palette to the primary surface<br>if (FAILED(lpddsprimary->SetPalette(lpddpal)))<br> return(0);<br><br>// return success or failure or your own return code here<br>return(1);<br><br>} // end Game_Init<br><br>/////////////////////////////////////////////////////////////<br><br>int Game_Shutdown(void *parms = NULL, int num_parms = 0)<br>{<br>// this is called after the game is exited and the main event<br>// loop while is exited, do all you cleanup and shutdown here<br><br><br>// first the palette<br>if (lpddpal)<br> {<br> lpddpal->Release();<br> lpddpal = NULL;<br> } // end if<br><br><br>// now the back buffer surface<br>if (lpddsback)<br> {<br> lpddsback->Release();<br> lpddsback = NULL;<br> } // end if<br><br>// now the primary surface<br>if (lpddsprimary)<br> {<br> lpddsprimary->Release();<br> lpddsprimary = NULL;<br> } // end if<br><br>// now blow away the IDirectDraw4 interface<br>if (lpdd4)<br> {<br> lpdd4->Release();<br> lpdd4 = NULL;<br> } // end if<br><br>// return success or failure or your own return code here<br>return(1);<br><br>} // end Game_Shutdown<br><br>// WINMAIN ////////////////////////////////////////////////<br><br>int WINAPI WinMain( HINSTANCE hinstance,<br> HINSTANCE hprevinstance,<br> LPSTR lpcmdline,<br> int ncmdshow)<br>{<br><br>WNDCLASSEX winclass; // this will hold the class we create<br>HWND hwnd; // generic window handle<br>MSG msg; // generic message<br>HDC hdc; // graphics device context<br><br>// first fill in the window class stucture<br>winclass.cbSize = sizeof(WNDCLASSEX);<br>winclass.style = CS_DBLCLKS / CS_OWNDC / <br> CS_HREDRAW / CS_VREDRAW;<br>winclass.lpfnWndProc = WindowProc;<br>winclass.cbClsExtra = 0;<br>winclass.cbWndExtra = 0;<br>winclass.hInstance = hinstance;<br>winclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);<br>winclass.hCursor = LoadCursor(NULL, IDC_ARROW); <br>winclass.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);<br>winclass.lpszMenuName = NULL;<br>winclass.lpszClassName = WINDOW_CLASS_NAME;<br>winclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);<br><br>// save hinstance in global<br>hinstance_app = hinstance;<br><br>// register the window class<br>if (!RegisterClassEx(&winclass))<br> return(0);<br><br>// create the window<br>if (!(hwnd = CreateWindowEx(NULL, // extended style<br> WINDOW_CLASS_NAME, // class<br> "DirectDraw Page Flipping Demo", // title<br> WS_POPUP / WS_VISIBLE,<br> 0,0, // initial x,y<br> SCREEN_WIDTH,SCREEN_HEIGHT, // initial width, height<br> NULL, // handle to parent <br> NULL, // handle to menu<br> hinstance,// instance of this application<br> NULL))) // extra creation parms<br>return(0);<br><br>// save main window handle<br>main_window_handle = hwnd;<br><br>// initialize game here<br>Game_Init();<br><br>// enter main event loop<br>while(TRUE)<br> {<br> // test if there is a message in queue, if so get it<br> if (PeekMessage(&msg,NULL,0,0,PM_REMOVE))<br> { <br> // test if this is a quit<br> if (msg.message == WM_QUIT)<br> break;<br> <br> // translate any accelerator keys<br> TranslateMessage(&msg);<br><br> // send the message to the window proc<br> DispatchMessage(&msg);<br> } // end if<br> <br> // main game processing goes here<br> Game_Main();<br> <br> } // end while<br><br>// closedown game here<br>Game_Shutdown();<br><br>// return to Windows like this<br>return(msg.wParam);<br><br>} // end WinMain<br><br>///////////////////////////////////////////////////////////<br><br>
-------------I am a Juggalo.
Thanks, I will give this a try today. I think my compiler is buggy, but will see if this works!! Again thanks!!

a.h{text-decoration:none;color:blue;};a.h:hover{text-decoration:underline;background:red;};

Why is it called a hot water heater? Isn't it cold when it goes in the tank?

[email=jtaylor@gtemail.net" class="h]-=CF=-[/email]
Includes didn''t come out, you might wanna redo them with inverted brackets, ie ><.

Oh yeah, isn''t that copyright infringement?


The_Minister
[email=mwronen@mweb.co.za" onmouseOver="window.status='Mail The_Minister'; return true" onmouseOut="window.status=' '; return true]The_Minister[/email]1C3-D3M0N Interactive

This topic is closed to new replies.

Advertisement