forked from External/mage
303 lines
11 KiB
Java
303 lines
11 KiB
Java
/*
|
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification, are
|
|
* permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
* conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
* provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* The views and conclusions contained in the software and documentation are those of the
|
|
* authors and should not be interpreted as representing official policies, either expressed
|
|
* or implied, of BetaSteward_at_googlemail.com.
|
|
*/
|
|
package mage.game.events;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.EventObject;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
import java.util.UUID;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.ActivatedAbility;
|
|
import mage.abilities.TriggeredAbility;
|
|
import mage.cards.Card;
|
|
import mage.cards.Cards;
|
|
import mage.choices.Choice;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
*
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class PlayerQueryEvent extends EventObject implements ExternalEvent, Serializable {
|
|
|
|
public enum QueryType {
|
|
|
|
ASK, CHOOSE_CHOICE, CHOOSE_ABILITY, CHOOSE_MODE, PICK_TARGET, PICK_ABILITY, SELECT, PLAY_MANA, PLAY_X_MANA, AMOUNT, PICK_CARD, CONSTRUCT, CHOOSE_PILE, PERSONAL_MESSAGE
|
|
}
|
|
|
|
private String message;
|
|
private List<? extends Ability> abilities;
|
|
private List<Permanent> perms;
|
|
private Set<String> choices;
|
|
private Set<UUID> targets;
|
|
private Cards cards;
|
|
private List<Card> booster;
|
|
private final QueryType queryType;
|
|
private final UUID playerId;
|
|
private boolean required;
|
|
private int min;
|
|
private int max;
|
|
private Map<String, Serializable> options;
|
|
private Map<UUID, String> modes;
|
|
private List<? extends Card> pile1;
|
|
private List<? extends Card> pile2;
|
|
private Choice choice;
|
|
|
|
private PlayerQueryEvent(UUID playerId, String message, List<? extends Ability> abilities, Set<String> choices, Set<UUID> targets, Cards cards, QueryType queryType, int min, int max, boolean required, Map<String, Serializable> options) {
|
|
super(playerId);
|
|
this.queryType = queryType;
|
|
this.message = message;
|
|
this.playerId = playerId;
|
|
this.abilities = abilities;
|
|
this.choices = choices;
|
|
this.targets = targets;
|
|
this.cards = cards;
|
|
this.required = required;
|
|
this.min = min;
|
|
this.max = max;
|
|
if (options == null) {
|
|
this.options = new HashMap<>();
|
|
} else {
|
|
this.options = options;
|
|
}
|
|
this.options.put("queryType", queryType);
|
|
}
|
|
|
|
private PlayerQueryEvent(UUID playerId, String message, List<Card> booster, QueryType queryType, int time) {
|
|
super(playerId);
|
|
this.queryType = queryType;
|
|
this.message = message;
|
|
this.playerId = playerId;
|
|
this.booster = booster;
|
|
this.max = time;
|
|
}
|
|
|
|
private PlayerQueryEvent(UUID playerId, String message, QueryType queryType, int time) {
|
|
super(playerId);
|
|
this.queryType = queryType;
|
|
this.message = message;
|
|
this.playerId = playerId;
|
|
this.max = time;
|
|
}
|
|
|
|
private PlayerQueryEvent(UUID playerId, String message, QueryType queryType, List<Permanent> perms, boolean required) {
|
|
super(playerId);
|
|
this.queryType = queryType;
|
|
this.message = message;
|
|
this.playerId = playerId;
|
|
this.perms = perms;
|
|
this.required = required;
|
|
}
|
|
|
|
private PlayerQueryEvent(UUID playerId, String message, Map<UUID, String> modes) {
|
|
super(playerId);
|
|
this.queryType = QueryType.CHOOSE_MODE;
|
|
this.message = message;
|
|
this.playerId = playerId;
|
|
this.modes = modes;
|
|
}
|
|
|
|
private PlayerQueryEvent(UUID playerId, String message, List<? extends Card> pile1, List<? extends Card> pile2) {
|
|
super(playerId);
|
|
this.queryType = QueryType.CHOOSE_PILE;
|
|
this.message = message;
|
|
this.playerId = playerId;
|
|
this.pile1 = pile1;
|
|
this.pile2 = pile2;
|
|
}
|
|
|
|
private PlayerQueryEvent(UUID playerId, String message) {
|
|
super(playerId);
|
|
this.queryType = QueryType.PERSONAL_MESSAGE;
|
|
this.message = message;
|
|
this.playerId = playerId;
|
|
}
|
|
|
|
private PlayerQueryEvent(UUID playerId, Choice choice) {
|
|
super(playerId);
|
|
this.queryType = QueryType.CHOOSE_CHOICE;
|
|
this.choice = choice;
|
|
this.playerId = playerId;
|
|
}
|
|
|
|
public static PlayerQueryEvent askEvent(UUID playerId, String message, Ability source, Map<String, Serializable> options) {
|
|
if (source != null) {
|
|
if (options == null) {
|
|
options = new HashMap<>();
|
|
}
|
|
options.put("originalId", source.getOriginalId());
|
|
}
|
|
return new PlayerQueryEvent(playerId, message, null, null, null, null, QueryType.ASK, 0, 0, false, options);
|
|
}
|
|
|
|
public static PlayerQueryEvent chooseAbilityEvent(UUID playerId, String message, String objectName, List<? extends ActivatedAbility> choices) {
|
|
Set<String> nameAsSet = null;
|
|
if (objectName != null) {
|
|
nameAsSet = new HashSet<>();
|
|
nameAsSet.add(objectName);
|
|
}
|
|
return new PlayerQueryEvent(playerId, message, choices, nameAsSet, null, null, QueryType.CHOOSE_ABILITY, 0, 0, false, null);
|
|
}
|
|
|
|
public static PlayerQueryEvent choosePileEvent(UUID playerId, String message, List<? extends Card> pile1, List<? extends Card> pile2) {
|
|
return new PlayerQueryEvent(playerId, message, pile1, pile2);
|
|
}
|
|
|
|
public static PlayerQueryEvent chooseModeEvent(UUID playerId, String message, Map<UUID, String> modes) {
|
|
return new PlayerQueryEvent(playerId, message, modes);
|
|
}
|
|
|
|
public static PlayerQueryEvent chooseChoiceEvent(UUID playerId, Choice choice) {
|
|
return new PlayerQueryEvent(playerId, choice);
|
|
}
|
|
|
|
public static PlayerQueryEvent targetEvent(UUID playerId, String message, Set<UUID> targets, boolean required) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, targets, null, QueryType.PICK_TARGET, 0, 0, required, null);
|
|
}
|
|
|
|
public static PlayerQueryEvent targetEvent(UUID playerId, String message, Set<UUID> targets, boolean required, Map<String, Serializable> options) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, targets, null, QueryType.PICK_TARGET, 0, 0, required, options);
|
|
}
|
|
|
|
public static PlayerQueryEvent targetEvent(UUID playerId, String message, Cards cards, boolean required, Map<String, Serializable> options) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, null, cards, QueryType.PICK_TARGET, 0, 0, required, options);
|
|
}
|
|
|
|
public static PlayerQueryEvent targetEvent(UUID playerId, String message, List<TriggeredAbility> abilities) {
|
|
return new PlayerQueryEvent(playerId, message, abilities, null, null, null, QueryType.PICK_ABILITY, 0, 0, true, null);
|
|
}
|
|
|
|
public static PlayerQueryEvent targetEvent(UUID playerId, String message, List<Permanent> perms, boolean required) {
|
|
return new PlayerQueryEvent(playerId, message, QueryType.PICK_TARGET, perms, required);
|
|
}
|
|
|
|
public static PlayerQueryEvent selectEvent(UUID playerId, String message) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, null, null, QueryType.SELECT, 0, 0, false, null);
|
|
}
|
|
|
|
public static PlayerQueryEvent selectEvent(UUID playerId, String message, Map<String, Serializable> options) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, null, null, QueryType.SELECT, 0, 0, false, options);
|
|
}
|
|
|
|
public static PlayerQueryEvent playManaEvent(UUID playerId, String message, Map<String, Serializable> options) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, null, null, QueryType.PLAY_MANA, 0, 0, false, options);
|
|
}
|
|
|
|
public static PlayerQueryEvent playXManaEvent(UUID playerId, String message) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, null, null, QueryType.PLAY_X_MANA, 0, 0, false, null);
|
|
}
|
|
|
|
public static PlayerQueryEvent amountEvent(UUID playerId, String message, int min, int max) {
|
|
return new PlayerQueryEvent(playerId, message, null, null, null, null, QueryType.AMOUNT, min, max, false, null);
|
|
}
|
|
|
|
public static PlayerQueryEvent pickCard(UUID playerId, String message, List<Card> booster, int time) {
|
|
return new PlayerQueryEvent(playerId, message, booster, QueryType.PICK_CARD, time);
|
|
}
|
|
|
|
public static PlayerQueryEvent construct(UUID playerId, String message, int time) {
|
|
return new PlayerQueryEvent(playerId, message, QueryType.CONSTRUCT, time);
|
|
}
|
|
|
|
public static PlayerQueryEvent informPersonal(UUID playerId, String message) {
|
|
return new PlayerQueryEvent(playerId, message);
|
|
}
|
|
|
|
public String getMessage() {
|
|
return message;
|
|
}
|
|
|
|
public QueryType getQueryType() {
|
|
return queryType;
|
|
}
|
|
|
|
public List<? extends Ability> getAbilities() {
|
|
return abilities;
|
|
}
|
|
|
|
public Set<String> getChoices() {
|
|
return choices;
|
|
}
|
|
|
|
public Set<UUID> getTargets() {
|
|
return targets;
|
|
}
|
|
|
|
public UUID getPlayerId() {
|
|
return playerId;
|
|
}
|
|
|
|
public boolean isRequired() {
|
|
return required;
|
|
}
|
|
|
|
public Cards getCards() {
|
|
return cards;
|
|
}
|
|
|
|
public List<Permanent> getPerms() {
|
|
return perms;
|
|
}
|
|
|
|
public List<Card> getBooster() {
|
|
return booster;
|
|
}
|
|
|
|
public int getMin() {
|
|
return min;
|
|
}
|
|
|
|
public int getMax() {
|
|
return max;
|
|
}
|
|
|
|
public Map<String, Serializable> getOptions() {
|
|
return options;
|
|
}
|
|
|
|
public Map<UUID, String> getModes() {
|
|
return modes;
|
|
}
|
|
|
|
public List<? extends Card> getPile1() {
|
|
return pile1;
|
|
}
|
|
|
|
public List<? extends Card> getPile2() {
|
|
return pile2;
|
|
}
|
|
|
|
public Choice getChoice() {
|
|
return choice;
|
|
}
|
|
|
|
}
|