|
|
(12 intermediate revisions by 3 users not shown) |
Line 1: |
Line 1: |
− | The SShared class provides IPC methods that allow scripts to communicate with each other and objects to be passed between scripts. Variables are shared between scripts, so a namespace is required. This class does not replace [[Scripting/SNetwork]].
| + | This page has moved to: https://docs.sine.space/v/scripting/client-scripting/viewer/sshared |
− | | + | |
− | =Members=
| + | |
− | {{ScriptFunction|void|SetGlobal|(string namespace, string key, DynValue value);||Sets a global key to a value. The value can be any object type.|5=
| + | |
− | '''Space.Shared.SetGlobal'''("com.someNameHere.world", "version", "1.02");}}
| + | |
− | | + | |
− | {{ScriptFunction|DynValue|GetGlobal|(string namespace, string key);|Retrieves a previously set global variable, or returns nil.|5=
| + | |
− | local versionValue = '''Space.Shared.GetGlobal'''("com.someNameHere.world", "version");}}
| + | |
− | | + | |
− | {{ScriptFunction|void|RegisterFunction|(string ns, string func, Closure reference);| Makes func into a global function that can be accessed anywhere.|5=
| + | |
− | function someFunction(name)
| + | |
− | Space.Log("Hello " .. name);<br>
| + | |
− | end<br><br>
| + | |
− | | + | |
− | '''Space.Shared.RegisterFunction'''("com.someNameHere.world", "func", someFunction);
| + | |
− | }}
| + | |
− | | + | |
− | {{ScriptFunction|void|CallFunction|(string ns, string func, IEnumerable< DynValue > args);|Calls the registered function with the specified arguments.|5=
| + | |
− | '''Space.Shared.CallFunction'''("com.someNameHere.world", "func",{"Smith"});}}
| + | |
− | | + | |
− | {{ScriptFunction|void|RegisterBroadcastFunction|(string ns, string func, Closure reference);|Makes func into a global function that can be accessed anywhere.|5=
| + | |
− | function someFunction(name)
| + | |
− | Space.Log("Hello " .. name);<br>
| + | |
− | end<br><br>
| + | |
− | | + | |
− | '''Space.Shared.RegisterBroadcastFunction'''("com.someNameHere.world", "func", someFunction);}}
| + | |
− | | + | |
− | | + | |
− | {{ScriptFunction|int|CallBroadcastFunction|((string ns, string func, IEnumerable< DynValue > args);|Calls every registered broadcast function with the specified arguments,
| + | |
− | | + | |
− | and returns the number of calls queued.|5=
| + | |
− | ''-- Script A: Receiver''<br>
| + | |
− | function someFunction(status)<br>
| + | |
− | if status == "start"<br>
| + | |
− | then Space.Log("Do receiver 1 procedures.")<br>
| + | |
− | end<br>
| + | |
− | end<br><br>
| + | |
− | | + | |
− | Space.Shared.RegisterBroadcastFunction("com.someNameHere.world", "func", someFunction);<br><br>
| + | |
− | | + | |
− | | + | |
− | ''-- Script B: Another Receiver''<br>
| + | |
− | function someFunction(status)<br>
| + | |
− | if status == "start"<br>
| + | |
− | then Space.Log("Do receiver 2 procedures.")<br>
| + | |
− | end<br>
| + | |
− | end<br><br>
| + | |
− | | + | |
− | Space.Shared.RegisterBroadcastFunction("com.someNameHere.world", "func", someFunction);<br><br>
| + | |
− | | + | |
− | | + | |
− | ''--Script C: Sender''<br>
| + | |
− | local ball = Space.Host.ExecutingObject;<br>
| + | |
− | ball.SubscribeToEvents();<br><br>
| + | |
− | | + | |
− | function onDown()<br>
| + | |
− | local queue = '''Space.Shared.CallBroadcastFunction'''("com.someNameHere.world", "func", {"start"});<br>
| + | |
− | Space.Log("number in queue: " .. queue);<br>
| + | |
− | end<br><br>
| + | |
− | | + | |
− | | + | |
− | ball.OnMouseDown(onDown);}}
| + | |
− | | + | |
− | | + | |
− | {{Scripting Navbox}}
| + | |