#!/usr/bin/env python # Copyright 2008, Carl Gherardi # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ######################################################################## # Standard Library modules import Configuration import traceback import xml.dom.minidom from xml.dom.minidom import Node from HandHistoryConverter import HandHistoryConverter # Carbon format looks like: # 1) # 2) # 3) # # ... # 4) # # # 5) # # 6) # # .... # # The full sequence for a NHLE cash game is: # BLINDS, PREFLOP, POSTFLOP, POSTTURN, POSTRIVER, SHOWDOWN, END_OF_GAME # This sequence can be terminated after BLINDS at any time by END_OF_FOLDED_GAME class CarbonPoker(HandHistoryConverter): def __init__(self, config, filename): print "Initialising Carbon Poker converter class" HandHistoryConverter.__init__(self, config, filename) # Call super class init self.sitename = "Carbon" self.setFileType("xml") def readSupportedGames(self): pass def determineGameType(self): desc_node = doc.getElementsByTagName("description") type = desc_node.getAttribute("type") stakes = desc_node.getAttribute("stakes") def readPlayerStacks(self): pass def readBlinds(self): pass def readAction(self): pass if __name__ == "__main__": c = Configuration.Config() e = CarbonPoker(c, "regression-test-files/carbon-poker/Niagara Falls (15245216).xml") print str(e)