-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame Programming Patterns.html
113 lines (106 loc) · 5.88 KB
/
Game Programming Patterns.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- saved from url=(0048)http://gameprogrammingpatterns.com/contents.html -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Table of Contents · Game Programming Patterns</title>
<!-- Tell mobile browsers we're optimized for them and they don't need to crop
the viewport. -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./Game Programming Patterns_files/style.css">
<link href="./Game Programming Patterns_files/css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/png" href="http://gameprogrammingpatterns.com/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="http://gameprogrammingpatterns.com/favicon-16x16.png" sizes="16x16">
<script async="" src="./Game Programming Patterns_files/analytics.js"></script><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-42804721-1', 'gameprogrammingpatterns.com');
ga('send', 'pageview');
</script>
<script src="./Game Programming Patterns_files/jquery-1.10.1.min.js"></script>
<script src="./Game Programming Patterns_files/script.js"></script>
</head>
<body id="top">
<div class="page sidebar">
<div class="content">
<nav class="top">
<table>
<tbody><tr>
<td>← Previous<span class="full-nav"> Chapter</span>
</td><td class="gap">
</td><td>≡ <a href="http://gameprogrammingpatterns.com/">About <span class="full-nav">The Book</span></a>
</td><td class="gap">
</td><td>§ <a href="http://gameprogrammingpatterns.com/contents.html">Contents</a>
</td><td class="gap">
</td><td><a href="http://gameprogrammingpatterns.com/acknowledgements.html">Next<span class="full-nav"> Chapter</span></a> →
</td></tr>
</tbody></table>
</nav>
<h1>Table of Contents</h1>
<h1 class="book"><a href="http://gameprogrammingpatterns.com/">Game Programming Patterns</a></h1>
<ol type="I">
<ol type="i">
<li><a href="http://gameprogrammingpatterns.com/acknowledgements.html">Acknowledgements</a></li>
</ol>
<li><strong><a href="http://gameprogrammingpatterns.com/introduction.html">Introduction</a></strong>
<ol start="1">
<li><a href="http://gameprogrammingpatterns.com/architecture-performance-and-games.html">Architecture, Performance, and Games</a></li>
</ol>
</li>
<li><strong><a href="http://gameprogrammingpatterns.com/design-patterns-revisited.html">Design Patterns Revisited</a></strong>
<ol start="2">
<li><a href="http://gameprogrammingpatterns.com/command.html">Command</a></li>
<li><a href="http://gameprogrammingpatterns.com/flyweight.html">Flyweight</a></li>
<li><a href="http://gameprogrammingpatterns.com/observer.html">Observer</a></li>
<li><a href="http://gameprogrammingpatterns.com/prototype.html">Prototype</a></li>
<li><a href="http://gameprogrammingpatterns.com/singleton.html">Singleton</a></li>
<li><a href="http://gameprogrammingpatterns.com/state.html">State</a></li>
</ol>
</li>
<li><strong><a href="http://gameprogrammingpatterns.com/sequencing-patterns.html">Sequencing Patterns</a></strong>
<ol start="8">
<li><a href="http://gameprogrammingpatterns.com/double-buffer.html">Double Buffer</a></li>
<li><a href="http://gameprogrammingpatterns.com/game-loop.html">Game Loop</a></li>
<li><a href="http://gameprogrammingpatterns.com/update-method.html">Update Method</a></li>
</ol>
</li>
<li><strong><a href="http://gameprogrammingpatterns.com/behavioral-patterns.html">Behavioral Patterns</a></strong>
<ol start="11">
<li><a href="http://gameprogrammingpatterns.com/bytecode.html">Bytecode</a></li>
<li><a href="http://gameprogrammingpatterns.com/subclass-sandbox.html">Subclass Sandbox</a></li>
<li><a href="http://gameprogrammingpatterns.com/type-object.html">Type Object</a></li>
</ol>
</li>
<li><strong><a href="http://gameprogrammingpatterns.com/decoupling-patterns.html">Decoupling Patterns</a></strong>
<ol start="14">
<li><a href="http://gameprogrammingpatterns.com/component.html">Component</a></li>
<li><a href="http://gameprogrammingpatterns.com/event-queue.html">Event Queue</a></li>
<li><a href="http://gameprogrammingpatterns.com/service-locator.html">Service Locator</a></li>
</ol>
</li>
<li><strong><a href="http://gameprogrammingpatterns.com/optimization-patterns.html">Optimization Patterns</a></strong>
<ol start="17">
<li><a href="http://gameprogrammingpatterns.com/data-locality.html">Data Locality</a></li>
<li><a href="http://gameprogrammingpatterns.com/dirty-flag.html">Dirty Flag</a></li>
<li><a href="http://gameprogrammingpatterns.com/object-pool.html">Object Pool</a></li>
<li><a href="http://gameprogrammingpatterns.com/spatial-partition.html">Spatial Partition</a></li>
</ol>
</li>
</ol>
<nav>
<table>
<tbody><tr>
<td>← Previous<span class="full-nav"> Chapter</span>
</td><td class="gap">
</td><td>≡ <a href="http://gameprogrammingpatterns.com/">About <span class="full-nav">The Book</span></a>
</td><td class="gap">
</td><td>§ <a href="http://gameprogrammingpatterns.com/contents.html">Contents</a>
</td><td class="gap">
</td><td><a href="http://gameprogrammingpatterns.com/acknowledgements.html">Next<span class="full-nav"> Chapter</span></a> →
</td></tr>
</tbody></table>
</nav>
</div>
</div>
<footer>© 2009-2014 Robert Nystrom</footer>
</body></html>