forked from External/mage
913 lines
40 KiB
Java
913 lines
40 KiB
Java
package mage.utils;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleStaticAbility;
|
|
import mage.abilities.effects.ContinuousEffect;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.abilities.effects.common.InfoEffect;
|
|
import mage.cards.Card;
|
|
import mage.cards.decks.importer.CardLookup;
|
|
import mage.cards.repository.CardCriteria;
|
|
import mage.cards.repository.CardInfo;
|
|
import mage.cards.repository.CardRepository;
|
|
import mage.choices.Choice;
|
|
import mage.choices.ChoiceHintType;
|
|
import mage.choices.ChoiceImpl;
|
|
import mage.constants.*;
|
|
import mage.counters.CounterType;
|
|
import mage.game.Game;
|
|
import mage.game.GameCommanderImpl;
|
|
import mage.game.command.CommandObject;
|
|
import mage.game.command.Plane;
|
|
import mage.game.permanent.Permanent;
|
|
import mage.game.permanent.token.Token;
|
|
import mage.players.Player;
|
|
import mage.target.Target;
|
|
import mage.target.TargetPlayer;
|
|
import mage.target.common.TargetOpponent;
|
|
import mage.util.CardUtil;
|
|
import mage.util.MultiAmountMessage;
|
|
import mage.util.RandomUtil;
|
|
import mage.utils.testers.TestableDialogsRunner;
|
|
|
|
import java.io.File;
|
|
import java.lang.reflect.Constructor;
|
|
import java.text.DateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.*;
|
|
import java.util.concurrent.TimeUnit;
|
|
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
import java.util.stream.Collectors;
|
|
|
|
/**
|
|
* @author JayDi85
|
|
*/
|
|
public final class SystemUtil {
|
|
|
|
private SystemUtil() {
|
|
}
|
|
|
|
public static final DateFormat dateFormat = new SimpleDateFormat("yy-M-dd HH:mm:ss");
|
|
|
|
private static final String INIT_FILE_PATH = "config" + File.separator + "init.txt";
|
|
private static final org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger(SystemUtil.class);
|
|
|
|
// replace ref group command like @group by real commands from that group
|
|
// example:
|
|
// [my group]
|
|
// command 1
|
|
// @another group
|
|
// [another group]
|
|
// command 2
|
|
// command 3
|
|
// [@special build-in command]
|
|
private static final String COMMAND_REF_PREFIX = "@";
|
|
|
|
// transform special group names from init.txt to special commands in choose dialog:
|
|
// [@mana add] -> MANA ADD
|
|
private static final String COMMAND_CARDS_ADD_TO_HAND = "@card add to hand";
|
|
private static final String COMMAND_LANDS_ADD_TO_BATTLEFIELD = "@lands add";
|
|
private static final String COMMAND_UNDER_CONTROL_TAKE = "@under control take";
|
|
private static final String COMMAND_UNDER_CONTROL_GIVE = "@under control give";
|
|
private static final String COMMAND_SHOW_TEST_DIALOGS = "@show dialog";
|
|
private static final String COMMAND_MANA_ADD = "@mana add"; // TODO: not implemented
|
|
private static final String COMMAND_RUN_CUSTOM_CODE = "@run custom code"; // TODO: not implemented
|
|
private static final String COMMAND_SHOW_OPPONENT_HAND = "@show opponent hand";
|
|
private static final String COMMAND_SHOW_OPPONENT_LIBRARY = "@show opponent library";
|
|
private static final String COMMAND_SHOW_MY_HAND = "@show my hand";
|
|
private static final String COMMAND_SHOW_MY_LIBRARY = "@show my library";
|
|
private static final Map<String, String> supportedCommands = new HashMap<>();
|
|
private static final TestableDialogsRunner testableDialogsRunner = new TestableDialogsRunner(); // for tests
|
|
|
|
static {
|
|
// special commands names in choose dialog
|
|
supportedCommands.put(COMMAND_CARDS_ADD_TO_HAND, "CARDS: ADD TO HAND");
|
|
supportedCommands.put(COMMAND_MANA_ADD, "MANA ADD");
|
|
supportedCommands.put(COMMAND_LANDS_ADD_TO_BATTLEFIELD, "LANDS: ADD TO BATTLEFIELD");
|
|
supportedCommands.put(COMMAND_UNDER_CONTROL_TAKE, "UNDER CONTROL: TAKE");
|
|
supportedCommands.put(COMMAND_UNDER_CONTROL_GIVE, "UNDER CONTROL: GIVE");
|
|
supportedCommands.put(COMMAND_RUN_CUSTOM_CODE, "RUN CUSTOM CODE");
|
|
supportedCommands.put(COMMAND_SHOW_OPPONENT_HAND, "SHOW OPPONENT HAND");
|
|
supportedCommands.put(COMMAND_SHOW_OPPONENT_LIBRARY, "SHOW OPPONENT LIBRARY");
|
|
supportedCommands.put(COMMAND_SHOW_MY_HAND, "SHOW MY HAND");
|
|
supportedCommands.put(COMMAND_SHOW_MY_LIBRARY, "SHOW MY LIBRARY");
|
|
supportedCommands.put(COMMAND_SHOW_TEST_DIALOGS, "SHOW TEST DIALOGS");
|
|
}
|
|
|
|
private static final Pattern patternGroup = Pattern.compile("\\[(.+)\\]"); // [test new card]
|
|
private static final Pattern patternCommand = Pattern.compile("([\\w]+):([\\S ]+?):([\\S ]+):([\\d]+)"); // battlefield:Human:Island:10
|
|
private static final Pattern patternCardInfo = Pattern.compile("(^[\\dA-Z]{MIN,MAX})DELIMETER([\\S ]+)" // XLN-Island
|
|
.replace("MIN", String.valueOf(CardUtil.TESTS_SET_CODE_MIN_LOOKUP_LENGTH))
|
|
.replace("MAX", String.valueOf(CardUtil.TESTS_SET_CODE_MAX_LOOKUP_LENGTH))
|
|
.replace("DELIMETER", CardUtil.TESTS_SET_CODE_DELIMETER)
|
|
);
|
|
|
|
// show ext info for special commands
|
|
private static final String PARAM_COLOR_COST = "color cost";
|
|
private static final String PARAM_COLOR_COMMANDER = "color commander";
|
|
private static final String PARAM_PT = "pt"; // power toughness
|
|
private static final String PARAM_ABILITIES_COUNT = "abilities count";
|
|
private static final String PARAM_ABILITIES_LIST = "abilities list";
|
|
|
|
private static class CommandGroup {
|
|
|
|
String name;
|
|
boolean isSpecialCommand;
|
|
List<String> commands = new ArrayList<>();
|
|
|
|
public CommandGroup(String name) {
|
|
this(name, false);
|
|
}
|
|
|
|
public CommandGroup(String name, boolean isSpecialCommand) {
|
|
this.name = name;
|
|
this.isSpecialCommand = isSpecialCommand;
|
|
}
|
|
|
|
public String getPrintName() {
|
|
if (this.isSpecialCommand && supportedCommands.containsKey(this.name)) {
|
|
return supportedCommands.get(this.name);
|
|
} else {
|
|
return this.name;
|
|
}
|
|
}
|
|
|
|
public String getPrintNameWithStats() {
|
|
String res = this.getPrintName();
|
|
if (!this.isSpecialCommand) {
|
|
res = res + " (" + this.commands.size() + " commands)";
|
|
}
|
|
|
|
return res;
|
|
}
|
|
}
|
|
|
|
private static String getCardsListForSpecialInform(Game game, Set<UUID> cardsList, List<String> commandParams) {
|
|
return getCardsListForSpecialInform(game, cardsList.stream().collect(Collectors.toList()), commandParams);
|
|
}
|
|
|
|
private static String getCardsListForSpecialInform(Game game, List<UUID> cardsList, List<String> commandParams) {
|
|
// cards list with ext info
|
|
|
|
List<String> res = new ArrayList<>();
|
|
|
|
for (UUID cardID : cardsList) {
|
|
Card card = game.getCard(cardID);
|
|
if (card == null) {
|
|
continue;
|
|
}
|
|
|
|
// basic info (card + set)
|
|
String cardInfo = card.getName() + " - " + card.getExpansionSetCode();
|
|
|
|
// optional info
|
|
List<String> resInfo = new ArrayList<>();
|
|
for (String param : commandParams) {
|
|
switch (param) {
|
|
case PARAM_COLOR_COST:
|
|
resInfo.add(card.getColor(game).toString());
|
|
break;
|
|
case PARAM_COLOR_COMMANDER:
|
|
resInfo.add(card.getColorIdentity().toString());
|
|
break;
|
|
case PARAM_PT:
|
|
resInfo.add(card.getPower() + " / " + card.getToughness());
|
|
break;
|
|
case PARAM_ABILITIES_COUNT:
|
|
resInfo.add(String.valueOf(card.getAbilities(game).size()));
|
|
break;
|
|
case PARAM_ABILITIES_LIST:
|
|
resInfo.add(card.getAbilities(game).stream()
|
|
.map(Ability::getClass)
|
|
.map(Class::getSimpleName)
|
|
.collect(Collectors.joining(", "))
|
|
);
|
|
break;
|
|
default:
|
|
logger.warn("Unknown param for cards list: " + param);
|
|
}
|
|
}
|
|
|
|
if (!resInfo.isEmpty()) {
|
|
cardInfo += ": " + resInfo.stream().collect(Collectors.joining("; "));
|
|
}
|
|
|
|
res.add(cardInfo);
|
|
}
|
|
|
|
return res.stream().sorted().collect(Collectors.joining("\n"));
|
|
}
|
|
|
|
private static class CardCommandData {
|
|
|
|
public String source;
|
|
public String zone;
|
|
public String player;
|
|
public String cardName;
|
|
public String cardSet;
|
|
public Integer Amount;
|
|
|
|
public Boolean OK;
|
|
public String Error;
|
|
}
|
|
|
|
public static CardCommandData parseCardCommand(String commandLine) {
|
|
CardCommandData com = new CardCommandData();
|
|
com.source = commandLine.trim();
|
|
com.OK = false;
|
|
com.Error = "unknown error";
|
|
|
|
Matcher matchCommand = patternCommand.matcher(com.source);
|
|
if (!matchCommand.matches()) {
|
|
com.Error = "Unknown command format";
|
|
return com;
|
|
}
|
|
|
|
com.zone = matchCommand.group(1);
|
|
com.player = matchCommand.group(2);
|
|
try {
|
|
com.Amount = Integer.parseInt(matchCommand.group(4));
|
|
} catch (Throwable e) {
|
|
com.Error = "Can't parse amount value [" + matchCommand.group(4) + "]";
|
|
return com;
|
|
}
|
|
|
|
// card name can be with set
|
|
// example: XLN-Island
|
|
List<String> cardInfo = parseSetAndCardNameCommand(matchCommand.group(3));
|
|
com.cardSet = cardInfo.get(0);
|
|
com.cardName = cardInfo.get(1);
|
|
|
|
if (com.cardName.isEmpty()) {
|
|
com.Error = "Card name is empty";
|
|
return com;
|
|
}
|
|
|
|
if (com.Amount <= 0) {
|
|
com.Error = "Amount [" + com.Amount + "] must be greater than 0";
|
|
return com;
|
|
}
|
|
|
|
// all ok
|
|
com.Error = "";
|
|
com.OK = true;
|
|
return com;
|
|
}
|
|
|
|
/**
|
|
* Execute cheat commands from an init.txt file, for more details see
|
|
* <a href="https://github.com/magefree/mage/wiki/Development-Testing-Tools">wiki page</a>
|
|
* about testing tools
|
|
*
|
|
* @param game
|
|
* @param commandsFilePath file path with commands in init.txt format
|
|
* @param feedbackPlayer player to execute that cheats (will see choose dialogs)
|
|
*/
|
|
public static void executeCheatCommands(Game game, String commandsFilePath, Player feedbackPlayer) {
|
|
|
|
// fake test ability for triggers and events
|
|
Ability fakeSourceAbilityTemplate = new SimpleStaticAbility(Zone.OUTSIDE, new InfoEffect("fake ability"));
|
|
fakeSourceAbilityTemplate.setControllerId(feedbackPlayer.getId());
|
|
Card fakeSourceCard = feedbackPlayer.getLibrary().getFromTop(game);
|
|
if (fakeSourceCard != null) {
|
|
// set any existing card as source, so dialogs will show all GUI elements, including source and workable popup info
|
|
fakeSourceAbilityTemplate.setSourceId(fakeSourceCard.getId());
|
|
}
|
|
|
|
List<String> errorsList = new ArrayList<>();
|
|
try {
|
|
String fileName = commandsFilePath;
|
|
if (fileName == null) {
|
|
fileName = INIT_FILE_PATH;
|
|
}
|
|
|
|
File f = new File(fileName);
|
|
if (!f.exists()) {
|
|
String mes = String.format("Couldn't find init file: %s", f.getAbsolutePath());
|
|
logger.warn(mes);
|
|
errorsList.add(mes);
|
|
sendCheatCommandsFeedback(game, feedbackPlayer, errorsList);
|
|
return;
|
|
}
|
|
|
|
logger.info("Parsing init file... ");
|
|
|
|
// steps:
|
|
// 1. parse groups and commands
|
|
// 2. ask user if many groups
|
|
// 3. process system commands
|
|
// 4. run commands from selected group
|
|
|
|
// 1. parse
|
|
List<CommandGroup> groups = new ArrayList<>();
|
|
|
|
// read config
|
|
List<String> initLines = new ArrayList<>();
|
|
try (Scanner scanner = new Scanner(f)) {
|
|
while (scanner.hasNextLine()) {
|
|
initLines.add(scanner.nextLine().trim());
|
|
}
|
|
}
|
|
|
|
// add default commands
|
|
initLines.add(0, String.format("[%s]", COMMAND_LANDS_ADD_TO_BATTLEFIELD));
|
|
initLines.add(1, String.format("[%s]", COMMAND_CARDS_ADD_TO_HAND));
|
|
initLines.add(2, String.format("[%s]", COMMAND_SHOW_TEST_DIALOGS));
|
|
initLines.add(3, String.format("[%s]", COMMAND_UNDER_CONTROL_TAKE));
|
|
initLines.add(4, String.format("[%s]", COMMAND_UNDER_CONTROL_GIVE));
|
|
|
|
// collect all commands
|
|
CommandGroup currentGroup = null;
|
|
for (String line : initLines) {
|
|
|
|
// skip comments
|
|
if (line.isEmpty() || line.startsWith("#") || line.startsWith("//")) {
|
|
continue;
|
|
}
|
|
|
|
// group
|
|
Matcher matchGroup = patternGroup.matcher(line);
|
|
if (matchGroup.matches()) {
|
|
String groupName = matchGroup.group(1);
|
|
if (groupName.startsWith("@")) {
|
|
// special command group
|
|
if (supportedCommands.containsKey(groupName)) {
|
|
currentGroup = new CommandGroup(groupName, true);
|
|
groups.add(currentGroup);
|
|
} else {
|
|
String mes = String.format("Special group is not supported: %s", groupName);
|
|
errorsList.add(mes);
|
|
logger.warn(mes);
|
|
}
|
|
continue;
|
|
} else {
|
|
// basic group
|
|
currentGroup = new CommandGroup(groupName);
|
|
groups.add(currentGroup);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// command
|
|
if (currentGroup == null) {
|
|
currentGroup = new CommandGroup("default group");
|
|
groups.add(currentGroup);
|
|
}
|
|
currentGroup.commands.add(line);
|
|
}
|
|
|
|
// 2. ask user
|
|
CommandGroup runGroup = null;
|
|
if (groups.size() == 1) {
|
|
// not need to ask
|
|
runGroup = groups.get(0);
|
|
} else if (groups.size() > 1) {
|
|
// need to ask
|
|
logger.info("Found " + groups.size() + " groups. Need to select.");
|
|
|
|
// choice dialog
|
|
Choice groupChoice = new ChoiceImpl(false);
|
|
groupChoice.setMessage("Choose commands group to run");
|
|
for (int i = 0; i < groups.size(); i++) {
|
|
groupChoice.withItem(
|
|
Integer.toString(i + 1),
|
|
groups.get(i).getPrintNameWithStats(),
|
|
i,
|
|
ChoiceHintType.TEXT,
|
|
String.join("<br>", groups.get(i).commands)
|
|
);
|
|
}
|
|
|
|
if (feedbackPlayer.choose(Outcome.Benefit, groupChoice, game)) {
|
|
String need = groupChoice.getChoiceKey();
|
|
if (need != null) {
|
|
runGroup = groups.get(Integer.parseInt(need) - 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (runGroup == null) {
|
|
// was canceled
|
|
logger.info("Command file was empty or canceled");
|
|
return;
|
|
}
|
|
|
|
logger.info(String.format("Selected group [%s] with %d commands",
|
|
runGroup.name,
|
|
runGroup.commands.size()
|
|
));
|
|
|
|
// 3. system commands
|
|
if (runGroup.isSpecialCommand) {
|
|
|
|
Player opponent = game.getPlayer(game.getOpponents(feedbackPlayer.getId(), true).stream().findFirst().orElse(null));
|
|
|
|
String info;
|
|
switch (runGroup.name) {
|
|
|
|
case COMMAND_SHOW_OPPONENT_HAND: {
|
|
if (opponent != null) {
|
|
info = getCardsListForSpecialInform(game, opponent.getHand(), runGroup.commands);
|
|
game.informPlayer(feedbackPlayer, info);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case COMMAND_SHOW_OPPONENT_LIBRARY: {
|
|
if (opponent != null) {
|
|
info = getCardsListForSpecialInform(game, opponent.getLibrary().getCardList(), runGroup.commands);
|
|
game.informPlayer(feedbackPlayer, info);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case COMMAND_SHOW_MY_HAND: {
|
|
info = getCardsListForSpecialInform(game, feedbackPlayer.getHand(), runGroup.commands);
|
|
game.informPlayer(feedbackPlayer, info);
|
|
break;
|
|
}
|
|
|
|
case COMMAND_SHOW_MY_LIBRARY: {
|
|
info = getCardsListForSpecialInform(game, feedbackPlayer.getLibrary().getCardList(), runGroup.commands);
|
|
game.informPlayer(feedbackPlayer, info);
|
|
break;
|
|
}
|
|
|
|
case COMMAND_CARDS_ADD_TO_HAND: {
|
|
|
|
// card
|
|
String cardName;
|
|
Choice cardChoice = new ChoiceImpl(false, ChoiceHintType.CARD);
|
|
cardChoice.setChoices(CardRepository.instance.getNames());
|
|
cardChoice.setMessage("Choose card name to put in hand");
|
|
if (!feedbackPlayer.choose(Outcome.Detriment, cardChoice, game)
|
|
|| cardChoice.getChoice() == null) {
|
|
break;
|
|
}
|
|
cardName = cardChoice.getChoice();
|
|
|
|
// amount
|
|
int cardAmount = feedbackPlayer.getAmount(1, 100, "How many [" + cardName + "] to add?", null, game);
|
|
if (cardAmount == 0) {
|
|
break;
|
|
}
|
|
|
|
// add to game
|
|
Set<Card> newCards = addNewCardsToGame(game, cardName, null, cardAmount, feedbackPlayer);
|
|
if (newCards == null) {
|
|
String mes = String.format("Can't add cards to hand: %s", cardName);
|
|
errorsList.add(mes);
|
|
logger.warn(mes);
|
|
break;
|
|
}
|
|
|
|
// move to hand
|
|
for (Card card : newCards) {
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
fakeSourceAbility.setSourceId(card.getId());
|
|
putCardToZone(fakeSourceAbility, game, feedbackPlayer, card, Zone.HAND);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case COMMAND_LANDS_ADD_TO_BATTLEFIELD: {
|
|
// select lands
|
|
List<MultiAmountMessage> lands = new ArrayList<>();
|
|
String spaceSymbol = " "; // workaround for space near icons
|
|
lands.add(new MultiAmountMessage("{W}" + spaceSymbol + "Plains", 0, 10, 5));
|
|
lands.add(new MultiAmountMessage("{U}" + spaceSymbol + "Island", 0, 10, 5));
|
|
lands.add(new MultiAmountMessage("{B}" + spaceSymbol + "Swamp", 0, 10, 5));
|
|
lands.add(new MultiAmountMessage("{R}" + spaceSymbol + "Mountain", 0, 10, 5));
|
|
lands.add(new MultiAmountMessage("{G}" + spaceSymbol + "Forest", 0, 10, 5));
|
|
lands.add(new MultiAmountMessage("{C}" + spaceSymbol + "Ash Barrens", 0, 10, 0));
|
|
List<Integer> landsAmount = feedbackPlayer.getMultiAmountWithIndividualConstraints(
|
|
Outcome.Neutral, lands, 0, 100, MultiAmountType.CHEAT_LANDS, game
|
|
);
|
|
if (landsAmount == null) {
|
|
break;
|
|
}
|
|
|
|
// add to game
|
|
Set<Card> newCards = new LinkedHashSet<>();
|
|
for (int i = 0; i < landsAmount.size(); i++) {
|
|
int cardAmount = landsAmount.get(i);
|
|
String cardName = lands.get(i).message.substring("{W}".length()).replace(spaceSymbol, " ").trim();
|
|
if (cardAmount > 0) {
|
|
Set<Card> addedCards = addNewCardsToGame(game, cardName, null, cardAmount, feedbackPlayer);
|
|
if (addedCards != null) {
|
|
newCards.addAll(addedCards);
|
|
} else {
|
|
errorsList.add("Can't add land card to game: " + cardName);
|
|
}
|
|
}
|
|
}
|
|
|
|
// move to battlefield
|
|
for (Card card : newCards) {
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
fakeSourceAbility.setSourceId(card.getId());
|
|
putCardToZone(fakeSourceAbility, game, feedbackPlayer, card, Zone.BATTLEFIELD);
|
|
}
|
|
break;
|
|
}
|
|
|
|
case COMMAND_UNDER_CONTROL_TAKE: {
|
|
Target target = new TargetOpponent().withNotTarget(true).withChooseHint("to take under your control");
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
if (feedbackPlayer.chooseTarget(Outcome.GainControl, target, fakeSourceAbility, game)) {
|
|
Player targetPlayer = game.getPlayer(target.getFirstTarget());
|
|
if (!targetPlayer.getId().equals(feedbackPlayer.getId())) {
|
|
CardUtil.takeControlUnderPlayerStart(game, fakeSourceAbility, feedbackPlayer, targetPlayer, false);
|
|
// allow priority play again in same step (for better cheat UX)
|
|
targetPlayer.resetPassed();
|
|
}
|
|
// workaround for refresh priority dialog like avatar click (cheats called from priority in 99%)
|
|
game.firePriorityEvent(feedbackPlayer.getId());
|
|
}
|
|
break;
|
|
}
|
|
|
|
case COMMAND_UNDER_CONTROL_GIVE: {
|
|
Target target = new TargetPlayer().withNotTarget(true).withChooseHint("to give control of your player");
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
if (feedbackPlayer.chooseTarget(Outcome.GainControl, target, fakeSourceAbility, game)) {
|
|
Player targetPlayer = game.getPlayer(target.getFirstTarget());
|
|
if (targetPlayer != null) {
|
|
if (!targetPlayer.getId().equals(feedbackPlayer.getId())) {
|
|
// give control to another player
|
|
CardUtil.takeControlUnderPlayerStart(game, fakeSourceAbility, targetPlayer, feedbackPlayer, false);
|
|
} else {
|
|
// return control to itself
|
|
CardUtil.takeControlUnderPlayerEnd(game, fakeSourceAbility, feedbackPlayer, targetPlayer);
|
|
}
|
|
}
|
|
// workaround for refresh priority dialog like avatar click (cheats called from priority in 99%)
|
|
game.firePriorityEvent(feedbackPlayer.getId());
|
|
}
|
|
break;
|
|
}
|
|
|
|
case COMMAND_SHOW_TEST_DIALOGS: {
|
|
testableDialogsRunner.selectAndShowTestableDialog(feedbackPlayer, fakeSourceAbilityTemplate.copy(), game, opponent);
|
|
break;
|
|
}
|
|
|
|
default: {
|
|
String mes = String.format("Unknown system command: %s", runGroup.name);
|
|
errorsList.add(mes);
|
|
logger.error(mes);
|
|
break;
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
// insert group refs as extra commands (only user defined groups allowed, no special)
|
|
Map<String, CommandGroup> otherGroupRefs = new HashMap<>();
|
|
for (CommandGroup group : groups) {
|
|
if (group != runGroup) {
|
|
otherGroupRefs.putIfAbsent(COMMAND_REF_PREFIX + group.name, group);
|
|
}
|
|
}
|
|
for (int i = runGroup.commands.size() - 1; i >= 0; i--) {
|
|
String line = runGroup.commands.get(i);
|
|
// replace ref by real commands from another group
|
|
if (line.startsWith(COMMAND_REF_PREFIX)) {
|
|
CommandGroup other = otherGroupRefs.getOrDefault(line, null);
|
|
if (other != null && !other.isSpecialCommand) {
|
|
logger.info(String.format("Replace ref group [%s] by %d child commands",
|
|
line,
|
|
other.commands.size()
|
|
));
|
|
runGroup.commands.remove(i);
|
|
runGroup.commands.addAll(i, other.commands);
|
|
} else {
|
|
String mes = String.format("Can't find ref group: %s", line);
|
|
errorsList.add(mes);
|
|
logger.error(mes);
|
|
}
|
|
}
|
|
}
|
|
|
|
// 4. run commands
|
|
for (String line : runGroup.commands) {
|
|
|
|
CardCommandData command = parseCardCommand(line);
|
|
if (!command.OK) {
|
|
String mes = String.format("%s: %s", command.Error, line);
|
|
errorsList.add(mes);
|
|
logger.warn(mes);
|
|
continue;
|
|
}
|
|
|
|
Optional<Player> playerOptional = findPlayer(game, command.player);
|
|
if (!playerOptional.isPresent()) {
|
|
String mes = String.format("Unknown player: %s", line);
|
|
errorsList.add(mes);
|
|
logger.warn(mes);
|
|
continue;
|
|
}
|
|
Player player = playerOptional.get();
|
|
|
|
// SPECIAL token/emblem call (without SET name)
|
|
if ("token".equalsIgnoreCase(command.zone)) {
|
|
// eg: token:Human:HippoToken:1
|
|
Class<?> c = Class.forName("mage.game.permanent.token." + command.cardName);
|
|
Constructor<?> cons = c.getConstructor();
|
|
Object obj = cons.newInstance();
|
|
if (obj instanceof Token) {
|
|
Token token = (Token) obj;
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
fakeSourceAbility.setSourceId(token.getId());
|
|
token.putOntoBattlefield(command.Amount, game, fakeSourceAbility, player.getId(), false, false);
|
|
continue;
|
|
}
|
|
} else if ("emblem".equalsIgnoreCase(command.zone)) {
|
|
// eg: emblem:Human:ElspethSunsChampionEmblem:1
|
|
Class<?> c = Class.forName("mage.game.command.emblems." + command.cardName);
|
|
Constructor<?> cons = c.getConstructor();
|
|
Object emblem = cons.newInstance();
|
|
if (emblem instanceof mage.game.command.Emblem) {
|
|
((mage.game.command.Emblem) emblem).setControllerId(player.getId());
|
|
game.addEmblem((mage.game.command.Emblem) emblem, null, player.getId());
|
|
continue;
|
|
}
|
|
} else if ("plane".equalsIgnoreCase(command.zone)) {
|
|
if (putPlaneToGame(game, player, command.cardName)) {
|
|
continue;
|
|
}
|
|
} else if ("loyalty".equalsIgnoreCase(command.zone)) {
|
|
for (Permanent perm : game.getBattlefield().getAllActivePermanents(player.getId())) {
|
|
if (perm.getName().equals(command.cardName) && perm.getCardType(game).contains(CardType.PLANESWALKER)) {
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
fakeSourceAbility.setSourceId(perm.getId());
|
|
perm.addCounters(CounterType.LOYALTY.createInstance(command.Amount), fakeSourceAbility.getControllerId(), fakeSourceAbility, game);
|
|
}
|
|
}
|
|
continue;
|
|
} else if ("stack".equalsIgnoreCase(command.zone)) {
|
|
// simple cast (without targets or modes)
|
|
|
|
Set<Card> newCards = addNewCardsToGame(game, command.cardName, command.cardSet, command.Amount, player);
|
|
if (newCards == null) {
|
|
String mes = String.format("Unknown card for stack command [%s]: %s",
|
|
command.cardName,
|
|
line);
|
|
errorsList.add(mes);
|
|
logger.warn(mes);
|
|
continue;
|
|
}
|
|
|
|
// move card from exile to stack
|
|
for (Card card : newCards) {
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
fakeSourceAbility.setSourceId(card.getId());
|
|
putCardToZone(fakeSourceAbility, game, player, card, Zone.STACK);
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
Zone gameZone;
|
|
if ("hand".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.HAND;
|
|
} else if ("battlefield".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.BATTLEFIELD;
|
|
} else if ("graveyard".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.GRAVEYARD;
|
|
} else if ("library".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.LIBRARY;
|
|
} else if ("token".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.BATTLEFIELD;
|
|
} else if ("exiled".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.EXILED;
|
|
} else if ("outside".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.OUTSIDE;
|
|
} else if ("emblem".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.COMMAND;
|
|
} else if ("plane".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.COMMAND;
|
|
} else if ("commander".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.COMMAND;
|
|
} else if ("sideboard".equalsIgnoreCase(command.zone)) {
|
|
gameZone = Zone.OUTSIDE;
|
|
} else {
|
|
String mes = String.format("Unknown zone [%s]: %s",
|
|
command.zone,
|
|
line);
|
|
errorsList.add(mes);
|
|
logger.warn(mes);
|
|
continue;
|
|
}
|
|
|
|
List<CardInfo> cards;
|
|
if (command.cardSet.isEmpty()) {
|
|
// by name
|
|
cards = CardRepository.instance.findCards(command.cardName);
|
|
} else {
|
|
// by name and set
|
|
cards = CardRepository.instance.findCards(new CardCriteria().setCodes(command.cardSet).name(command.cardName));
|
|
}
|
|
|
|
if (cards.isEmpty()) {
|
|
String mes = String.format("Unknown card [%s%s]: %s",
|
|
command.cardSet.isEmpty() ? "" : command.cardSet + "-",
|
|
command.cardName,
|
|
line
|
|
);
|
|
errorsList.add(mes);
|
|
logger.warn(mes);
|
|
continue;
|
|
}
|
|
|
|
Set<Card> cardsToLoad = new HashSet<>();
|
|
for (int i = 0; i < command.Amount; i++) {
|
|
CardInfo cardInfo = cards.get(RandomUtil.nextInt(cards.size()));
|
|
Card card = cardInfo != null ? cardInfo.createCard() : null;
|
|
if (card != null) {
|
|
cardsToLoad.add(card);
|
|
}
|
|
}
|
|
game.loadCards(cardsToLoad, player.getId());
|
|
|
|
if ("commander".equalsIgnoreCase(command.zone) && cardsToLoad.size() > 0) {
|
|
// as commander (only commander games, look at init code in GameCommanderImpl)
|
|
if (game instanceof GameCommanderImpl) {
|
|
GameCommanderImpl gameCommander = (GameCommanderImpl) game;
|
|
cardsToLoad.forEach(card -> gameCommander.addCommander(card, player));
|
|
cardsToLoad.forEach(card -> gameCommander.initCommander(card, player));
|
|
} else {
|
|
String mes = String.format("Commander card can be used in commander game only: %s", command.cardName);
|
|
errorsList.add(mes);
|
|
logger.error(mes);
|
|
}
|
|
} else if ("sideboard".equalsIgnoreCase(command.zone) && cardsToLoad.size() > 0) {
|
|
// put to sideboard
|
|
for (Card card : cardsToLoad) {
|
|
player.getSideboard().add(card);
|
|
}
|
|
} else {
|
|
// as other card
|
|
for (Card card : cardsToLoad) {
|
|
Ability fakeSourceAbility = fakeSourceAbilityTemplate.copy();
|
|
fakeSourceAbility.setSourceId(card.getId());
|
|
putCardToZone(fakeSourceAbility, game, player, card, gameZone);
|
|
}
|
|
}
|
|
}
|
|
} catch (Exception e) {
|
|
String mes = String.format("Catch critical error on cheating: %s", e.getMessage());
|
|
errorsList.add(mes);
|
|
logger.error(mes, e);
|
|
} finally {
|
|
sendCheatCommandsFeedback(game, feedbackPlayer, errorsList);
|
|
}
|
|
}
|
|
|
|
private static void sendCheatCommandsFeedback(Game game, Player feedbackPlayer, List<String> errorsList) {
|
|
// inform all players about wrong commands or other errors
|
|
// TODO: it's a workaround to show a dialog with error message (must be replaced by message dialog for feedback player)
|
|
if (errorsList.size() > 0) {
|
|
String mes = String.format("Player %s tried to apply cheat commands and catch %d errors:\n\n",
|
|
feedbackPlayer.getName(), errorsList.size());
|
|
mes += String.join("\n", errorsList);
|
|
mes += "\n";
|
|
game.fireErrorEvent("Cheat command errors, see server logs for details", new IllegalArgumentException(mes));
|
|
}
|
|
game.informPlayers(String.format("%s: tried to apply cheat commands", feedbackPlayer.getLogName()));
|
|
}
|
|
|
|
/**
|
|
* For cheats only: add new cards to the game (it's put to outside zone, so you must move it to real zone after that)
|
|
*
|
|
* @param setCode can be null for latest set code
|
|
* @return added cards list
|
|
*/
|
|
private static Set<Card> addNewCardsToGame(Game game, String cardName, String setCode, int amount, Player owner) {
|
|
CardInfo cardInfo = CardLookup.instance.lookupCardInfo(cardName, setCode).orElse(null);
|
|
if (cardInfo == null || amount <= 0) {
|
|
return null;
|
|
}
|
|
|
|
Set<Card> cardsToLoad = new LinkedHashSet<>();
|
|
for (int i = 0; i < amount; i++) {
|
|
cardsToLoad.add(cardInfo.createCard());
|
|
}
|
|
game.loadCards(cardsToLoad, owner.getId());
|
|
|
|
return cardsToLoad;
|
|
}
|
|
|
|
/**
|
|
* Put card to specified zone (battlefield zone will be tranformed to permanent with initialized effects)
|
|
* Use it for cheats and tests only
|
|
*/
|
|
private static void putCardToZone(Ability source, Game game, Player player, Card card, Zone zone) {
|
|
// TODO: replace by player.move?
|
|
switch (zone) {
|
|
case BATTLEFIELD:
|
|
CardUtil.putCardOntoBattlefieldWithEffects(source, game, card, player, false);
|
|
break;
|
|
case LIBRARY:
|
|
card.setZone(Zone.LIBRARY, game);
|
|
player.getLibrary().putOnTop(card, game);
|
|
break;
|
|
case STACK:
|
|
card.cast(game, game.getState().getZone(card.getId()), card.getSpellAbility(), player.getId());
|
|
break;
|
|
case EXILED:
|
|
card.setZone(Zone.EXILED, game);
|
|
game.getExile().getPermanentExile().add(card);
|
|
break;
|
|
case OUTSIDE:
|
|
card.setZone(Zone.OUTSIDE, game);
|
|
break;
|
|
default:
|
|
card.moveToZone(zone, null, game, false);
|
|
break;
|
|
}
|
|
game.applyEffects();
|
|
logger.info("Added card to player's " + zone.toString() + ": " + card.getName() + ", player = " + player.getName());
|
|
}
|
|
|
|
public static boolean putPlaneToGame(Game game, Player player, String planeClassName) {
|
|
// remove the last plane and set its effects to discarded
|
|
for (CommandObject comObject : game.getState().getCommand()) {
|
|
if (comObject instanceof Plane) {
|
|
if (comObject.getAbilities() != null) {
|
|
for (Ability ability : comObject.getAbilities()) {
|
|
for (Effect effect : ability.getEffects()) {
|
|
if (effect instanceof ContinuousEffect) {
|
|
((ContinuousEffect) effect).discard();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
game.getState().removeTriggersOfSourceId(comObject.getId());
|
|
game.getState().getCommand().remove(comObject);
|
|
break;
|
|
}
|
|
}
|
|
|
|
// put new plane to game
|
|
Planes planeType = Planes.fromClassName(planeClassName);
|
|
Plane plane = Plane.createPlane(planeType);
|
|
if (plane != null) {
|
|
game.addPlane(plane, player.getId());
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Find player by name.
|
|
*
|
|
* @param game
|
|
* @param name
|
|
* @return
|
|
*/
|
|
private static Optional<Player> findPlayer(Game game, String name) {
|
|
return game.getPlayers().values().stream()
|
|
.filter(player -> player.getName().equals(name)).findFirst();
|
|
|
|
}
|
|
|
|
public static String sanitize(String input) {
|
|
//Pattern pattern = Pattern.compile("[^0-9a-zA-Z]");
|
|
//Matcher matcher = pattern.matcher(input);
|
|
//return matcher.replaceAll("");
|
|
return input.replaceAll("[^a-zA-Z0-9]", "");
|
|
}
|
|
|
|
/**
|
|
* Get a diff between two dates
|
|
*
|
|
* @param date1 the oldest date
|
|
* @param date2 the newest date
|
|
* @param timeUnit the unit in which you want the diff
|
|
* @return the diff value, in the provided unit
|
|
*/
|
|
public static long getDateDiff(Date date1, Date date2, TimeUnit timeUnit) {
|
|
long diffInMillies = date2.getTime() - date1.getTime();
|
|
return timeUnit.convert(diffInMillies, TimeUnit.MILLISECONDS);
|
|
}
|
|
|
|
/**
|
|
* Parse set code and card name from command line
|
|
*
|
|
* @param info format example: XLN-Mountain (set code must be upper case)
|
|
* @return
|
|
*/
|
|
public static List<String> parseSetAndCardNameCommand(String info) {
|
|
Matcher matchInfo = patternCardInfo.matcher(info);
|
|
String cardSet = "";
|
|
String cardName = info;
|
|
if (matchInfo.matches()) {
|
|
// set with card
|
|
cardSet = matchInfo.group(1);
|
|
cardName = matchInfo.group(2);
|
|
}
|
|
return Arrays.asList(cardSet, cardName);
|
|
}
|
|
}
|