Skip to the content.

Technical Document - Function Description - Cube class

Table of Contents


1. Overview


Cube modules are multi-platform modules that allow you to run Cube running on Unity system (Simulator) and a real Cube (the real) with the same code.


The directory structure is as shown in the figure below.


Cube  +-------------------------------+ Cube-root directory
├── CoreCube  +-----------------------+ Core Cube Directory
│   ├── Real  +-----------------------+ Real Implementation Directory
│   │   ├── Versions  +---------------+ Version directory of real implementation
│   │   │   ├── CubeReal_ver2_0_0.cs  + 2.0.0 Real Implementation Class
│   │   │   ├── CubeReal_ver2_1_0.cs  + 2.1.0 Real Implementation Class
│   │   │   ├── CubeReal_ver2_2_0.cs  + 2.2.0 Real Implementation Class
│   │   │   ├── CubeReal_ver2_3_0.cs  + 2.3.0 Real Implementation Class
│   │   │   └── CubeReal_ver2_4_0.cs  + 2.4.0 Real Implementation Class
│   │   └── CubeReal.cs  +------------+ Real implementation abstract class
│   ├── Sim    +----------------------+ Simulator Implementation Directory
│   │   └── CubeUnity.cs  +-----------+ Simulator implementation class
│   ├── Cube.cs  +--------------------+ Cube abstract class
│   └── CubeOrderBalancer.cs  +-------+ Instruction send control class
├── CubeConnecter.cs  +---------------+ Connection class
├── CubeHandle.cs  +------------------+ Extended functionality class
├── CubeManager.cs  +-----------------+ Code Simplification Class
└── CubeScanner.cs  +-----------------+ Search class


2. Structure of Cube class



Cube Class

This is the interface for operating Cube.
The contents of all functions and properties are not yet implemented, and all processing is left to the derived class.
By doing so, it absorbs differences in internal implementation between execution environments and versions, and enables abstract programming with polymorphism.
To maintain reusability, there is no functionality in this class other than toio™ Core Cube Technical Specification (Communication Specification).
To use/extend functions other than toio™ Core Cube technical specifications (communication specifications), use extension classes such as CubeHandle, CubeNavigator, etc.

Implementation Code:Cube.cs

CubeUnity

This is Cube class for Simulator that runs when Unity editor is executed.
There is no BLE protocol version resolution, so only one version will work.

Implementation Code:CubeUnity.cs

CubeReal

This is Cube class that handles BLE communication with the real cube.
Most of the internal implementation is done in the derived class, except for the minimum common processing.

Implementation Code:CubeReal.cs

ver2_0_0:

ver2_1_0:

ver2_2_0:

ver2_3_0:

ver2_4_0:


3. How the Connection Works

As an example, here is a simple Cube move code.
When this code is executed, the move function will be called after connecting to Cube.

using UnityEngine;
using toio;

public class SimpleScene : MonoBehaviour
{
    float intervalTime = 0.05f;
    float elapsedTime = 0;
    Cube cube;

    // Asynchronous initialization
    // By using the async/await keyword, which is a standard C# feature, it waits for the end of each search and connection
    // async: Asynchronous keyword
    // await: Standby keyword
    async void Start()
    {
      	// Search for Bluetooth devices
        var peripheral = await new CubeScanner().NearestScan();
       	// Connect to devices and generate Cube variables
        cube = await new CubeConnecter().Connect(peripheral);
    }

    void Update()
    {
        // Early return until Cube variable generation is complete
        if (null == cube) { return; }
        // Measure the elapsed time
        elapsedTime += Time.deltaTime;

      	// If more than 50 milliseconds have passed since the last command
        if (intervalTime < elapsedTime)
        {
            elapsedTime = 0.0f;
            // Left motor speed: 50, Right motor speed: -50, Control time: 200 msec
            cube.Move(50, -50, 200);
        }
    }
}


In this chapter, we will discuss the search connection program part.

async void Start()
{
  // Search for Bluetooth devices (3.1. Search)
  var peripheral = await new CubeScanner().NearestScan();
  // Connect to the device and create Cube variables (3.2. Connect)
  cube = await new CubeConnecter().Connect(peripheral);
}


