Click here to Skip to main content
15,883,901 members
Articles / Programming Languages / C#
Article

Managed DirectX Tutorial Part 1 - The Title Screen

Rate me:
Please Sign up or sign in to vote.
4.41/5 (52 votes)
16 Jan 20033 min read 601.2K   7.9K   145   102
Step-by-step tutorial on Managed DirectX,- Part 1

Sample Image - mdxtutorial1.jpg

Introduction

Welcome to my first tutorial on Managed DirectX, included with DirectX 9 SDK. Most C# developers were waiting for this release. Before Managed DirectX, C# developers were using DirectX via COM Interop of DirectX 7 or 8 VB component. The new Managed DirectX components offers best performance and easier programming over DirectX COM Interop. This tutorial is for newcomers in DirectX development, like me, or for people who were using COM Interop for DirectX development.

In this tutorial, we will make a clone of Super Metroid game called Managed Metroid. We will try to use all the components of Managed DirectX (DirectDraw, DirectSound, DirectInput, Direct3D, DirectPlay and AudioVideoPlayback). In part 1, we will start with basic DirectDraw implementation by showing the title screen and text in full screen.

Requirements

These articles require some knowledge of C#. Also a basic game development background would be useful.

Software requirements:

  • Microsoft Windows NT4 SP6, Windows 2000, Windows XP Pro (for compiling only)
  • Visual C# .NET or Visual Studio .NET
  • DirectX 9 SDK Full or only C# Part (available from Microsoft
  • Image editing tool (optional but useful)
  • SNES Emulator with Super Metroid ROM (optional)

The Title Screen

Adding DirectX namespaces to the project

Add the references to Microsoft.DirectX.dll and Microsoft.DirectX.DirectDraw.dll to your project and add these namespaces to the project.

C#
using Microsoft.DirectX;
using Microsoft.DirectX.DirectDraw;

Adding DirectX variables

First of all, we need to create a DirectDraw device. After that, we create the Surfaces. A Surface is a part of memory where you draw the needed stuff; it also acts like a layer. The Clipper is the boundaries you set to the device, so the device will not draw over the Clipper. The back Surface represents the BackBuffer. The title and text represents the layers of the title screen. Finally, the titlescreen string point to the bitmap to load into title Surface.

C#
// The DirectDraw Device, used in all the application
private Device display;
// The Front Surface
private Surface front = null;
// The Back Surface
private Surface back = null;
// Surface to store the title screen
private Surface title = null;
// Surface to store the text
private Surface text = null;
// The Clipper
private Clipper clip = null;
string titlescreen = Application.StartupPath + "\\title.bmp";

Initialize DirectDraw

For initializing any Managed DirectX component, I suggest you to create methods for each component you use. Here is the method I used to init my DirectDraw stuff.

C#
private void InitDirectDraw()
{
    // Used to describe a Surface
    SurfaceDescription description = new SurfaceDescription();
    // Init the Device
    display = new Device();
#if DEBUG
    display.SetCooperativeLevel(this, CooperativeLevelFlags.Normal);
#else
    // Set the Cooperative Level and parent, 
    //Setted to Full Screen Exclusive to the form)
    display.SetCooperativeLevel(this, 
        CooperativeLevelFlags.FullscreenExclusive);
    // Set the resolution and color depth 
    //used in full screen(640x480, 16 bit color)
    display.SetDisplayMode(640, 480, 16, 0, false);
#endif

// Define the attributes for the front Surface
description.SurfaceCaps.PrimarySurface = true;

#if DEBUG
    front = new Surface(description, display);
#else
    description.SurfaceCaps.Flip = true;
    description.SurfaceCaps.Complex = true;

    // Set the Back Buffer count
    description.BackBufferCount = 1;

    // Create the Surface with specifed description and device)
    front = new Surface(description, display);
#endif
    description.Clear();
#if DEBUG
    description.Width = front.SurfaceDescription.Width;
    description.Height = front.SurfaceDescription.Height;
    description.SurfaceCaps.OffScreenPlain = true;
    back = new Surface(description, display);
#else
    // A Caps is a set of attributes used by most of DirectX components
    SurfaceCaps caps = new SurfaceCaps();
    // Yes, we are using a back buffer
    caps.BackBuffer = true;

    // Associate the front buffer to back buffer with specified caps
    back = front.GetAttachedSurface(caps);
#endif

    // Create the Clipper
    clip = new Clipper(display);
    /// Set the region to this form
    clip.Window = this;
    // Set the clipper for the front Surface
    front.Clipper = clip;

    // Reset the description
    description.Clear();
    // Create the title screen
    title = new Surface(titlescreen, description, display);

    description.Clear();
    // Set the height and width of the text.
    description.Width = 600;
    description.Height = 16;
    // OffScreenPlain means that this Surface 
    //is not a front, back, alpha Surface.
    description.SurfaceCaps.OffScreenPlain = true;

    // Create the text Surface
    text = new Surface(description, display);
    // Set the backgroup color
    text.ColorFill(Color.Black);
    // Set the fore color of the text
    text.ForeColor = Color.White;
    // Draw the Text to the Surface to coords (0,0)
    text.DrawText(0, 0, 
        "Managned DirectX Tutorial 1 - Press Enter or Escape to exit", 
        true);
}

