Visibility Jam. July 19-21, 2024. See the results.
Oliver Marsh's Avatar
Oliver Marsh
Olster1.github.io
GitHub
Member since

Recent Activity

added trees and grasses, and start of the hotbar.

View original message on Discord

Added ambient occlusion to minecraft clone.

I think there could still be a bug there. And maybe need to interpolate across the quad not just the triangle.

View original message on Discord

Added clouds and sky to my minecraft clone

View original message on Discord

added the blocks to pickup after mining them

View original message on Discord

Got drag selection with the mouse working

View original message on Discord

Added search buffer to my text editor - using Boyer Moore algorithm to search

View original message on Discord

Had a go at redrawing the character walk animations and sword swing. Still a bit to work on 😆 but happy with the progress

View original message on Discord

The floor feels like it's falling under my feet

View original message on Discord

Every weary traveller has to sleep some time

View original message on Discord

Added pressure plates as a game mechanic.

View original message on Discord

Been on a tangent of web programming. Trying to emulate React components using meta programming. You write the component in regular html, then run the meta program that turns it into javascript 'Create element' calls. Then when I create them on the website I use the meta generated function. The goal is seeing if you can have a front end framework experience with just using plain javascript.

View original message on Discord

Saving user progress now, the example in the video is the door and chest are still open when I come back to the level. It uses the same thing to load progress when you close the program aswell.

View original message on Discord

For the collision of the level instead of having collision boxes enclosing the level, I went for the opposite where you map out the valid squares you can walk on to avoid any werid collision bugs.

View original message on Discord

Added the ability to tile walls. Still need to find the best way to show the room when you go behind one.

View original message on Discord

Got shadow mapping working for the directional lights 🌞. Might hold out on point light shadows for a bit 😅

View original message on Discord

My tweak file is coming in handy while editing ui stuff

View original message on Discord

Added more dialog options. Using Ryan's devlog video as inspiration, the string used for this looks like "{s: 1}Welcome to Illoway. Town of exceptional beauty. {s: 2.0}This is a faster sentence. {s: 0.5 c: 1 0 0 1}This is red and slow. "

View original message on Discord

Experimenting with fog in the forest

View original message on Discord

Added path finding for the enemies. Yellow squares are the path it can see the player on.

View original message on Discord

Experimenting with normal maps (only on the cobble stone). Not sure if I'll keep it yet. I used a program called 'Laigter' which is free on itch.io. It worked pretty well.

View original message on Discord

Added an image picker to my gui code. Going to use it to select tiles for the map.

View original message on Discord

Added some seagulls, barrels and a cat to the scene 👍

View original message on Discord

Update on my game. The hero enjoys long walks on the beach, relaxing in his house and strolls at night.

View original message on Discord

Added a new inventory. Copied off a new game 😅 but is a good starting point.

View original message on Discord

Added rendering of text in world space. I had been putting it off doing it thinking it would take ages thinking I had to modify the existing draw text function. But just made a new function and was finished in about 10mins 😀

View original message on Discord

You can also get pummeled by the werewolf

View original message on Discord

3d fence models, can attack enemies and read signs 👍

View original message on Discord

Werewolfs in the forest Ah!

Sorry for the quality need to find a better way of making the videos.

View original message on Discord

Progress on the 2.5d game. Go sorting working now 😀

View original message on Discord

Changed my 2d side scroller to a top down 2.5 game. Added a blend map for the floor as well.

View original message on Discord

Can also jump. Using nullnotvoids gif library to make the gifs

View original message on Discord

Added while loops. Not sure how to handle infinite loops for the user though. https://youtu.be/c4T-OxchO9s

View original message on Discord

Added if's to the program. Doesn't support && or || yet. Called them 'when', not sure if thats a good idea. https://youtu.be/ZqYY1xVf10M

View original message on Discord

This is a game I've been working on for the last few months. The idea is an infinite runner type game where you've got to keep moving, kind of like the boulder levels in Crash Bandicoot. I wanted to take that & see if you could add other game elements to it like what it some levels are puzzles, obstacles, enemies & so on.

Right now there's a bunch of predefined 'rooms' that I create, then I tag it with some predefined tags. Then each level knits these together based on what it is about. So if it's about collecting crystals, it will ask for rooms just tagged with crystals.

Right now the levels aren't very good, have just done the rough first pass on it but thought I'd share what I've got. If you've got any ideas for it, like the sound of it or have any comments please let me know :).

https://www.youtube.com/watch?v=UKiuvnSzYr0

This is a level with more stuff in it: https://www.youtube.com/watch?v=x2EZwgTcxLk

View original message on Discord

Have been working on the profiler for the game. Still need to do alot more though, but it useful already seeing what's using up the time. First time doing a scroll handle that resizes, which was fun.

https://www.youtube.com/watch?v=87FmbU1wjiM&feature=youtu.behttps://www.youtube.com/watch?v=87FmbU1wjiM&feature=youtu.be

View original message on Discord

Had a couple of months off but am back working on my engine. You can drag around entities now. https://www.youtube.com/watch?v=FNT6c27xCyA&feature=youtu.be

View original message on Discord

Inspired by DearIMGUI & @ryanfleury the melodist editor, i just push stuff on in the frame & use LINE& FILE as an id to store state, so the frontend doesn't have to predeclare anything. https://www.youtube.com/watch?v=pH3cZx1Acw4&feature=youtu.be

View original message on Discord

Drawing bounding boxes around models. Going to use this for raycasting to pick entities & going to try make a simple collision detection with it. Right now this is super slow for drawing around every model (I'm just drawing 12 cubes per model), any thoughts on a better way for just a debug system would be very handy. https://youtu.be/YaPeGW7kfmQ

View original message on Discord

https://youtu.be/NE2meuutd1A Implemented the procedual clouds from @Chen blog post (https://monter.handmade.network/blogs/p/3309-engine_work__procedural_volumetric_cloud_rendering). First time doing ray tracing type stuff, so feeling like I'm understanding stuff more 🙂

View original message on Discord

Handled e notation & more than four vertexes on a face in the obj loader. Also loaded some more models.

View original message on Discord

Rewrote the obj parser and added support for mtl files

View original message on Discord

Having a go at a wysisyg editor. Go text boxes going

View original message on Discord