For those of you who want to get a quick overview, here is a quick diagram of the program.
Since this program runs on multiple platforms, there are two internal implementations (real implementation/simulator implementation) for the Scanner module and the Connecter module respectively.


Overview of the search connection program (real implementation)



The mechanism shown in the figure above is used for searching and connecting.

  1. Scanner.Scan function to obtain the Peripheral variable.
  2. Connecter.Connect function to get the Characteristic array variable.
  3. Get the corresponding Cube variable by referring to the version table held by Connecter


Overview of the search connection program (simulator implementation)



The mechanism shown in the figure above is a dummy process for searching and connecting.

  1. Scanner.Scan function to get UnityPeripheral variable.
  2. Connecter.Connect function to get UnityCube variables.


3.1. Search (Scanner)



toio SDK for Unity has one module to search for Bluetooth devices.

CubeScanner class:

CubeScanner

By calling the NearestScan function, the device with the highest signal strength is returned as the return value in a synchronous manner.
By using the async/await keywords to wait for the scan to finish, it is the same as synchronous processing from the caller’s perspective.

Calling the NearScan function will return synchronously a specified number of devices in the order of increasing signal strength (satisfiedNum) as the return value. This is the same as the synchronous process.

The StartScan function is an asynchronous function that can run scans in the background if called without awaiting. The list of scanned cubes is received and processed in the form of a callback.

Calling the StopScan function will interrupt the scan.

The internal implementation is divided into simulator implementation and real implementation, and the connection method can be specified by the constructor parameters. In the basic configuration, the internal implementation automatically changes depending on the build target, so you do not need to write separate code for each platform. If you want to specify the connection method explicitly, please refer to Cube Connection Settings.
It is implemented by inheriting the interface for the purpose of extensibility to CubeManager.

Simulator Implementation:

Real Implementation:

Interface Code

public interface CubeScannerInterface
{
    bool isScanning { get; }
    UniTask<BLEPeripheralInterface> NearestScan(float waitSeconds = 0f);
    UniTask<BLEPeripheralInterface[]> NearScan(int satisfiedNum, float waitSeconds = 3.0f);
    UniTask StartScan(Action<BLEPeripheralInterface[]> onScanUpdate, Action onScanEnd = null, float waitSeconds = 10f);
    void StopScan();
}


3.2. Connecter



CubeConnecter’s role is to connect to BLE device and adapt the BLE protocol version (real implementation only).
The internal implementation is divided into simulator implementation and real implementation, and the internal implementation changes automatically depending on the build target, so you don’t need to write separate code for each platform. async/await keyword is used to wait for the end of the connection, which is the same as synchronous processing from the caller’s point of view. The following is an example.
CubeManager is implemented by inheriting its interface for the purpose of extensibility.

Connect to Cube by calling the Connect function.
By calling the disconnect function, we can disconnect the communication with the connected Cube.

Simulator implementation:

  1. Get a GameObject from UnityPeripheral(GameObject)
  2. Create CubeUnity variable with GameObjet as argument (BLE protocol version adaptation is not implemented in Simulator version)

Real implementation:

  1. Connect to Peripheral (Bluetooth device) and get Characteristic (function) array
  2. Get the BLE protocol version
  3. Refer to the version table that was added in advance, and generate Cube variables (CubeReal_verX_X_X) that are adapted to the BLE protocol


Summary Code

public interface CubeConnecterInterface
{
    Task<Cube> Connect(BLEPeripheralInterface peripheral);
    Task<Cube[]> Connect(BLEPeripheralInterface[] peripherals);
    Task ReConnect(Cube cube, BLEPeripheralInterface peripheral);
}

/// <summary>
/// It refers to the BLE protocol version of CoreCube and generates Cube class according to the version.
/// </summary>
public class CubeConnecter : CubeConnecterInterface
{
#if UNITY_EDITOR
    public async Task<Cube> Connect(BLEPeripheralInterface peripheral)
    {
        /* return CubeUnity */
    }

    public async Task<Cube[]> Connect(BLEPeripheralInterface[] peripherals)
    {
        /* return CubeUnity[] */
    }

    public Task ReConnect(Cube cube, BLEPeripheralInterface peripheral)
    {
        return null;
    }
#else
    private Dictionary<string, Cube> versionTable = new Dictionary<string, Cube>();
    public CubeConnecter()
    {/*
        versionTable.add("2.0.0", CubeReal_ver2_0_0)
        versionTable.add("2.1.0", CubeReal_ver2_1_0)
        versionTable.add("2.2.0", CubeReal_ver2_2_0)
    */}

    public async Task<Cube> Connect(BLEPeripheralInterface peripheral)
    {/*
        characteristics ← connect(peripheral)
        version ← get_version(characteristics)
        cube ← versionTable[version]
        return cube
    */}

    public async Task<Cube[]> Connect(BLEPeripheralInterface[] peripherals)
    {/*
    	cubes = []
        for i = 1 to peripherals.len do
            characteristics ← connect(peripherals[i])
            version ← get_version(characteristics)
            cube ← versionTable[version]
            cubes.add(cube)
  	    return cubes
    */}

    public async Task ReConnect(Cube cube, BLEPeripheralInterface peripheral)
    {
        /* connect(peripheral) */
    }
#endif
}


Implementation Code:

Sample Code:



4. Send command



All function calls to Cube class have different internal implementations depending on inheritance.
CubeUntiy, Cube class for simulator, sends instructions to CubeSimulator.
CubeReal derived class, which is Cube class for BLE communication, sends commands to BLE to send byte arrays.
Although the internal implementations of CubeUnity / CubeReal derived classes are different, they commonly delegate instruction transmission to the CubeOrderBalancer class.

Roughly speaking, the following procedure is used to send commands.

  1. Add instructions from CubeUnity / CubeReal derived classes to the instruction queue of CubeOrderBalancer class.
  2. When executing the Update function of CubeOrderBalancer, only one instruction is taken from the instruction queue and sent.

There are two reasons for delegating instruction transmission to CubeOrderBalancer class.

CubeOrderBalancer

Therefore, this class provides the following two functions

  1. Control of instruction interval (45ms)

    This class has an instruction queue, and instructions can be added using the AddOrder function.
    In the Update function, if the elapsed time since the last instruction of the respective Cube is 45ms or more, it will retrieve one instruction from the instruction queue and send it.

  2. Set the priority of the command (strong/weak)

    Strong instructions: If there are weak instructions and weak instructions in the queue, the weak instructions are discarded and sent first. If there are multiple strong instructions in the queue, the strong instructions are taken out of the queue and sent using the first-in first-out (FIFO) method. Strong instructions that are not sent will continue to remain in the queue and will be sent after an interval of 45ms or more by controlling the instruction interval. Therefore, the probability of an instruction being ignored can be reduced by using a strong instruction for a single, important instruction (sound, LED light, etc.).

    Weak instructions: If the queue is mixed with strong instructions, the weak instructions will not be sent and will be discarded. If there are multiple weak instructions in the queue, only the last instruction in the queue will be sent, and all other instructions will be discarded. In the case of movement instructions (such as navigation) that are sent frequently, it may not be a problem to ignore some instructions. By making these instructions that can be ignored as weak instructions, strong instructions with high priority can be sent stably in contrast.

Implementation Code:CubeOrderBalancer.cs


5. How to extend functionality

There are several possible ways to extend the functionality of toio SDK for Unity.

5.1. How to add a function to Cube class

As explained in Structure of Cube Class, Cube class has an inheritance relationship.Therefore, functions can be added by adding virtual functions to the base Cube class and then overriding the functions in derived classes.


5.2. How to add a BLE protocol version

  1. Create CubeReal derived class that corresponds to the newly added BLE protocol version.
  2. Register the generating function in the versionTable member variable of CubeConnecter class.


5.3. To change the communication program

By changing the internal implementation of BLE interface, only the communication program can be changed without making any changes to the existing toio™ program.