Merge pull request #3 from magefree/master

Sync versions
This commit is contained in:
Oleg Agafonov 2017-11-18 15:01:11 +04:00 committed by GitHub
commit 0a34fcbca2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 32429 additions and 39 deletions

View file

@ -218,13 +218,15 @@ public class CardPanelRenderImpl extends CardPanel {
} }
} }
// Map of generated images // Map of generated images
private final static Map<ImageKey, BufferedImage> IMAGE_CACHE = new MapMaker().softValues().makeMap(); private final static Map<ImageKey, BufferedImage> IMAGE_CACHE = new MapMaker().softValues().makeMap();
// The art image for the card, loaded in from the disk // The art image for the card, loaded in from the disk
private BufferedImage artImage; private BufferedImage artImage;
// The faceart image for the card, loaded in from the disk (based on artid from mtgo)
private BufferedImage faceArtImage;
// Factory to generate card appropriate views // Factory to generate card appropriate views
private CardRendererFactory cardRendererFactory = new CardRendererFactory(); private CardRendererFactory cardRendererFactory = new CardRendererFactory();
@ -252,6 +254,8 @@ public class CardPanelRenderImpl extends CardPanel {
// Use the art image and current rendered image from the card // Use the art image and current rendered image from the card
artImage = impl.artImage; artImage = impl.artImage;
cardRenderer.setArtImage(artImage); cardRenderer.setArtImage(artImage);
faceArtImage = impl.faceArtImage;
cardRenderer.setFaceArtImage(faceArtImage);
cardImage = impl.cardImage; cardImage = impl.cardImage;
} }
} }
@ -263,8 +267,8 @@ public class CardPanelRenderImpl extends CardPanel {
// Try to get card image from cache based on our card characteristics // Try to get card image from cache based on our card characteristics
ImageKey key ImageKey key
= new ImageKey(gameCard, artImage, = new ImageKey(gameCard, artImage,
getCardWidth(), getCardHeight(), getCardWidth(), getCardHeight(),
isChoosable(), isSelected()); isChoosable(), isSelected());
cardImage = IMAGE_CACHE.computeIfAbsent(key, k -> renderCard()); cardImage = IMAGE_CACHE.computeIfAbsent(key, k -> renderCard());
// No cached copy exists? Render one and cache it // No cached copy exists? Render one and cache it
@ -277,7 +281,6 @@ public class CardPanelRenderImpl extends CardPanel {
/** /**
* Create an appropriate card renderer for the * Create an appropriate card renderer for the
*/ */
/** /**
* Render the card to a new BufferedImage at it's current dimensions * Render the card to a new BufferedImage at it's current dimensions
* *
@ -315,6 +318,7 @@ public class CardPanelRenderImpl extends CardPanel {
artImage = null; artImage = null;
cardImage = null; cardImage = null;
cardRenderer.setArtImage(null); cardRenderer.setArtImage(null);
cardRenderer.setFaceArtImage(null);
// Stop animation // Stop animation
tappedAngle = isTapped() ? CardPanel.TAPPED_ANGLE : 0; tappedAngle = isTapped() ? CardPanel.TAPPED_ANGLE : 0;
@ -332,19 +336,26 @@ public class CardPanelRenderImpl extends CardPanel {
Util.threadPool.submit(() -> { Util.threadPool.submit(() -> {
try { try {
final BufferedImage srcImage; final BufferedImage srcImage;
final BufferedImage faceArtSrcImage;
if (gameCard.isFaceDown()) { if (gameCard.isFaceDown()) {
// Nothing to do // Nothing to do
srcImage = null; srcImage = null;
faceArtSrcImage = null;
} else if (getCardWidth() > THUMBNAIL_SIZE_FULL.width) { } else if (getCardWidth() > THUMBNAIL_SIZE_FULL.width) {
srcImage = ImageCache.getImage(gameCard, getCardWidth(), getCardHeight()); srcImage = ImageCache.getImage(gameCard, getCardWidth(), getCardHeight());
faceArtSrcImage = ImageCache.getFaceImage(gameCard, getCardWidth(), getCardHeight());
} else { } else {
srcImage = ImageCache.getThumbnail(gameCard); srcImage = ImageCache.getThumbnail(gameCard);
faceArtSrcImage = ImageCache.getFaceImage(gameCard, getCardWidth(), getCardHeight());
} }
UI.invokeLater(() -> { UI.invokeLater(() -> {
if (stamp == updateArtImageStamp) { if (stamp == updateArtImageStamp) {
artImage = srcImage; artImage = srcImage;
cardRenderer.setArtImage(srcImage); cardRenderer.setArtImage(srcImage);
faceArtImage = faceArtSrcImage;
cardRenderer.setFaceArtImage(faceArtSrcImage);
if (srcImage != null) { if (srcImage != null) {
// Invalidate and repaint // Invalidate and repaint
cardImage = null; cardImage = null;
@ -370,6 +381,7 @@ public class CardPanelRenderImpl extends CardPanel {
cardImage = null; cardImage = null;
cardRenderer = cardRendererFactory.create(gameCard, isTransformed()); cardRenderer = cardRendererFactory.create(gameCard, isTransformed());
cardRenderer.setArtImage(artImage); cardRenderer.setArtImage(artImage);
cardRenderer.setFaceArtImage(faceArtImage);
// Repaint // Repaint
repaint(); repaint();

View file

@ -66,6 +66,9 @@ public abstract class CardRenderer {
// The card image // The card image
protected BufferedImage artImage; protected BufferedImage artImage;
// The face card image
protected BufferedImage faceArtImage;
/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
// Common layout metrics between all cards // Common layout metrics between all cards
// Polygons for counters // Polygons for counters
@ -289,8 +292,8 @@ public abstract class CardRenderer {
try { try {
BufferedImage subImg BufferedImage subImg
= artImage.getSubimage( = artImage.getSubimage(
(int) (artRect.getX() * fullCardImgWidth), (int) (artRect.getY() * fullCardImgHeight), (int) (artRect.getX() * fullCardImgWidth), (int) (artRect.getY() * fullCardImgHeight),
(int) artWidth, (int) artHeight); (int) artWidth, (int) artHeight);
g.drawImage(subImg, g.drawImage(subImg,
x, y, x, y,
(int) targetWidth, (int) targetHeight, (int) targetWidth, (int) targetHeight,
@ -300,6 +303,40 @@ public abstract class CardRenderer {
} }
} }
protected void drawFaceArtIntoRect(Graphics2D g, int x, int y, int w, int h, Rectangle2D artRect, boolean shouldPreserveAspect) {
// Perform a process to make sure that the art is scaled uniformly to fill the frame, cutting
// off the minimum amount necessary to make it completely fill the frame without "squashing" it.
double fullCardImgWidth = faceArtImage.getWidth();
double fullCardImgHeight = faceArtImage.getHeight();
double artWidth = fullCardImgWidth;
double artHeight = fullCardImgHeight;
double targetWidth = w;
double targetHeight = h;
double targetAspect = targetWidth / targetHeight;
if (!shouldPreserveAspect) {
// No adjustment to art
} else if (targetAspect * artHeight < artWidth) {
// Trim off some width
artWidth = targetAspect * artHeight;
} else {
// Trim off some height
artHeight = artWidth / targetAspect;
}
try {
/*BufferedImage subImg
= faceArtImage.getSubimage(
(int) (artRect.getX() * fullCardImgWidth), (int) (artRect.getY() * fullCardImgHeight),
(int) artWidth, (int) artHeight);*/
g.drawImage(faceArtImage,
x, y,
(int) targetWidth, (int) targetHeight,
null);
} catch (RasterFormatException e) {
// At very small card sizes we may encounter a problem with rounding error making the rect not fit
System.out.println(e);
}
}
// Draw +1/+1 and other counters // Draw +1/+1 and other counters
protected void drawCounters(Graphics2D g) { protected void drawCounters(Graphics2D g) {
int xPos = (int) (0.65 * cardWidth); int xPos = (int) (0.65 * cardWidth);
@ -442,4 +479,10 @@ public abstract class CardRenderer {
public void setArtImage(Image image) { public void setArtImage(Image image) {
artImage = CardRendererUtils.toBufferedImage(image); artImage = CardRendererUtils.toBufferedImage(image);
} }
// Set the card art image (CardPanel will give it to us when it
// is loaded and ready)
public void setFaceArtImage(Image image) {
faceArtImage = CardRendererUtils.toBufferedImage(image);
}
} }

View file

@ -279,6 +279,8 @@ public class ModernCardRenderer extends CardRenderer {
// Just draw a brown rectangle // Just draw a brown rectangle
drawCardBack(g); drawCardBack(g);
} else { } else {
BufferedImage bufferedImage = new BufferedImage(300, 300, BufferedImage.TYPE_INT_RGB);
// Set texture to paint with // Set texture to paint with
g.setPaint(getBackgroundPaint(cardView.getColor(), cardView.getCardTypes(), cardView.getSubTypes())); g.setPaint(getBackgroundPaint(cardView.getColor(), cardView.getCardTypes(), cardView.getSubTypes()));
@ -348,8 +350,15 @@ public class ModernCardRenderer extends CardRenderer {
@Override @Override
protected void drawArt(Graphics2D g) { protected void drawArt(Graphics2D g) {
if (artImage != null && !cardView.isFaceDown()) { if (artImage != null && !cardView.isFaceDown()) {
boolean useFaceArt = false;
if (faceArtImage != null) {
useFaceArt = true;
}
// Invention rendering, art fills the entire frame // Invention rendering, art fills the entire frame
if (useInventionFrame()) { if (useInventionFrame()) {
useFaceArt = false;
drawArtIntoRect(g, drawArtIntoRect(g,
borderWidth, borderWidth, borderWidth, borderWidth,
cardWidth - 2 * borderWidth, cardHeight - 2 * borderWidth, cardWidth - 2 * borderWidth, cardHeight - 2 * borderWidth,
@ -360,6 +369,7 @@ public class ModernCardRenderer extends CardRenderer {
Rectangle2D sourceRect = getArtRect(); Rectangle2D sourceRect = getArtRect();
if (cardView.getMageObjectType() == MageObjectType.SPELL) { if (cardView.getMageObjectType() == MageObjectType.SPELL) {
useFaceArt = false;
ArtRect rect = cardView.getArtRect(); ArtRect rect = cardView.getArtRect();
if (rect == ArtRect.SPLIT_FUSED) { if (rect == ArtRect.SPLIT_FUSED) {
// Special handling for fused, draw the art from both halves stacked on top of one and other // Special handling for fused, draw the art from both halves stacked on top of one and other
@ -380,10 +390,17 @@ public class ModernCardRenderer extends CardRenderer {
} }
// Normal drawing of art from a source part of the card frame into the rect // Normal drawing of art from a source part of the card frame into the rect
drawArtIntoRect(g, if (useFaceArt) {
totalContentInset + 1, totalContentInset + boxHeight, drawFaceArtIntoRect(g,
contentWidth - 2, typeLineY - totalContentInset - boxHeight, totalContentInset + 1, totalContentInset + boxHeight,
sourceRect, shouldPreserveAspect); contentWidth - 2, typeLineY - totalContentInset - boxHeight,
sourceRect, shouldPreserveAspect);
} else {
drawArtIntoRect(g,
totalContentInset + 1, totalContentInset + boxHeight,
contentWidth - 2, typeLineY - totalContentInset - boxHeight,
sourceRect, shouldPreserveAspect);
}
} }
} }
@ -420,6 +437,7 @@ public class ModernCardRenderer extends CardRenderer {
g.setPaint(new Color(255, 255, 255, 150)); g.setPaint(new Color(255, 255, 255, 150));
} else { } else {
g.setPaint(textboxPaint); g.setPaint(textboxPaint);
} }
g.fillRect( g.fillRect(
totalContentInset + 1, typeLineY, totalContentInset + 1, typeLineY,
@ -476,6 +494,9 @@ public class ModernCardRenderer extends CardRenderer {
// Draw the transform circle // Draw the transform circle
int nameOffset = drawTransformationCircle(g, borderPaint); int nameOffset = drawTransformationCircle(g, borderPaint);
// Draw the transform circle
nameOffset = drawTransformationCircle(g, borderPaint);
// Draw the name line // Draw the name line
drawNameLine(g, cardView.getDisplayName(), manaCostString, drawNameLine(g, cardView.getDisplayName(), manaCostString,
totalContentInset + nameOffset, totalContentInset, totalContentInset + nameOffset, totalContentInset,

View file

@ -44,6 +44,7 @@ public final class ImageCache {
private static final Logger LOGGER = Logger.getLogger(ImageCache.class); private static final Logger LOGGER = Logger.getLogger(ImageCache.class);
private static final Map<String, BufferedImage> IMAGE_CACHE; private static final Map<String, BufferedImage> IMAGE_CACHE;
private static final Map<String, BufferedImage> FACE_IMAGE_CACHE;
/** /**
* Common pattern for keys. Format: "<cardname>#<setname>#<collectorID>" * Common pattern for keys. Format: "<cardname>#<setname>#<collectorID>"
@ -155,6 +156,55 @@ public final class ImageCache {
return makeThumbnail(image, thumbnailPath); return makeThumbnail(image, thumbnailPath);
} }
}); });
FACE_IMAGE_CACHE = new MapMaker().softValues().makeComputingMap(new Function<String, BufferedImage>() {
@Override
public BufferedImage apply(String key) {
try {
Matcher m = KEY_PATTERN.matcher(key);
if (m.matches()) {
String name = m.group(1);
String set = m.group(2);
//Integer artid = Integer.parseInt(m.group(2));
String path;
path = CardImageUtils.generateFaceImagePath(name, set);
if (path == null) {
return null;
}
TFile file = getTFile(path);
if (file == null) {
return null;
}
BufferedImage image = loadImage(file);
return image;
} else {
throw new RuntimeException(
"Requested face image doesn't fit the requirement for key (<cardname>#<artid>#: " + key);
}
} catch (Exception ex) {
if (ex instanceof ComputationException) {
throw (ComputationException) ex;
} else {
throw new ComputationException(ex);
}
}
}
public BufferedImage makeThumbnailByFile(String key, TFile file, String thumbnailPath) {
BufferedImage image = loadImage(file);
image = getWizardsCard(image);
if (image == null) {
return null;
}
LOGGER.debug("creating thumbnail for " + key);
return makeThumbnail(image, thumbnailPath);
}
});
} }
public static String getFilePath(CardView card, int width) { public static String getFilePath(CardView card, int width) {
@ -263,6 +313,10 @@ public final class ImageCache {
return getImage(getKey(card, card.getName(), "")); return getImage(getKey(card, card.getName(), ""));
} }
public static BufferedImage getImageFaceOriginal(CardView card) {
return getFaceImage(getFaceKey(card, card.getName(), card.getExpansionSetCode()));
}
public static BufferedImage getImageOriginalAlternateName(CardView card) { public static BufferedImage getImageOriginalAlternateName(CardView card) {
return getImage(getKey(card, card.getAlternateName(), "")); return getImage(getKey(card, card.getAlternateName(), ""));
} }
@ -288,6 +342,27 @@ public final class ImageCache {
} }
} }
/**
* Returns the Image corresponding to the key
*/
private static BufferedImage getFaceImage(String key) {
try {
return FACE_IMAGE_CACHE.get(key);
} catch (NullPointerException ex) {
// unfortunately NullOutputException, thrown when apply() returns
// null, is not public
// NullOutputException is a subclass of NullPointerException
// legitimate, happens when a card has no image
return null;
} catch (ComputationException ex) {
if (ex.getCause() instanceof NullPointerException) {
return null;
}
LOGGER.error(ex, ex);
return null;
}
}
/** /**
* Returns the Image corresponding to the key only if it already exists in * Returns the Image corresponding to the key only if it already exists in
* the cache. * the cache.
@ -296,6 +371,14 @@ public final class ImageCache {
return IMAGE_CACHE.containsKey(key) ? IMAGE_CACHE.get(key) : null; return IMAGE_CACHE.containsKey(key) ? IMAGE_CACHE.get(key) : null;
} }
/**
* Returns the Image corresponding to the key only if it already exists in
* the cache.
*/
private static BufferedImage tryGetFaceImage(String key) {
return FACE_IMAGE_CACHE.containsKey(key) ? FACE_IMAGE_CACHE.get(key) : null;
}
/** /**
* Returns the map key for a card, without any suffixes for the image size. * Returns the map key for a card, without any suffixes for the image size.
*/ */
@ -307,6 +390,13 @@ public final class ImageCache {
+ (card.getTokenDescriptor() != null ? '#' + card.getTokenDescriptor() : "#"); + (card.getTokenDescriptor() != null ? '#' + card.getTokenDescriptor() : "#");
} }
/**
* Returns the map key for a card, without any suffixes for the image size.
*/
private static String getFaceKey(CardView card, String name, String set) {
return name + '#' + set + "####";
}
// /** // /**
// * Returns the map key for the flip image of a card, without any suffixes for the image size. // * Returns the map key for the flip image of a card, without any suffixes for the image size.
// */ // */
@ -409,6 +499,25 @@ public final class ImageCache {
return TransformedImageCache.getResizedImage(original, (int) (original.getWidth() * scale), (int) (original.getHeight() * scale)); return TransformedImageCache.getResizedImage(original, (int) (original.getWidth() * scale), (int) (original.getHeight() * scale));
} }
/**
* Returns the image appropriate to display the card in the picture panel
*
* @param card
* @param width
* @param height
* @return
*/
public static BufferedImage getFaceImage(CardView card, int width, int height) {
String key = getFaceKey(card, card.getName(), card.getExpansionSetCode());
BufferedImage original = getFaceImage(key);
if (original == null) {
LOGGER.debug(key + " (faceimage) not found");
return null;
}
return original;
}
/** /**
* Returns the image appropriate to display for a card in a picture panel, * Returns the image appropriate to display for a card in a picture panel,
* but only it was ALREADY LOADED. That is, the call is immediate and will * but only it was ALREADY LOADED. That is, the call is immediate and will

View file

@ -48,7 +48,7 @@ public final class CardImageUtils {
log.warn("Token image file not found: " + card.getSet() + " - " + card.getTokenSetCode() + " - " + card.getName()); log.warn("Token image file not found: " + card.getSet() + " - " + card.getTokenSetCode() + " - " + card.getName());
return null; return null;
} }
/** /**
* *
* @param card * @param card
@ -204,6 +204,14 @@ public final class CardImageUtils {
return imageDir + TFile.separator + imageName; return imageDir + TFile.separator + imageName;
} }
public static String generateFaceImagePath(String cardname, String set) {
String useDefault = PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_USE_DEFAULT, "true");
String imagesPath = Objects.equals(useDefault, "true") ? Constants.IO.imageBaseDir : PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_PATH, null);
String imageDir = imagesPath;
String imageName = set + TFile.separator + cardname + ".jpg";
return imageDir + TFile.separator + "FACE" + TFile.separator + imageName;
}
public static String generateTokenDescriptorImagePath(CardDownloadData card) { public static String generateTokenDescriptorImagePath(CardDownloadData card) {
// String useDefault = PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_USE_DEFAULT, "true"); // String useDefault = PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_USE_DEFAULT, "true");
// String imagesPath = Objects.equals(useDefault, "true") ? null : PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_PATH, null); // String imagesPath = Objects.equals(useDefault, "true") ? null : PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_PATH, null);

View file

@ -117,9 +117,9 @@ public class CanadianHighlander extends Constructed {
|| cn.equals("Mana Crypt") || cn.equals("Mana Crypt")
|| cn.equals("Mystical Tutor") || cn.equals("Mystical Tutor")
|| cn.equals("Strip Mine") || cn.equals("Strip Mine")
|| cn.equals("Summoners Pact") || cn.equals("Summoner's Pact")
|| cn.equals("Survival of the Fittest") || cn.equals("Survival of the Fittest")
|| cn.equals("Umezawas Jitte")) { || cn.equals("Umezawa's Jitte")) {
totalPoints += 2; totalPoints += 2;
invalid.put(entry.getKey(), " 2 points " + cn); invalid.put(entry.getKey(), " 2 points " + cn);
} }

View file

@ -32,6 +32,7 @@ import mage.abilities.Ability;
import mage.abilities.SpellAbility; import mage.abilities.SpellAbility;
import mage.abilities.costs.common.PayLifeCost; import mage.abilities.costs.common.PayLifeCost;
import mage.abilities.effects.common.DestroyMultiTargetEffect; import mage.abilities.effects.common.DestroyMultiTargetEffect;
import mage.abilities.effects.common.InfoEffect;
import mage.cards.CardImpl; import mage.cards.CardImpl;
import mage.cards.CardSetInfo; import mage.cards.CardSetInfo;
import mage.constants.CardType; import mage.constants.CardType;
@ -44,17 +45,17 @@ import mage.target.common.TargetCreaturePermanent;
* @author escplan9 - Derek Monturo * @author escplan9 - Derek Monturo
*/ */
public class PhyrexianPurge extends CardImpl { public class PhyrexianPurge extends CardImpl {
public PhyrexianPurge(UUID ownerId, CardSetInfo setInfo) { public PhyrexianPurge(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}{R}");
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}{R}");
// Destroy any number of target creatures. // Destroy any number of target creatures.
// Phyrexian Purge costs 3 life more to cast for each target. // Phyrexian Purge costs 3 life more to cast for each target.
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, Integer.MAX_VALUE)); this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, Integer.MAX_VALUE));
this.getSpellAbility().addEffect(new DestroyMultiTargetEffect()); this.getSpellAbility().addEffect(new DestroyMultiTargetEffect());
this.getSpellAbility().addEffect(new InfoEffect("<br><br>{this} costs 3 life more to cast for each target"));
} }
@Override @Override
public void adjustCosts(Ability ability, Game game) { public void adjustCosts(Ability ability, Game game) {
int numTargets = ability.getTargets().get(0).getTargets().size(); int numTargets = ability.getTargets().get(0).getTargets().size();
@ -62,17 +63,17 @@ public class PhyrexianPurge extends CardImpl {
ability.getCosts().add(new PayLifeCost(numTargets * 3)); ability.getCosts().add(new PayLifeCost(numTargets * 3));
} }
} }
@Override @Override
public void adjustTargets(Ability ability, Game game) { public void adjustTargets(Ability ability, Game game) {
if (ability instanceof SpellAbility) { if (ability instanceof SpellAbility) {
ability.getTargets().clear(); ability.getTargets().clear();
Player you = game.getPlayer(ownerId); Player you = game.getPlayer(ownerId);
int maxTargets = you.getLife() / 3; int maxTargets = you.getLife() / 3;
ability.addTarget(new TargetCreaturePermanent(0, maxTargets)); ability.addTarget(new TargetCreaturePermanent(0, maxTargets));
} }
} }
public PhyrexianPurge(final PhyrexianPurge card) { public PhyrexianPurge(final PhyrexianPurge card) {
super(card); super(card);
} }
@ -81,4 +82,4 @@ public class PhyrexianPurge extends CardImpl {
public PhyrexianPurge copy() { public PhyrexianPurge copy() {
return new PhyrexianPurge(this); return new PhyrexianPurge(this);
} }
} }

View file

@ -1,6 +1,6 @@
#!/usr/bin/perl #!/usr/bin/perl
## ##
# File : get_all.pl # File : cut.pl
# Author : spjspj # Author : spjspj
## ##
@ -22,6 +22,7 @@ use POSIX qw(strftime);
print (" cut.pl full_text.txt keys 0 filegrep\n"); print (" cut.pl full_text.txt keys 0 filegrep\n");
print (" cut.pl full_text.txt 0 0 make_code_bat\n"); print (" cut.pl full_text.txt 0 0 make_code_bat\n");
print (" dir /a /b /s *.java | cut.pl stdin 0 0 make_code_bat > bob.bat\n"); print (" dir /a /b /s *.java | cut.pl stdin 0 0 make_code_bat > bob.bat\n");
print (" dir /a /b /s *.xml | cut.pl stdin 0 0 make_code_bat > bob_xml.bat\n");
print (" cut.pl d:\\perl_programs output.*txt 7 age_dir | cut.pl list . 0 grep\n"); print (" cut.pl d:\\perl_programs output.*txt 7 age_dir | cut.pl list . 0 grep\n");
print (" cut.pl bob.txt 0 0 uniquelines \n"); print (" cut.pl bob.txt 0 0 uniquelines \n");
print (" cut.pl file 0 0 strip_http\n"); print (" cut.pl file 0 0 strip_http\n");
@ -331,16 +332,27 @@ use POSIX qw(strftime);
{ {
my $i; my $i;
{ {
my $url = $term; if (!(-f "$helper"))
print ("Download :$url:\n"); {
my $content = get $url; my $url = $term;
print ("Saw " . length ($content) . " bytes!\n"); print ("Download :$url:\n");
print ("Save in $helper\n"); my $content = get $url;
open OUTPUT, "> " . $helper or die "No dice!"; print ("Saw " . length ($content) . " bytes!\n");
binmode (OUTPUT); print ("Save in $helper\n");
print OUTPUT $content; open OUTPUT, "> " . $helper or die "No dice!";
close OUTPUT; binmode (OUTPUT);
print $url, " >>> ", $helper, "\n"; print OUTPUT $content;
close OUTPUT;
print $url, " >>> ", $helper, "\n";
}
else
{
print ("Found $helper existed already..\n");
if (-s "$helper" == 0)
{
`del "$helper"`;
}
}
} }
} }
if ($operation eq "grep") if ($operation eq "grep")
@ -898,5 +910,4 @@ use POSIX qw(strftime);
} }
} }
} }
} }

