Exemplo n.º 1
0
  public void updateVisibleOutput() {
    String output = null;
    if (!outputWaiting) {
      Cell playerCell = player.getCell();
      ArrayList<Item> items = playerCell.getItems();
      output = Util.capitalizeFirstLetter(player.getCell().getGroundProto().getName()) + ". ";
      if (!items.isEmpty()) {
        if (items.size() > 1) output += "Several items lying. ";
        else output += Util.capitalizeFirstLetter(items.get(0).getName()) + " lying. ";
      }
      output += outputTemp;
    } else output = outputTemp;

    output = Util.splitToLines(output, WIDTH_FOR_TEXT);
    int maxLength = (OUTPUTBOX_HEIGHT) * WIDTH_FOR_TEXT - (int) (WIDTH_FOR_TEXT * 0.7);
    if (visibleOutput.length() < maxLength) {
      if (output.length() > maxLength) {
        visibleOutput = output.substring(0, maxLength) + " ... PRESS SPACE TO READ MORE";
        outputTemp = output.substring(maxLength);
        outputWaiting = true;
      } else {
        visibleOutput = output;
        outputWaiting = false;
      }
    }
  }