Trees drop packets very fast

This commit is contained in:
Tim Young 2018-02-24 13:56:26 -06:00
parent 529c967876
commit 1453aa27be
2 changed files with 24 additions and 0 deletions

View File

@ -1659,6 +1659,26 @@ namespace EduNetworkBuilder
return null;
}
public bool DeviceInTree(LinkType myLink, Point location)
{
NetworkDevice ND = null;
if (myLink != LinkType.wireless) return false; //we do not care
foreach (NetworkComponent NC in NetComponents)
{
if (NB.GetComponentType(NC) == GeneralComponentType.device)
{
ND = (NetworkDevice)NC;
if (ND.GetNetType() == NetworkComponentType.tree)
{
if (ND.GetMyRectangle().Contains(location))
return true;
}
}
}
return false;
}
public bool DeviceIsOverDamaging(LinkType myLink, Point location)
{
NetworkDevice ND;

View File

@ -384,6 +384,10 @@ namespace EduNetworkBuilder
}
if(theLinkType == LinkType.wireless)
{
if(myNet.DeviceInTree(theLinkType, newLocation))
{
tPacket.health -= 60;
}
NetworkDevice sDev = myNet.GetDeviceFromID(SrcNic);
NetworkDevice dDev = myNet.GetDeviceFromID(DstNic);
double distance = myNet.distance(sDev, dDev) * (tPacket.myLinkPercent * 0.01);