All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softwaremagico.tm.character.perks.PerkOptions Maven / Gradle / Ivy

package com.softwaremagico.tm.character.perks;

/*-
 * #%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.MachineLog;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.stream.Collectors;

public class PerkOptions extends XmlData {
    @JsonProperty("total")
    private int totalOptions = 1;
    @JsonProperty("perks")
    private List perks;
    @JsonIgnore
    private List finalPerks;
    @JsonProperty("openPerks")
    private boolean includeOpenPerks = true;

    public PerkOptions() {
        super();
    }

    public int getTotalOptions() {
        return totalOptions;
    }

    public void setTotalOptions(int totalOptions) {
        this.totalOptions = totalOptions;
    }

    public List getPerks() {
        if (finalPerks == null) {
            finalPerks = new ArrayList<>();
            for (PerkOption perkOptions : this.perks) {
                if (perkOptions.getGroup() != null) {
                    try {
                        finalPerks.addAll(PerkFactory.getInstance().getElementsByGroup(perkOptions.getGroup()).stream()
                                .map(PerkOption::new).collect(Collectors.toList()));
                    } catch (InvalidXmlElementException e) {
                        MachineLog.errorMessage(this.getClass(), e);
                    }
                } else {
                    finalPerks.add(perkOptions);
                }
            }
        }
        return finalPerks;
    }

    public void addPerks(Collection perks) {
        if (this.perks == null) {
            this.perks = new ArrayList<>();
        }
        this.perks.addAll(perks);
    }

    public void setPerks(List perks) {
        this.perks = perks;
    }

    public boolean isIncludeOpenPerks() {
        return includeOpenPerks;
    }

    public void setIncludeOpenPerks(boolean includeOpenPerks) {
        this.includeOpenPerks = includeOpenPerks;
    }

    public PerkOptions copy() {
        final PerkOptions perkOptions = new PerkOptions();
        perkOptions.setTotalOptions(this.getTotalOptions());
        perkOptions.setIncludeOpenPerks(this.isIncludeOpenPerks());
        if (this.getPerks() != null) {
            perkOptions.setPerks(new ArrayList<>(this.getPerks()));
        }
        return perkOptions;
    }

    @Override
    public String toString() {
        return "PerkOptions{"
                + "(x" + totalOptions + "): "
                + perks
                + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy