-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEngineDriver.cs
108 lines (82 loc) · 2.71 KB
/
EngineDriver.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
// <copyright file="EngineDriver.cs" company="Software Antics">
// Copyright (c) Software Antics. All rights reserved.
// </copyright>
namespace FinalEngine.Runtime;
using System;
using FinalEngine.Input;
using FinalEngine.Platform;
using FinalEngine.Rendering;
using FinalEngine.Runtime.Services;
using Microsoft.Extensions.DependencyInjection;
internal sealed class EngineDriver : IEngineDriver
{
private readonly IEventsProcessor eventsProcessor;
private readonly IGameTime gameTime;
private readonly IInputDriver inputDriver;
private readonly IRenderContext renderContext;
private GameContainerBase? game;
private bool isDisposed;
private IRenderPipeline? renderPipeline;
public EngineDriver(IServiceProvider serviceProvider)
{
ArgumentNullException.ThrowIfNull(serviceProvider, nameof(serviceProvider));
ServiceLocator.SetServiceProvider(serviceProvider);
this.eventsProcessor = serviceProvider.GetRequiredService<IEventsProcessor>();
this.gameTime = serviceProvider.GetRequiredService<IGameTime>();
this.inputDriver = serviceProvider.GetRequiredService<IInputDriver>();
this.renderContext = serviceProvider.GetRequiredService<IRenderContext>();
this.renderPipeline = serviceProvider.GetRequiredService<IRenderPipeline>();
this.game = serviceProvider.GetRequiredService<GameContainerBase>();
}
~EngineDriver()
{
this.Dispose(false);
}
public void Dispose()
{
this.Dispose(true);
GC.SuppressFinalize(this);
}
public void Start()
{
ObjectDisposedException.ThrowIf(this.isDisposed, this);
this.renderPipeline!.Initialize();
this.game!.Initialize();
this.game.LoadContent();
while (this.eventsProcessor.CanProcessEvents)
{
if (!this.gameTime.CanProcessNextFrame())
{
continue;
}
this.game.Update(GameTime.Delta);
this.inputDriver.Update();
this.game.Render(GameTime.Delta);
this.renderContext.SwapBuffers();
this.eventsProcessor.ProcessEvents();
}
this.game.UnloadContent();
this.game.Dispose();
}
private void Dispose(bool disposing)
{
if (this.isDisposed)
{
return;
}
if (disposing)
{
if (this.game != null)
{
this.game.Dispose();
this.game = null;
}
if (this.renderPipeline != null)
{
this.renderPipeline.Dispose();
this.renderPipeline = null;
}
}
this.isDisposed = true;
}
}