1
0
Fork 0
vt100-games/LadderTP/LADCONST.PAS

21 lines
893 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CONST
Version = '1.33TP';
DataFileName = 'LADDER.DAT';
ConfigFileName = 'LADCONF.COM';
NumHighScores = 5; { # of stored high scores }
DataFileStrLength = 31; { # chars in data file terminal config strings }
DataFileNameLength = 29; { # chars in high score names }
CursOffStr = #$1B'[?25l'; { turn cursor off string }
CursOnStr = #$1B'[?25h'; { turn cursor on string }
NumPlaySpeeds = 5; { # of different playing speeds }
BonusTimeDecInterval = 3000; { decrement bonus time every 3 seconds }
NumLevels = 7; { # of distinct levels }
LevelRows = 20; { # of rows in a level map }
LevelCols = 79; { # of chars in a level map }
MaxDispensers = 3; { max # of rock dispensers on a level }
JumpsLen = 6; { max # of positions in a jump sequence }