INetworkRouteVisualizer

Package: inet.visualizer.contract

INetworkRouteVisualizer

module interface

Interface allows configuring different ~INetworkRouteVisualizer submodules from INI files. Such a visualizer displays active network routes in a network.

<b>See also:</b> ~NetworkRouteCanvasVisualizer, ~NetworkRouteOsgVisualizer, ~NetworkRouteVisualizer

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Implemented by

Name Type Description
NetworkRouteCanvasVisualizer simple module

Visualizes network routes on a 2D canvas. It displays a polyline arrow for each active route in the network. See the documentation of the base module for what constitutes an active route. The arrow points from the source towards the destination. If a link is used in both directions, then there are arrowheads on both ends of the arrow. Each polyline fades out over time until the route becomes inactive unless it is reinforced by another packet. The polyline automatically follows the movement of mobile nodes.

NetworkRouteOsgVisualizer simple module

Visualizes network routes on a 3D osg scene. It displays a polyline for each active route in the network. See the documentation of the base module for what constitutes an active route. Each polyline fades out over time until the route becomes inactive unless it is reinforced by another packet. The polyline automatically follows the movement of mobile nodes.

NetworkRouteVisualizer compound module

Integrates canvas and osg network route visualizers into a single module.

Used in compound modules

Name Type Description
IntegratedCanvasVisualizer compound module

Integrates all canvas visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type.

IntegratedMultiCanvasVisualizer compound module

Integrates all canvas visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type.

IntegratedMultiOsgVisualizer compound module

Integrates all osg visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type.

IntegratedOsgVisualizer compound module

Integrates all osg visualizers into a single module. It supports disabling any submodule visualizer by providing an empty string as its type.

NetworkRouteVisualizer compound module

Integrates canvas and osg network route visualizers into a single module.

Extends

Name Type Description
IVisualizer module interface

Base interface for all visualizer module interfaces in the INET Framework. Defines common parameters for specifying visualization target and subject modules. Visualizers provide graphical representation of various aspects of network simulation, such as links, traffic flows, routing paths, and network state information.

Parameters

Name Type Default value Description
visualizationTargetModule string
visualizationSubjectModule string

Properties

Name Value Description
display i=block/app

Source code

//
// Interface allows configuring different ~INetworkRouteVisualizer
// submodules from INI files. Such a visualizer displays active network routes
// in a network.
//
// @see ~NetworkRouteCanvasVisualizer, ~NetworkRouteOsgVisualizer, ~NetworkRouteVisualizer
//
moduleinterface INetworkRouteVisualizer extends IVisualizer
{
    parameters:
        @display("i=block/app");
}

File: src/inet/visualizer/contract/INetworkRouteVisualizer.ned