1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // Copyright (C) 2005 Andras Varga
- //
- // 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 inet.showcases.wireless.hiddennode;
- import inet.common.figures.DelegateSignalConfigurator;
- import inet.environment.common.PhysicalEnvironment;
- import inet.networklayer.configurator.ipv4.IPv4NetworkConfigurator;
- import inet.node.inet.WirelessHost;
- import inet.physicallayer.idealradio.IdealRadioMedium;
- import inet.visualizer.integrated.IntegratedCanvasVisualizer;
- network HiddenNodeShowcase
- {
- parameters:
- @display("b=297,203;bgb=736.6,557.784");
- @figure[rcvdPkText](type=indicatorText; pos=420,20; anchor=w; font=,20; textFormat="packets received: %g"; initialValue=0);
- @statistic[rcvdPk](source=hostB.udp.rcvdPk; record=figure(count); targetFigure=rcvdPkText);
- submodules:
- hostA: WirelessHost {
- @display("p=300,272");
- }
- hostB: WirelessHost {
- @display("p=450,100");
- }
- hostC: WirelessHost {
- @display("p=600,272");
- }
- radioMedium: IdealRadioMedium {
- @display("p=100,100");
- }
- configurator: IPv4NetworkConfigurator {
- @display("p=100,200");
- }
- visualizer: IntegratedCanvasVisualizer {
- @display("p=100,300");
- }
- physicalEnvironment: PhysicalEnvironment {
- @display("p=100,400");
- }
- }
|