The Draw method

The Draw is called each time we need to draw the content of the Surface to the screen.

C#
private void Draw()
{
    // If the front isn't create, ignore this function
    if (front == null)
    {
        return;
    }

    // If the form is minimized, ignore this function
    if(this.WindowState == FormWindowState.Minimized)
    {
        return;
    }
    try
    {
        // Draw the title to the back buffer using source copy blit
        back.DrawFast(0, 0, title, DrawFastFlags.Wait);

        // Draw the text also to the back buffer using source copy blit
        back.DrawFast(10, 10, text, DrawFastFlags.Wait);

#if DEBUG
        // Draw all this to the front
        front.Draw(back, DrawFlags.Wait);
#else
        // Doing a flip to transfer back buffer to the front, faster
        front.Flip(back, FlipFlags.Wait);
#endif
    }

    catch(WasStillDrawingException)
    {
        return;
    }
    catch(SurfaceLostException)
    {
        // If we lost the surfaces, restore the surfaces
        RestoreSurfaces();
    }
}

The RestoreSurfaces method

The RestoreSurfaces method is called when the user defocus the application and then refocus the application (like an Alt-Tab switch).

C#
private void RestoreSurfaces()
{
    // Used to describe a Surface
    SurfaceDescription description = new SurfaceDescription();

    // Restore al the surface associed with the device
    display.RestoreAllSurfaces();
    // Redraw the text
    text.ColorFill(Color.Black);
    text.DrawText(0, 0, 
        "Managned DirectX Tutorial 1 - Press Enter or Escape to exit", 
        true);

    // For the title screen, we need to 
    //dispose it first and then re-create it
    title.Dispose();
    title = null;
    title = new Surface(titlescreen,  description, display);
    return;
}

The Final touch

At last, add the method InitDirectDraw to the constructor. Also implement the main loop of the application where the Draw method is used. Application.DoEvents() makes the application, process the messages event if the application is in a loop.

C#
public Tutorial1()
{
    //
    // Required for Windows Form Designer support
    //
    InitializeComponent();
    // Initialize DirectDraw stuffs
    InitDirectDraw();
    // Remove the cursor
    this.Cursor.Dispose();
    // Show the form if isn't already do
    this.Show();
    // The main loop
    while(Created)
    {
        Draw();
        // Make sure that the application 
        //process the messages
        Application.DoEvents();
    }
}

Made a change to the Main method. Application.Run method doesn't work in this context. You need to create the form by yourself.

C#
static void Main() 
{
    Tutorial1 app = new Tutorial1();
    Application.Exit();
}

The KeyUp event, is used to quit the Tutorial.

C#
private void Tutorial1_KeyUp(object sender, 
                System.Windows.Forms.KeyEventArgs e)
{
    // If the user press Escape or Enter, the tutorial exits
    if(e.KeyCode == Keys.Escape || e.KeyCode == Keys.Enter)
        this.Close();
}

Conclusion

In this tutorial, we learned how to show a bitmap in full screen using DirectDraw with Managed DirectX. The next tutorial will be on sprite animation and background music with AudioVideoPlayback. If you have any comments, suggestions, code corrections, please make me a remark in the bottom of the article.

History

Update 1.1

  • Fixed drawing on slower machines
  • Separated code for Debug and Release, suggestion by kalme
  • Release version more faster, doing a flip instead of a drawing

