-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.cs
112 lines (89 loc) · 3.28 KB
/
App.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
global using static LD54.Engine.Dev.EngineDebug;
namespace LD54;
using System;
using System.Diagnostics;
using AsteroidGame.Scenes;
using Engine;
using Engine.Leviathan;
using Engine.Collision;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
public class App : Game
{
private readonly GraphicsDeviceManager graphics;
private readonly SceneController sc;
private readonly LeviathanEngine le;
private readonly CollisionSystem cs;
public App()
{
this.graphics = new GraphicsDeviceManager(this);
#region VIDEO_MODE_SELECTION
bool debugVideoMode = false;
if (debugVideoMode)
{
this.graphics.PreferredBackBufferWidth = 1200;
this.graphics.PreferredBackBufferHeight = 800;
}
else
{
float largestResolution = 0;
DisplayMode? preferredMode = null;
foreach (DisplayMode mode in GraphicsAdapter.DefaultAdapter.SupportedDisplayModes)
{
float size = mode.Width * mode.Height;
if (size > largestResolution)
{
largestResolution = size;
preferredMode = mode;
}
}
this.graphics.PreferredBackBufferWidth = preferredMode.Width;
this.graphics.PreferredBackBufferHeight = preferredMode.Height;
this.graphics.ToggleFullScreen();
// PrintLn(preferredMode.ToString());
}
PrintLn(this.GraphicsDevice.Viewport.Width + " " + this.GraphicsDevice.Viewport.Height);
#endregion
this.Content.RootDirectory = "Content";
this.IsMouseVisible = true;
le = new LeviathanEngine(this);
sc = new SceneController(this);
cs = new CollisionSystem(this);
}
protected override void Initialize() {
this.Components.Add(le);
this.Services.AddService(typeof(ILeviathanEngineService), le);
this.Components.Add(sc);
this.Services.AddService(typeof(ISceneControllerService), sc);
this.Components.Add(cs);
this.Services.AddService(typeof(ICollisionSystemService), cs);
PrintLn("App: Game systems initialized.");
this.sc.AddScene(new StartScene(6, this));//6
this.sc.AddScene(new GameScene(this));
PrintLn("App: Scenes loaded.");
this.sc.ChangeScene("StartScene");
PrintLn("App: Game scene started.");
// ALL BASE FUNCTION CALLS MUST COME LAST !!!! OTHERWISE NONE OF OUR SERVICES GET INITIALIZED
base.Initialize();
}
protected override void LoadContent()
{
// TODO: GLOBAL LOAD CONTENT, USE THE GLOBAL CONTENT MANAGER CONTAINED IN GAME TO LOAD PERSISTENT CONTENT.
// The statement below demonstrates the global content manager
// this.Content.Load<>()
}
protected override void Update(GameTime gameTime)
{
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
{
this.Exit();
}
base.Update(gameTime);
}
protected override void Draw(GameTime gameTime)
{
this.GraphicsDevice.Clear(Color.CornflowerBlue);
base.Draw(gameTime);
}
}