![]() |
Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
|
Go to the source code of this file.
Classes | |
| class | SCR_SpawnRequestComponentClass |
Variables | |
| SCR_SpawnRequestComponentClass | m_PlayerController |
|
protected |
Authority callback to await finalisation.
| [in] | handler | |
| [in] | data | |
| [in] | spawnedEntity |
Definition at line 415 of file SCR_SpawnRequestComponent.c.
|
protected |
| [in] | handler | |
| [in] | data | |
| [in] | spawnedEntity |
Definition at line 441 of file SCR_SpawnRequestComponent.c.
|
protected |
Sends an ask request to the authority to find out whether spawn with provided data is valid. Returned value does NOT correspond to the actual response. For reponse see available events.
Definition at line 163 of file SCR_SpawnRequestComponent.c.
|
protected |
Request is first handled on the sending side (player or authority depending on context). This method can return false and will immediately raise a SCR_ESpawnResult.BAD_REQUEST response.
Definition at line 201 of file SCR_SpawnRequestComponent.c.
|
protected |
Request is first handled on the sending side (player or authority depending on context). This method can return false and will immediately raise a SCR_ESpawnResult.BAD_REQUEST response.
| [in] | data |
Definition at line 334 of file SCR_SpawnRequestComponent.c.
|
protected |
Authority call to finalise respawn, after ProcessRequest_S (AwaitFinalization_S respectively) has finished. It is delayed to allow certain jobs (end of frame) to finish, before passing the ownership to the client.
| [in] | handler | |
| [in] | data | |
| [in] | spawnedEntity |
Definition at line 456 of file SCR_SpawnRequestComponent.c.
|
protected |
Tries to find AI agent for provided entity.
| [in] | entity |
Definition at line 606 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 55 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 62 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 523 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 554 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 540 of file SCR_SpawnRequestComponent.c.
|
protected |
Authority callback when finalisation of spawn has began.
| [in] | handler | |
| [in] | data | |
| [in] | spawnedEntity |
Definition at line 401 of file SCR_SpawnRequestComponent.c.
|
protected |
Authority call to dispatch provided data to corresponding SCR_SpawnHandlerComponent. Handles responses when handler is not found or on request success internally.
| [in] | data |
Definition at line 211 of file SCR_SpawnRequestComponent.c.
|
protected |
Authority call to dispatch provided data to corresponding SCR_SpawnHandlerComponent. Handles responses when handler is not found or on request success internally.
| [in] | data |
Definition at line 344 of file SCR_SpawnRequestComponent.c.
|
protected |
Requests respawn with provided data. ! Note that even successful request can still be denied by the authority!
| [in] | data |
Definition at line 298 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 562 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 548 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 511 of file SCR_SpawnRequestComponent.c.
|
protected |
Owner: Processes received response about current spawn process from the authority, dispatches events.
| [in] | response | The result of the respawning action. |
Definition at line 274 of file SCR_SpawnRequestComponent.c.
|
protected |
Owner: Processes received response about current spawn process from the authority, dispatches events.
| [in] | response | The result of the respawning action. |
Definition at line 583 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 571 of file SCR_SpawnRequestComponent.c.
|
protected |
Authority: Sends a response from the server to the owner about current can-respawn request.
| [in] | response | The result of the request. |
| [in] | data | The data the request was instigated with. |
Definition at line 247 of file SCR_SpawnRequestComponent.c.
|
protected |
Send a notification from the authority that the finalisation has started.
Definition at line 501 of file SCR_SpawnRequestComponent.c.
|
protected |
Authority: Sends a response from the server to the owner about current respawn request.
| [in] | response | The result of the respawning action. |
| [in] | data | The data the request was instigated with. |
Definition at line 477 of file SCR_SpawnRequestComponent.c.
|
protected |
| [in] | position |
Definition at line 531 of file SCR_SpawnRequestComponent.c.
|
protected |
Definition at line 623 of file SCR_SpawnRequestComponent.c.
| SCR_SpawnRequestComponentClass m_PlayerController |
SCR_SpawnRequestComponent <-> SCR_SpawnHandlerComponent
SCR_SpawnRequestComponent allows communication between client and the authority, SCR_SpawnHandlerComponent handles the requests on authority as desired.
The respawn request component is the client (but can be issued by authority) component of the respawn process which sends respawn requests to be process by the authority. The process is further streamlined via the usage of a unified parent manager, the SCR_RespawnComponent.