Mode 7

Mode 7
Screenshot of a basic Super Nintendo demo using this graphical effect

Mode 7 is a graphics mode on the Super NES video game console that allows a background layer to be rotated and scaled on a scanline-by-scanline basis to create many different effects. The most famous of these effects this can create is the application of a perspective effect on a background layer by scaling and rotating the background layer in this manner. This transforms the background layer into a 2-dimensional horizontal texture-mapped plane that trades height for depth. Thus, an impression of 3-dimensional graphics is achieved.

Contents

Use

Mode 7-style rendering is generally used on systems with strong 2D capabilities but not dedicated 3D support. Classic Mode 7 games include the Super NES titles F-Zero, Super Mario Kart, Terranigma, Pilotwings, Yoshi's Safari, Teenage Mutant Ninja Turtles IV: Turtles in Time, Super Castlevania IV, Secret of Mana, Secret of Evermore, Final Fantasy IV, Final Fantasy V, Final Fantasy VI, Super Mario RPG: Legend of the Seven Stars, Dino City,Super Mario World, Super Star Wars, Chrono Trigger, ActRaiser, 7th Saga, and The Legend of Zelda: A Link to the Past. The effect was later reused in Game Boy Advance incarnations of many of these games.

Function

The Super NES console has eight modes, numbered from 0 to 7, for displaying background layers, the last one (background mode 7) having a single layer that can be scaled and rotated. The Game Boy Advance and Nintendo DS 2D graphics hardware have scaling and rotation for traditional tiled backgrounds in its modes 1 and 2 and scaling and rotation for bitmaps in modes 3 through 5 (used less often on the GBA because of technical limitations).[1] On each machine supporting this effect, it is possible to change the scaling/rotation values during the horizontal blanking period of each scanline to draw a flat plane in a perspective projection; this became thought of as the characteristic "Mode 7" effect. More complex effects such as fuzz are possible by using other equations for the position, scaling, and rotation of each line. This graphical method is not only suited to racing games; it is also used extensively for the overworld sections of role-playing games such as Square's popular 1994 game Final Fantasy VI. The effect enables developers to create the impression of sprawling worlds that continue forever into the distance.

On the Super NES, a variation of Mode 7 allows pixels of the background layer to be in front of sprites. Examples are Contra III: The Alien Wars (stage 2) and the introduction screen of Tiny Toon Adventures and when a player falls off the stage in Super Mario Kart. The GBA can make the same effect by using mode 2, which provides two "Mode 7" layers, and putting the sprites between the layers.

Many PC games, most notably Wacky Wheels and Skunny Kart, have a Mode 7 effect made by a completely software-based method. There is also a Mode 7 extension for the software-authoring program Multimedia Fusion that allows creators to make semi-3D games.

During the days of the Super NES, Mode 7 was one of Nintendo's favorite selling points (Nintendo Power, SNES Player's Guide). For example, when the game Teenage Mutant Ninja Turtles: Turtles in Time was ported from the arcade to the SNES, a level was changed from side-scrolling to Mode 7.

Formula

Planar texture maps using Mode 7 graphics are generated by transforming screen coordinates to background coordinates using a 2D affine transformation,


\begin{bmatrix} x' \\ y' \\ 1 \end{bmatrix}
 =
\begin{bmatrix} a & b & x_0 \\ c & d & x_0 \\ 0 & 0 & 1 \end{bmatrix}
\begin{bmatrix} x - x_0 \\ y - y_0 \\ 1 \end{bmatrix}

where a, b, c, and d are the transformation coefficients; x and y are the screen offset; x_0 and y_0 are the origin offset; and x' and y' are the transformed coordinates. All arithmetic is carried out on 16-bit signed fixed point numbers, while all offsets are limited to 13 bits. The radix point is between bits 7 and 8.

Affine transformations only allow for displacement, scaling, and shearing effects. Many games create additional effects through creative manipulation of the transformation matrix parameters on a scanline by scanline basis. In this way pseudo-perspective, curved surface, and distortion effects can be achieved.

Limits

Mode 7 can only work on backgrounds, not sprites; therefore, any object that does not rotate/scale with the background must be a sprite, even items that would normally be thought of as part of the background, such as fixed platforms. The game developer must create a sprite with the same appearance as that object. For instance, in Super Castlevania IV, battles in which a boss rotates, such as with Koranot (which is a large golem), have the mobile boss as the background, while the blocks on which the protagonist stands are sprites. With the obvious enhancements, this is similar to how some NES games featured battles against a giant movable boss without the slowdown and flicker inherent in a large sprite set—by making the boss the background, and then moving and animating it. Both systems' examples only must apply to objects in the horizontal plane of the moving object. For instance, a floor, ceiling or scoreboard can remain part of a background in both the NES and SNES examples as long as they are completely "above" or "below" the field of gameplay. They can also be turned into sprites if the whole screen is needed, but this can cause slowdown.

The fact that Mode 7 cannot be used on sprites means that each "size" of an "approaching" sprite for a given distance has to be pre-drawn, meaning that one would see sprites "jump" between a limited number of sizes when "approaching" them. This can be seen in Super Mario Kart and HyperZone whenever an object approaches, or when walking vertically on the Final Fantasy VI map with an airship in view. In Super Mario RPG: Legend of the Seven Stars Mode 7 is used greatly.

