Nop Simulator

The nop builtin simulator plugin does nothing but fulfill the basic interface of a simulator.

Defaults

The following help can be viewed with cloe-engine usage builtin://simulator/nop:

Name: nop
Type: simulator
Path: n/a
Usage: {
  "vehicles": "array of string :: list of vehicle names to make available"
}
Defaults: {
  "vehicles": [
    "default"
  ]
}

JSON Schema

The following can be viewed with cloe-engine usage --json builtin://simulator/nop:

{
  "$id": "",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "description": "stand-in no-operation simulator",
  "properties": {
    "vehicles": {
      "description": "list of vehicle names to make available",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "title": "nop",
  "type": "object"
}