Hmm, I think there are probably many ways you can approach this. My first approach would be to hav…
First let me say that I'm new to programming, so if I'm asking stupid questions, sorry. I've been …
I often that the intrusive approach that rachetfreak mentioned is the simplest. It can consume ext…
As of 524, Casey is still working on the engine. The Rich Combinatoric Interactions refer to gamep…
I too am interested in this! From my occasional check-ins it looks like the lighting + visuals are…
One way to give control over allocations to the user is to have an "intrusive" linked list. You de…
Casey mentions on day 27 that he's interested in implementing "Rich Combinatoric Interactions", di…
For my current implementation of a linked list, I have the user of the "library" manage all memory…
Jason —
Alright, thanks for the input guys. I'll see what I can do.
A lot of work this round went into beefing up the expression parser and evaluation for the watch …
You can search for developer talks about 2d games you liked. Often it the game looks good there ar…
There is no such thing as "properly" lighting in 2d game. Because real light works in 3d. So any 2…
You don't need to put color as first member. Compiler knows alignment for each member in structure…
Jason —
Damn, that sucks. Would you know if any good resources on how to properly light a 2d game? Or the …
mmozeiko thank you! The alignment turned out to be the problem as you suggested. I've never had a…
I don't think Casey's gone back to that. At the moment, handmade hero uses a mix of 3d graphics (w…
Not sure about 0xFFFFFFFFFFFFFFFF (is your rect pointer valid?). Are you sure it happens at this p…
Hi! I have a a backbuffer rendering approach that fills a buffer with rendering primitives for the…
Jason —
I've recently finished watching up to day 104 which seems to finish up the 2d lighting stuff. At t…
Is this final VS2019 version? If you had preview versions installed before it may messed up somet…
No that's correct. I don't have a w:\handmade\ folder, my build folder is right there in w: and t…
If a path you specify has a at the beginning of it, that signifies that the path starts in the d…
Does "W:\build\win32_handmade.exe" file actually exists? Is this final VS2019 version? If you had …
Hey everyone. I just started the journey of trying to follow along with Casey's series and I'm stu…
Chen —
Alright sounds good. Thanks for helping me out with this issue.
In that case I'm not sure what is going on. It might be worth adding some diagnostics to the Outpu…
Chen —
I do have /Z7 flag enabled instead of /Zi. This is my build.bat: IF NOT EXIST ..\build mkdir ..\b…
Chen, RemedyBG currently only supports PDBs with full debug information. The first thing to try i…
Chen —
Hi. When I try stepping into the code with RemedyBG, it steps into the disassembly instead of step…
I made a command that preserves indentation of the line you came from when you input a newline. Wh…