This is clearly shaping up to be the pinnacle of this decade's technology

259 points · 14 comments · view on lemmy.world

14 Comments

miniu@programming.dev · 20 pts · 3y (3 replies)

Making your own engine is worthwhile learning experience. The same as trying to recreate any of the foundational tools that you use. Might not be the fastest or best way to make a game but a good way to make yourself a better developer.

Sonotsugipaa@lemmy.dbzer0.com · 12 pts · 3y (2 replies)

Not the fastest

This is my 4th Vulkan related "project" and 2nd attempt at making something other than a glorified tutorial workspace in 6 years, and it took me 4 weeks to draw this stuff with minimal technical debt.

I could just use an existing game engine, but what's the fun in not manually sorting all draw commands by mesh>pipeline>material and hunting synchronization hazards by just looking at funny glyphs for extended periods of time?

AeroLemming@lemm.ee · 4 pts · 3y (1 reply)
[ removed ]
Sonotsugipaa@lemmy.dbzer0.com · 2 pts · 3y

Eh, at this point it happens every 3 commits, you get used to abusing gdb (since valgrind just dies).

I hope the police doesn't find my unregistered breakpoint minigun...

WiildFiire@lemmy.world · 7 pts · 3y (3 replies)
PipedLinkBot@feddit.rocks · 3 pts · 3y

Here is an alternative Piped link(s): https://piped.video/Z_1vfTkBq-k?si=NpJuy9WU7vxkeb36

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I'm open-source, check me out at GitHub.

Sonotsugipaa@lemmy.dbzer0.com · 2 pts · 3y

Truly what inspired me to fight against Vulkan's complexity

Zozano@aussie.zone · 2 pts · 3y

Thank you! I haven't laughed that hard in a year or more. My sides hurt.

dylanTheDeveloper@lemmy.world · 2 pts · 2y (5 replies)

Now do a camera that can be controlled

Sonotsugipaa@lemmy.dbzer0.com · 2 pts · 2y (4 replies)

Done, that wasn't the hard part - after that I spent a few days on normal mapping and passable light reflections

dylanTheDeveloper@lemmy.world · 2 pts · 2y (3 replies)

What kind of method you gonna use for reflections?

Sonotsugipaa@lemmy.dbzer0.com · 2 pts · 2y (1 reply)

Nobody asked, but whatever:

dylanTheDeveloper@lemmy.world · 2 pts · 2y

Mmm shiney

Sonotsugipaa@lemmy.dbzer0.com · 2 pts · 2y

For reflected objects none, that's too much effort - this thing only reflects light sources.

Proper reflections require either too much effort, or me being smarter than I actually am.

(Reflecting light sources is as easy as doing some tangent-space wizardry and a few dot products)

psycho_driver@lemmy.world · 0 pts · 3y

Another day, another dream fulfilled.