2.4.8. Complete source code
using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Net;
using Microsoft.Xna.Framework.Storage;
using BetaCell.Debug;
using BetaCell.Util.GlobalInfo.Content;
using BetaCell.Environment.Camera;
using BetaCell.Util.GlobalInfo;
using BetaCell.Environment.Mesh;
using BetaCell.Behavior.Procedural;
using BetaCell.Environment.Texture.Feeder;
using BetaCell.Environment.Mesh.Visitors;
using BetaCell.Environment;
using BetaCell.Environment.Light;
using BetaCell.Util.Procedural;
using BetaCell.Common.Vertex;
using BetaCell.Environment.Texture;
using BetaCell.Effects;
using BetaCell.Effects.Composer;
namespace Starter
{
/// <summary>
/// This is the main type for your game
/// </summary>
public class Game1 : Microsoft.Xna.Framework.Game
{
//Game attributes
GraphicsDeviceManager
graphics;
GraphicsDevice device;
ContentManager content;
BCFirstPersonHumanCamera
camera;
//end game attributes
//This tutorial's attributes
BCMesh plane;
BCProceduralRotator rotator;
public Game1()
{
graphics = new GraphicsDeviceManager(this);
graphics.PreferredDepthStencilFormat = DepthFormat.Depth24Stencil8;
content = new ContentManager(Services);
#if(XBOX360)
graphics.PreferredBackBufferWidth = 1280;
graphics.PreferredBackBufferHeight = 720;
#else
graphics.PreferredBackBufferWidth = 852;
graphics.PreferredBackBufferHeight = 480;
#endif
}
protected override void
Initialize()
{
//base initialization
device = graphics.GraphicsDevice;
BCLogger.instance.init(device, content);
BCInitializationManager.initialize(content);
OnActivated(null, null);
recreateScene();
rotator = new BCProceduralRotator(0, 0.0f, 0.1f, 0f, 1000.0f);
base.Initialize();
}
private void recreateScene()
{
//Creating a base material for the cube
BCMaterialBase material = new BCMaterialBase();
material.specRange = 0.8f;
material.diff = Color.White;
material.spec = Color.White;
material.amb = Color.LightGray;
BCMaterialVisitor materialVisitor = new BCMaterialVisitor(material);
//Color set effect composition part
BCColorSet colorSet = new BCColorSet(Color.Black);
BCFunction baseColor = colorSet.getFunction("Shader.ColorSet");
BCDynamicEffectVisitor colorSetter = new
BCDynamicEffectVisitor(baseColor, colorSet, 0);
//Light effect composition part
BCBasicLight light = new BCBasicLight();
light.range = 200;
light.transform = Matrix.CreateTranslation(20, 20, 10);
light.constAtten = 1;
light.linAtten = 0;
light.cubAtten = 0;
light.spotRange = 0.9f;
light.useShadows = false;
BCFunction lightPart =
light.getFunction("Shader.Light.Classic.VertexPointLight");
BCDynamicEffectVisitor lightSetter = new
BCDynamicEffectVisitor(lightPart, light, 1);
//Creating a sampler for the texture
BCSampler sampler = new BCSampler(
"LINEAR", "LINEAR", "LINEAR", "4",
"WRAP", "WRAP", "0xffffffff"
);
//Creating a texture feeder for the texture
BCTextureFeeder texFeeder = new BCTextureFeeder();
texFeeder.addSampler("tex", sampler);
//Getting the texture effect part function from the texture feeder
BCFunction texturePart =
texFeeder.getFunction("Shader.Texture.Texture");
//Creating the texture effect setter visitor
BCDynamicEffectVisitor textureEffectSetter =
new BCDynamicEffectVisitor(texturePart, texFeeder,
BCDynamicEffect.MAX_FUNCTIONS);
//-------------
//plane
//-------------
plane = ProceduralModelers.PLANE_MODELER.createPlane(4, 4, 25, 25, new
Vector3(0, 0, 0),
new BCVertexPosNorTexContainer(), 1);
BCMeshGraphicUtil.init(plane, device);
//Loading the texture
Texture2D roadTexture =
content.Load<Texture2D>("Content/gameAssets/road");
//Creating a texture strategy from the texture
BCTextureStrategy memory = new BCMemoryTextureStrategy(roadTexture);
memory.setScale(new Vector2(5, 5));
//Setting texture to the mesh
BCTextureVisitor roadTex = new BCTextureVisitor("tex", memory);
plane.visit(roadTex);
plane.visit(materialVisitor);
plane.visit(colorSetter);
plane.visit(lightSetter);
plane.visit(textureEffectSetter);
}
protected override void
OnActivated(object sender, EventArgs args)
{
buildViewMatrix();
base.OnActivated(sender, args);
}
void buildViewMatrix()
{
Vector3 pos = new Vector3(30, 10, 30);
Vector3 look = new Vector3(-3, -1, -3);
look.Normalize();
camera = new BCFirstPersonHumanCamera(look, pos,
MathHelper.PiOver4,
(float)this.Window.ClientBounds.Width /
(float)this.Window.ClientBounds.Height,
1f, 200);
BCGlobalInfo.instance.setMatrix(
BCGlobalInfo.VIEW_INDEX,
camera.getViewMatrix(-1)
);
BCGlobalInfo.instance.setMatrix(
BCGlobalInfo.PROJECTION_INDEX,
camera.getProjectionMatrix(-1)
);
}
protected override void
Update(GameTime gameTime)
{
}
protected override void
Draw(GameTime gameTime)
{
graphics.GraphicsDevice.Clear(ClearOptions.Target |
ClearOptions.DepthBuffer, Color.White, 1.0f, 0);
Matrix rotMatrix = rotator.getRotationMatrix(gameTime);
plane.transform = rotMatrix;
plane.Draw(gameTime);
BCLogger.instance.printFPS(gameTime);
BCLogger.instance.flush();
base.Draw(gameTime);
}
}
}