Similarly, sprite "rotations" have to be handled through pre-drawing unless they are done with hardware included in the game cartridge such as the Super FX 2 chip as with Super Mario World 2: Yoshi's Island. A notable workaround does exist and can be seen in the second boss battle in Contra III: The Alien Wars and the battles against Morton, Ludwig, Roy and Bowser in Super Mario World. In these examples, the boss is a "background" and therefore rotates through Mode 7, and the scoreboard, which is "above" the field of play, is also a background, but the floor of battle's cracks are, as with the players and gunfire, "sprites" that are redrawn under various rotations as the player rotates. However, this only allows one "sprite" to be manipulated at once.

One exception to Mode 7-like effects on sprites handled neither by pre-drawing nor by external chips occurs in Tales of Phantasia and Star Ocean, where re-rendering of sprites on the fly is done entirely by the software. In ToP, the player sprite vertically stretches upon walking onto a save spot, and in Star Ocean, items "squash" upon "popping out of" an open treasure chest. Due to the extra tiles needed for such rendering and the other high system demands throughout those games (both used a form of streaming audio to circumvent the SPC700's limited capacity, and as with most high-end SNES RPGs, used a variable width font), such rendering was limited to those few scenes.

The Sega Mega Drive/Sega Genesis has no comparable hardware-native feature to Mode 7, although the Sega CD add-on added such a feature; for example, it is used prominently in the Special Stages of Sonic CD. However, as in Tales of Phantasia and Star Ocean's sprite effect add-ins, some comparable technical feats could be programmed straight into a game by the developers, resulting in similar effects seen in games such as Castlevania: Bloodlines, Adventures of Batman and Robin, or Contra: Hard Corps. The Sega 32X has 2D and basic 3D capabilities, so scaling and rotation effects are common in primarily 2D games such as Knuckles' Chaotix, which also was the first game in the Sonic series to feature a polygonal special stage.

Hardware

The two PPU (picture-processing unit) chips of the SNES use two 8-bit 32-kilobyte RAM chips. One PPU can access the tile map (128×128 tiles), and the other PPU can access the tile set (256 tiles, 8×8 pixels in 256 colors) in a single cycle.

See also

References

  1. ^ Korth, Martin, GBATEK: LCD I/O Display Control. Retrieved on June 23, 2011.

Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • mode — mode …   Dictionnaire des rimes

  • MODE — Un examen rapide de la définition du mot «mode» montre qu’à ce terme deux autres vocables sont souvent associés: le «monde» (pour société ou univers) et la «modernité». Dérivée du substantif latin modus (façon d’être passagère) et de l’adverbe… …   Encyclopédie Universelle

  • mode — 1. (mo d ) s. m. 1°   Terme de philosophie. Manière d être qui ne peut exister indépendamment des substances, quoiqu elle puisse être conçue à part abstraitement. •   Le mode est un accident que l on conçoit nécessairement dépendant de quelque… …   Dictionnaire de la Langue Française d'Émile Littré

  • Mode — (aus dem Französischen mode; lat. modus ‚Maß‘ bzw. ‚Art‘, eigentlich ‚Gemessenes‘ bzw. ‚Erfasstes‘) bezeichnet die in einem bestimmten Zeitraum und einer bestimmten Gruppe von Menschen als zeitgemäß geltende Art, bestimmte Dinge zu tun, Dinge zu… …   Deutsch Wikipedia

  • Mode X — is an alternative video graphics display mode of the IBM VGA graphics hardware that was popularized by Michael Abrash, first published in July 1991 in Dr. Dobb s Journal, republished in chapters 47 49 of Abrash s Graphics Programming Black Book… …   Wikipedia

  • Mode 2 — ist ein Begriff der Wissenschaftsforschung und wurde 1994 von Helga Nowotny, Peter Scott, Michael Gibbons u. a. als Konzept zur Beschreibung der zeitgenössischen Produktion wissenschaftlichen Wissens entwickelt. Inhaltsverzeichnis 1 Konzept 1.1… …   Deutsch Wikipedia

  • mode — [məʊd ǁ moʊd] noun 1. [countable] a way or means of doing something: mode of • susbsidies that support environmentally friendly modes of transport such as cycling • traditionalmodes of communication ˌmode of ˈpayment modes of payment …   Financial and business terms

  • Mode — (m[=o]d), n. [L. modus a measure, due or proper measure, bound, manner, form; akin to E. mete: cf. F. mode. See {Mete}, and cf. {Commodious}, {Mood} in grammar, {Modus}.] 1. Manner of doing or being; method; form; fashion; custom; way; style; as …   The Collaborative International Dictionary of English

  • mode — W3 [məud US moud] n [Date: 1300 1400; : Latin; Origin: modus measure, way ] 1.) formal a particular way or style of behaving, living or doing something mode of ▪ the most efficient mode of transport ▪ They have a relaxed mode of life that suits… …   Dictionary of contemporary English

  • mode — [ moud ] noun ** ▸ 1 way of living/doing something ▸ 2 way machine works ▸ 3 art/clothes/etc. fashion ▸ 4 in music ▸ 5 way of behaving 1. ) count a particular way of doing something: mode of: an efficient mode of production E mail is becoming an… …   Usage of the words and phrases in modern English

  • Mode — (franz., v. lat. modus, engl. Fashion), die Lebensformen, sofern sie weder durch nationale Überlieferung noch durch zwingende Erwägungen, sondern durch wechselnde Tageslaunen bestimmt werden. Das Gebiet, auf dem die M. am unbestrittensten… …   Meyers Großes Konversations-Lexikon

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”