Update 1.0

  • First Release of Part 1

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Canada Canada
I'm currently in College(Cegep) in Computer Science.

I'm developping since 2 years starting with C and now i'm an active C# developper.



1998 - Got my PC

1999 - Make my first web page

2000 - Started ROM Translation

2001 - Learned programming with C, first program(Final Fantasy 1 Trainer)

2002 - Learned C#, got VS.NET, started my first big programming project(Aeru IRC)

2003 - Continue Aeru IRC, Learn Managed DirectX, go to CEGEP.

2004 - Dumped Windows as my main desktop(using Gentoo Linux), remake Contra on GBA in C, learn x86 and ARM7 assembler.
2005 - Gamefu (http://sf.net/projects/gamefu/)


My current knowlegde in computer language:
ARM7 assembler, C, C++, C#, PHP and Delphi.


My current active projects is a coding group called Pixel Coders found at http://www.pixel-coders.tk

Comments and Discussions

 
AnswerRe: ROM Translation and the title screen? Pin
Shock The Dark Mage23-Jan-03 10:14
Shock The Dark Mage23-Jan-03 10:14 
GeneralRe: ROM Translation and the title screen? Pin
sumo_guy23-Jan-03 11:46
sumo_guy23-Jan-03 11:46 
GeneralFullscreen Alt-Tab problem in ManagedD3D Pin
Cristoff13-Jan-03 2:24
Cristoff13-Jan-03 2:24 
GeneralRe: Fullscreen Alt-Tab problem in ManagedD3D Pin
User 12301614-Jan-03 11:13
User 12301614-Jan-03 11:13 
GeneralRe: Fullscreen Alt-Tab problem in ManagedD3D Pin
User 12301614-Jan-03 11:49
User 12301614-Jan-03 11:49 
GeneralRe: Fullscreen Alt-Tab problem in ManagedD3D Pin
Zibar18-Jan-03 6:20
sussZibar18-Jan-03 6:20 
GeneralSome suggestions Pin
User 1230167-Jan-03 6:17
User 1230167-Jan-03 6:17 
GeneralRe: Some suggestions Pin
Shock The Dark Mage7-Jan-03 11:24
Shock The Dark Mage7-Jan-03 11:24 
GeneralRe: Some suggestions Pin
User 1230168-Jan-03 5:49
User 1230168-Jan-03 5:49 
GeneralWell Done Pin
ChrisDM6-Jan-03 8:45
ChrisDM6-Jan-03 8:45 
GeneralDoNotWait issue Pin
Randeroo5-Jan-03 23:17
Randeroo5-Jan-03 23:17 
GeneralRe: DoNotWait issue Pin
Shock The Dark Mage6-Jan-03 7:18
Shock The Dark Mage6-Jan-03 7:18 
GeneralRe: DoNotWait issue Pin
djkno36-Jan-03 23:34
djkno36-Jan-03 23:34 
QuestionHOW? Pin
egon5-Jan-03 22:29
egon5-Jan-03 22:29 
AnswerRe: HOW? Pin
Randeroo5-Jan-03 23:08
Randeroo5-Jan-03 23:08 
GeneralRe: HOW? Pin
egon6-Jan-03 1:12
egon6-Jan-03 1:12 
GeneralRe: HOW? Pin
Shock The Dark Mage6-Jan-03 7:23
Shock The Dark Mage6-Jan-03 7:23 
GeneralRe: HOW? Pin
egon6-Jan-03 20:40
egon6-Jan-03 20:40 
GeneralRe: HOW? Pin
Brian Olej17-Jan-03 12:59
Brian Olej17-Jan-03 12:59 
GeneralRe: HOW? Pin
egon19-Jan-03 20:54
egon19-Jan-03 20:54 
GeneralRe: HOW? Pin
Shock The Dark Mage20-Jan-03 10:20
Shock The Dark Mage20-Jan-03 10:20 
GeneralRe: HOW? Pin
Minh Truong20-Jan-03 16:58
Minh Truong20-Jan-03 16:58 
GeneralRe: HOW? Pin
Richard Hein24-Jan-03 9:16
Richard Hein24-Jan-03 9:16 
GeneralRe: HOW? Pin
Anonymous9-Feb-03 12:34
Anonymous9-Feb-03 12:34 
GeneralRe: HOW? Pin
Lord Skeletor16-Feb-03 3:24
Lord Skeletor16-Feb-03 3:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.