Featured
Recent
News

deterministic record/replay for native code. &blindspot

View original message on Discord

After writing a quite complex crappy virtual machine and all the additional crappy system resource management stuff (files/cache/dynamic loader/address space relocator, not including actual granulated memory management which is needed on embedded platforms), my little script is finally executing something (and verified syscall routing...)

View original message on Discord

Decided to make a blog post, but interactive! As I've had some issues understanding the depth penetration algorithms of MPR I decided to make a series of blog posts about it, starting with the basics: Minkowski algebra & support function. Enjoy!

https://www.gameloomstudio.com/blog8.html

View original message on Discord

Stress testing navigation through recently visited folders in &file-pilot

View original message on Discord

implemented loops and logic operators today for my embedded stack script 🙂

View original message on Discord

Minimal D3D11 bonus material: simple 2D rendering
People are wondering about it from time to time so I added a dedicated gist for plain 2D rendering in D3D11, without the distracting feature set of a complete sprite renderer. Like the original Minimal D3D11, this one uses a canonical 1:1 TRIANGLELIST vertex buffer with input layout, so no fancy manual custom buffer fetching and instanced quad expansion in shader etc, as well as absolute pixel coordinate positioning of arbitrarily placed vertices (there's really no need for the sometimes confusing complication of a full-on projection matrix pipeline for UI and 2D games).

View original message on Discord

Had to iron out some 3d print imperfections to allow the display to fit, but the end result is pretty awesome

View original message on Discord

The shell is almost done for this 8 bit computer 😄 just the front display frame is left and printing now

View original message on Discord

Modelled the shell for my 8 bit computer project... will start printing tomorrow

View original message on Discord

Restructured my website. Multiple posts per page did not work out. Now it's the common one-post-per-page setup. I defintelly prefer this, particularly since I can list everything at the front page, which looks a lot better and makes things easier to find.
I've been going back and forth on the static site generator the last couple of months to make the change possible. I've written a blog post about it.
https://unlitart.com/Blog/SiteGen_New_Website_Structure_and_Further_Developments/

View original message on Discord

I think all the confusion about stack stuff earlier can maybe be resolved by just realizing that the compiler chooses where the variable will live in memory, and therefore knows what &foo will be, whether that’s on the stack or a global or whatever

View original message on Discord

I tried to design and make a performant and tiny scripting language.

It's called "Script 8" at the moment, meant for a potential AVR micro controller project, and should be very applicable on desktop too. Gonna be text->byte code->run.

I got this far for about two days off time:

This is the raw byte code the interpreter/compiler generated
And I added explaination

View original message on Discord

funnily enough, that doesn’t actually work :P
cause by wrapping your data in Cell<&’a T>, you’re kinda doing the same thing as putting it behind a &mut.

View original message on Discord

For some reason I started to make a modular 8 bit computer...

View original message on Discord

so if you know if you want to catch writes to anotherThing, then you set write breakpoint on &data[4] before some code block, and let it run as usual. Debugger will stop when cpu tries to write there

View original message on Discord

I stumbled upon this problem of "shuffling a poset" and thought that the topic and the solution I found was pretty rich with interesting subjects, so I summarized everything I learned about it in a video https://youtu.be/dr-jUCelobk?si=8VNQkQHEJML-jnid

View original message on Discord

I wrote a compiler for a custom vector-oriented language in odin and then made a little game with it. It's fully software rendered and also generates all music and sfx directly from waves.

It was such a great learning experience, but I think I'm done with this language for now. I wanna go back to serious 3d gamedev. But there are still a lot of vector-programming features I didn't have time to implement and would like to explore in the future.

Both the compiler and the game source is on Github

View original message on Discord

it took so long to get this dockable panel resize logic working in &half-edge good lord!! I really wanted children to be able to "push" out to parents when something hits a minimum size, which turned out really complex. I did end up solving it though, and the final recursive function actually turned out pretty cute and readable!

View original message on Discord