コード例 #1
0
 public int getTraitMax() {
   IIdentifiedTraitTypeGroup group = getIdentifiedTraitTypeGroups()[0];
   ITraitType traitType = group.getAllGroupTypes()[0];
   ITraitTemplate template =
       character.getTemplate().getTraitTemplateCollection().getTraitTemplate(traitType);
   return template.getLimitation().getAbsoluteLimit(character);
 }
コード例 #2
0
  public float encode(PdfContentByte directContent, IGenericCharacter character, Bounds bounds) {
    String joinLabel = resources.getString("Sheet.Combat.JoinBattle"); // $NON-NLS-1$
    String dodgeLabel = resources.getString("Sheet.Combat.DodgeDV"); // $NON-NLS-1$
    String knockdownLabel = resources.getString("Sheet.Combat.Knockdown"); // $NON-NLS-1$
    String stunningLabel = resources.getString("Sheet.Combat.Stunning"); // $NON-NLS-1$
    IGenericTraitCollection traitCollection = character.getTraitCollection();
    IEquipmentModifiers equipment = character.getEquipmentModifiers();
    ICharacterType characterType = character.getTemplate().getTemplateType().getCharacterType();

    int joinBattle = CharacterUtilties.getJoinBattle(traitCollection, equipment);
    int dodgeDV = CharacterUtilties.getDodgeDv(characterType, traitCollection, equipment);
    int knockdownThreshold = CharacterUtilties.getKnockdownThreshold(traitCollection, equipment);
    int knockdownPool = CharacterUtilties.getKnockdownPool(character, traitCollection, equipment);
    int stunningThreshold = CharacterUtilties.getStunningThreshold(traitCollection, equipment);
    int stunningPool = CharacterUtilties.getStunningPool(traitCollection, equipment);

    Position upperLeftCorner = new Position(bounds.x, bounds.getMaxY());
    LabelledValueEncoder encoder =
        new LabelledValueEncoder(baseFont, 4, upperLeftCorner, bounds.width, 3);
    encoder.addLabelledValue(directContent, 0, joinLabel, joinBattle);
    encoder.addLabelledValue(directContent, 1, dodgeLabel, dodgeDV);
    encoder.addLabelledValue(directContent, 2, knockdownLabel, knockdownThreshold, knockdownPool);
    encoder.addLabelledValue(directContent, 3, stunningLabel, stunningThreshold, stunningPool);
    // String mobilityPenaltyLabel = "-" + resources.getString("Sheet.Combat.MobilityPenalty");
    // //$NON-NLS-1$ //$NON-NLS-2$
    String thresholdPoolLabel = resources.getString("Sheet.Combat.ThresholdPool"); // $NON-NLS-1$
    // encoder.addComment(directContent, mobilityPenaltyLabel, 1);
    encoder.addComment(directContent, thresholdPoolLabel, 2);
    encoder.addComment(directContent, thresholdPoolLabel, 3);
    return encoder.getHeight();
  }