BlocksMonitor is a simple JUCE application that shows currently connected Lightpad and Control Block devices and visualises touches and button presses. It also displays some basic information about the Blocks.
Generate a Projucer project from the file located in the examples/
folder, then navigate to the BlocksMonitorDemo/Builds/
directory and open the code project in your IDE of choice. Run the application and connect your Blocks (if you do not know how to do this, see Connecting BLOCKS). Any devices that you have connected should now show up in the application window and this display will be updated as you add and remove Blocks. Lightpads are represented as a black square and will display the current touches as coloured circles, the size of which depend on the touch pressure, and Control Blocks are shown as rectangles containing the LED row and clickable buttons on the hardware. If you hover the mouse cursor over a Block, a tooltip will appear displaying the name, UID, serial number and current battery level.
One of the fundamental concepts of the BLOCKS API is topology - a topology is a set of physically connected Blocks and the connections between them. Knowing when the topology has changed and accessing a data structure containing the current topology is the basis of any Blocks application.
To access the current topology, BlocksMonitorDemo
inherits from the TopologySource::Listener base class [1] and implements the TopologySource::Listener::topologyChanged() method [2], a callback which is used to inform listeners when any physical devices have been added or removed.
In order to receive these callbacks, BlocksMonitorDemo
contains an instance of the PhysicalTopologySource class [3] and registers itself as a listener to this object in its constructor [4].
When the topologyChanged()
method is called, this object can be used to access the updated topology through the PhysicalTopologySource::getCurrentTopology() method [5] which returns a BlockTopology struct containing an array of currently connected Block objects and an array of BlockDeviceConnection structs representing the connections between them.
The array of Block objects contained in the BlockTopology struct can be used to access individual Block objects [1] and determine their type using the Block::getType() method [2].
The application uses this information to construct an on-screen representation of the currently connected Blocks by creating either a LightpadComponent
object [3] or a ControlBlockComponent
object [4] for each Block in the current topology.
Both of these classes derive from BlockComponent
, a relatively simple base class that contains some virtual functions for painting the Block on screen and handling callbacks from the touch surface and/or buttons on the Block.
In its constructor, BlockComponent
takes a pointer to the Block object that it represents and adds itself as a listener to the touch surface (if it is a Lightpad) and buttons using the Block::getTouchSurface() and Block::getButtons() methods, respectively.
It inherits from the TouchSurface::Listener and ControlButton::Listener classes and overrides the TouchSurface::Listener::touchChanged(), ControlButton::Listener::buttonPressed() and ControlButton::Listener::buttonReleased() methods to call its own virtual methods, which are implemented by the LightpadComponent
and ControlBlockComponent
classes to update the on-screen components.
To visualise touches on the Lightpad, LightpadComponent
contains an instance of the TouchList class called touches
and calls the TouchList::updateTouch() method whenever it receives a touch surface listener callback in the LightpadComponent::handleTouchChange()
method.
The LightpadBlock::paint()
method then iterates over the current TouchSurface::Touch objects in the TouchList and visualises them on the component at 25Hz.
The ControlBlockComponent
class represents a generic Control Block with 15 LEDs, 8 circular buttons and 1 rounded rectangular button. When a button is pressed on the physical Control Block, the BlockComponent::handleButtonPressed()
function is called and this class uses the ControlButton::ButtonFunction variable to determine which button was pressed and should be activated on the on-screen component.
The same process is repeated for when the button is released.
This class also overrides the BlockComponent::handleBatteryLevelUpdate()
method to update which LEDs should be on based on the battery level, which is accessed in the BlockComponent
base class using the Block::getBatteryLevel() and Block::isBatteryCharging() methods.
These callback methods are a simple and powerful way to get user input from the Blocks and use this data to drive some process in your application. In this example, the input is simply mirrored on the screen but it could be used to control any number of things such as audio synthesis (see the BlocksSynth example) and graphics (see the BlocksDrawing example).
The BlockTopology struct returned by the PhysicalTopologySource::getCurrentTopology()
method also contains an array of BlockDeviceConnection objects representing all the current DNA port connections between Blocks in the topology. A single BlockDeviceConnection struct describes a physical connection between two ports on two Blocks and contains a Block::UID and Block::ConnectionPort object for each of the two devices.
This information is used to calculate the position and rotation of each connected Block and update the corresponding topLeft
and rotation
member variables of its BlockComponent
so that the correct topology is displayed on the screen. The topLeft
variable is a Point that describes the position of the top left of the BlockComponent
in terms of logical device units relative to the top left of the master Block at Point (0, 0).
Initially, all BlockComponent
instances have the topLeft
position (0, 0) and the BlocksMonitorDemo::positionBlocks()
method iterates first over all of the Blocks connected to the master Block and then any remaining Blocks and calculates the correct topLeft
Point and rotation
for each using the array of BlockDeviceConnection objects.
Then, in the BlocksMonitorDemo::resized()
method these attributes are used to correctly position the components.
This tutorial and the accompanying code has introduced the BlockTopology and Block objects, and demonstrated how to receive callbacks from connected Blocks when the touch surface or buttons are pressed, allowing you to use this input in your own applications.