Step 2 - Create the headlights indicator

In this step of the tutorial you create the headlights indicator and use a state manager to set the appearance of the headlights indicator in different states.

../../_images/indicator-step2-completed-with-needle.gif

Create the headlights indicator

In this section you create the headlights indicator.

To create the headlights indicator:

  1. In the Node Tree right-click the FuelLevel node, select Duplicate, press the F2 key, and rename the node to Headlights.

    ../../_images/create-duplicate-node.png ../../_images/headlights-node-created.png
  2. In the Node Tree select the Headlights node and in the Properties click remove-binding next to both bindings to remove them.

    ../../_images/remove-bindings.png
  3. In the Node Tree select the Headlights node, in the Preview select the Node tool node-tool and drag the Headlights node to the right side of the clock.

    Tip

    Hold down the Shift key when you drag a node with the Node tool to move the node in a true horizontal or vertical line.

    ../../_images/headlights-node-duplicated-preview.png
  4. In the Node Tree select the Headlights node, in the Properties right-click the SecondaryColor property and select Remove.

    ../../_images/properties-remove-secondarycolor.png
  5. In the Node Tree select the Headlights node and in the Properties set:

    • Layout Width to 41 and Layout Height to 31

      This way you set the size of the headlights indicator image that you want to draw from the TileAtlas texture.

    • OffsetInTileAtlas property fields:

      • X to 0

      • Y to 0

      This way you set the distance in pixels from the top left corner of the TileAtlas texture to the low beam headlights indicator image that you want to show.

    • PrimaryColor property field Hue (H) to 95

      This way you draw the headlights indicator using green color.

    ../../_images/set-headlights-node-properties.png ../../_images/headlights-node-configured-preview.png

Control the headlights indicator

In this section you use a state manager to set the appearance of the headlights indicator in different states.

To control the headlights indicator:

  1. In the Node Tree select the Headlights node, and in the State Tools click Create State Manager.

    You can find the State Tools window below the Preview window.

    Kanzi Studio creates a state manager and assigns it to the Headlights node.

    ../../_images/create-state-manager2.png
  2. In the State Tools click Create State three times to create three states, double-click the name of each state, and rename the states to Off, Low, and High.

    You use these states to set the appearance of the Headlights indicator:

    • Off state when the headlights are off

    • Low state when the low beam headlights are on

    • High state when the high beam headlights are on

    ../../_images/create-three-states.png ../../_images/three-states-created.png
  3. In the State Tools click <No Controller Property>, select + Create Property Type and in the Create Property Type window set:

    • Name to Indicator.Headlights

    • Type to Enum

    In the Library > Property Types > Indicator Kanzi Studio creates the Indicator.Headlights enumeration property type whose enumeration keys have the names of the states that you created. You use this custom property type to switch the Headlights indicator between the Off, Low, and High states.

    ../../_images/create-controller-property1.png ../../_images/create-indicator-enum.png ../../_images/controller-property-in-library.png
  4. In the Node Tree select the Headlights node, in the Properties right-click, and select Add Property > Node > Visible.

    With the Visible property you can control the visibility of a node.

    ../../_images/add-visible-property-to-node.png
  5. In the State Tools in the Off state click store-current-values to save the current value of the Visible property to that state.

    Since the Visible property is disabled in the Off state, the Headlights node is not visible in that state.

    ../../_images/set-off-state-properties.png ../../_images/adding-visible-property.png
  6. In the Properties enable the Visible property, in the State Tools in the Low state click store-current-values to save the current value of the Visible property to that state.

    By enabling the Visible property for the Low state, you make the Headlights node visible in that state.

    ../../_images/set-low-state-properties.png
  7. In the Properties set:

    • OffsetInTileAtlas property field Y to 31

    • PrimaryColor property field Hue (H) to 163

    ../../_images/configure-high-state-properties.png
  8. In the State Tools in the High state click store-current-values to save the current values of the properties to the High state.

    ../../_images/set-high-state-properties.png
  9. In the State Tools click edit-state-manager to deactivate the State Tools.

  10. In the Node Tree select the Headlights node, in the Properties right-click, and select Add Property > Controller Properties > Indicator.Headlights.

    ../../_images/add-lights-property-to-node.png

In the Node Tree, select the Headlights node and in Properties set the Indicator.Headlights property to:

  • Off to turn the headlights indicator off

  • Low to show the low beam headlights indicator

  • High to show the high beam headlights indicator

../../_images/indicator-step2-completed-with-needle.gif

< Previous step

See also

To learn how to use state managers and modify the transitions between states, see Using state managers.

To learn more about different custom property types you can create, see Creating property types.

To learn about the underlying principles of Kanzi properties, see Property system.