NED File src/inet/node/base/NodeBase.ned
Name | Type | Description |
---|---|---|
NodeBase | compound module |
This module contains the most basic infrastructure for network nodes that is not strictly communication protocol related. |
Source code
// // Copyright (C) OpenSim Ltd. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program; if not, see <http://www.gnu.org/licenses/>. // package inet.node.base; import inet.common.lifecycle.NodeStatus; import inet.mobility.contract.IMobility; import inet.node.inet.INetworkNode; import inet.power.contract.IEnergyGenerator; import inet.power.contract.IEnergyManagement; import inet.power.contract.IEnergyStorage; // // This module contains the most basic infrastructure for network nodes that is // not strictly communication protocol related. // // See derived modules: ~StandardHost, ~WirelessHost, ~AdhocHost, ~Router, etc. // module NodeBase like INetworkNode { parameters: @networkNode; @labels(node,ethernet-node,wireless-node); bool hasStatus = default(false); string osgModel = default(""); // 3D model for OSG visualization, no 3D model by default string osgModelColor = default(""); // tint color, no colorization by default string canvasImage = default(""); // image for canvas visualization, no image by default string canvasImageColor = default(""); // tint color, no colorization by default mobility.subjectModule = default("^"); *.mobilityModule = default(exists(mobility) ? absPath(".mobility") : ""); *.energySourceModule = default(exists(energyStorage) ? absPath(".energyStorage") : ""); *.energyGeneratorModule = default(exists(energyGenerator) ? absPath(".energyGenerator") : ""); @display("bgb=1256,672"); submodules: status: NodeStatus if hasStatus { parameters: @display("p=125,80;is=s"); } energyStorage: <default("")> like IEnergyStorage if typename != "" { parameters: @display("p=125,320;is=s"); } energyManagement: <default("")> like IEnergyManagement if typename != "" { parameters: @display("p=125,400;is=s"); } energyGenerator: <default("")> like IEnergyGenerator if typename != "" { parameters: @display("p=125,480;is=s"); } // TODO: move mobility right after status to have it in the same order as in their positions, changes fingerprints mobility: <default("")> like IMobility if typename != "" { parameters: @display("p=125,160;is=s"); } }