mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Compare commits
1 commit
6bc5b53995
...
4711919942
Author | SHA1 | Date | |
---|---|---|---|
|
4711919942 |
1 changed files with 68 additions and 0 deletions
|
@ -26,6 +26,8 @@ import os
|
|||
import re
|
||||
import subprocess
|
||||
import time
|
||||
from collections import OrderedDict
|
||||
|
||||
from io import BytesIO
|
||||
|
||||
from pysollib.mfxutil import destruct
|
||||
|
@ -996,6 +998,72 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
|
|||
-1
|
||||
)
|
||||
|
||||
def calcBoardXML(self):
|
||||
from io import StringIO
|
||||
from xml.sax.saxutils import XMLGenerator
|
||||
game = self.game
|
||||
self.board = ''
|
||||
is_simple_simon = self._isSimpleSimon()
|
||||
b = []
|
||||
for s in game.s.foundations:
|
||||
if s.cards:
|
||||
b.append(s.cards[0 if is_simple_simon else -1])
|
||||
assert len(b) == 0
|
||||
|
||||
b = []
|
||||
for s in game.s.reserves:
|
||||
b.append((s.cards[-1]) if s.cards else None)
|
||||
assert all(x is None for x in b)
|
||||
|
||||
nextid = 1
|
||||
ids = {}
|
||||
out = StringIO("")
|
||||
xmler = XMLGenerator(out=out, encoding='UTF-8')
|
||||
xmler.startDocument()
|
||||
xmler.startElement(name='state', attrs={})
|
||||
for row_idx, s in enumerate(game.s.rows):
|
||||
moveattrs = []
|
||||
moveattrs.append(('pile', 'store{}'.format(row_idx)))
|
||||
moveattrs.append(('position', '{}'.format(0)))
|
||||
moveattrs.sort()
|
||||
dmoveattrs = OrderedDict(moveattrs)
|
||||
|
||||
xmler.startElement(name='move', attrs=dmoveattrs)
|
||||
b = []
|
||||
for c in s.cards:
|
||||
cardattrs = []
|
||||
cs = self.card2str1(c)
|
||||
if cs in ids:
|
||||
this_id = ids[cs]
|
||||
else:
|
||||
this_id = nextid
|
||||
nextid += 1
|
||||
ids[cs] = this_id
|
||||
cardattrs.append(('id', '{}'.format(this_id)))
|
||||
this_rank = [
|
||||
"ace", "two", "three", "four", "five", "six", "seven",
|
||||
"eight", "nine", "ten", "jack", "queen", "king"
|
||||
][c.rank]
|
||||
cardattrs.append(('rank', '{}'.format(this_rank)))
|
||||
this_suit = [
|
||||
"clubs", "spades", "hearts", "diamonds",
|
||||
][c.suit]
|
||||
cardattrs.append(('suit', '{}'.format(this_suit)))
|
||||
cardattrs.append(('turn', '{}'.format("face-up")))
|
||||
cardattrs.sort()
|
||||
dcardattrs = OrderedDict(cardattrs)
|
||||
|
||||
xmler.startElement(name='card', attrs=dcardattrs)
|
||||
if not c.face_up:
|
||||
cs = '<%s>' % cs
|
||||
xmler.endElement(name='card')
|
||||
xmler.endElement(name='move')
|
||||
xmler.endElement(name='state')
|
||||
xmler.endDocument()
|
||||
|
||||
ret = out.getvalue()
|
||||
return ret
|
||||
|
||||
def calcBoardString(self):
|
||||
game = self.game
|
||||
self.board = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue