Search results for "6c2a895ba12d38dce6dde66d34fd508b" in md5 (5)

/g/ - /dpt/ - Daily Programming Thread
Anonymous No.106260849
>>106260791
Decompiling an old DOS game. Menus work, 3D software rendering in the menus works. Getting real close to in-game rendering working too.
https://github.com/Zizin13/Roller
/v/ - GameDev
Anonymous No.717145252
>>717143049
Just the main menu so far but I've got the 3d software rendering working and can load the tracks. Should be in game soon.
/g/ - /dpt/ - Daily Programming Thread
Anonymous No.105960239
>>105959002
A little bit of both. Some things could be pasted in directly from Ida and worked fine with minimal fixup, others I had to figure out. A lot of times when the compiler optimized loops it referenced adjacent pieces of data with an offset. Especially if referencing multiple pieces of data and it wanted to increment the same value for all of them. I have to fix this because I cannot guarantee identical data layout. Annoying but not too difficult.

Texture rendering I had to figure out too because they wrote a heavily optimized algorithm that did crazy pointer math on 64-bit values (4 16 bit DOS memory selectors) to draw up to 4 pixels at once. This won't work in modern x64 compilers where pointers are 64 bits themselves of course. Fortunately they had another slower (and simpler) algorithm that looks at each pixel individually so they can handle transparent pixels if the texture tile has any that I was able to re-write and adapt to modern pointers. I just made the optimized function call my adapted slower version too lol. I preserved the 16.16 fixed point math so it looks exactly the same with the textures kind of walking/shifting around like a Playstation 1. Same Z fighting issues of the original game too.
/vg/ - /agdg/ - Amateur Game Development General
Anonymous No.531727460
Million Plus Z fighting looks identical to the original
/o/ - /ovg/ - Rotating 3D model edition
Anonymous No.28521610
sovl