//---------------------------------------------------------------------------------------------------------------------------------------------------
//
// Copyright (C)2007 DarkWynter Studios. All rights reserved.
//
//---------------------------------------------------------------------------------------------------------------------------------------------------
// {Contact : darkwynter.com for licensing information
//---------------------------------------------------------------------------------------------------------------------------------------------------
namespace DarkWynter.Game.GameObjects
{
#region Using Statements
using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Storage;
using System.Xml;
#endregion
using DarkWynter.Engine.Globals;
using DarkWynter.Engine.Physics;
using DarkWynter.Engine.ObjectLib;
using DarkWynter.Engine.GameObjects;
using DarkWynter.Engine.Init;
using DarkWynter.Stream;
///
/// An abstract door with locking mechanics.
///
public class TriggerPlane : GameObject
{
bool triggered = false;
int bridgeDropHeight = 3;
///
/// Portal constructor
///
public TriggerPlane(Load gameObjectLoader)
: base(gameObjectLoader)
{
mass.objectType = Enums_Engine.ObjectType.PORTAL;
mass.dynamicFrictionCoefficient = 0.0f;
mass.isMoving = true;
}
///
/// Override and supplament base loading in GameObject.
///
/// XML node containing load data.
/// ObjectLibrary that portal belongs to.
/// True if it was able to load, else false
public override bool Load(ObjectLibrary objectLibrary)
{
// Call before user code is executed
if (!base.Load(objectLibrary))
{
return false;
}
// Get terrain height at position
// float yPosition = objectLibrary.terrain.GetTerrainHeight(load.startPosition.X / Statics_Engine.TerrainSettings.terrainScaleFactor,
// load.startPosition.Z / Statics_Engine.TerrainSettings.terrainScaleFactor);
//float yPosition = float.Parse(load.node.Attributes["y"].Value) * Statics_Engine.TerrainSettings.terrainScaleFactor;
// Set position and reference
//Vector3 locpos = new Vector3(load.startPosition.X, yPosition, load.startPosition.Z);
// Vector3 refpos = new Vector3(load.startPosition.X, yPosition, load.startPosition.Z - 1);
// mass.SetPosition(locpos, refpos);
draw.drawMethod = Enums_Stream.DrawMethod.BasicGameObject_Draw;
draw.technique = "ToonShaderMain";
//mass.boundingVolume = new BoundingVolume(new BoundingBox(mass.currentPosition - mass.scale, mass.currentPosition + mass.scale));
mass.boundingVolume = new BoundingVolume(new BoundingSphere(mass.currentPosition, 100.0f));
draw.textureList.Add(Statics_Engine.SystemSettings.content.Load("Content/_textures/FireRed"));
//draw.textureList.Add(Statics_Engine.SystemSettings.content.Load("Content/_textures/FireDesert"));
draw.textureList.Add(Statics_Engine.SystemSettings.content.Load("Content/_textures/FireBlue"));
draw.textureList.Add(Statics_Engine.SystemSettings.content.Load("Content/_textures/FireAir"));
return true;
}
///
/// Override and supplement base Update in GameObject.
///
/// ObjectLibrary that portal belongs to.
public override void Update(ref ObjectLibrary objectLibrary)
{
// Call before user code is executed
// base.Update(ref objectLibrary);
mass.boundingVolume.radius = mass.scale.X - 100;
mass.boundingVolume.UpdateSphere(mass.currentPosition);
}
///
/// Override and supplement response to colliding GameObjects
///
/// Object that hit the Portal.
/// Force that Portal was hit with.
/// ObjectLibrary that portal belongs to.
/// True if collidedObject needs to be recycled
public override bool ObjectCollisionResponse(GameObject collidedObject, Vector3 resultantForce, ObjectLibrary objectLibrary)
{
if (collidedObject.mass.objectType != Enums_Engine.ObjectType.PLAYER)
{
}
if (collidedObject is Human && !triggered)
{
triggered = true;
Player player = collidedObject as Player;
if (Statics_Engine.GameSettings.currentChallengeNumber == 3)
{
// Dump us out of the game and into the post survey
Statics_Engine.SystemSettings.gameState = Enums_Engine.EngineState.FINALIZE_G2LSTUFF;
}
else
{
objectLibrary.gameObjectList.Remove(this);
Statics_Engine.PlayerSettings.doResetText = true;
DarkWynter.Engine.Utilities.MajikWand.ReverseTerrainMod(bridgeDropHeight);
Statics_Engine.GameSettings.currentChallengeNumber++;
Statics_Engine.GameSettings.isProblemFinished = false;
}
}
return false;
}
///
/// Overrides and supplements response to this object hitting the ground.
///
/// The terrain object which this Portal hit.
public override void TerrainCollisionResponse(Terrain terrain)
{
base.GetObjectHeight(terrain);
// Add Gravity if terrain and player are touching
if (heightDifference < 0.0f)
{
mass.AddForce(mass.mass * Statics_Engine.GameSettings.accelDueToGravity);
}
else if (heightDifference > 0.0f)
{
base.TerrainCollisionResponse(terrain);
if (mass.totalForce.Y > 0.0f)
{
mass.totalForce.Y = 0.0f;
}
if (mass.velocity.Y > 0.0f)
{
mass.velocity.Y = 0.0f;
}
if (heightDifference < 0.0f)
{
mass.AddForce(mass.mass * Statics_Engine.GameSettings.accelDueToGravity);
}
else if (heightDifference > 0.0f)
{
if (mass.totalForce.Y > 0.0f) { mass.totalForce.Y = 0.0f; }
if (mass.velocity.Y > 0.0f) { mass.velocity.Y = 0.0f; }
// Ground pushing up to negate gravity
mass.AddForce(new Vector3(0.0f, heightDifference * terrain.propSurfaceTension, 0.0f) -
(new Vector3(0.0f, mass.totalForce.Y, 0.0f) +
new Vector3(0.0f, mass.velocity.Y * mass.mass / Statics_Engine.SystemSettings.dt, 0.0f)));
}
}
}
///
/// Override draw for portal
///
public override Draw Draw()
{
// Calculate ObjectSpace(Rotation) and WorldSpace(Translation) Transformation Matrix
draw.matrix = draw.initialTransform * Matrix.CreateScale(mass.scale) *
Matrix.CreateFromQuaternion(mass.currentRotation) *
Matrix.CreateTranslation(mass.currentPosition);
return draw;
}
///
/// Override and supplement base Billboard drawing specific to this Portal.
///
/// ObjectLibrary that portal belongs to.
/// Dynamic list of billboards to be drawn this frame.
public override void Draw_Billboards(ObjectLibrary objectLibrary, BillboardList gameObjectBillboards)
{
}
}
}