magarena/scripts/analyze_cards.scala

89 lines
2.1 KiB
Scala
Raw Normal View History

import scala.xml.pull._
import scala.xml._
import scala.io.Source
2011-07-01 19:05:57 -07:00
Console.err.println("loading effects from " + args(0))
val effects = Source.fromFile(args(0)).getLines.toList
2011-07-01 00:39:22 -07:00
2011-07-01 19:05:57 -07:00
Console.err.println("loading cards from " + args(1))
val src = XML.load(args(1))
2011-07-01 19:05:57 -07:00
Console.err.println("begin analysis")
for (card <- src \ "card") {
2011-07-01 19:05:57 -07:00
val name = (card \ "name").text
val cost = (card \ "cost").text
val loyalty = (card \ "loyalty").text
val pow = (card \ "pow").text
val tgh = (card \ "tgh").text
val types = card \ "typelist"
val rules = card \ "rulelist"
2011-07-01 19:05:57 -07:00
var scriptable = (rules \ "rule").filter(_.text.trim() != "").forall(x => isScriptable(name, x.text))
2011-07-01 00:39:22 -07:00
if (scriptable) {
2011-07-01 19:05:57 -07:00
Console.println(">" + name);
/*
Console.println("value=?")
Console.println("rarity=?")
Console.println("type=Creature")
Console.println("subtype=Beast,Human")
Console.println("color=g")
Console.println("converted=6")
Console.println("cost={4}{G}{G}")
Console.println("power=6")
Console.println("toughness=5")
Console.println("timing=main")
*/
for (rule <- rules \ "rule" if rule.text.trim != "") {
2011-07-01 00:39:22 -07:00
Console.println(rule.text)
}
Console.println()
2011-07-01 00:39:22 -07:00
}
}
def isScriptable(name:String, rule:String):Boolean = {
2011-07-01 19:05:57 -07:00
//normalize the rule text
2011-07-10 20:01:39 -07:00
//replace name with @
//remove cost
val norm = rule.trim.replace(name, "@").replaceAll("^[^\\\"]*: ", "")
2011-07-01 19:05:57 -07:00
//check if this is in the engine
if (effects.exists(x => x.equalsIgnoreCase(norm))) {
2011-07-01 00:39:22 -07:00
return true
}
2011-07-01 19:05:57 -07:00
//if not, print it out
2011-07-01 00:39:22 -07:00
Console.err.println(norm + "\t" + name);
return false
}
/*
Contains the information about the cards that is needed to play the
game.
<cardlist>
<card>
<name></name>
<cost></cost>
<loyalty></loyalty>
<typelist>
<type></type>
...
</typelist>
<pow></pow>
<tgh></tgh>
<hand></hand>
<life></life>
<rulelist>
<rule reminder=""></rule>
...
</rulelist>
<multi type="">
...
</multi>
</card>
...
</cardlist>
*/