Mission Optimisation: Difference between revisions
Lou Montana (talk | contribs) m (Add Arma 3: Performance Optimisation link) |
Lou Montana (talk | contribs) m (Text replacement - "\{\{( *)Informative( *)\|" to "{{$1Feature$2|$2Informative$2|") |
||
Line 1: | Line 1: | ||
{{TOC|side}} | {{TOC|side}} | ||
{{ Informative | This page is about [[Mission Optimisation]]. For ''scripting'' optimisation, see [[Code Optimisation]]. }} | {{ Feature | Informative | This page is about [[Mission Optimisation]]. For ''scripting'' optimisation, see [[Code Optimisation]]. }} | ||
== Introduction == | == Introduction == | ||
Line 25: | Line 25: | ||
** If the game keeps having low FPS when running @ 1024×768/low textures then your CPU is most likely the issue. Mission scripts may be performance-hogging too. | ** If the game keeps having low FPS when running @ 1024×768/low textures then your CPU is most likely the issue. Mission scripts may be performance-hogging too. | ||
{{ Important | Please note that [[viewDistance|view distance]] (among other settings) impacts both GPU and CPU! }} | {{ Important | Please note that [[viewDistance|view distance]] (among other settings) impacts both GPU and CPU! }} | ||
{{ Informative | [[viewDistance|View distance]] can be separately set for each clients independently from the server's value through scripting.<br> | {{ Feature | Informative | [[viewDistance|View distance]] can be separately set for each clients independently from the server's value through scripting.<br> | ||
This can make or break performance for the client. }} | This can make or break performance for the client. }} | ||
Line 47: | Line 47: | ||
== Performance impact table == | == Performance impact table == | ||
{{Informative| | {{Feature|Informative| | ||
: {{Colorball|red|1.125}} means a heavy impact on performance<br> | : {{Colorball|red|1.125}} means a heavy impact on performance<br> | ||
: {{Colorball|orange|1.125}} means an average impact<br> | : {{Colorball|orange|1.125}} means an average impact<br> | ||
Line 70: | Line 70: | ||
* If a client has a low-end machine, they shouldn't lead a group of many AIs as these would then be locally computed. | * If a client has a low-end machine, they shouldn't lead a group of many AIs as these would then be locally computed. | ||
* [[Arma 3 Dynamic Simulation]] allows you to freeze AI that are distant from players. Many distance settings should be set according to the mission. | * [[Arma 3 Dynamic Simulation]] allows you to freeze AI that are distant from players. Many distance settings should be set according to the mission. | ||
{{ Informative | If you own more than one average computer, you could consider [[Arma 3 Headless Client|Headless client]] to offload AI from the server. }} | {{ Feature | Informative | If you own more than one average computer, you could consider [[Arma 3 Headless Client|Headless client]] to offload AI from the server. }} | ||
|- | |- | ||
| | | | ||
Line 92: | Line 92: | ||
** {{arma2}}'s [[Garbage Collector]] | ** {{arma2}}'s [[Garbage Collector]] | ||
** {{tkoh}}'s [[BIS_fnc_GC]] | ** {{tkoh}}'s [[BIS_fnc_GC]] | ||
{{ Informative | Only the ''on-screen'' objects will strongly impact GPU. }} | {{ Feature | Informative | Only the ''on-screen'' objects will strongly impact GPU. }} | ||
|- | |- | ||
| | | | ||
Line 151: | Line 151: | ||
-->[_var1, _var2] [[spawn]] TAG_fnc_MyFunction;<br><!-- | -->[_var1, _var2] [[spawn]] TAG_fnc_MyFunction;<br><!-- | ||
-->(...) {{cc|other unscheduled code}}</code> | -->(...) {{cc|other unscheduled code}}</code> | ||
{{ Informative | See also [[Scheduler#Where code starts unscheduled|Where code starts unscheduled]]. }} | {{ Feature | Informative | See also [[Scheduler#Where code starts unscheduled|Where code starts unscheduled]]. }} | ||
|} | |} | ||
Revision as of 00:02, 7 February 2021
Introduction
This article will try to be a general guide about improving your mission's performance.
As usual, moderation is the key; do not expect to find on this page a magical solution that makes it possible to run thousands of AI at 144 FPS. Everything comes at a cost, the tweaks here will simply allow you to locate issues and calibrate your mission properly.
Before anything
Before optimising anything, make sure you do not have any performance issue running the game itself:
- Read Arma 3: Performance Optimisation
- Open the editor, place a unit in the area you like and test your computer.
- You can get current FPS in Arma 3 by going into video options or using diag_fps
- Steam allows you to display FPS in a screen corner, in Settings > In game > FPS Counter
- Use (unofficial) Performance Guides to get better performances:
- Play your mission in singleplayer. If your mission runs fine, its network messages might very well be the issue. See Multiplayer Scripting for good practice tips.
- Usual bottlenecks:
- Lower your graphical settings (resolution, textures). If you get way better performances, at least your GPU limits you.
- If the game keeps having low FPS when running @ 1024×768/low textures then your CPU is most likely the issue. Mission scripts may be performance-hogging too.
Creating your mission
- Be sure to create your scripts with the latest available commands and functions.
- In Arma 3 use remoteExec / remoteExecCall and DITCH BIS_fnc_MP FOR GOOD! See Arma 3 Remote Execution for more information.
- In Arma 2 network communication is done using the Arma 2: Multiplayer Framework.
- Use the available frameworks and functions for each topic, unless you replace them by third-party ones:
Performance impact table
Topic | CPU | GPU | Net- work |
Solution |
---|---|---|---|---|
AI unit quantity |
| |||
Object quantity |
The less objects, the more FPS you will have.
| |||
General script mistakes |
Having too many scripts running is a cause for severe performance issues and execution delays in singleplayer as well as multiplayer.
| |||
High-frequency scripts |
Checking a condition too often is usually a source of poor performance. Does your code execution need to be frame-perfect, or can you afford a delay of a few seconds?
| |||
High-frequency network messages |
| |||
Unscheduled code |
Unscheduled code can have a high impact on the framerate, as such code is not subject to the scheduler's management (as its name suggests) and will run without limitation. Cyclic unscheduled low-performance code can make the game unplayable, up to freezing it. |
What else?
If you have applied all these recommendations and your mission still doesn't run well in multiplayer (but does in singleplayer), it might be caused by mods that you are running which could be badly, or not at all, optimised.
If you want to be sure, run the same mission with and without mods. If you have a big difference in performance, look no further.
Performance Diagnostic tools
Server commands
- #monitor 5
- Shows performance information of the server. Interval 0 means to stop monitoring.
- #monitords 5
- Shows performance information in the dedicated server console. Interval 0 means to stop monitoring. (since Arma 3 v1.64)
Diagnostic commands
All builds | Diagnostic build only |
---|---|