Editing Frame

Jump to navigation Jump to search
You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
{{game icons|p=y|p2=y|p3=y|p4=y|hp=y|pb=y|pa=y}}
{{game icons|p=y|p2=y|p3=y|p4=y|hp=y|pb=y}}
[[File:Frames demonstration.gif|thumb|An animation eight frames long that plays at two frames a second.]]
[[File:Frames demonstration.gif|thumb|An animation eight frames long that plays at two frames a second.]]
'''Frames''' are a series of consecutive images that, when played in rapid succession, give the illusion of movement.
A '''frame''' is the primary unit of time in any [[Pikmin series|''Pikmin'' game]]'s logic routine. Every frame, the game's world is updated, and the screen is redrawn to reflect the current state of the game. Frames "tick" at a regular interval, in order to provide a seamless stream of images that form the game's video. Processing cannot happen between two frames, meaning that an object's state can only be updated once per frame. Hence, the interval between two frames needs to be low enough to provide a smooth transition between an object's states over time (such as the position in the world map of a moving object), but high enough that the console can keep up with the speed.


Most screens refresh at a regular interval, usually 60 times per second, and the period when they are ready to receive a frame from the console is known as '''vertical blanking interval''' (VBI). For a game to display its current state, it must perform the following steps for each VBI
In [[tool-assisted superplay]]s, some tricks or [[glitch]]es need to be "frame-perfect", meaning there is a one-frame window in which an outcome can happen. This makes them quite hard or impossible to perform consistently in real time.
* Get the player's input.
* With the CPU, update the world state. The simulation is discrete (e.g. the position of a moving object is changed once per update), with a ''timestep'' that is an estimate of the time it takes to finish the frame.
* With the GPU, render the updated world state to a frame. (Because the CPU and GPU are working simultaneously, there is one frame of latency.)
 
If the console has to process a large amount of instructions, it may fail to do render the frame before the VBI: this forces the console to resend the previous frame (assuming vertical sync is enabled), causing lag. More complex games may aim to render a new frame every ''n'' VBIs, at the expense of fluidity and responsiveness, but maintaining consistency.
 
If the timestep of the simulation is static, then a frame can be considered as the primary unit of time. In [[tool-assisted superplay]]s, some tricks or [[glitch]]es are "frame-perfect", meaning that there is a one-frame window in which an outcome can happen. This makes them difficult or impossible to perform consistently in real time.


==Framerate==
==Framerate==
The mainline ''Pikmin'' games contain complex areas and several objects, most notably, the [[Pikmin family|Pikmin]] themselves, with [[Pikmin limit|100]] of them being able to stay on-screen at once. Because of this, {{p1}}, {{p2}}, {{p3}} and {{p4}} target 30 frames per second, half of an ordinary screen's refresh rate (60 Hz).
The mainline ''Pikmin'' games contain complex areas and several objects, more notably, the [[Pikmin family|Pikmin]] themselves, with [[Pikmin limit|100]] of them being able to stay on-screen at once. In order for the console to process the world's logic and render all of its elements at a steady speed, it cannot render at a large framerate. {{p1}}, {{p2}}, {{p3}} and {{p4}} run at 30 frames per second, which is half of an ordinary TV's refresh rate (60 Hz).


The exception to this is the European [[region|version]] of ''Pikmin'' and ''Pikmin 2'':, if the game runs at the PAL 50 Hz frequency, the framerate is lowered to 25 frames per second. ''Pikmin'''s physics timestep doesn't change, which causes the gameplay's speed to be slowed down by approximately 16.7% as a result, while on ''Pikmin 2'' it is adjusted so that the gameplay speed remains the same. The GameCube version of the first game only supports PAL 50 Hz, while its [[New Play Control! Pikmin|New Play Control version]] and both versions of ''Pikmin 2'' also support PAL 60 Hz.
The exception to this is the European [[region|version]] of ''Pikmin'' and ''Pikmin 2'': because the framerate needs to be a dividend of the screen's refresh rate (to avoid poor framepacing), if the game runs at the PAL 50 Hz frequency, the framerate is lowered to 25 frames per second. ''Pikmin'''s physics are dependent on the framerate, thus the gameplay's speed is slowed down by approximately 16.7% as a result, while ''Pikmin 2'''s physics are adjusted so that the gameplay speed remains the same. The GameCube version of the first game only supports PAL 50 Hz, while its [[New Play Control! Pikmin|New Play Control version]] and both versions of ''Pikmin 2'' also support PAL 60 Hz.


Other than that, the [[main menu]]s of the first two games, and the [[options menu]], [[high scores menu]], [[bonuses menu]], and [[area selection menu]] in ''Pikmin 2'' all run at twice the framerate of the normal game.
Other than that, the [[main menu]]s of the first two games, and the [[options menu]], [[high scores menu]], [[bonuses menu]], and [[area selection menu]] in ''Pikmin 2'' all run at twice the framerate of the normal game.


Most modern games use the time it took to complete a frame as the timestep for the next frame, in order to keep the gameplay speed stable. ''Pikmin 2'' and ''Pikmin 3'' don't dynamically adjust the timestep, which means that lag will also slow down the game. An example of this is the landing sequences of the latter on the [[Wii U]].
Should the console have to process a large amount of instructions, it may fail to do all of them in a single frame, needing to extend the duration of the frame until everything is concluded. If this happens over a large amount of time, it can be noticed by the player. An example would be the landing sequence in ''Pikmin 3'', which oftentimes slows down the [[cutscene]] visibly, but not in a way that negatively impacts gameplay.
 
{{todo|Why does Pikmin 1 at 50 Hz run slower, if it is capable of dynamically changing its timestep? (Source that it can: changing the vblank rate on Dolphin doesn't change the game speed.)}}


==See also==
==See also==

Please note that all contributions to Pikipedia are considered to be released under the Attribution-ShareAlike 4.0 International license (see Pikipedia:Copyrights for details). Your changes will be visible immediately. Please enter a summary of your changes above.

Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

Templates used on this page:

This page is a member of 1 meta category: