212 lines
5.6 KiB
Svelte
212 lines
5.6 KiB
Svelte
<script lang="ts">
|
|
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
|
|
import Content from "$lib/content.svelte";
|
|
// import type { DevlogPost } from "./devlog-posts";
|
|
import { posts, type DevlogPost } from "./posts";
|
|
|
|
// Leftpads a single-digit number to two digits
|
|
function leftpad(n: number): String {
|
|
var result = n.toString();
|
|
if (n < 10) {
|
|
result = "0" + result
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function getDevlogPosts(): DevlogPost[] {
|
|
let posts: DevlogPost[] = [];
|
|
|
|
|
|
|
|
return posts;
|
|
}
|
|
</script>
|
|
|
|
|
|
<svelte:head>
|
|
<title>Project N5 Devlog | denizk0461</title>
|
|
</svelte:head>
|
|
|
|
<BannerTitleAlt
|
|
title="Project N5; Development Log"
|
|
banner="/projects/projectn5/devlog/20240323/unity_overview.webp"
|
|
wide
|
|
/>
|
|
|
|
<Content>
|
|
<p>This is the development log for my game <strong>Project N5</strong>! It's an action-adventure jump-and-run game inspired by games such as Ratchet & Clank. Development started on <b>2023-09-16</b> and rebooted on <b>2025-05-16</b>.</p>
|
|
|
|
<p>2023 progress updates summarise an entire month's work, respectively. Progress updates thereafter denote noteworthy developments in a more collected format.</p>
|
|
|
|
<div class="post-container">
|
|
{#each posts.values() as post, index}
|
|
{@render devlogPost({post, index})}
|
|
{/each}
|
|
</div>
|
|
</Content>
|
|
|
|
{#snippet devlogPost({post, index}: {post: DevlogPost, index: number})}
|
|
<div class="post-supercontainer">
|
|
<a href="/projects/projectn5/devlog/{post.id}/" class="post">
|
|
<div class="post-img-container">
|
|
<img class="post-img" src="/projects/projectn5/devlog/{post.id}/preview.webp" alt="Preview image for devlog {post.title}">
|
|
</div>
|
|
<div class="post-text-container">
|
|
<p class="post-date">#{posts.size - index} // {post.date}</p>
|
|
<p class="post-title">{post.title}</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{/snippet}
|
|
|
|
<style>
|
|
:root {
|
|
--color-laura: #C76668CC;
|
|
--color-laura-darker: #A55051CC;
|
|
}
|
|
|
|
/* Post list */
|
|
.post-supercontainer {
|
|
width: 32%;
|
|
}
|
|
|
|
.post-container {
|
|
max-width: 1600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.post {
|
|
text-decoration: none;
|
|
background-color: #00000044;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
padding: 16px;
|
|
transition: background-color 0.16s ease-in-out;
|
|
margin: 4px;
|
|
|
|
--notch-size-devlog: 30px;
|
|
--notch-size-devlog-img: 24px;
|
|
clip-path: polygon(
|
|
0% var(--notch-size-devlog),
|
|
var(--notch-size-devlog) 0%,
|
|
calc(100% - var(--notch-size-devlog)) 0%,
|
|
100% var(--notch-size-devlog),
|
|
100% calc(100% - var(--notch-size-devlog)),
|
|
calc(100% - var(--notch-size-devlog)) 100%,
|
|
var(--notch-size-devlog) 100%,
|
|
0% calc(100% - var(--notch-size-devlog))
|
|
);
|
|
}
|
|
.post:hover {
|
|
background-color: var(--color-background-highlight-hover);
|
|
}
|
|
|
|
.post:hover .post-title, .post:hover .post-date {
|
|
color: var(--color-text-dark);
|
|
}
|
|
|
|
.post:hover .post-img-container {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.post-img-container {
|
|
position: relative;
|
|
height: fit-content;
|
|
width: fit-content;
|
|
/* background-color: var(--color-background-highlight-hover); */
|
|
|
|
transition: background-color 0.16s ease-in-out;
|
|
clip-path: polygon(
|
|
0% var(--notch-size-devlog-img),
|
|
var(--notch-size-devlog-img) 0%,
|
|
calc(100% - var(--notch-size-devlog-img)) 0%,
|
|
100% var(--notch-size-devlog-img),
|
|
100% calc(100% - var(--notch-size-devlog-img)),
|
|
100% 100%,
|
|
var(--notch-size-devlog-img) 100%,
|
|
0% calc(100% - var(--notch-size-devlog-img))
|
|
);
|
|
}
|
|
|
|
.post-img {
|
|
width: 125px;
|
|
height: 100px;
|
|
margin: 0;
|
|
object-fit: cover;
|
|
|
|
clip-path: polygon(
|
|
0% 0%,
|
|
100% 0%,
|
|
100% 0%,
|
|
100% 0%,
|
|
100% calc(100% - var(--notch-size-devlog-img)),
|
|
calc(100% - var(--notch-size-devlog-img)) 100%,
|
|
0% 100%,
|
|
0% 100%
|
|
);
|
|
}
|
|
|
|
.post-text-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-left: 24px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.post-date, .post-title {
|
|
font-family: 'Space Mono', monospace;
|
|
margin: 4px 0;
|
|
transition: color 0.16s ease-in-out;
|
|
}
|
|
|
|
.post-date {
|
|
font-size: 0.8rem;
|
|
line-height: 0.7rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.post-title {
|
|
font-size: 1.1rem;
|
|
line-height: 1.4rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media screen and (max-width: 1250px) {
|
|
.post-supercontainer {
|
|
width: 50% !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 900px) {
|
|
.post-supercontainer {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
.post {
|
|
--notch-size-devlog: 18px;
|
|
--notch-size-devlog-img: 12px;
|
|
}
|
|
.post-img {
|
|
width: 100px;
|
|
height: 70px;
|
|
}
|
|
|
|
.post-date {
|
|
font-size: 0.8rem;
|
|
line-height: 0.9rem;
|
|
}
|
|
|
|
.post-title {
|
|
font-size: 1.0rem;
|
|
line-height: 1.1rem;
|
|
}
|
|
}
|
|
</style> |