![]() |
Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
|
Class for sending RPC over network. More...
Private Member Functions | |
| void | JsonSerializer () |
| void | ~JsonSerializer () |
| proto bool | ReadFromString (void variable_in, string jsonString, out string error) |
| Json string deserialization to script variable. | |
| proto bool | WriteToString (void variable_out, bool nice, out string result) |
| Script variable serialization to json string. | |
| Private Member Functions inherited from Serializer | |
| void | Serializer () |
| void | ~Serializer () |
Class for sending RPC over network.
Definition at line 49 of file gameplay.c.
|
inlineprivate |
Definition at line 51 of file gameplay.c.
|
inlineprivate |
Definition at line 52 of file gameplay.c.
Json string deserialization to script variable.
| variable_in | script variable to be deserialized from string |
| jsonString | the input string |
| error | from the deserialization. Is used only if the return value of the function is false |
Referenced by GetControlMappingInfo(), and UIScriptedMenu::GetControlMappingInfo().
Script variable serialization to json string.
| variable_out | script variable to be serialized to string |
| nice | if the string should be formated for human readability |
| result | from the serialization, output or error depending on the return value |