-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
224 lines (194 loc) · 6.76 KB
/
index.html
File metadata and controls
224 lines (194 loc) · 6.76 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS 452</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
header {
background-color: #426;
padding: 30px;
text-align: center;
font-size: 35px;
color: white;
}
/* Container for flexboxes */
section {
display: -webkit-flex;
display: flex;
justify-content: flex-start;
}
/* Style the navigation menu */
nav {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
background: #ccc;
padding: 20px;
}
/* Style the list inside the menu */
nav ul {
text-align: center;
list-style-type: none;
padding: 0;
}
/* Style the content */
article {
text-align: center;
-webkit-flex: 3;
-ms-flex: 3;
flex: 3;
background-color: #f1f1f1;
padding: 10px;
}
/* Style the footer */
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
section {
-webkit-flex-direction: column;
flex-direction: column;
}
}
a {font-size: 24px}
h1 {font-size: 24px}
h3 {font-size: 22px;
text-align: justify;
}
/*header CSS styling*/
/* Add a black background color to the top navigation */
.topnav {
background-color: #213;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 20px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #d3a302;
color: white;
}
</style>
</head>
<body>
<header>
<img src="uwlogo.png" width="600" height="103" align="left"><br><br>
<h2>CSS 452 - 2D Game Engine Development</h2>
<h3>This class studies the technical fundamentals and the implementation of a 2D game engine from two important aspects: programmability and maintainability. Relevant concepts from software engineering, computer graphics, mathematics, physics, user interface, and game development will be presented in the context of game engine architecture, world coordinate system specification, object behaviors and interactions, camera manipulations, illumination, and game physics. The coverage of each topic will be coupled with the analysis of sample implementation source code and students will be challenged to extend the provided functionality. Beginning from scratch, the implementation of the concepts continuously build upon preceding results based on a software architecture that facilitates programmability by game developers supports maintainability which enables code reuse, ongoing system upkeep, improvement, and expansion.</h3>
</header>
<div class="topnav">
<a class="active" href="">Projects</a>
<a href="https://apress.github.io/build-your-own-2d-game-engine-2e/">Text Book Used</a>
<a href="https://www.uwb.edu/">UWB</a>
<a href="https://www.uwb.edu/css">CSS</a>
<a href="http://faculty.washington.edu/ksung/">Kelvin Sung</a>
<a href="https://myuwbclasses.github.io/CSS385/">CSS385: Game Dev (Kelvin)</a>
<a href="https://github.com/pisanorg/w/wiki/css385">CSS385: Game Dev (Yusuf)</a>
<a href="https://myuwbclasses.github.io/CSS451/">CSS451: 3D Graphics</a>
<a href="https://myuwbclasses.github.io/CSS552/">CSS552: Rendering</a>
</div>
<hr style="border: 2px;" />
<section>
<nav>
<ul>
<li>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2023.CSS452.FinalAPIs/">Winter 2023: Extending engine API</a>
</li>
<br>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2023.CSS452.FinalAPIs/">
<img src="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2023.CSS452.FinalAPIs/uw2023.png" width="300">
</a>
</ul>
</nav>
</section>
<section>
<nav>
<ul>
<li>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2022.CSS452.FinalAPIs/">Winter 2022: Extending engine API</a>
</li>
<br>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2022.CSS452.FinalAPIs/">
<img src="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2022.CSS452.FinalAPIs/uw2022.png" width="300">
</a>
</ul>
</nav>
<nav>
<ul>
<li>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2021.CSS452.FinalAPIs">Winter 2021: Extending engine API</a>
</li>
<br>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2021.CSS452.FinalAPIs/">
<img src="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2021.CSS452.FinalAPIs/uw2021.jpg" width="300">
</a>
</ul>
</nav>
<nav>
<ul>
<li>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2020.CSS452.FinalAPIs">Winter 2020: Extending engine API</a>
</li>
<br>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2020.CSS452.FinalAPIs/">
<img src="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2020.CSS452.FinalAPIs/uw2020.jpg" width="300">
</a>
</ul>
</nav>
</section>
<hr style="border: 1px;" />
<section>
<nav>
<ul>
<li><a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2019.3.CSS452.FinalProjects/index.html">Winter 2019: Final Games</a></li>
<br>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2019.3.CSS452.FinalProjects/index.html">
<img src="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2019.3.CSS452.FinalProjects/uw2019.PNG" width="300" >
</a>
</ul>
</nav>
<nav>
<ul>
<li><a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2018.3.CSS452.FinalProjects/index.html">Winter 2018: Final Games</a></li>
<br>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2018.3.CSS452.FinalProjects/index.html">
<img src="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2018.3.CSS452.FinalProjects/uw2018.PNG" width="300" >
</a>
</ul>
</nav>
<nav>
<ul>
<li><a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2015.CSS490.StudentProjects/index.html">Fall 2015: Final Games</a></li>
<br>
<a href="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2015.CSS490.StudentProjects/index.html">
<img src="https://html5gameenginegroup.github.io/GTCS-Engine-Student-Projects/2015.CSS490.StudentProjects/uw2015.PNG" width="300">
</a>
</ul>
</nav>
</section>
</body>
</html>