Before you launch the project, go to the project properties and change the "Output type" to "Windows Application". This option will only remove an annoying shell window on start.
Now run your project in debug mode.
You will get a black window -> IT IS NORMAL !!!
We just tested Brume for an empty 3D scene (or for no 3D scene if you prefer).
Now your class looks like this :
This tutorial will show you how to set up your environment to use Brume Game Engine.
First you will have to download and install the following items :
- Visual Studio 2005 with .NET Frawork 2.0 Final
- DirectX SDK with Managed DirectX 9.0 (December 2005 Edition)
- Brume internal files (Data.zip). You can unzip this file in your project's root directory.
Install the DirectX SDK and check the C# samples to be sure that your installation is OK.
In Visual Studio, create a new project (Empty Project) and add the following assemblies :
- Brume.dll
- System
- System.Drawing
- System.Windows.Forms
Create a new class in your project named "TutorialTheBasics.cs" and change the namespace to "BrumeTutorials" :
Next add the "using Brume;" directive at the begining of your class.
The constructor calls its base class (Brume constructor in this case) and then calls the BrumeFileManager to tell Brume about its minimal ressources.
If you put the "Data" directory in your TutorialTheBasics project as shown at the beginning of this tutorial, you have nothing more to do. If you want to put Brume Datas somewhere else you will have to modify the path given to the "AddDirForAll" method.
Since the Brume class is an abstract class, you will have to declare the "InitGame" method. The purpose of this method is to create all your game objects (It is also possible to load and unload objects dynamically but it will be covered in future tutorials).
For the moment we will leave this method empty.
namespace BrumeTutorials
{
class TutorialTheBasics
{
}
}
public static void Main()
{
using (TutorialTheBasics game = new TutorialTheBasics())
{
game.Play();
}
}
Finally you will have to add a simple "Main" method to start your game !
override protected void GameInit()
{
}
You will have to create a simple constructor for your class and load Brume internal ressources :
public TutorialTheBasics() : base()
{
BrumeFileManager.addDirForAll("../../Data/Internal");
}
Tutorial : The Basics
class TutorialTheBasics : Brume.Brume
using Brume;
using Brume;
namespace BrumeTutorials
{
class TutorialTheBasics : Brume.Brume
{
public TutorialTheBasics() : base()
{
BrumeFileManager.AddDirForAll("../../Data/Internal");
}
override protected void GameInit()
{
}
public static void Main()
{
using (TutorialTheBasics game = new TutorialTheBasics())
{
game.Play();
}
}
}
}
All Brume objects are in the same namespace so that you will only need this line in all the classes that will use the engine.
The main class of your game will also need to inherit from the Brume class (in our exemple TutorialTheBasics).