Writing Your First DirectDraw Application |
|
|
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.
|
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.
|
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.
- DirectDrawCreate(NULL, &lpdd, NULL);
- lpdd->QueryInterface(IID_IDirectDraw7, (LPVOID*)&lpdd7);
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.
- DDSCL_FULLSCREEN - Indicates that the exclusive-mode owner will be responsible for the entire primary surface(more about surfaces in the following tutorial). This flag must be used with DDSCL_EXCLUSIVE (driver independent)
- DDSCL_EXCLUSIVE - Requests the exclusive level(full-screen, exclusive mode). This flag must be used with the DDSCL_FULLSCREEN flag.
- DDSCL_ALLOWREBOOT - Allows ctrl+alt+del to function while in exclusive (full-screen) mode.
And finally you change the display resolution by calling
- lpdd7->SetDisplayMode(swidth, sheight, sbpp, 0, 0);
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 
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
- Writing Your First Windows Application (C++)
- Creating Your First Window (Continued)
- How To Draw Pixels in A Window Using GDI (Graphics Device Interface)
- How To Create a Window Menu Programmatically (C++)
- How To Change A Window Style? (C++ Programming)
- OpenGL Coordinate System Tutorial (Camera, Plane, Basics)
- Setup OpenGl on Visual C++ 6 (linking and building requirements)
- Creating an OpenGL Window from Scratch - A Beginner's Tutorial
- Introduction to OpenGL Primitives - Drawing Basic Shapes
- How to Draw OpenGL Polygons
Popular Pages
- OpenGL Coordinate System Tutorial (Camera, Plane, Basics)
- Setup OpenGl on Visual C++ 6 (linking and building requirements)
- Creating an OpenGL Window from Scratch - A Beginner's Tutorial
- Introduction to OpenGL Primitives - Drawing Basic Shapes
- How to Draw OpenGL Polygons
- OpenGL Color with glColor (glColor3f)
- OpenGL 3D Transformations
- Making a Custom 3D Model Format for OpenGL
- OpenGL Base Code (Just enough to set you up)
- OpenGL Lighting or How Light Sources Work (Long, In-depth Tutorial)
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

