-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathGameLoopPattern.cs
114 lines (91 loc) · 2.41 KB
/
GameLoopPattern.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
113
114
using UnityEngine;
using System.Collections;
namespace GameLoopPatternExample
{
public class GameLoopPattern : MonoBehaviour
{
GameLoopManager GameLoop = new GameLoopManager();
public void Start()
{
//进行游戏循环
//DoGameLoop();
Debug.Log("Unity已经内建了游戏循环模式,即Update( ),按《游戏编程模式》书中的原版实现会导致卡死。这边仅保留代码框架,不作调用。");
}
public void Update()
{
}
/// <summary>
/// 进行游戏循环
/// </summary>
public void DoGameLoop()
{
if (GameLoop==null)
{
GameLoop = new GameLoopManager();
}
GameLoop.DoGameLoop();
}
}
/// <summary>
/// 游戏循环manager
/// </summary>
public class GameLoopManager
{
/// <summary>
/// 游戏更新的粒度
/// </summary>
public const float MS_PER_UPDATE = 0.06F;
/// <summary>
/// 进行游戏循环
/// </summary>
public void DoGameLoop()
{
double previous = Time.realtimeSinceStartup;
double lag = 0.0;
if (Time.realtimeSinceStartup==0f)
{
return;
}
while (true)
{
//当前时间
double current = Time.realtimeSinceStartup;
//消逝的时间
double elapsed = current - previous;
previous = current;
lag += elapsed;
ProcessInput();
while (lag >= MS_PER_UPDATE)
{
Update();
lag -= MS_PER_UPDATE;
}
Render();
}
}
/// <summary>
/// 处理按键消息
/// </summary>
void ProcessInput()
{
if (Input.GetKeyDown(KeyCode.Alpha1))
{
Debug.Log("[GameLoopManager]你按下了键盘1键!");
}
}
/// <summary>
/// 进行渲染
/// </summary>
void Render()
{
//do render
}
/// <summary>
/// 处理更新
/// </summary>
void Update()
{
//do update
}
}
}