Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- // Copyright (C) 2008 Christoph Sommer <[email protected]>
- //
- // Documentation for these modules is at http://veins.car2x.org/
- //
- // This program is free software; you can redistribute it and/or modify
- // it under the terms of the GNU 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 General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program; if not, write to the Free Software
- // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- //
- package org.car2x.veins.nodes;
- import org.car2x.veins.base.modules.*;
- import org.car2x.veins.modules.nic.Nic80211p;
- module Pedestrian
- {
- parameters:
- string applType; //type of the application layer
- string nicType = default("Nic80211p"); // type of network interface card
- string veinsmobilityType = default("org.car2x.veins.modules.mobility.traci.TraCIMobility"); //type of the mobility module
- gates:
- input veinsradioIn; // gate for sendDirect
- submodules:
- appl: <applType> like org.car2x.veins.base.modules.IBaseApplLayer {
- parameters:
- @display("p=60,50");
- }
- nic: <nicType> like org.car2x.veins.modules.nic.INic80211p {
- parameters:
- @display("p=60,166");
- }
- veinsmobility: <veinsmobilityType> like org.car2x.veins.base.modules.IMobility {
- parameters:
- @display("p=130,172;i=block/cogwheel");
- }
- connections:
- nic.upperLayerOut --> appl.lowerLayerIn;
- nic.upperLayerIn <-- appl.lowerLayerOut;
- nic.upperControlOut --> appl.lowerControlIn;
- nic.upperControlIn <-- appl.lowerControlOut;
- veinsradioIn --> nic.radioIn;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement