WCLSG: System Architecture
(This project listing describes the System Architecture Design and lessons learned from the Wirelessly-Connected Laser Shooting Gallery Project)
The WCLSG was initially inspired by a concept I had back in the freshman year of college - an idea to transform the exterior windows of my college dorm building into a laser shooting gallery. Low-cost, battery-powered targets could be hung in the windows of each student's window. A single laser gun outside the building could be used to shoot those targets, with the "hit" result being sent back to the laser gun via Wi-Fi.
The optics of shooting lasers at a building full of students didn't really settle in my brain at the time.
That, the technical challenges of the project, and the fact that I was a freshman in college with other things going on at the time killed that project. But the idea stuck in my head until the start of my senior year, when I presented an improved version of the idea to my group, which we ultimately all selected.
The Idea
Existing laser shooting galleries are expensive, inflexible, and require dedicated space for installation. There exists a niche for a system that is:
- Within a typical consumer's budget
- Flexible - targets can be moved around, added, or removed, all with little hassle
- Portable. Targets and controllers do not require wiring, can be moved anywhere, or packed away quickly.
This project was designed to accomplish these goals through the development of two hardware platforms:
Controller
The "Controller" of this system is the primary interface for users. It's a laser pistol, in shape and purpose, but also serves to control and coordinate the gameplay of the system by issuing commands to the networked "Targets." It hosts an OLED display and some interface buttons, alongside a trigger and laser diode. Without a Controller, the system as a whole does nothing. Our system was designed and developed around a single-controller setup, with all the games being single-player or hot-seat (players take turns using the same controller), but with some amount of development effort, could be reconfigured into a multi-user system.
Target
A number of "Target" devices in the system serve as targets for players to shoot at. They host an array of phototransistors and RGB LEDs to grab the attention of players. These target devices are almost entirely passive in functionality, and hold no logic related to gameplay. Outside of some basic operational functionality (pairing targets to controllers), targets only respond to network events issued by their paired controller device and issue network events of their own when they detect a laser hit.
The elevation of gameplay logic away from the Target and onto the controller allowed for incredible ease of development during gameplay testing - once the generic network responses and event callbacks were written on the target, games could be entirely developed on the controller. Any changes made would only require code to be flashed onto the controller device, which would just change the way it controlled the various targets. This made it very, very easy to iterate ideas when you only had to update a single device instead of the entire network.
"Pairing" vs. "Connected"
For our system, we utilized the painlessMesh networking library to establish connections between our various devices. As expandability and flexibility was one of our leading goals of the system's design, a mesh network allowed us to add and remove devices on the fly, without designating one device as a host. In addition, the network could relay messages between nodes, if one target couldn't access the controller, for example. If a device is part of the mesh network, it is "Connected."
Since we configured the system to share one set of mesh credentials between all devices, I envisioned some level of security through the use of a "pairing" process - targets could learn who their controller is, and a controller would know who its targets are. The player shifts the controller into a "pairing" mode, presses "pairing" buttons on the targets to shift them into a pairing mode, then shoots each target with the controller to bind the devices together. Once the targets are paired, the player then exits the pairing mode, and all the targets blink in response. A really neat user experience. Targets were now "paired" to the controller.
Networking Architecture Conclusion
Retrospectively, I don't think this was necessary, and might have introduced some unnecessary complexity into the system that we really didn't need.
Since our system is designed for single-player use, with only one controller (both in design and in existence), this "pairing" system was ultimately unnecessary. If a target isn't connected to the network, it won't be used anyway, and is likely just "off."
In addition, we didn't even really need a mesh network. While the ability for a mesh-network to adjust as necessary is neat, ultimately, users are likely to put all targets equidistant from the controller, meaning there's no advantage to trying to relay messages between targets. A standard Wi-Fi setup with the controller acting as the AP of the network would've worked fine, with only some extra software work required to make sure a controller knew when a target connected, and some sort of handshake to bind targets and controllers on the network.
This system, too, could be adjusted to include the "pairing" thing if we did want to have multiple independent single-player networks. Have a standard set of credentials on all targets, let them use that in "pairing" mode. When shot with a controller, also in pairing mode, get network credentials generated by the controller, which it then joins.
It's ultimately fine, the way we did it, but far less efficient.
For more information on the specifics of software architecture and implementation, check out the Software page