Bläddra i källkod

if there is not safe path the application will now show a message instead of crashing

winforms
benjamin.m 5 år sedan
förälder
incheckning
77b208ce7b
1 ändrade filer med 8 tillägg och 5 borttagningar
  1. 8
    5
      Buhnenrennen/GraphicGenerator.cs

+ 8
- 5
Buhnenrennen/GraphicGenerator.cs Visa fil

} }


TimedGroyne safePathSub = safePath; TimedGroyne safePathSub = safePath;

do
if ( safePath != null )
{ {
graphics.ConnectRectangles( new Pen( safePathBrush, borderWidth ), groynePositions[ safePathSub.Groyne ], groynePositions[ safePathSub.ParentGroyne.Groyne ], borderWidth );
safePathSub = safePathSub.ParentGroyne;
} while ( safePathSub.ParentGroyne != null );
do
{
graphics.ConnectRectangles( new Pen( safePathBrush, borderWidth ), groynePositions[ safePathSub.Groyne ], groynePositions[ safePathSub.ParentGroyne.Groyne ], borderWidth );
safePathSub = safePathSub.ParentGroyne;
} while ( safePathSub.ParentGroyne != null );
}
else ColorMessageBox.Show( "Das gegebene Scenario enthält keine sichere Route für Minnie" );


foreach( var groyne in groyneBorderBrush.Keys ) foreach( var groyne in groyneBorderBrush.Keys )
{ {

Laddar…
Avbryt
Spara