Click here to Skip to main content
15,867,985 members
Articles / Multimedia / DirectX
Article

Managed DirectX Tutorials: Part 8 - Exploring the Terrain with Basic Input

Rate me:
Please Sign up or sign in to vote.
4.63/5 (4 votes)
26 May 20062 min read 36.8K   1   28   2
Great, we have terrain, but now, in a similar fashion to Dr. Livingstone we must explore this vast terrain

Sample Image - MDXTut_8.jpg

Rotating Terrain with Basic Matrices Input

Now, we will learn to perform basic input commands on our sample so that we can traverse the island from a "god" camera.
This is only basic matrices input. As I personally get better at this I will add more / update this tutorial.

Short & Sweet

As we learnt a lot about matrices in the earlier tutorials, we can now add input relatively painlessly.
Add the following variables to your form class:

C#
public const float rotateSpeed = 2;
public float Zoom = 0.0f;
public float Alpha = 0;
public float Beta = 0;
public float Charlie = 10;

The first one of these is a modifier which will define how fast we rotate / zoom our terrain. As this is a sample as opposed to a game, we do not need to time it as nothing needs to be balanced. However, it is nice to have a simple member to change to modify the speed.

The next is used, as the name suggests to zoom around the landscape.

The other three are used to rotate the world along its X, Y and Z axes.

Now, at the top of the Paint event handler, add the following lines:

device.Transform.View = Matrix.LookAtLH ( new Vector3 ( 0, Zoom, 150 ), 
               new Vector3 ( 0, -5, 0 ), new Vector3 ( 0, 1, 0 ) );
device.Transform.World = Matrix.Translation ( -256 / 2, -256/ 2, 0 )* 
      Matrix.RotationX ( Alpha ) * Matrix.RotationY ( Beta ) *
      Matrix.RotationZ ( Charlie ); 

As you can see, we change the View (camera position)'s Y axis (for different results, try moving the Zoom member to affect different axis).
And then we multiply our world transformation by the rotation values.

Try fiddling around with these to learn more about matrices, putting what we learnt in previous tutorials into practice.

The final part of this short tutorial is to make a system to actually change the values. We will wire up the KeyDown event, for reasons explained in the Base Tutorial (3).

The event simply checks the keys we want, and performs the event needed:

C#
private void Form1_KeyDown ( object sender, KeyEventArgs e )
{
switch (e.KeyData)
{
case Keys.A:
{
Charlie += 0.01f * rotateSpeed;
} break;
case Keys.D:
{
Charlie -= 0.01f * rotateSpeed;
} break;
case Keys.W:
{
Alpha += 0.01f * rotateSpeed;
} break;
case Keys.S:
{
Alpha -= 0.01f * rotateSpeed;
} break;
case Keys.Left:
{
Beta += 0.01f * rotateSpeed;
} break;
case Keys.Right:
{
Beta -= 0.01f * rotateSpeed;
} break;
case Keys.Up:
{
Zoom += 1f * rotateSpeed;
} break;
case Keys.Down:
{
Zoom -= 1f * rotateSpeed;
} break;
}
} 


DONT FORGET TO WIRE THE EVENT HANDLER IN THE FORMS CONSTRUCTOR:


this.KeyDown += new KeyEventHandler(Form1_KeyDown);

As you can see, we can easily change the speed simply by changing the value assigned to the constant member rotateSpeed, making our sample easily adjustable.

And thats it :) You now have a rotatable, zoomable landscape. This tutorial was just to give you a little "nudge" into matrices manipulation. I reccomend you play with the variables yourself.
In a future tutorial we may look into a more robust input system.

Feedback

I am always open for answering questions, whether through MSN (jamespraveen@aol.com), email (james@magclan.cwhnetworks.com) or through the message board attatched to this article.
If you have a problem with any of my samples / my topics in general please feel free to ask me.
Or you can post on my forums at http//www.just-code-it.net

History

26/05/06: Posted on CodeProject

Previous Articles

Part 1: Setting Up DirectX
Part 2: Initialising Direct3D
Part 3: Rendering Primitives
Part 4: The Transformation Pipeline
Part 5: Basic Texturing
Part 6: Batch Processing Primitives
Part 7: Using Heightmaps
Part 8: Exploring Terrain with Input

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
CEO Synap
United Kingdom United Kingdom
Founder & CEO of Synap, an online education platform that uses machine learning to help people learn more in less time.

Software developer, main languages currently are Objective-C, MySQL and Javascript, though I got started on C++, C# and PHP.

Comments and Discussions

 
SuggestionHello James Gupta. Source code for the link was broken. Please upload the Engine & Source. Pin
cathuman28-Dec-11 19:51
cathuman28-Dec-11 19:51 
GeneralThe Best Pin
Georgi Petrov31-Jul-06 2:58
Georgi Petrov31-Jul-06 2:58 

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.