SetFPSLimit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
(26 intermediate revisions by 4 users not shown)
Line 2: Line 2:
__NOTOC__
__NOTOC__
This function sets the maximum [http://en.wikipedia.org/wiki/Frame_rate FPS (Frames per second)] that players on the server can run their game at.   
This function sets the maximum [http://en.wikipedia.org/wiki/Frame_rate FPS (Frames per second)] that players on the server can run their game at.   
{{Note|When set client side, the actual limit used is the lowest of both the server and client set values}}
{{Note|
* When set client side, the actual limit used is the lowest of both the server and client set values.
* Starting from version [[https://buildinfo.mtasa.com/?Revision=21313&Branch r21313]] and above '''fpsLimit''' range is '''25-32767'''. In older MTA releases it was '''25-100'''.
}}
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 9: Line 12:


===Required Arguments===  
===Required Arguments===  
*'''fpsLimit:''' An integer value representing the maximum FPS. This value may be between '''25''' and '''100''' FPS. You can also pass '''0''' or ''false'', in which case the FPS limit will be the one set in the client settings (by default, 100 FPS).
*'''fpsLimit:''' An integer value representing the maximum FPS. Refer to the note above for possible values. You can also pass '''0''' or '''false''', in which case the FPS limit will be the one set in the client settings (by default, '''100 FPS''' and the client fps limit should also be manually changed via "'''fps_limit=0'''" in console or '''MTA San Andreas 1.5\MTA\config\coreconfig.xml''').


===Returns===
===Returns===
Line 15: Line 18:


==Issues when increasing FPS==
==Issues when increasing FPS==
It is also recommended to set a conservative FPS limit (between 30-60), because high FPS can break some GTA internal calculations. The higher the FPS the more of a problem these become:
Note: with "very high" FPS, any FPS limit over 74 is meant.
* Slower swimming.
It is recommended to set a conservative FPS limit (between 40-60 and 74 highest) because high FPS can break some GTA internal calculations, causing various bugs. The higher the FPS the more of a problem these become:
* Impossibility to move sideways while aiming certain weapons.
 
* Speed of vehicles is effected, racers with a higher FPS will have an unfair advantage.
74 FPS is the breaking point that opens the door to various more severe GTA bugs related to FPS and physics.
* Pressing the horn button to turn on and off sirens gets really hard the higher the FPS.
 
* Climbing over certain objects will result in instant death. Example at: 2520.108, -1681.407, 19.406, 266
* Physics of vehicles is effected, both high and low FPSes may bring their own set of unfair advantages. Speaking about the consequences of high FPS in this context, up to 70 or 74 FPS is considered safe (as any differences in physics, if they do exist to begin with as they theoretically should, are so tiny that they are unmeasurable and thus wouldn't affect racing results in practise). Anything beyond 74 FPS may cause impactful discrepancies.
* Animations can randomly get messed up.
 
* There were more issues like not being able to take off in Skimmer which MTA developers have fixed.
* Pressing the horn button to turn on and off sirens gets really hard at very high FPS. For instance, at 100 FPS, you are more likely to hit the regular horn 3 times (inconsistent) before eventually triggering the siren, besides taking a similar amount of tries to turn off the siren.
* Satchels can be thrown ~10% less distance.
* At very high FPS, climbing over certain objects will result in instant death. Example at: 2520.108, -1681.407, 19.406, 266 - [https://wiki.multitheftauto.com/wiki/SetFPSLimit#Fix_for_climbing_over_certain_objects you can use this Lua code to fix it.]
* The higher your FPS, the more of a penalty in satchel throwing distance (up to ~10% at very high FPS) will apply.
 
For a full list of FPS-related GTA bugs (that are much less likely to impact gameplay in a meaningful way) and MTA developers' progress in tackling them, see the [https://github.com/multitheftauto/mtasa-blue/projects/14 Framerate issues tracker] github project.


==Example==  
==Example==  
This command sets the fps limit in a command handler.
This example allows players to limit their own FPS using a command.
<section name="Server" class="server" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">function fpsFunction( player, command, limit ) -- First define the function
<syntaxhighlight lang="lua">
  if hasObjectPermissionTo ( player, "function.setFPSLimit" ) and limit then  
local minFPS = 25
    -- If the player has permission to set FPS limit and limit is submitted...
local maxFPS = 100
    setFPSLimit ( limit ) -- Set the fps.
 
  end
function fpsFunction(commandName, fpsLimit)
end
local newFPS = tonumber(fpsLimit)
local displaySyntax = (not newFPS) or (newFPS < minFPS) or (newFPS > maxFPS)
 
if displaySyntax then
outputChatBox("Syntax: /"..commandName.." ["..minFPS.." ~ "..maxFPS.."] - limit your own FPS.")
 
return false
end
 
local currentLimit = getFPSLimit()
local setNewFPS = (newFPS ~= currentLimit)
 
if setNewFPS then
outputChatBox("Your FPS has been limited to: "..newFPS..".")
setFPSLimit(newFPS)
end
end
addCommandHandler("limitfps", fpsFunction)
addCommandHandler("fpslimit", fpsFunction)
</syntaxhighlight>
</section>
 
== Fix for climbing over certain objects==
You can use this small code to fix one of high FPS issues, specifically the one which would instantly kill player climbing over some objects.
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
function onClientPlayerDamage(attackerElement, damageType, bodyPart)
local fallDamage = damageType == 54
 
if not fallDamage then
return false
end
 
local playerTask = getPedSimplestTask(localPlayer)
local playerClimbing = playerTask == "TASK_SIMPLE_CLIMB"


addCommandHandler ( "setfps", fpsFunction ) -- Attach the setfps command to fpsFunction function.
if playerClimbing then
cancelEvent()
end
end
addEventHandler("onClientPlayerDamage", localPlayer, onClientPlayerDamage)
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>

Latest revision as of 01:01, 14 June 2023

This function sets the maximum FPS (Frames per second) that players on the server can run their game at.

[[{{{image}}}|link=|]] Note:
  • When set client side, the actual limit used is the lowest of both the server and client set values.
  • Starting from version [r21313] and above fpsLimit range is 25-32767. In older MTA releases it was 25-100.

Syntax

bool setFPSLimit ( int fpsLimit )         

Required Arguments

  • fpsLimit: An integer value representing the maximum FPS. Refer to the note above for possible values. You can also pass 0 or false, in which case the FPS limit will be the one set in the client settings (by default, 100 FPS and the client fps limit should also be manually changed via "fps_limit=0" in console or MTA San Andreas 1.5\MTA\config\coreconfig.xml).

Returns

Returns true if successful, or false if it was not possible to set the limit or an invalid value was passed.

Issues when increasing FPS

Note: with "very high" FPS, any FPS limit over 74 is meant. It is recommended to set a conservative FPS limit (between 40-60 and 74 highest) because high FPS can break some GTA internal calculations, causing various bugs. The higher the FPS the more of a problem these become:

74 FPS is the breaking point that opens the door to various more severe GTA bugs related to FPS and physics.

  • Physics of vehicles is effected, both high and low FPSes may bring their own set of unfair advantages. Speaking about the consequences of high FPS in this context, up to 70 or 74 FPS is considered safe (as any differences in physics, if they do exist to begin with as they theoretically should, are so tiny that they are unmeasurable and thus wouldn't affect racing results in practise). Anything beyond 74 FPS may cause impactful discrepancies.
  • Pressing the horn button to turn on and off sirens gets really hard at very high FPS. For instance, at 100 FPS, you are more likely to hit the regular horn 3 times (inconsistent) before eventually triggering the siren, besides taking a similar amount of tries to turn off the siren.
  • At very high FPS, climbing over certain objects will result in instant death. Example at: 2520.108, -1681.407, 19.406, 266 - you can use this Lua code to fix it.
  • The higher your FPS, the more of a penalty in satchel throwing distance (up to ~10% at very high FPS) will apply.

For a full list of FPS-related GTA bugs (that are much less likely to impact gameplay in a meaningful way) and MTA developers' progress in tackling them, see the Framerate issues tracker github project.

Example

This example allows players to limit their own FPS using a command.

Click to collapse [-]
Client
local minFPS = 25
local maxFPS = 100

function fpsFunction(commandName, fpsLimit)
	local newFPS = tonumber(fpsLimit)
	local displaySyntax = (not newFPS) or (newFPS < minFPS) or (newFPS > maxFPS)

	if displaySyntax then
		outputChatBox("Syntax: /"..commandName.." ["..minFPS.." ~ "..maxFPS.."] - limit your own FPS.")

		return false
	end

	local currentLimit = getFPSLimit()
	local setNewFPS = (newFPS ~= currentLimit)

	if setNewFPS then
		outputChatBox("Your FPS has been limited to: "..newFPS..".")
		setFPSLimit(newFPS)
	end
end
addCommandHandler("limitfps", fpsFunction)
addCommandHandler("fpslimit", fpsFunction)

Fix for climbing over certain objects

You can use this small code to fix one of high FPS issues, specifically the one which would instantly kill player climbing over some objects.

Click to collapse [-]
Client
function onClientPlayerDamage(attackerElement, damageType, bodyPart)
	local fallDamage = damageType == 54

	if not fallDamage then
		return false
	end

	local playerTask = getPedSimplestTask(localPlayer)
	local playerClimbing = playerTask == "TASK_SIMPLE_CLIMB"

	if playerClimbing then
		cancelEvent()
	end
end
addEventHandler("onClientPlayerDamage", localPlayer, onClientPlayerDamage)

See Also