Multi user setup
This is a quick rundown on how to use the multi-user features of sparcl. It can be used to offer a collective interactive experience with an imported scene.
A simple use case: You’re visiting a world heritage site with your friends. An interactive AR experience is available there, visualizing the mechanics of a historic machinery. Without multi user feature, the machine would be seen differently on every device. With multi user feature, the machine is shown in the same state on every device connected to the service. Exactly as it would be when the actual machine would stay at that location.
The inspiration for the multiuser architecture of sparcl came from an article titled A web application with no web server?
by Ink & Switch.
Preparation for sparcl
Register a headless client with SSD
How to do this, depends on the service provider you use. The important part here is to add the peer ID for the headless client to the field description (a better place to add this info is requested).
Run the headless client
So far, there is no publicly accessible headless client available. Our idea is to run the headless client behind a lambda function. How exactly this can be done is still unclear to us, but we will get there. Until this is figured out, you can start sparcl in headless mode by adding ?peerid=<peerid>
. peerid
is the ID set in the step above.
Open the dashboard
Activate P2P connectivity
Restart sparcl to connect to the headless client
Preparation for the content
The interactivity needs to be implemented in the scene itself. The only thing to add for multi user functionality is to send events to sparcl. sparcl doesn’t interpret these events, but just sends them out to the headless client, which in turn distributes them to all at that very moment connected peers.
Register your scene with SCD
How to do this, depends on the service provider you use.
Add the names of the events to the record created with the previous step.
This is the part that is still a bit difficult. That’s why we used for samples some hardcoded events. An appropriate property to add this info to an SCR is a pending feature request and should arrive soon-ish on the SCD from Open AR Cloud. Will likely take a little bit more time for commercial providers.
Add the events to the scene
The postMessage
event is used for the communication between the iframe and sparcl.
// Sending a message to the parent window
window.parent.postMessage(msg, "*");
// Receiving messages from the parent window
window.addEventListener("message", msg => {
console.log(msg.data);
});
A concrete sample to illustrate this feature is in the works. When available, the implementation and this guide will be finished.