mtgencode/encode.py

535 lines
16 KiB
Python
Raw Normal View History

2015-06-28 01:35:11 +00:00
import jdecode
import re
import codecs
2015-07-01 04:25:29 +00:00
import sys
2015-06-28 01:35:11 +00:00
import utils
2015-06-28 01:35:11 +00:00
#badwords = []
valid_encoded_char = r'[abcdefghijklmnopqrstuvwxyz\'+\-*",.:;WUBRGPV/XTQ|\\&^\{\}@ \n=~%\[\]]'
2015-06-28 01:35:11 +00:00
cardsep = utils.cardsep
fieldsep = utils.fieldsep
bsidesep = utils.bsidesep
newline = utils.newline
dash_marker = utils.dash_marker
bullet_marker = utils.bullet_marker
this_marker = utils.this_marker
counter_marker = utils.counter_marker
reserved_marker = utils.reserved_marker
x_marker = utils.x_marker
tap_marker = utils.tap_marker
untap_marker = utils.untap_marker
counter_rename = utils.counter_rename
unary_marker = utils.unary_marker
unary_counter = utils.unary_counter
2015-06-28 01:35:11 +00:00
# This whole things assumes the json format of mtgjson.com.
# Here's a brief list of relevant fields:
# name - string
# names - list (used for split, flip, and double-faced)
# manaCost - string
# cmc - number
# colors - list
# type - string (the whole big long damn thing)
# supertypes - list
# types - list
# subtypes - list
# text - string
# power - string
# toughness - string
# loyalty - number
# And some less useful ones, in case they're wanted for something:
# layout - string
# rarity - string
# flavor - string
# artis - string
# number - string
# multiverseid - number
# variations - list
# imageName - string
# watermark - string
# border - string
# timeshifted - boolean
# hand - number
# life - number
# reserved - boolean
# releaseDate - string
# starter - boolean
def strip_reminder_text(s):
return re.sub(r'\(.*\)', '', s)
2015-06-28 01:35:11 +00:00
def replace_newlines(s):
return s.replace('\n', '\\')
def replace_cardname(s, name):
# here are some fun edge cases, thanks to jml34 on the forum for
# pointing them out
if name == 'sacrifice':
s = s.replace(name, this_marker, 1)
return s
elif name == 'fear':
return s
s = s.replace(name, this_marker)
# so, some legends don't use the full cardname in their text box...
# this check finds about 400 of them
nameparts = name.split(',')
if len(nameparts) > 1:
mininame = nameparts[0]
new_s = s.replace(mininame, this_marker)
if not new_s == s:
s = new_s
# on first inspection, the replacements all look good
# print '------------------'
# print name
# print '----'
# print s
# a few others don't have a convenient comma to detect their nicknames,
# so we override them here
overrides = [
# detectable by splitting on 'the', though that might cause other issues
'crovax',
'rashka',
'phage',
'shimatsu',
# random and arbitrary: they have a last name, 1996 world champion, etc.
'world champion',
'axelrod',
'hazezon',
'rubinia',
'rasputin',
'hivis',
]
for override in overrides:
s = s.replace(override, this_marker)
# some detection code for when the overrides need to be fixed...
2015-06-28 01:35:11 +00:00
# global badwords
# bad = False
# for word in name.replace(',', '').split():
# if word in s and not word in badwords:
# badwords += [word]
return s
def sanitize_name(s):
s = s.replace('!', '')
s = s.replace('?', '')
s = s.replace('-', dash_marker)
s = s.replace('100,000', 'one hundred thousand')
s = s.replace('1,000', 'one thousand')
s = s.replace('1996', 'nineteen ninety-six')
return s
# call this before replacing newlines
# this one ends up being really bad because of the confusion
# with 'counter target spell or ability'
def replace_counters(s):
#so, big fat old dictionary time!!!!!!!!!
allcounters = [
'time counter',
'devotion counter',
'charge counter',
'ki counter',
'matrix counter',
'spore counter',
'poison counter',
'quest counter',
'hatchling counter',
'storage counter',
'growth counter',
'paralyzation counter',
'energy counter',
'study counter',
'glyph counter',
'depletion counter',
'sleight counter',
'loyalty counter',
'hoofprint counter',
'wage counter',
'echo counter',
'lore counter',
'page counter',
'divinity counter',
'mannequin counter',
'ice counter',
'fade counter',
'pain counter',
#'age counter',
'gold counter',
'muster counter',
'infection counter',
'plague counter',
'fate counter',
'slime counter',
'shell counter',
'credit counter',
'despair counter',
'globe counter',
'currency counter',
'blood counter',
'soot counter',
'carrion counter',
'fuse counter',
'filibuster counter',
'wind counter',
'hourglass counter',
'trap counter',
'corpse counter',
'awakening counter',
'verse counter',
'scream counter',
'doom counter',
'luck counter',
'intervention counter',
'eyeball counter',
'flood counter',
'eon counter',
'death counter',
'delay counter',
'blaze counter',
'magnet counter',
'feather counter',
'shield counter',
'wish counter',
'petal counter',
'music counter',
'pressure counter',
'manifestation counter',
#'net counter',
'velocity counter',
'vitality counter',
'treasure counter',
'pin counter',
'bounty counter',
'rust counter',
'mire counter',
'tower counter',
#'ore counter',
'cube counter',
'strife counter',
'elixir counter',
'hunger counter',
'level counter',
'winch counter',
'fungus counter',
'training counter',
'theft counter',
'arrowhead counter',
'sleep counter',
'healing counter',
'mining counter',
'dream counter',
'aim counter',
'arrow counter',
'javelin counter',
'gem counter',
'bribery counter',
'mine counter',
'omen counter',
'phylactery counter',
'tide counter',
'polyp counter',
'petrification counter',
'shred counter',
'pupa counter',
]
usedcounters = []
for countername in allcounters:
if countername in s:
usedcounters += [countername]
s = s.replace(countername, counter_marker + ' counter')
# oh god some of the counter names are suffixes of others...
shortcounters = [
'age counter',
'net counter',
'ore counter',
]
for countername in shortcounters:
# SUPER HACKY fix for doubling season
if countername in s and 'more counter' not in s:
2015-06-28 01:35:11 +00:00
usedcounters += [countername]
s = s.replace(countername, counter_marker + ' counter')
# miraculously this doesn't seem to happen
# if len(usedcounters) > 1:
# print usedcounters
# we haven't done newline replacement yet, so use actual newlines
if len(usedcounters) == 1:
# and yeah, this line of code can blow up in all kinds of different ways
s = 'countertype ' + counter_marker + ' ' + usedcounters[0].split()[0] + '\n' + s
# random code for finding out all the counter names
# global badwords
# countertypes = re.findall(r'[| ][^ ]+ counter', s)
# for countertype in countertypes:
# minicounter = countertype[1:]
# if not minicounter in badwords:
# badwords += [minicounter]
return s
# the word counter is confusing when used to refer to what we do to spells
# and sometimes abilities to make them not happen. Let's rename that.
# call this after doing the counter replacement to simplify the regexes
counter_rename = 'uncast'
def rename_uncast(s):
# pre-checks to make sure we aren't doing anything dumb
# if '# counter target ' in s or '^ counter target ' in s or '& counter target ' in s:
# print s + '\n'
# if '# counter a ' in s or '^ counter a ' in s or '& counter a ' in s:
# print s + '\n'
# if '# counter all ' in s or '^ counter all ' in s or '& counter all ' in s:
# print s + '\n'
# if '# counter a ' in s or '^ counter a ' in s or '& counter a ' in s:
# print s + '\n'
# if '# counter that ' in s or '^ counter that ' in s or '& counter that ' in s:
# print s + '\n'
# if '# counter @' in s or '^ counter @' in s or '& counter @' in s:
# print s + '\n'
# if '# counter the ' in s or '^ counter the ' in s or '& counter the ' in s:
# print s + '\n'
# counter target
s = s.replace('counter target ', counter_rename + ' target ')
# counter a
s = s.replace('counter a ', counter_rename + ' a ')
# counter all
s = s.replace('counter all ', counter_rename + ' all ')
# counters a
s = s.replace('counters a ', counter_rename + 's a ')
# countered (this could get weird in terms of englishing the word)
s = s.replace('countered', counter_rename)
# counter that
s = s.replace('counter that ', counter_rename + ' that ')
# counter @
s = s.replace('counter @', counter_rename + ' @')
# counter it (this is tricky
s = s.replace(', counter it', ', ' + counter_rename + ' it')
# counter the (it happens at least once, thanks wizards!)
s = s.replace('counter the ', counter_rename + ' the ')
# counter up to
s = s.replace('counter up to ', counter_rename + ' up to ')
# check if the word exists in any other context
# if 'counter' in s.replace('# counter', '').replace('countertype', '').replace('^ counter', '').replace('& counter', ''):
# print s + '\n'
# whew! by manual inspection of a few dozen texts, it looks like this about covers it.
2015-07-01 04:25:29 +00:00
return s
2015-06-28 01:35:11 +00:00
# run only after doing unary conversion
def fix_dashes(s):
s = s.replace('-' + unary_marker, reserved_marker)
2015-06-28 01:35:11 +00:00
s = s.replace('-', dash_marker)
s = s.replace(reserved_marker, '-' + unary_marker)
2015-06-28 01:35:11 +00:00
# level up is annoying
levels = re.findall(r'level &\^*\-&', s)
for level in levels:
newlevel = level.replace('-', dash_marker)
s = s.replace(level, newlevel)
levels = re.findall(r'level &\^*\+', s)
for level in levels:
newlevel = level.replace('+', dash_marker)
s = s.replace(level, newlevel)
# and we still have the ~x issue
return s
# run this after fixing dashes, because this unbreaks the ~x issue
# also probably don't run this on names, there are a few names with x~ in them.
def fix_x(s):
s = s.replace(dash_marker + 'x', '-' + x_marker)
s = s.replace('+x', '+' + x_marker)
s = s.replace(' x ', ' ' + x_marker + ' ')
s = s.replace('x:', x_marker + ':')
s = s.replace('x~', x_marker + '~')
s = s.replace('x.', x_marker + '.')
s = s.replace('x,', x_marker + ',')
s = s.replace('x/x', x_marker + '/' + x_marker)
return s
2015-07-01 04:25:29 +00:00
# run after fixing dashes, it makes the regexes better, but before replacing newlines
def reformat_choice(s):
# the idea is to take 'choose n ~\n=ability\n=ability\n'
# to '[n = ability = ability]\n'
def choice_formatting_helper(s_helper, prefix, count):
single_choices = re.findall(ur'(' + prefix + ur'\n?(\u2022.*(\n|$))+)', s_helper)
for choice in single_choices:
newchoice = choice[0]
newchoice = newchoice.replace(prefix, unary_marker + (unary_counter * count))
newchoice = newchoice.replace('\n', ' ')
if newchoice[-1:] == ' ':
newchoice = '[' + newchoice[:-1] + ']\n'
else:
newchoice = '[' + newchoice + ']'
s_helper = s_helper.replace(choice[0], newchoice)
return s_helper
s = choice_formatting_helper(s, ur'choose one \u2014', 1)
s = choice_formatting_helper(s, ur'choose one \u2014 ', 1) # ty Promise of Power
s = choice_formatting_helper(s, ur'choose two \u2014', 2)
s = choice_formatting_helper(s, ur'choose one or both \u2014', 0)
s = choice_formatting_helper(s, ur'choose one or more \u2014', 0)
2015-07-01 04:25:29 +00:00
return s
2015-06-28 01:35:11 +00:00
# do before removing newlines
# might as well do this after countertype because we probably care more about
# the location of the equip cost
def relocate_equip(s):
equips = re.findall(r'equip \{[WUBRGPV/XTQ&^]*\}.?$', s)
# there don't seem to be any cases with more than one
if len(equips) == 1:
equip = equips[0]
s = s.replace('\n' + equip, '')
s = s.replace(equip, '')
if equip[-1:] == ' ':
equip = equip[0:-1]
if s == '':
s = equip
else:
s = equip + '\n' + s
nonmana = re.findall(ur'(equip\u2014.*(\n|$))', s)
if len(nonmana) == 1:
equip = nonmana[0][0]
s = s.replace('\n' + equip, '')
s = s.replace(equip, '')
if equip[-1:] == ' ':
2015-06-28 01:35:11 +00:00
equip = equip[0:-1]
if s == '':
s = equip
else:
s = equip + '\n' + s
return s
def encode(card):
# filter out vanguard cards
if card['layout'] in ['token', 'plane', 'scheme', 'phenomenon', 'vanguard']:
return
if card['type'] in ['Conspiracy']: # just for now?
return
2015-06-28 01:35:11 +00:00
encoding = fieldsep
if 'name' in card:
name = card['name'].lower()
encoding += sanitize_name(name)
2015-06-28 01:35:11 +00:00
encoding += fieldsep
if 'supertypes' in card:
encoding += ' '.join(card['supertypes']).lower()
encoding += fieldsep
if 'types' in card:
encoding += ' '.join(card['types']).lower()
2015-06-28 01:35:11 +00:00
encoding += fieldsep
if 'loyalty' in card:
encoding += utils.to_unary(str(card['loyalty']))
2015-06-28 01:35:11 +00:00
encoding += fieldsep
if 'subtypes' in card:
encoding += ' '.join(card['subtypes']).lower()
encoding += fieldsep
if 'power' in card and 'toughness' in card:
encoding += utils.to_unary(card['power']) + '/' + utils.to_unary(card['toughness'])
2015-06-28 01:35:11 +00:00
encoding += fieldsep
if 'manaCost' in card:
encoding += utils.to_mana(card['manaCost'].lower())
2015-06-28 01:35:11 +00:00
encoding += fieldsep
if 'text' in card:
text = card['text'].lower()
text = strip_reminder_text(text)
text = replace_cardname(text, name)
text = utils.to_mana(text)
text = utils.to_symbols(text)
text = utils.to_unary(text)
2015-06-28 01:35:11 +00:00
text = fix_dashes(text)
text = fix_x(text)
text = replace_counters(text)
text = rename_uncast(text)
2015-07-01 04:25:29 +00:00
text = reformat_choice(text)
2015-06-28 01:35:11 +00:00
text = relocate_equip(text)
text = replace_newlines(text)
encoding += text.strip()
2015-06-28 01:35:11 +00:00
encoding += fieldsep
2015-06-28 01:35:11 +00:00
# now output the bside if there is one
if 'bside' in card:
encoding += bsidesep
encoding += encode(card['bside'])
encoding = utils.to_ascii(encoding)
2015-06-28 01:35:11 +00:00
# encoding = re.sub(valid_encoded_char, '', encoding)
# if not encoding == '':
# print card
2015-06-28 01:35:11 +00:00
return encoding
def encode_duplicated(cards):
# Boring solution: only write out the first one...
return encode(cards[0])
def main(fname, oname = None, verbose = True):
if verbose:
print 'Opening json file: ' + fname
allcards = jdecode.mtg_open_json(fname, verbose)
if not oname == None:
if verbose:
print 'Writing output to: ' + oname
ofile = codecs.open(oname, 'w', 'utf-8')
for card in allcards:
val = encode_duplicated(allcards[card])
if not (val == None or val == ''):
if oname == None:
print val + '\n'
else:
ofile.write(val + cardsep)
2015-06-28 01:35:11 +00:00
# print len(badwords)
# for word in badwords:
# print word
if not oname == None:
ofile.close()
if __name__ == '__main__':
import sys
if len(sys.argv) == 2:
main(sys.argv[1])
elif len(sys.argv) == 3:
main(sys.argv[1], oname = sys.argv[2])
else:
print 'Usage: ' + sys.argv[0] + ' ' + '<JSON file> [output filename]'
exit(1)