-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
235 lines (227 loc) · 7.67 KB
/
index.html
File metadata and controls
235 lines (227 loc) · 7.67 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
225
226
227
228
229
230
231
232
233
234
235
<html lang="">
<head>
<title>Brenden's Game Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap" rel="stylesheet">
<meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<style>
body {
zoom: 0.8;
font-family: "Source Serif 4", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
justify-content: center;
display: flex;
text-rendering: optimizeLegibility;
color: rgba(0,0,0,0.8);
}
.content {
overflow-wrap: break-word;
word-break: break-word;
width: 100%;
max-width: 680px;
margin: 24px;
}
img {
width: 100%;
}
h1 {
color: rgb(36, 36, 36);
font-weight: 750;
font-size: 37px;
letter-spacing: -0.030em;
line-height: 42px;
}
h2 {
margin-bottom: -0.5em;
margin-top: 1em;
}
hr {
margin: 32px 0px 0px;
border: 0;
border-top: 1px solid rgb(242, 242, 242);
}
p, ul {
letter-spacing: -0.003em;
line-height: 32px;
font-size: 19px;
color: rgb(36, 36, 36);
}
ul {
margin-top: 2em;
margin-bottom: 2em;
padding-left: 1.7em;
line-height: 28px;
}
li {
margin-top: 0.5em;
margin-bottom: 0;
padding: 0;
}
.video-wrapper {
float: none;
clear: both;
width: 100%;
position: relative;
padding-bottom: 56.25%;
padding-top: 25px;
height: 0;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.avatar {
border-radius: 30px;
margin-top: 8.2em;
width: 44px;
max-width: 44px;
}
.sidebar {
text-align: right;
font-weight: 300;
}
.sidebar a{
font-size: 17px;
}
@media screen and (max-width: 680px) {
.sidebar {
display: none !important;
}
.d-column{
display: none !important;
}
}
@media screen and (min-width: 680px) {
.d-single{
display: none !important;
}
}
</style>
</head>
<body>
<div class="sidebar">
<img alt="Brenden" class="avatar" src="avatar.jpg" loading="lazy">
<div class="sidebar-text">
<small>Brenden <br/>Romanowski</small><br/>
<a href="https://www.linkedin.com/in/brenden-romanowski-405616152/" target="_blank">LinkedIn</a><br/>
</div>
</div>
<div class="content">
<h1>Brenden's Game Portfolio</h1>
<hr>
<h2>Custom Game Engine</h2>
<p>
A 2D game engine I'm building from scratch in C++.
It's purpose is to apply concepts from my studies in game engines and computer graphics, as well as a means
to make games from scratch.
</p>
<p>
<ul>
<li>Multiple backends (DirectX, OpenGL, Metal)</li>
<li>Cross-platform (Windows, Linux, MacOS, iOS)</li>
<li>CMake build with engine statically linked to game</li>
<li>Automated CICD builds for each platform</li>
<li>Keyboard, mouse, gamepad and touch input</li>
<li>Sprite and sprite atlas support</li>
<li>Transform, scale and rotation in 2D</li>
<li>Collision detection (AABB, OOBB in 2D)</li>
<li>Material system with support for abitrary constant buffer shader fields</li>
<li>Scenes</li>
<li>Custom font system</li>
<li>Coroutines</li>
<li>Pub/sub events</li>
</ul>
</p>
<hr/>
<h2>Molt, the Snake-themed Card Game</h2>
<p>
Molt is a turn-based strategy card game in the vein of Hearthstone, Dominion and Wingspan. It aims to be educational
and fun, with realistic depictions of snake species.
</p>
<p>
<ul>
<li>Gamepad, touchscreen and mouse support</li>
<li>Responsive UI for viewing and selecting cards in hand</li>
<li>Single player and local multiplayer game modes</li>
<li>Flexible and stackable “Action” card system</li>
<li>CI/CD pipeline for automatic build and deployment to Steam</li>
<li>No third party packages used</li>
</ul>
</p>
<p>
The game implements basic mechanics of a turn structure, card “buys”, putting cards into play via a food cost,
and Action cards with various effects.
</p>
<p>
<a href="https://store.steampowered.com/app/2483240/Molt/" target="_blank">https://store.steampowered.com/app/2483240/Molt/</a>
</p>
<p>
<img src="molt_screenshot_1.png" style="margin-bottom:0;" alt="Molt screenshot"/>
</p>
<p class="d-column" style="display: flex; justify-content: space-evenly; margin-top:-15px;">
<img height="100%" style="margin-right: 2px;" src="molt_screenshot_3.png" alt="Molt screenshot"/>
<img height="100%" style="margin-left: 2px;" src="molt_screenshot_2.png" alt="Molt screenshot"/>
</p>
<p class="d-single" style="margin-top:-15px;">
<img style="margin-bottom: 4px;" src="molt_screenshot_3.png" alt="Molt screenshot"/>
<img src="molt_screenshot_2.png" alt="Molt screenshot"/>
</p>
<p class="d-column" style="display: flex; justify-content: space-evenly; margin-top: -15px;">
<video class="video" style="margin-right: 2px; width:100%;" autoplay loop muted>
<source src="molt_video_1.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<video class="video" style="margin-left: 2px; width:100%;" autoplay loop muted>
<source src="molt_video_2.webm" type="video/webm">
Your browser does not support the video tag.
</video>
</p>
<p class="d-single" style="margin-top:-15px;">
<video class="video" style="width:100%;margin-bottom: 4px;" controls loop>
<source src="molt_video_1.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<video class="video" style="width:100%;" controls loop>
<source src="molt_video_2.webm" type="video/webm">
Your browser does not support the video tag.
</video>
</p>
<hr/>
<h2>Tree Squirrel</h2>
<p>
PlayDate game
</p>
<p>
Very simple game written in C for the PlayDate console. Balance while climbing a tree, collecting acorns and avoiding spiders.
</p>
<p>
<a href="https://brendentr.itch.io/tree-squirrel" target="_blank">https://brendentr.itch.io/tree-squirrel</a>
</p>
<br/>
<video class="video" style="margin-top: -15px; width:100%; margin-bottom:18px;" controls loop>
<source src="playdate_vid.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<video class="video" style="margin-top: -15px; width:351px; margin-bottom:18px;" controls loop>
<source src="playdate_gif.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<hr/>
<br/>
<p style="text-align: center;">Thanks for taking a look!</p>
</div>
</body>
<script>
const className = 'video';
const videos = document.querySelectorAll(`video.${className}`);
videos.forEach(video => {
video.playbackRate = 1.5;
});
</script>
</html>