2.10.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.Util.RenderStates;
using BetaCell.Environment.Mesh.Visitors;
using BetaCell.Environment;
using BetaCell.Environment.Light;
using BetaCell.Effects;
using BetaCell.Util.Procedural;
using BetaCell.Common.Vertex;
using BetaCell.Environment.Texture.Feeder;
using BetaCell.Environment.Texture;
using BetaCell.Environment.Mesh;
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;
BCMesh cube;
BCAlphaGreaterRenderStrategy
alphaBlock;
public Game1()
{
graphics = new GraphicsDeviceManager(this);
graphics.PreferredDepthStencilFormat = DepthFormat.Depth24Stencil8;
content = new ContentManager(Services);
#if(XBOX360)
graphics.PreferredBackBufferWidth = 1280;
graphics.PreferredBackBufferHeight = 768;
#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);
alphaBlock = new BCAlphaGreaterRenderStrategy();
recreateScene();
base.Initialize();
}
private void recreateScene()
{
BCMaterialBase material = new BCMaterialBase();
material.specRange = 0.8f;
material.diff = new Color(255, 255, 255, 128);
material.spec = Color.White;
material.amb = Color.LightGray;
BCMaterialVisitor materialSetter = new BCMaterialVisitor(material);
BCColorSet colorSet = new BCColorSet(Color.Black);
BCDynamicEffectVisitor colorSetter =
new BCDynamicEffectVisitor(colorSet.getFunction("Shader.ColorSet"),
colorSet, 0);
BCBasicLight light = new BCBasicLight();
light.range = 2000;
light.transform = Matrix.CreateTranslation(10, 10, 0);
light.constAtten = 1;
light.linAtten = 0;
light.cubAtten = 0;
light.spotRange = 0.9f;
light.useShadows = false;
BCDynamicEffectVisitor lightSetter = new BCDynamicEffectVisitor(
light.getFunction("Shader.Light.Classic.PixelPointLight"),
light,
BCDynamicEffect.MAX_FUNCTIONS
);
//-------------
//cube
//-------------
cube
= ProceduralModelers.CUBE_MODELER.createCube(10, 10, 10, new
BCVertexPosNorTexContainer());
BCMeshGraphicUtil.init(cube, device);
//Setting texture
BCTextureVisitor textureSetter = new BCTextureVisitor(
"tex",
new
BCMemoryTextureStrategy(content.Load<Texture2D>("Content/gameAssets/gatea"))
);
BCTextureFeeder texFeeder = new BCTextureFeeder();
texFeeder.addSampler(
"tex",
new BCSampler(
"LINEAR", "LINEAR", "LINEAR", "4",
"WRAP", "WRAP", "0xffffffff"
)
);
BCDynamicEffectVisitor textureEffectSetter = new BCDynamicEffectVisitor(
texFeeder.getFunction("Shader.Texture.Texture"),
texFeeder,
BCDynamicEffect.MAX_FUNCTIONS
);
cube.transform = Matrix.CreateTranslation(0, 5, 0);
cube.visit(materialSetter);
cube.visit(textureSetter);
cube.visit(colorSetter);
cube.visit(lightSetter);
cube.visit(textureEffectSetter);
//-----
//plane
//-----
textureSetter.strategy = new
BCMemoryTextureStrategy("Content/gameAssets/ground0", content);
plane = ProceduralModelers.PLANE_MODELER.createPlane(
10, 10, 10, 10, new Vector3(0, 0, 0),
new BCVertexPosNorTexContainer(),
4);
BCMeshGraphicUtil.init(plane, device);
plane.visit(materialSetter);
plane.visit(textureSetter);
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(20, 20, 20);
Vector3 look = new Vector3(-2, -2, -2);
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);
plane.Draw(gameTime);
alphaBlock.push(device);
cube.Draw(gameTime);
alphaBlock.pop(device);
BCLogger.instance.printFPS(gameTime);
BCLogger.instance.flush();
base.Draw(gameTime);
}
}
}