mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-24 10:23:02 -07:00
Support tab-separated deck imports (#4222)
Third-party deck tools (e.g. Delver Lens) export decks as tab-separated rows such as "2 Card Name Set Name". Card names never contain tab characters, so a leading numeric column marks a tabular record: the first two columns are read as the quantity and card name, and any further columns are discarded as printer/set metadata. - deck_list: parse tab-delimited rows before whitespace collapsing - tests: cover tab-separated mainboard and sideboard imports - docs: document the accepted plain-text import format (fills the TODO)
This commit is contained in:
parent
fb482f037e
commit
7d907e54d0
3 changed files with 60 additions and 7 deletions
|
|
@ -258,6 +258,7 @@ bool DeckList::loadFromStream_Plain(QTextStream &in,
|
|||
|
||||
// Regex for advanced card parsing
|
||||
const QRegularExpression reMultiplier(R"(^[xX\(\[]*(\d+)[xX\*\)\]]* ?(.+))");
|
||||
const QRegularExpression reTabQuantity(R"(^\d+[xX]?$)");
|
||||
|
||||
// Regex for extracting set code and collector number with attached symbols
|
||||
const QRegularExpression reHyphenFormat(R"(\((\w{3,})\)\s+(\w{3,})-(\d+[^\w\s]*))");
|
||||
|
|
@ -337,8 +338,34 @@ bool DeckList::loadFromStream_Plain(QTextStream &in,
|
|||
continue;
|
||||
}
|
||||
|
||||
QString cardName = match.captured().simplified();
|
||||
const QString rawLine = match.captured();
|
||||
QString cardName = rawLine.simplified();
|
||||
bool sideboard = false;
|
||||
int amount = 1;
|
||||
|
||||
// Card names never contain tab characters, so a leading numeric field
|
||||
// marks a tabular record emitted by third-party deck tools (e.g. Delver
|
||||
// Lens "2\tCard Name\tSet Name"). The first two columns are the quantity
|
||||
// and the card name; any further columns are printer/set metadata and
|
||||
// are discarded.
|
||||
bool hasTabQuantity = false;
|
||||
const auto tabFields = rawLine.split('\t');
|
||||
int firstField = 0;
|
||||
while (firstField < tabFields.size() && tabFields.at(firstField).trimmed().isEmpty()) {
|
||||
++firstField;
|
||||
}
|
||||
if (firstField + 1 < tabFields.size()) {
|
||||
const QString quantity = tabFields.at(firstField).trimmed();
|
||||
if (reTabQuantity.match(quantity).hasMatch()) {
|
||||
hasTabQuantity = true;
|
||||
QString digits = quantity;
|
||||
if (digits.endsWith('x') || digits.endsWith('X')) {
|
||||
digits.chop(1);
|
||||
}
|
||||
amount = digits.toInt();
|
||||
cardName = tabFields.at(firstField + 1).simplified();
|
||||
}
|
||||
}
|
||||
|
||||
// Sideboard detection
|
||||
if (sBStart < 0) {
|
||||
|
|
@ -383,11 +410,12 @@ bool DeckList::loadFromStream_Plain(QTextStream &in,
|
|||
}
|
||||
|
||||
// check if a specific amount is mentioned
|
||||
int amount = 1;
|
||||
match = reMultiplier.match(cardName);
|
||||
if (match.hasMatch()) {
|
||||
amount = match.captured(1).toInt();
|
||||
cardName = match.captured(2);
|
||||
if (!hasTabQuantity) {
|
||||
match = reMultiplier.match(cardName);
|
||||
if (match.hasMatch()) {
|
||||
amount = match.captured(1).toInt();
|
||||
cardName = match.captured(2);
|
||||
}
|
||||
}
|
||||
|
||||
// Normalize the card name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue