Tetris (Microsoft Entertainment Pack for Windows): Difference between revisions

From TetrisWiki
Jump to navigation Jump to search
*>DIGITAL
No edit summary
(trivia section, the statement in the help file; system section, add intoduction to its lock delay; versus mode)
 
(12 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Infobox |title = Microsoft Entertainment Pack for Windows
{{Infobox |title = Microsoft Entertainment Pack for Windows
|developer =  
|developer = Microsoft
|publisher = Microsoft
|publisher = Microsoft
|released =  
|released = 1990
|platform = Microsoft Windows 3.x
|platform = Microsoft Windows 3.x
|hold = No
|hold = No
|SRS = No
|system =  
|hard = Hard drop only
|hard = Hard drop only
|preview = 1
|preview = 1
|playfield = 10w x 20h visible
|playfield = 10 × 20
|boxart = Tetris_(Microsoft_Entertainment_Pack)_boxart.jpg
|title-scrn = Windtetrisstart.png
|title-scrn = Windtetrisstart.png
|ingame-scrn = Windtetrisgame.png
|ingame-scrn = Windtetrisgame.png
}}
}}
Also known as ''Microsoft's Best Of Windows Entertainment Pack'' or BOWEP for short.


[[Category:Games List]]
'''''Tetris''''' is a Windows port of the game included as part of the first ''Microsoft Windows Entertainment Pack'', and later re-released as part of ''Microsoft's Best Of Windows Entertainment Pack''.
 
== System ==
 
* This game has a short lock delay (buggy though, where the piece continues to wait when moved away from landing position during the lock delay, and continues to fall after the timeout).
* The preview piece is toggleable.
* This game supports 2-player versus game (“Penalize Other Player”). The attacking rule is: N lines of 50% random junk will be set for each N-line clear where N≥2. However, under 2-player mode, the preview piece becomes unavailable.
 
== Scoring ==
[[Image:Integer.JPG|113px x 224px|thumb|left|Integer passed]]
*The current piece starts with an initial score value, which increases for each successive playing level.  Each time you rotate the piece or move it horizontally, its score value decreases. 
*If you drop the piece, its score value increases proportionally to the distance it falls.  Therefore, you can achieve the highest score per piece by immediately dropping the piece from the top of the playing area. (The lowest score per piece will result when you continually manipulate the piece until it lands on another piece or the bottom of the playing area)
*Programmers used 16-bit signed integer variables to store points gained by the player. Because of the binary representation of the signed number inside the computer, after you reach the largest possible value (32,767 points) it overflows and is displayed as a negative number (-32,768 points).
{| border="2" cellpadding="2" cellspacing="0" style="margin-top:1em; margin-bottom:1em; background:#f9f9f9; border:3px #999999 solid; border-collapse:collapse;"
|+'''Bonus for clearing rows'''
! bgcolor="#66BB55"|Row || bgcolor="#BBBBBB"|Points
|- align="center"
| bgcolor="#D7ECC6"| One Row ||      100
|- align="center"
| bgcolor="#D7ECC6"| Two Rows ||    200
|- align="center"
| bgcolor="#D7ECC6"| Three Rows ||    400
|- align="center"
| bgcolor="#D7ECC6"| Four Rows ||  800
|}
 
== Trivia ==
* The game ships with a help file stating “There are six different Tetris pieces.” with diagrams (the O-piece is missing). Though, the game is actually correctly implemented with all 7 tetrominos.<ref>https://i.imgur.com/Ci8evsA.png</ref>
 
== External links ==
* [https://archive.org/details/TETRIS_201612 Play ''Tetris'' (Microsoft Entertainment Pack for Windows) on archive.org]
 
[[Category:Official Tetris games]]
[[Category:Windows games]]

Latest revision as of 13:17, 28 October 2020

Microsoft Entertainment Pack for Windows
Tetris (Microsoft Entertainment Pack) boxart.jpg
Developer(s)Microsoft
Publisher(s)Microsoft
Platform(s)Microsoft Windows 3.x
Release1990
Gameplay info
Next pieces1
Playfield size10 × 20
Hold pieceNo
Hard dropHard drop only
Windtetrisstart.png
Windtetrisgame.png

Tetris is a Windows port of the game included as part of the first Microsoft Windows Entertainment Pack, and later re-released as part of Microsoft's Best Of Windows Entertainment Pack.

System

  • This game has a short lock delay (buggy though, where the piece continues to wait when moved away from landing position during the lock delay, and continues to fall after the timeout).
  • The preview piece is toggleable.
  • This game supports 2-player versus game (“Penalize Other Player”). The attacking rule is: N lines of 50% random junk will be set for each N-line clear where N≥2. However, under 2-player mode, the preview piece becomes unavailable.

Scoring

Integer passed
  • The current piece starts with an initial score value, which increases for each successive playing level. Each time you rotate the piece or move it horizontally, its score value decreases.
  • If you drop the piece, its score value increases proportionally to the distance it falls. Therefore, you can achieve the highest score per piece by immediately dropping the piece from the top of the playing area. (The lowest score per piece will result when you continually manipulate the piece until it lands on another piece or the bottom of the playing area)
  • Programmers used 16-bit signed integer variables to store points gained by the player. Because of the binary representation of the signed number inside the computer, after you reach the largest possible value (32,767 points) it overflows and is displayed as a negative number (-32,768 points).
Bonus for clearing rows
Row Points
One Row 100
Two Rows 200
Three Rows 400
Four Rows 800

Trivia

  • The game ships with a help file stating “There are six different Tetris pieces.” with diagrams (the O-piece is missing). Though, the game is actually correctly implemented with all 7 tetrominos.[1]

External links