added full compatibility for wrap-around levels in EM engine
authorHolger Schemel <info@artsoft.org>
Fri, 25 Sep 2020 00:08:46 +0000 (02:08 +0200)
committerHolger Schemel <info@artsoft.org>
Fri, 25 Sep 2020 00:25:50 +0000 (02:25 +0200)
The previous support for wrap-around levels in the EM game engine was
some sort of "idealized" implementation that lets the player wrap
around by moving horizontally on the same vertical level position
forever (which results in truely infinite wrap-around levels).

This may be nice and perfect, but has the disadvantage that the
original Emerald Mine Club engine did not work that way, making
existing EMC levels unplayable and/or unsolvable. (Examples are
level 80 of "Ruppelmine 3" or level 34 of "The Exception 2".)

Instead, the original game engine caused the player to step one
vertical position up or down when leaving the playfield at the left
or right border, which is required by the mentioned example levels.

This correction adds a flag that is set by default to use the original
behaviour.


No differences found