Exemple #1
0
 public void CheckMarioEnemyCollision(Rectangle marioBox, IWorld Level)
 {
     foreach (IEnemy enemy in Level.Enemies)
     {
         Rectangle enemyBox        = enemy.Rectangle;
         Rectangle intersectionBox = Rectangle.Intersect(enemyBox, marioBox);
         if (!intersectionBox.IsEmpty)
         {
             Direction direction = AllCollisionHandler.GetCollisionDirection(intersectionBox, marioBox, enemyBox);
             MarioEnemyHandler.HandleCollision(Level.Mario, enemy, direction);
         }
     }
 }
 public AllCollisionHandler(GameStateManager gameState)
 {
     this.gameState = gameState;
     Level          = gameState.world;
     mario          = gameState.world.Mario;
     MBHandler      = new MarioBlockHandler();
     MOHandler      = new MarioBossHandler();
     MEHandler      = new MarioEnemyHandler();
     MFHandler      = new MarioFlagStuffHandler();
     MIHandler      = new MarioItemHandler();
     MCHandler      = new MarioCastleCollisionHandler();
     IBHandler      = new ItemBlockHandler();
     EBHandler      = new EnemyBlockHandler();
     BBHandler      = new BossBlockHandler();
     SEHandler      = new ShellEnemyHandler();
     SBHandler      = new ShellBossHandler();
     FBHandler      = new FireBallBlockHandler();
     FEHandler      = new FireBallEnemyHandler();
     FOHandler      = new FireBallBossHandler();
     FSBHandler     = new FireShotBlockHandler();
     FSMHandler     = new FireShotMarioHandler();
     FHMHandler     = new FireHellMarioHandler();
 }