Lou Montana/Sandbox – User

From Bohemia Interactive Community
Jump to navigation Jump to search
(Create Initialisation Order potential replacement)
m (Add some more data)
Line 110: Line 110:
| <!-- Dedicated Server -->
| <!-- Dedicated Server -->
| <!-- Hosted Server -->
| <!-- Hosted Server -->
| <!-- Multiplayer Client -->
| {{n/a}} <!-- Multiplayer Client -->
| <!-- JIP MP Client -->
| {{n/a}} <!-- JIP MP Client -->


|- style="background-color: #DEF0AD"
|- style="background-color: #DEF0AD"
Line 117: Line 117:
| [[Scheduler#Scheduled Environment|Scheduled]]
| [[Scheduler#Scheduled Environment|Scheduled]]
| <!-- Single Player -->
| <!-- Single Player -->
| <!-- Dedicated Server -->
| {{n/a}} <!-- Dedicated Server -->
| <!-- Hosted Server -->
| <!-- Hosted Server -->
| <!-- Multiplayer Client -->
| <!-- Multiplayer Client -->
Line 126: Line 126:
| [[Scheduler#Scheduled Environment|Scheduled]]
| [[Scheduler#Scheduled Environment|Scheduled]]
| <!-- Single Player -->
| <!-- Single Player -->
| <!-- Dedicated Server -->
| {{n/a}} <!-- Dedicated Server -->
| <!-- Hosted Server -->
| ?? <!-- Hosted Server -->
| <!-- Multiplayer Client -->
| <!-- Multiplayer Client -->
| <!-- JIP MP Client -->
| <!-- JIP MP Client -->
Line 157: Line 157:
| <!-- Multiplayer Client -->
| <!-- Multiplayer Client -->
| <!-- JIP MP Client -->
| <!-- JIP MP Client -->
|-
| [[remoteExec]]'s [[Multiplayer Scripting#Join In Progress|JIP]] queue
| {{n/a}}
| {{n/a}} <!-- Single Player -->
| {{n/a}} <!-- Dedicated Server -->
| {{n/a}} <!-- Hosted Server -->
| {{n/a}} <!-- Multiplayer Client -->
| 42 <!-- JIP MP Client -->


|- style="background-color: #EEE"
|- style="background-color: #EEE"

Revision as of 20:53, 19 May 2023

Order of Initialisation (use column sorting for respective machine order)
Task Exec Environment Machine
Single Player Dedicated Server Hosted Server Multiplayer Client JIP MP Client
Functions with recompile attribute are recompiled N/A 1 1 1 1 1
Functions with preInit attribute are called Unscheduled 2 2 2 2 2
Object Init Event Handlers are called Unscheduled 3 3 3 3 Unchecked
Expressions of Eden Editor entity attributes are called[1] Unscheduled 4 4 4 Unchecked Unchecked
Object initialisation fields are called Unscheduled 5 5 5 4 3
init.sqs is executed 6
init.sqf is executed Scheduled[2]
Expressions of Eden Editor scenario attributes are called[3] Unscheduled
Persistent functions are called
Modules are initialised Unchecked
initServer.sqf is executed Scheduled N/A N/A
initPlayerLocal.sqf is executed Scheduled N/A
initPlayerServer.sqf is executed on the server Scheduled N/A ??
Functions with postInit attribute are called Scheduled[2]
init.sqs is executed Scheduled
init.sqf is executed Scheduled
remoteExec's JIP queue N/A N/A N/A N/A N/A 42
Scenario going N/A
exit.sqf
exit.sqs
"Ended" Mission Event Handler
"MPEnded" Mission Event Handler


See Also


Notes

  1. isPlayer _entity does not return true immediately. Once the entity has become a player, it is transfered to the client.
  2. 2.0 2.1 Note in single player that while the environment is Scheduled (canSuspend returns true), the engine seems to wait until the script is done executing, essentially behaving similarly to an Unscheduled environment - infinite loops will freeze the game, uiSleep may pause the game for up to ~20s (postInit), waitUntil can cause catastrophic issues, etc.
  3. player is not available immediately.