コード例 #1
0
  /** Initialize game model (GameWorld) and game view (GameWorldView), add enemies to game. */
  private void initializeGame() {
    gameWorld.initialize();
    gameWorldView.initialize();

    gameWorld
        .getEnemies()
        .forEach(
            enemyActor -> gameWorldView.addActorView(new EnemyActorViewController(enemyActor)));
  }
コード例 #2
0
  /**
   * Handle detect collision.
   *
   * <p>Firstly when enemyActor has collision with bound of strip or with obstacles i must change
   * him movement direction.
   *
   * <p>Secondly when playerActor has collision with bound of strip or with obstacle i don't change
   * him position.
   *
   * <p>Thirdly when enemyActor has collision with enemyActor i must kill playerActor and stopped
   * game.
   *
   * <p>Fourthly when enemyActor has collision with explosion i must kill him.
   *
   * <p>Fifthly when playerActor has collision with explosion i must kill him and stopped game.
   */
  private void handleCollision() {
    gameWorld
        .getEnemies()
        .forEach(
            enemyActor -> {
              Set<ApexPosition> apexPositionSet = gameWorld.getLevel().getAllObstaclesPositions();

              if (apexPositionSet.contains(enemyActor.getNextPosition())) {
                LOG.debug("Collision detected");
                enemyActor.movementVector.setOppositeDirection();
              }
            });
  }
コード例 #3
0
  /**
   * Destroy all object in range of explosion.
   *
   * @param bomb this is exploding
   */
  private void handleExplosion(@NotNull final Bomb bomb) {
    LOG.debug("handle explosion on apexPosition = " + bomb.getPosition().toString());
    Set<ApexPosition> apexPositionSet = setRangeOfExplosion(bomb.getPosition());

    apexPositionSet.forEach(
        apexPosition1 -> {
          if (gameWorld.getLevel().mutableObstacleMap.containsKey(apexPosition1))
            gameWorld.getLevel().mutableObstacleMap.get(apexPosition1).destroy();
          else {
            gameWorld
                .getEnemies()
                .forEach(
                    enemyActor -> {
                      if (enemyActor.getPosition().equals(apexPosition1)) {
                        enemyActor.destroy();
                        gameWorld.removeEnemy(enemyActor);
                      }
                    });
          }
        });

    gameWorld.bombs.remove(bomb);
  }