Page 179 of 180

Re: What's everyone working on? (tigsource inspired)

Posted: Mon May 29, 2023 1:27 pm
by UnixRoot
I needed a little break from my Pseudo3D racing engine, so why not do a ray caster? :awesome: :awesome:
I'm rendering to a 90° rotated frame buffer, so I can draw the vertical columns horizontal. It's pretty fast, even on my potato PC.

Image

Re: What's everyone working on? (tigsource inspired)

Posted: Wed May 31, 2023 6:12 pm
by RedGuff
Hello.
I'm planning a game with a xpress controller. (https://contourdesign.com/products/shuttle-xpress)
I hope more fun.

Re: What's everyone working on? (tigsource inspired)

Posted: Sun Jun 04, 2023 4:18 pm
by UnixRoot
Working on my ray caster.

I implemented real 8-Bit palette rendering with lighting and shading system pretty similar to Quake's colormap, including fullbright support, etc.

All the textures are stored in a special format without any color information but with only the palette indices instead. It's the same with the light map. The colors are stored in an 8-Bit LUT palette. I can then simply calculate the palette index with "256 * light + color".

I love the look of real 8-Bit palette rendering :3 :3 :3

Image

Re: What's everyone working on? (tigsource inspired)

Posted: Sun Jun 04, 2023 10:28 pm
by duaner
UnixRoot wrote: Sun Jun 04, 2023 4:18 pm I love the look of real 8-Bit palette rendering :3 :3 :3
That looks great -- very immersive.

I'm still working on simple stuff... slowly.

Re: What's everyone working on? (tigsource inspired)

Posted: Mon Jun 05, 2023 6:41 am
by UnixRoot
duaner wrote: Sun Jun 04, 2023 10:28 pm I'm still working on simple stuff... slowly.
Actually, it's quite simple. There are lots of tutorials and code samples for ray casters you can study. The only problem is, most of them are slow.

But I got rid of all the slow per pixel divisions, drawing 90° rotated so I can fill horizontal scanlines instead of vertical columns, using bit shifts instead of expensive math where possible, using C structs and pointers instead of tables, etc.

Re: What's everyone working on? (tigsource inspired)

Posted: Mon Jun 05, 2023 7:27 pm
by Ghosx
I was working on a game called LOST from a few days it is a game talking about a boy lost in another dimension and It is now released.

It’s page in the games forum in love2d:
https://love2d.org/forums/viewtopic.php?f=14&t=94616

The Game link on itch io:
https://ghosx.itch.io/lost

Re: What's everyone working on? (tigsource inspired)

Posted: Sat Jul 15, 2023 7:58 pm
by Jimanzium
Working on a top down dungeon crawler with zombies. Will be releasing a playable build soon!


Re: What's everyone working on? (tigsource inspired)

Posted: Sun Sep 10, 2023 1:29 am
by bombquake
i've been learning about 3D rendering and modelling for the first time, here's what I have so far. there's more things like point lights&quadtree view culling I could add but I want to move on making the actual game&assets, it'll be an RPG with a chess battle system.
https://github.com/pszer/Providaa

Re: What's everyone working on? (tigsource inspired)

Posted: Fri Sep 15, 2023 6:26 am
by alfredbaudisch
Jasoco wrote: Fri May 12, 2023 7:32 pm Taking a break from 3D for now. Been playing around with a SimCity SNES clone of sorts...
Oh I love this!

Re: What's everyone working on? (tigsource inspired)

Posted: Fri Sep 15, 2023 6:31 am
by alfredbaudisch
Still nothing much visually, but I've been making a roguelike framework with Love, with support to ASCII, tiles, zooming and mouse

(I already made the same experiment with raylib and C++, and at the same time my main game project "Brazilian Street Food Simulator" is being done in Unity, I mean... was being made in Unity, I'm going to migrate away after everything that is going on).

Image