281
Utils/get_modo_artids.pl Normal file
View file

@ -0,0 +1,281 @@
#!/usr/bin/perl
##
# File : get_modo_artids.pl
# Date : 12/Nov/2017
# Author : spjspj
# Purpose : Get the artid for each face art of each card from modo (mtgo)
# this then goes into some form of image such as:
# http://mtgoclientdepot.onlinegaming.wizards.com/Graphics/Cards/Pics/161922_typ_reg_sty_050.jpg
# "" /00100_typ_reg_sty_001.jpg
# "" /01440_typ_reg_sty_010.jpg
# "" /102392_typ_reg_sty_010.jpg
# "" /400603_typ_reg_sty_050.jpg
# This program expects that you've copied the relevant .xml files from an installation of mtgo
# into the current working directory for this perl script:
# For example: CARDNAME_STRING.xml, client_BNG.xml,
# Also, it expects to be running on windows
##
use strict;
use LWP::Simple;
use POSIX qw(strftime);
# From xmage code - fix from MODO to XMAGE type set codes
my %fix_set_codes;
$fix_set_codes {"2U"} = "2ED";
$fix_set_codes {"3E"} = "3ED";
$fix_set_codes {"4E"} = "4ED";
$fix_set_codes {"5E"} = "5ED";
$fix_set_codes {"6E"} = "6ED";
$fix_set_codes {"7E"} = "7ED";
$fix_set_codes {"AL"} = "ALL";
$fix_set_codes {"AP"} = "APC";
$fix_set_codes {"AN"} = "ARN";
$fix_set_codes {"AQ"} = "ATQ";
$fix_set_codes {"CM1"} = "CMA";
$fix_set_codes {"DD3_DVD"} = "DD3DVD";
$fix_set_codes {"DD3_EVG"} = "DD3EVG";
$fix_set_codes {"DD3_GLV"} = "DD3GLV";
$fix_set_codes {"DD3_JVC"} = "DD3JVC";
$fix_set_codes {"DK"} = "DRK";
$fix_set_codes {"EX"} = "EXO";
$fix_set_codes {"FE"} = "FEM";
$fix_set_codes {"HM"} = "HML";
$fix_set_codes {"IA"} = "ICE";
$fix_set_codes {"IN"} = "INV";
$fix_set_codes {"1E"} = "LEA";
$fix_set_codes {"2E"} = "LEB";
$fix_set_codes {"LE"} = "LEG";
$fix_set_codes {"MI"} = "MIR";
$fix_set_codes {"MM"} = "MMQ";
$fix_set_codes {"MPS_KLD"} = "MPS";
$fix_set_codes {"NE"} = "NEM";
$fix_set_codes {"NE"} = "NMS";
$fix_set_codes {"OD"} = "ODY";
$fix_set_codes {"PR"} = "PCY";
$fix_set_codes {"PS"} = "PLS";
$fix_set_codes {"P2"} = "PO2";
$fix_set_codes {"PO"} = "POR";
$fix_set_codes {"PK"} = "PTK";
$fix_set_codes {"ST"} = "STH";
$fix_set_codes {"TE"} = "TMP";
$fix_set_codes {"CG"} = "UDS";
$fix_set_codes {"UD"} = "UDS";
$fix_set_codes {"GU"} = "ULG";
$fix_set_codes {"UZ"} = "USG";
$fix_set_codes {"VI"} = "VIS";
$fix_set_codes {"WL"} = "WTH";
# Main
{
my $card = $ARGV [0];
# Example: <CARDNAME_STRING_ITEM id='ID258_461'>Abandoned Sarcophagus</CARDNAME_STRING_ITEM>
my $vals = `find /I "CARDNAME" *CARDNAME*STR*`;
my %ids;
my %set_names;
my $count = 0;
while ($vals =~ s/^.*CARDNAME_STRING_ITEM id='(.*?)'>(.*?)<\/CARDNAME_STRING.*\n//im)
{
$ids {$1} = $2;
$count++;
}
print ("Finished reading $count names\n");
#$vals = `find /I "<" *lient*`;
$vals = `findstr /I "CARDNAME_STRING DIGITALOBJECT ARTID CLONE FRAMESTYLE " *lient* | find /I /V "_DO.xml"`;
my $current_artid = "";
my $current_clone_id = "";
my $current_doc_id = "";
my $current_line = "";
my $current_name = "";
my $current_set = "";
my $num_set = 1;
my %docid_to_clone;
while ($vals =~ s/^(.*)\n//im)
{
my $line = $1;
$line =~ m/^client_(.*)?\.xml/;
$current_set = $1;
#<DigitalObject DigitalObjectCatalogID='DOC_26588'> *** IN
# <ARTID value='100691'/> *** IN
# <ARTIST_NAME_STRING id='ID257_266'/>
# <CARDNAME_STRING id='ID258_12464'/> *** IN
# <CARDNAME_TOKEN id='ID259_12464'/>
# <CARDSETNAME_STRING id='ID516_103'/>
# <CARDTEXTURE_NUMBER value='53176'/>
# <COLLECTOR_INFO_STRING value='150/180'/>
# <COLOR id='ID517_6'/>
# <COLOR_IDENTITY id='ID518_4'/>
# <CONVERTED_MANA_COST id='ID520_3'/>
# <CREATURE_TYPE_STRING0 id='ID777_71'/>
# <CREATURE_TYPEID0 id='ID521_12'/>
# <FRAMESTYLE value='7'/>
# <IS_CREATURE value='1'/>
# <MANA_COST_STRING id='ID1811_114'/>
# <POWER value='4'/>
# <POWERTOUGHNESS_STRING value='4/5'/>
# <RARITY_STATUS id='ID1818_3'/>
# <REAL_ORACLETEXT_STRING id='ID1819_11686'/>
# <SHOULDWORK value='1'/>
# <SHROUD value='1'/>
# <TOUGHNESS value='5'/>
# <WATERMARK value='0'/>
#</DigitalObject>
if ($line =~ m/<DigitalObject DigitalObjectCatalogID='([^']+)'/)
{
$current_line = "$current_set;$1;";
$current_doc_id = $1;
}
if ($line =~ m/\s*<ARTID value='(\d+)'/)
{
$current_line .= "artid=$1;";
}
if ($line =~ m/CARDNAME_STRING id='([^']+)'/)
{
$current_line = "$ids{$1};$current_line;($1)";
$current_name = "$ids{$1}";
}
if ($line =~ m/CLONE_ID value='([^']+)'/)
{
my $clone_id = $1;
$current_line .= ";Clone=($clone_id)";
$current_clone_id = $clone_id;
}
if ($line =~ m/<\/DigitalObject/)
{
if ($current_name =~ m/.+/ && $current_doc_id =~ m/.+/)
{
$docid_to_clone {$current_doc_id} = $current_name;
}
$current_line = "";
$current_name = "";
$current_clone_id = "";
$current_doc_id = "";
}
}
# Run it again..
$vals = `findstr /I "CARDNAME_STRING DIGITALOBJECT ARTID CLONE FRAMESTYLE" *lient* | find /I /V "_DO.xml"`;
$current_set = "";
$num_set = 1;
$current_artid = "";
$current_clone_id = "";
$current_doc_id = "";
$current_line = "";
$current_name = "";
my %seen_artids;
my $current_framestyle = "";
my %framestyles;
$framestyles {1} = "001";
$framestyles {3} = "010";
$framestyles {31} = "010";
$framestyles {11} = "010";
$framestyles {14} = "010";
$framestyles {15} = "010";
while ($vals =~ s/^(.*)\n//im)
{
my $line = $1;
$line =~ m/^client_(.*)?\.xml/;
$current_set = $1;
if (defined ($fix_set_codes {$current_set}))
{
$current_set = $fix_set_codes {$current_set};
}
if ($line =~ m/<DigitalObject DigitalObjectCatalogID='([^']+)'/)
{
$current_line = "$current_set;$1;";
$current_doc_id = $1;
}
if ($line =~ m/\s*<ARTID value='(\d+)'/)
{
$current_line .= "artid=$1;";
$current_artid = $1;
}
if ($line =~ m/CARDNAME_STRING id='([^']+)'/)
{
$current_line = "$ids{$1};$current_line;($1)";
$current_name = "$ids{$1}";
}
if ($line =~ m/CLONE_ID value='([^']+)'/)
{
my $clone_id = $1;
$current_line .= ";Clone=($clone_id)";
$current_clone_id = $clone_id;
}
if ($line =~ m/FRAMESTYLE value='([^']+)'/)
{
$current_framestyle = "$1";
$current_framestyle = $framestyles {$current_framestyle};
}
if ($line =~ m/<\/DigitalObject/)
{
if ($docid_to_clone {$current_doc_id} =~ m/.+/)
{
$current_name = "$docid_to_clone{$current_doc_id}";
}
if ($current_name =~ m/.+/ && $current_doc_id =~ m/.+/)
{
$docid_to_clone {$current_doc_id} = $current_name;
}
if ($current_name =~ m/^$/)
{
$current_name = $docid_to_clone {$current_clone_id};
}
if ($current_name =~ m/..*/ && $current_set =~ m/..*/ && $current_artid =~ m/..*/)
{
print ("$current_name;$current_set;$current_artid\n");
# cut.pl statement..
# echo "1" | cut.pl stdin "http://mtgoclientdepot.onlinegaming.wizards.com/Graphics/Cards/Pics/00010_typ_reg_sty_001.jpg" "ME4\Badlands.jpg" wget_image
if (!defined ($seen_artids {$current_artid}))
{
$seen_artids {$current_artid} = "$current_set\\$current_name.jpg";
if ($current_artid < 10)
{
print (" echo \"1\" | cut.pl stdin \"http://mtgoclientdepot.onlinegaming.wizards.com/Graphics/Cards/Pics/0000$current_artid" . "_typ_reg_sty_$current_framestyle.jpg\" \"$current_set\\$current_name.jpg\" wget_image\n");
}
if ($current_artid < 100)
{
print (" echo \"1\" | cut.pl stdin \"http://mtgoclientdepot.onlinegaming.wizards.com/Graphics/Cards/Pics/000$current_artid" . "_typ_reg_sty_$current_framestyle.jpg\" \"$current_set\\$current_name.jpg\" wget_image\n");
}
elsif ($current_artid < 1000)
{
print (" echo \"1\" | cut.pl stdin \"http://mtgoclientdepot.onlinegaming.wizards.com/Graphics/Cards/Pics/00$current_artid" . "_typ_reg_sty_$current_framestyle.jpg\" \"$current_set\\$current_name.jpg\" wget_image\n");
}
elsif ($current_artid < 10000)
{
print (" echo \"1\" | cut.pl stdin \"http://mtgoclientdepot.onlinegaming.wizards.com/Graphics/Cards/Pics/0$current_artid" . "_typ_reg_sty_$current_framestyle.jpg\" \"$current_set\\$current_name.jpg\" wget_image\n");
}
else
{
print (" echo \"1\" | cut.pl stdin \"http://mtgoclientdepot.onlinegaming.wizards.com/Graphics/Cards/Pics/$current_artid" . "_typ_reg_sty_$current_framestyle.jpg\" \"$current_set\\$current_name.jpg\" wget_image\n");
}
}
else
{
print (" copy \"$seen_artids{$current_artid}\" \"$current_set\\$current_name.jpg\"\n");
}
}
$current_artid = "";
$current_clone_id = "";
$current_doc_id = "";
$current_line = "";
$current_name = "";
}
}
}

31904
Utils/modo_artids Normal file

File diff suppressed because it is too large Load diff