Book Image

3D Game Development with Microsoft Silverlight 3: Beginner's Guide

By : Gaston C. Hillar
Book Image

3D Game Development with Microsoft Silverlight 3: Beginner's Guide

By: Gaston C. Hillar

Overview of this book

Microsoft Silverlight is a programmable web browser plug-in that enables the animation, vector graphics, and audio-video playback features that characterize Rich Internet Applications. Silverlight is a great (and growing) RIA platform and games are the next level to exploit in it. But it doesn't offer 3D capabilities out of the box and integrating a 3D engine can involve lot of complex mathematics and matrix algebra. This book will help C# developers to get their fingers on the pulse of 3D in Silverlight. This book uses Balder, an open source 3D engine offering 3D capabilities for Silverlight 3. It leaves out boring matrix algebra and complex 3D mathematics. By the end of the book you will have explored the entire engine, and will be able to design and program your own 3D games with ease! The book begins by introducing you to the fundamental concepts of 2D games and then drives you into the 3D world, using easy-to-follow, step-by-step examples. The book employs amazing graphics and impressive performance, and increasingly adds more features to a 3D game giving you a rich interactive experience. By following the practical examples in this book, you will learn the important concepts, from the creation of the initial models, up to the addition of physics and artificial intelligence. The book helps you to provide realistic behaviors for 3D characters by enveloping models with different textures, using lights to create effects, animating multiple 3D characters using a physics engine (Farseer Physics Engine), and simulating real-life physics. Videos, music, and sounds associated with specific events offer the final touches to the 3D game development learning experience.
Table of Contents (21 chapters)
3D Game Development with Microsoft Silverlight 3
Credits
About the Author
Acknowledgement
About the Reviewer
Preface
Pop quiz—Answers

Time for action—using chasing algorithms


Your project manager wants to test the results offered by many AI algorithms. He wants you to create an AI algorithm to make one UFO chase the other. However, the algorithm has to make the UFO wander randomly in the middle of the chase.

Now, we are going to add AI to the game in order to make one UFO pursue the other:

  1. 1. Stay in the 3DInvadersSilverlight project.

  2. 2. Open Ufo.cs.

  3. 3. Add the following enum to define AI states for the Ufo's instances (after the namespace and before the class definition):

    public enum UfoAIState
    {
    // Wandering because the other character is too far away
    Wandering,
    // Chasing another character
    Chasing,
    // Evading another character
    Evading,
    // It is not necessary to chase or evade the other character anymore
    Captured
    }
    
  4. 4. Add the following field to determine whether the Ufo is going to chase or evade:

    public bool Evade = false;
    
  5. 5. Add the following property to hold the enemy's instance:

    public Ufo Enemy { get; set; }
    
  6. 6. Add...