LADX-Disassembly icon indicating copy to clipboard operation
LADX-Disassembly copied to clipboard

Find what the unused entities were supposed to do

Open kemenaran opened this issue 6 years ago • 1 comments

Several unknown entities are unused throughout the code.

These are mostly visible in the entities handlers table: all the entities labeled EntityXXXHandler are not used in the final game–but point to actual code.

For instance these two ones (but there are others)

https://github.com/zladx/LADX-Disassembly/blob/7f2c25ba394b75748e7ceb55677bc9d6b5115c70/src/code/entities/_handlers_table.asm#L120-L121

It could be interesting to understand what where these entities, and why they were eventually left out of the final game.

Resources

Maybe some leftover elements mentioned on The Cutting Room Floor could provide some hints.

kemenaran avatar Nov 12 '19 00:11 kemenaran

NB : some of these entities are not used in the static room definitions – but are actually spawned at runtime (see SpawnNewEntity). So they are actually used (even though they are harder to figure out than the statically-defined ones).

kemenaran avatar Mar 21 '20 14:03 kemenaran