-
Notifications
You must be signed in to change notification settings - Fork 0
/
atgp.html
79 lines (79 loc) · 4.7 KB
/
atgp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A Totally Generic Platformer</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styley.css">
<meta property='og:title' content='A Totally Generic Platformer'/>
<meta property='og:image' content='//fortwoone.github.io/assets/ATGP.png'/>
</head>
<body>
<header class="vert-wrap">
<div class="logo_and_name">
<a href="index.html"><img src="assets/logo.png" alt="fortwoone"></a>
<h1>Fortwoone's Website</h1>
</div>
<nav>
<ul class="nav_list">
<li class="nav_item"><a href="index.html">Home</a></li>
<li class="nav_item unroll">
<a href="past_projects.html">Past projects</a>
<ul class="options">
<li><a href="tcc.html">The Crazy Computer</a></li>
<li><a href="atgp.html">A Totally Generic Platformer</a></li>
<li><a href="pyzora.html">PyZora</a></li>
<li><a href="tougaoug.html">Tougaoug Green</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<div class="bordered">
<img id="atgp_logo" src="assets/ATGP.png" alt="A Totally Generic Platformer">
<h2 class="proj_title">A Totally Generic Platformer</h2>
<br>
<h3>Just your average off-the-mill platformer. Obviously.</h3>
<br>
<h4>Released on : 2022/08/02 - Role : Game Idea, Engine Programmer</h4>
<br>
<p>
You actually took time to come here? Well, I have to admit you're persistent. After all, it's not like this
game is buggy, or anything. Just don't try to hit spikes. They say colliding with one is a surefire way to crash your game...
but that's as good a feature as anything. Right?
</p>
<p>
This game was made during the <a href="https://www.pythondiscord.com/events/code-jams/9/">Python Discord Summer Code Jam in 2022</a>.
We were randomly assigned to teams of five people, and we needed to make the game in 10 days. The theme for this jam was
"It's not a bug, it's a feature!" (hence the subtle title and presentation). I pitched the game idea and programmed the game engine,
though I had to help from the sidelines on the last day before submitting due to personal reasons. We also had to implement WebSockets
in this CodeJam, which is why we decided to add online gameplay (the servers are sadly no longer up anymore) and focus the level design
around multiplayer.
</p>
<p>
A Totally Generic Platformer got in the <span class="bold_paragraph">top 10</span> of the Code Jam (the judges did not give actual rankings to projects under
the 3rd place, so I can't provide a more precise rank), and the game is still available as of today.
</p>
<p>
If you want to try it, install the game from <a href="https://github.com/smileyface12349/old-fashioned-orcs/tree/no-online">the no-online branch on the GitHub repository</a>.
This version has been stripped of its online gameplay, due to the servers not being up, but you can still check out the original versions :
</p>
<ul class="no_list">
<li><a href="https://github.com/smileyface12349/old-fashioned-orcs">Original version from the Code Jam</a></li>
<li><a href="https://github.com/smileyface12349/old-fashioned-orcs/tree/after-jam">Slightly updated version, committed a few months later</a></li>
</ul>
<p>
The latter of the two versions has been used as a base for the no-online version.
</p>
<p>
<a href="past_projects.html">Back to project list</a>
</p>
</div>
<footer>
©2023-2024 fortwoone. Content on this website is protected by the CC-BY-NC-SA 4.0 License.
See <a href="https://creativecommons.org/licenses/by-nc-sa/4.0">this page</a> for more details.
<br><a href="legal.html">Legal statements</a>
</footer>
</body>
</html>