2018-11-30 02:41:06 +00:00
using Microsoft.Xna.Framework ;
using Microsoft.Xna.Framework.Graphics ;
using System ;
2019-03-27 07:35:20 +00:00
namespace RecrownedAthenaeum.Render
2018-11-30 02:41:06 +00:00
{
2019-01-14 06:34:35 +00:00
/// <summary>
2019-03-24 00:04:43 +00:00
/// A virtual 2D camera that wraps the normal <see cref="BasicCamera"/>. Default projection is orthographic.
2019-01-14 06:34:35 +00:00
/// </summary>
2019-03-24 00:04:43 +00:00
public class Camera2D : BasicCamera
2018-11-30 02:41:06 +00:00
{
2019-03-24 00:04:43 +00:00
/// <summary>
/// The width of the view of the camera.
/// </summary>
public int viewWidth ;
/// <summary>
/// The height of the view of the camera.
/// </summary>
public int viewHeight ;
2019-01-14 06:34:35 +00:00
/// <summary>
2019-02-06 06:11:22 +00:00
/// The 2D position.
2019-01-14 06:34:35 +00:00
/// </summary>
2019-02-06 06:11:22 +00:00
public Vector2 Position { get { return new Vector2 ( position . X , position . Y ) ; } set { position . X = value . X ; position . Y = value . Y ; } }
2019-01-14 06:34:35 +00:00
2019-02-11 05:28:48 +00:00
/// <summary>
/// Places camera in the center given the corner position.
/// </summary>
2019-03-24 00:04:43 +00:00
public Vector2 ConrnerPosition { set { position . X = value . X + viewWidth / 2f ; position . Y = value . Y + viewHeight / 2f ; } }
2019-02-11 05:28:48 +00:00
2019-01-14 06:34:35 +00:00
/// <summary>
2019-03-24 00:04:43 +00:00
/// A 2D camera from the generic <see cref="BasicCamera"/>.
2019-01-14 06:34:35 +00:00
/// </summary>
2019-03-24 00:04:43 +00:00
/// <param name="height">Width of camera view.</param>
/// <param name="width">Height of camera view.</param>
/// <param name="basicEffect">A basic effect that will be updated with the correct matrice information everytime <see cref="Apply"/> is called. Can be null and thus will not be used.</param>
public Camera2D ( int width , int height , BasicEffect basicEffect = null ) : base ( basicEffect )
2018-11-30 02:41:06 +00:00
{
2019-03-24 00:04:43 +00:00
this . viewWidth = width ;
this . viewHeight = height ;
2019-02-25 04:44:02 +00:00
upDirection = Vector3 . Down ;
2019-02-11 05:28:48 +00:00
Apply ( ) ;
2019-03-24 00:04:43 +00:00
ConrnerPosition = new Vector2 ( 0 , 0 ) ;
2019-02-11 05:28:48 +00:00
}
2019-01-22 01:56:51 +00:00
2019-02-11 05:28:48 +00:00
/// <summary>
/// Applies for 2D.
/// Sets where the camera is looking for the view matrix to the position of the camera.
/// </summary>
public override void Apply ( )
{
2019-03-24 00:04:43 +00:00
projectionMatrix = Matrix . CreateOrthographic ( viewWidth , viewHeight , 0 , 1 ) ;
2019-02-25 04:44:02 +00:00
position . Z = 0 ;
2019-02-11 05:28:48 +00:00
lookAt = new Vector3 ( Position , 1f ) ;
base . Apply ( ) ;
2018-11-30 02:41:06 +00:00
}
2019-01-14 06:34:35 +00:00
/// <summary>
/// Lerps to the given position.
/// </summary>
/// <param name="alpha">The multiplier for difference in distance.</param>
/// <param name="targetPosition">The target position to lerp to.</param>
/// <param name="delta">Time between this frame and the previous frame.</param>
2018-11-30 02:41:06 +00:00
public void LinearInterpolationToPosition ( float alpha , Vector2 targetPosition , float delta )
{
if ( alpha < = 0 & & alpha > 1f ) throw new ArgumentException ( "Alpha can't be greater than 1f, less than or equal to 0." ) ;
Vector2 distance = targetPosition - Position ;
distance * = ( float ) ( 1.0f - Math . Pow ( 1 - alpha , delta / 0.02f ) ) ;
Position + = distance ;
2019-02-06 06:11:22 +00:00
}
2019-02-11 05:28:48 +00:00
/// <summary>
/// Moves the camera.
/// Apply needs to be called.
/// </summary>
/// <param name="move">Magnitude of how much to move per axis.</param>
public void MoveCamera ( Vector2 move )
2019-02-06 06:11:22 +00:00
{
2019-02-11 05:28:48 +00:00
Position + = move ;
2018-11-30 02:41:06 +00:00
}
}
}