com.softwaremagico.tm.character.skills.SkillOption Maven / Gradle / Ivy
package com.softwaremagico.tm.character.skills;
/*-
* #%L
* Think Machine 4E (Rules)
* %%
* Copyright (C) 2017 - 2024 Softwaremagico
* %%
* This software is designed by Jorge Hortelano Otero. Jorge Hortelano Otero
* Valencia (Spain).
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; If not, see .
* #L%
*/
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.softwaremagico.tm.XmlData;
import com.softwaremagico.tm.exceptions.InvalidXmlElementException;
import com.softwaremagico.tm.log.MachineXmlReaderLog;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
public class SkillOption extends XmlData {
@JsonProperty("total")
private int totalOptions;
@JsonProperty("skills")
private List skills;
@JsonIgnore
private List finalSkills;
@JsonIgnore
private Map skillBonusById;
public int getTotalOptions() {
return totalOptions;
}
public void setTotalOptions(int totalOptions) {
this.totalOptions = totalOptions;
}
public List getSkills() {
if (finalSkills == null) {
try {
if (skills == null || skills.isEmpty()) {
finalSkills = new ArrayList<>();
finalSkills.addAll(SkillFactory.getInstance().getElements().stream()
.map(SkillBonus::new).collect(Collectors.toList()));
} else {
finalSkills = skills;
}
} catch (InvalidXmlElementException e) {
MachineXmlReaderLog.errorMessage(this.getClass(), e);
}
}
return finalSkills;
}
public void setSkills(List skills) {
this.skills = skills;
}
public SkillBonus getSkillBonus(String skill) {
if (skillBonusById == null) {
skillBonusById = getSkills().stream().collect(Collectors.toMap(SkillBonus::getSkill, item -> item));
}
return skillBonusById.get(skill);
}
@Override
public String toString() {
return "SkillOption{"
+ "(x" + totalOptions + "): "
+ skills
+ '}';
}
}