Writing Your First DirectDraw Application

  • Copyright 2003—2009 Greg Sidelnikov. Please do not reproduce without my permission.

DirectDraw: Creating a Direct Draw Application

I'll take the window base code from my second win tutorial and will keep adding the Direct Draw functionality to it. In this tutorial I will go over the initialization of DirectDraw interface 7 and changing the screen resolution. Let's include the DirectDraw(ddraw.h) header and some variables into our program first.

 
 
#include <ddraw.h>
 
LPDIRECTDRAW	lpdd = NULL;
LPDIRECTDRAW7	lpdd7 = NULL;
 
int swidth = 640;
int sheight = 480;
int sbpp = 16;
 

lpdd and lpdd7 are two DirectDraw objects. these are the objects responsible for managing direct draw accelerator capabilities. it's interesting to note that in reality there can only be one DirectDraw object. lpdd is only used once in the initialization code to request the DirectDraw7 interface and after that it's released. the main DirectDraw object however is only released in the end of the program inside the DirectDrawRelease function which can be looked up in the source code. swidth and sheight are the display width and height, and sbpp is the color depth(bits per pixel). The DirectDraw initialization takes place after the window is created in WinMain( ). I talked about this in a previous win tutorial, when creating a window with CreateWindowEx you will need to set the window style flag to WS_POPUP for full-screen applications. Here is the DirectDraw init code.

 
// Initialize DirectDraw 
 
long rval;
 
rval = DirectDrawCreate(NULL, &lpdd, NULL);
if(rval != DD_OK)
{
	MessageBox(hwnd, "Failed to create the DirectDraw object", "Error", MB_OK);
	quit = true;
}
 
rval = lpdd->QueryInterface(IID_IDirectDraw7, (LPVOID*)&lpdd7);
if(rval != DD_OK)
{
	MessageBox(hwnd, "Failed to query interface for DirectDraw7", "Error", MB_OK);
	quit = true;
}
 
if(lpdd)
{
	lpdd->Release();
	lpdd = NULL;
}
	
rval = lpdd7->SetCooperativeLevel(hwnd,
                                  DDSCL_FULLSCREEN|
                                  DDSCL_EXCLUSIVE|
                                  DDSCL_ALLOWREBOOT);
if(rval != DD_OK)
{
	MessageBox(hwnd, "Failed to set DirectDraw cooperative level", "Error", MB_OK);
	quit = true;
}
 
rval = lpdd7->SetDisplayMode(swidth, sheight, sbpp, 0, 0);
if(rval != DD_OK)
{
	MessageBox(hwnd, "Failed to set display mode", "Error", MB_OK);
	quit = true;
}

I'll go over the init functions. First you need to create the DirectDraw7 object. One of the ways this could be done is by creating a DirectDraw object(lpdd) and then requesting the DirectDraw7 interface by querying it from lpdd. In the code these are the two functions that do just that.

You have to pass the DirectDraw object to DirectDrawCreate. Then pass IID_IDirectDraw7(the reference id of the version you're requesting) and a pointer to a DirectDraw object that will hold the main DirectDraw7 interface to lpdd->QueryInterface. lpdd is only used for querying and after querying is done you have to release it.

The next step is setting the cooperative level. You call this method to determine the behavior of the application by passing flags to it. Usually for a full-screen DirectDraw application you will need to OR together 3 flags.

And finally you change the display resolution by calling

Pass the width, height and the bit depth information to it. The last two parameters are not used and should be set to 0. Last thing to note is that DirectDraw automatically resets the resolution back to what it was, after you quit the program. In the source code I also added a quick Escape key test in the message loop so you don't have to alt-F4 out of it and a function called DirectDrawRelease that releases the DirectDraw object we've created. By the way, this has nothing to do with direct draw drivers.

Copyright 2003—2009 by Greg Sidelnikov. All rights reserved.

Get more free programming tutorials and examples with source code like this, on code optimization, C++, OpenGL and Windows API programming from FalloutSoftware.com

Receive Updates Every Time New Tutorials are Published

I hope you enjoy reading the articles posted on FalloutSoftware.com. Would you like to receive a notification every time a new article about your favorite subjects is posted? If so, open this RSS News Feed (RSS XML file) in a browser that supports RSS Feeds, or point your favorite feed reader software to this plain XML link link. If you want to choose your favorite reader, click on the orange RSS icon above.

Receive Email Notifications when New Tutorials Arrive Subscribe to Email Notifications

If you are not sure how to use the RSS Feed Reader software, there is an alternative way to subscribe! Enter your Email Address to start receiving news every time a new article is published. When you click on that link, you will then be asked to verify your identity by entering a captcha phrase. This is done by Google to ensure that your request is not initiated by a robot.

New Pages

Popular Pages

If you find information on this website useful, please consider making a donation.

How to Link to This Page

1. For Displaying on your website

Click anywhere inside the text area below to select all code. Then, right click on the selected code and click "copy" on the menu that pops up under your mouse pointer. You can then right click and select "paste" from the pop-up menu to paste the code into your website source code where you want to display this link.

This is how your link will appear on your website:
Writing Your First DirectDraw Application

2. For sending to a friend by Email