Please create an account or Login! Have fun!

Data Size Glitch

Revision as of 07:59, 13 February 2021 by Random 8 (talk | contribs) (→‎Occurrences: grammar)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The Data Size Glitch is an error in Microsoft's version of Chip's Challenge which occurs when the size of a level's data in memory exceeds an internal limit of the program. This glitch causes MSCC to terminate abnormally when the level is accessed in certain ways (listed below), although in other cases the level can be played as usual. Tile World does not suffer from this glitch.

Occurrences[edit]

The glitch is triggered when the level is entered in the following ways:

  • Using Ctrl+P / Ctrl+N to navigate to that level from the next / previous level
  • When starting the program with the Current Level as that level. This includes the case when the program is started for the purpose of playtesting a level from a level editor.

The glitch can be avoided by accessing the level in other ways:

  • Completing the previous level
  • Jumping to the level using Go To...

Calculations[edit]

The error occurs when the size of a level's "non-map" data exceeds 544 bytes. Non-map data includes everything other than the data that specifies the tiles constituting the two layers of the map. It can be calculated as follows:

  1. title size = length of title + 3
  2. password size = 7
  3. hint size = length of hint + 3, 0 if no hint
  4. trap connections list size = number of connections * 10 + 2, 0 if none
  5. clone machine connections list size = number of connections * 8 + 2, 0 if none
  6. monster list size = number of monsters * 2 + 2, 0 if none

(The above information was originally posted by ccexplore at the Chip's Challenge newsgroup, but that post has since been archived.)

Fixes[edit]

Unlike the Termination Glitch, there is no utility or patch available to fix the glitch. Hence, the only way to ensure that it does not occur is to modify an offending level so that its data size is brought within limits. Changes that can be done without severely altering the level are:

  • Rewrite the hint in a fewer number of characters. Note that in any case, MSCC will not display hints that don't fit into the Hint pane.
  • Remove monsters that cannot move from the monster list by marking them as "stationary". This includes monsters on clone machines and unconnected traps.
  • Use a shorter level name.