168 lines
8.7 KiB
C#
168 lines
8.7 KiB
C#
using System;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using Microsoft.Xna.Framework.Input;
|
|
using Pong.Behaviours;
|
|
using Syntriax.Engine.Core;
|
|
using Syntriax.Engine.Core.Abstract;
|
|
using Syntriax.Engine.Graphics.TwoDimensional;
|
|
using Syntriax.Engine.Input;
|
|
using Syntriax.Engine.Physics2D;
|
|
|
|
namespace Pong;
|
|
|
|
public class Game1 : Game
|
|
{
|
|
private GraphicsDeviceManager _graphics = null!;
|
|
private PhysicsEngine2D engine;
|
|
private SpriteBatch _spriteBatch = null!;
|
|
private GameManager gameManager = null!;
|
|
|
|
public Game1()
|
|
{
|
|
_graphics = new GraphicsDeviceManager(this)
|
|
{
|
|
PreferredBackBufferWidth = 1024,
|
|
PreferredBackBufferHeight = 576
|
|
};
|
|
|
|
Content.RootDirectory = "Content";
|
|
IsMouseVisible = true;
|
|
}
|
|
|
|
protected override void Initialize()
|
|
{
|
|
gameManager = new();
|
|
|
|
// TODO: Add your initialization logic here
|
|
gameManager.Initialize();
|
|
|
|
base.Initialize();
|
|
}
|
|
|
|
protected override void LoadContent()
|
|
{
|
|
engine = new PhysicsEngine2D();
|
|
_spriteBatch = new SpriteBatch(GraphicsDevice);
|
|
|
|
Sprite spriteBox = new Sprite() { Texture2D = Content.Load<Texture2D>("Sprites/Pixel") };
|
|
Sprite spriteBall = new Sprite() { Texture2D = Content.Load<Texture2D>("Sprites/Circle") };
|
|
|
|
IGameObject gameObjectCamera = gameManager.InstantiateGameObject<GameObject>();
|
|
gameObjectCamera.Name = "Camera";
|
|
gameObjectCamera.Transform.Position = Vector2.Zero;
|
|
|
|
gameManager.Camera = gameObjectCamera.BehaviourController.AddBehaviour<CameraBehaviour>();
|
|
gameManager.Camera.Viewport = GraphicsDevice.Viewport;
|
|
|
|
IGameObject gameObjectBall = gameManager.InstantiateGameObject<GameObject>();
|
|
gameObjectBall.Name = "Ball";
|
|
gameObjectBall.Transform.Position = Vector2.Zero;
|
|
gameObjectBall.Transform.Scale = new Vector2(1f / 51.2f, 1f / 51.2f);
|
|
engine.AddRigidBody(gameObjectBall.BehaviourController.AddBehaviour<RigidBody2D>());
|
|
gameObjectBall.BehaviourController.AddBehaviour<Collider2DBehaviour>((System.Collections.Generic.IList<Vector2>)[new Vector2(1, 1) * 5f, new Vector2(-1, 1) * 5f, new Vector2(1, -1) * 5f, new Vector2(-1, -1) * 5f]).OffsetScale = Vector2.One * 51.2f;
|
|
gameObjectBall.BehaviourController.AddBehaviour<MovementBallBehaviour>(new Vector2(.1f, .1f), 500f);
|
|
gameObjectBall.BehaviourController.AddBehaviour<DisplayableSpriteBehaviour>().Assign(spriteBall);
|
|
|
|
IGameObject gameObjectLeft = gameManager.InstantiateGameObject<GameObject>();
|
|
gameObjectLeft.Name = "Left";
|
|
gameObjectLeft.Transform.Position = new Vector2(-452, 0f);
|
|
gameObjectLeft.Transform.Scale = new Vector2(10f, 40f);
|
|
gameObjectLeft.BehaviourController.AddBehaviour<KeyboardInputsBehaviour>();
|
|
gameObjectLeft.BehaviourController.AddBehaviour<MovementBoxBehaviour>(Keys.W, Keys.S, 268f, -268f, 400f);
|
|
gameObjectLeft.BehaviourController.AddBehaviour<DisplayableSpriteBehaviour>().Assign(spriteBox);
|
|
gameObjectLeft.BehaviourController.AddBehaviour<Collider2DBehaviour>((System.Collections.Generic.IList<Vector2>)[new Vector2(.5f, .5f), new Vector2(-.5f, .5f), new Vector2(.5f, -.5f), new Vector2(-.5f, -.5f)]);
|
|
engine.AddRigidBody(gameObjectLeft.BehaviourController.AddBehaviour<RigidBody2D>());
|
|
|
|
IGameObject gameObjectRight = gameManager.InstantiateGameObject<GameObject>();
|
|
gameObjectRight.Name = "Right";
|
|
gameObjectRight.Transform.Position = new Vector2(452, 0f);
|
|
gameObjectRight.Transform.Scale = new Vector2(10f, 40f);
|
|
gameObjectRight.BehaviourController.AddBehaviour<KeyboardInputsBehaviour>();
|
|
gameObjectRight.BehaviourController.AddBehaviour<MovementBoxBehaviour>(Keys.Up, Keys.Down, 268f, -268f, 400f);
|
|
gameObjectRight.BehaviourController.AddBehaviour<DisplayableSpriteBehaviour>().Assign(spriteBox);
|
|
gameObjectRight.BehaviourController.AddBehaviour<Collider2DBehaviour>((System.Collections.Generic.IList<Vector2>)[new Vector2(.5f, .5f), new Vector2(-.5f, .5f), new Vector2(.5f, -.5f), new Vector2(-.5f, -.5f)]);
|
|
engine.AddRigidBody(gameObjectRight.BehaviourController.AddBehaviour<RigidBody2D>());
|
|
|
|
|
|
IGameObject goPlayAreaTop = gameManager.InstantiateGameObject<GameObject>();
|
|
goPlayAreaTop.Transform.Position = new Vector2(0f, 288f + 20f);
|
|
goPlayAreaTop.Transform.Scale = new Vector2(1024f, 40f);
|
|
goPlayAreaTop.BehaviourController.AddBehaviour<Collider2DBehaviour>((System.Collections.Generic.IList<Vector2>)[new Vector2(.5f, .5f), new Vector2(-.5f, .5f), new Vector2(.5f, -.5f), new Vector2(-.5f, -.5f)]);
|
|
engine.AddRigidBody(goPlayAreaTop.BehaviourController.AddBehaviour<RigidBody2D>());
|
|
IGameObject goPlayAreaBottom = gameManager.InstantiateGameObject<GameObject>();
|
|
goPlayAreaBottom.Transform.Position = new Vector2(0f, -(288f + 20f));
|
|
goPlayAreaBottom.Transform.Scale = new Vector2(1024f, 40f);
|
|
goPlayAreaBottom.BehaviourController.AddBehaviour<Collider2DBehaviour>((System.Collections.Generic.IList<Vector2>)[new Vector2(.5f, .5f), new Vector2(-.5f, .5f), new Vector2(.5f, -.5f), new Vector2(-.5f, -.5f)]);
|
|
engine.AddRigidBody(goPlayAreaBottom.BehaviourController.AddBehaviour<RigidBody2D>());
|
|
|
|
IGameObject goPlayAreaRight = gameManager.InstantiateGameObject<GameObject>();
|
|
goPlayAreaRight.Transform.Position = new Vector2(512f + 20f, 0f);
|
|
goPlayAreaRight.Transform.Scale = new Vector2(40f, 576f);
|
|
goPlayAreaRight.BehaviourController.AddBehaviour<Collider2DBehaviour>((System.Collections.Generic.IList<Vector2>)[new Vector2(.5f, .5f), new Vector2(-.5f, .5f), new Vector2(.5f, -.5f), new Vector2(-.5f, -.5f)]);
|
|
engine.AddRigidBody(goPlayAreaRight.BehaviourController.AddBehaviour<RigidBody2D>());
|
|
IGameObject goPlayAreaLeft = gameManager.InstantiateGameObject<GameObject>();
|
|
goPlayAreaLeft.Transform.Position = new Vector2(-(512f + 20f), 0f);
|
|
goPlayAreaLeft.Transform.Scale = new Vector2(40f, 576f);
|
|
goPlayAreaLeft.BehaviourController.AddBehaviour<Collider2DBehaviour>((System.Collections.Generic.IList<Vector2>)[new Vector2(.5f, .5f), new Vector2(-.5f, .5f), new Vector2(.5f, -.5f), new Vector2(-.5f, -.5f)]);
|
|
engine.AddRigidBody(goPlayAreaLeft.BehaviourController.AddBehaviour<RigidBody2D>());
|
|
|
|
// TODO: use this.Content to load your game content here
|
|
}
|
|
|
|
protected override void Update(GameTime gameTime)
|
|
{
|
|
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
|
|
Exit();
|
|
|
|
if (Keyboard.GetState().IsKeyDown(Keys.F))
|
|
{
|
|
if (_graphics.IsFullScreen)
|
|
return;
|
|
|
|
_graphics.PreferMultiSampling = false;
|
|
_graphics.PreferredBackBufferWidth = GraphicsDevice.Adapter.CurrentDisplayMode.Width;
|
|
_graphics.PreferredBackBufferHeight = GraphicsDevice.Adapter.CurrentDisplayMode.Height;
|
|
_graphics.IsFullScreen = true;
|
|
_graphics.ApplyChanges();
|
|
|
|
float previousScreenSize = MathF.Sqrt(MathF.Pow(gameManager.Camera.Viewport.Width, 2f) + MathF.Pow(gameManager.Camera.Viewport.Height, 2f));
|
|
float currentScreenSize = MathF.Sqrt(MathF.Pow(GraphicsDevice.Viewport.Width, 2f) + MathF.Pow(GraphicsDevice.Viewport.Height, 2f));
|
|
gameManager.Camera.Zoom /= previousScreenSize / currentScreenSize;
|
|
gameManager.Camera.Viewport = GraphicsDevice.Viewport;
|
|
}
|
|
|
|
if (Keyboard.GetState().IsKeyDown(Keys.U))
|
|
gameManager.Camera.Zoom += gameTime.ElapsedGameTime.Nanoseconds * 0.00025f;
|
|
if (Keyboard.GetState().IsKeyDown(Keys.J))
|
|
gameManager.Camera.Zoom -= gameTime.ElapsedGameTime.Nanoseconds * 0.00025f;
|
|
|
|
if (Keyboard.GetState().IsKeyDown(Keys.Q))
|
|
gameManager.Camera.Rotation += gameTime.ElapsedGameTime.Nanoseconds * 0.000025f;
|
|
if (Keyboard.GetState().IsKeyDown(Keys.E))
|
|
gameManager.Camera.Rotation -= gameTime.ElapsedGameTime.Nanoseconds * 0.000025f;
|
|
|
|
// TODO: Add your update logic here
|
|
while (physicsTimer + 0.01f < gameTime.TotalGameTime.TotalMilliseconds * .001f)
|
|
{
|
|
physicsTimer += 0.01f;
|
|
engine.Step(.01f);
|
|
}
|
|
gameManager.Update(gameTime);
|
|
base.Update(gameTime);
|
|
}
|
|
static float physicsTimer = 0f;
|
|
|
|
protected override void Draw(GameTime gameTime)
|
|
{
|
|
GraphicsDevice.Clear(new Color() { R = 32, G = 32, B = 32 });
|
|
|
|
// TODO: Add your drawing code here
|
|
gameManager.PreDraw(gameTime);
|
|
gameManager.Camera.Update();
|
|
gameManager.Draw(_spriteBatch);
|
|
|
|
base.Draw(gameTime);
|
|
}
|
|
}
|