mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
242 lines
7.2 KiB
Python
Executable file
242 lines
7.2 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import os
|
|
import re
|
|
import __builtin__
|
|
from pysollib.mygettext import fix_gettext
|
|
|
|
from pysollib.gamedb import GAME_DB
|
|
from pysollib.gamedb import GI
|
|
from pysollib.mfxutil import latin1_to_ascii
|
|
# outdir = '../html'
|
|
pysollib_dir = '../'
|
|
|
|
|
|
__builtin__._ = lambda x: x
|
|
__builtin__.n_ = lambda x: x
|
|
|
|
eval('import pysollib.games')
|
|
eval('import pysollib.games.mahjongg')
|
|
eval('import pysollib.games.ultra')
|
|
eval('import pysollib.games.special')
|
|
|
|
try:
|
|
os.mkdir('html')
|
|
except Exception:
|
|
pass
|
|
|
|
try:
|
|
os.mkdir('html/rules')
|
|
except Exception:
|
|
pass
|
|
|
|
pysollib_path = os.path.join(sys.path[0], pysollib_dir)
|
|
sys.path[0] = os.path.normpath(pysollib_path)
|
|
# print sys.path
|
|
|
|
fix_gettext()
|
|
|
|
files = [
|
|
('credits.html', 'PySol Credits'),
|
|
('ganjifa.html', 'PySol - General Ganjifa Card Rules'),
|
|
('general_rules.html', 'PySol - General Rules'),
|
|
('glossary.html', 'PySol - Glossary'),
|
|
('hanafuda.html', 'PySol - Rules for General Flower Card Rules'),
|
|
('hexadeck.html', 'PySol - General Hex A Deck Card Rules'),
|
|
('howtoplay.html', 'How to play PySol'),
|
|
('index.html', 'PySol - a Solitaire Game Collection'),
|
|
('install.html', 'PySol - Installation'),
|
|
('intro.html', 'PySol - Introduction'),
|
|
('license.html', 'PySol Software License'),
|
|
('news.html', 'PySol - a Solitaire Game Collection'),
|
|
# ('rules_alternate.html', 'PySol - a Solitaire Game Collection'),
|
|
# ('rules.html', 'PySol - a Solitaire Game Collection'),
|
|
]
|
|
|
|
rules_files = [
|
|
# ('hanoipuzzle.html', ),
|
|
('mahjongg.html', 'PySol - Rules for Mahjongg'),
|
|
('matrix.html', 'PySol - Rules for Matrix'),
|
|
('pegged.html', 'PySol - Rules for Pegged'),
|
|
('shisensho.html', 'PySol - Rules for Shisen-Sho'),
|
|
('spider.html', 'PySol - Rules for Spider'),
|
|
('freecell.html', 'PySol - Rules for FreeCell'),
|
|
]
|
|
wikipedia_files = [
|
|
('houseinthewood.html', 'PySol - Rules for House in the Woods'),
|
|
('fourseasons.html', 'PySol - Rules for Four Seasons'),
|
|
]
|
|
|
|
main_header = '''<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<html>
|
|
<head>
|
|
<title>%s</title>
|
|
<meta name="license" content="GNU General Public License">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
</head>
|
|
<body text="#000000" bgcolor="#F7F3FF" link="#0000FF" vlink="#660099"
|
|
alink="#FF0000">
|
|
<img src="images/pysollogo03.gif" alt="">
|
|
<br>
|
|
'''
|
|
main_footer = '''
|
|
<p>
|
|
<br>
|
|
%s
|
|
</body>
|
|
</html>'''
|
|
|
|
rules_header = '''<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<html>
|
|
<head>
|
|
<title>%s</title>
|
|
<meta name="license" content="GNU General Public License">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
</head>
|
|
<body text="#000000" bgcolor="#F7F3FF" link="#0000FF" vlink="#660099"
|
|
link="#FF0000">
|
|
<img src="../images/pysollogo03.gif" alt="">
|
|
<br>
|
|
'''
|
|
rules_footer = '''
|
|
<p>
|
|
%s
|
|
<br>
|
|
<a href="../glossary.html">Glossary</a>
|
|
<br>
|
|
<a href="../general_rules.html">General rules</a>
|
|
|
|
<p>
|
|
<a href="../index.html">Back to the index</a>
|
|
</body>
|
|
</html>'''
|
|
|
|
wikipedia_header = '''<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<html>
|
|
<head>
|
|
<title>%s</title>
|
|
<meta name="license" content="GNU General Public License">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
</head>
|
|
<body text="#000000" bgcolor="#F7F3FF" link="#0000FF" vlink="#660099"
|
|
alink="#FF0000">
|
|
<img src="../images/pysollogo03.gif" alt="">
|
|
<br>
|
|
'''
|
|
|
|
|
|
def getGameRulesFilename(n):
|
|
if n.startswith('Mahjongg'):
|
|
return 'mahjongg.html'
|
|
# n = re.sub(r"[\[\(].*$", "", n)
|
|
n = latin1_to_ascii(n)
|
|
n = re.sub(r"[^\w]", "", n)
|
|
n = n.lower() + ".html"
|
|
return n
|
|
|
|
|
|
def gen_main_html():
|
|
for infile, title in files:
|
|
outfile = open(os.path.join('html', infile), 'w')
|
|
print >> outfile, main_header % title
|
|
print >> outfile, open(infile).read()
|
|
s = '<a href="index.html">Back to the index</a>'
|
|
if infile == 'index.html':
|
|
s = ''
|
|
print >> outfile, main_footer % s
|
|
|
|
|
|
def gen_rules_html():
|
|
# ls = glob(os.path.join('rules', '*.html'))
|
|
rules_ls = os.listdir('rules')
|
|
rules_ls.sort()
|
|
wikipedia_ls = os.listdir('wikipedia')
|
|
wikipedia_ls.sort()
|
|
|
|
games = GAME_DB.getGamesIdSortedByName()
|
|
rules_list = []
|
|
files_list = []
|
|
for fn, tt in rules_files:
|
|
rules_list.append(('rules', fn, tt, ''))
|
|
files_list.append(fn)
|
|
for fn, tt in wikipedia_files:
|
|
rules_list.append(('wikipedia', fn, tt, ''))
|
|
files_list.append(fn)
|
|
altnames = []
|
|
|
|
# open file of list of all rules
|
|
out_rules = open(os.path.join('html', 'rules.html'), 'w')
|
|
print >> out_rules, main_header % 'PySol - a Solitaire Game Collection'
|
|
print >> out_rules, open('rules.html').read()
|
|
|
|
for id in games:
|
|
# create list of rules
|
|
|
|
gi = GAME_DB.get(id)
|
|
|
|
rules_fn = gi.rules_filename
|
|
if not rules_fn:
|
|
rules_fn = getGameRulesFilename(gi.name)
|
|
|
|
if rules_fn in files_list:
|
|
continue
|
|
|
|
if rules_fn in rules_ls:
|
|
rules_dir = 'rules'
|
|
elif rules_fn in wikipedia_ls:
|
|
rules_dir = 'wikipedia'
|
|
else:
|
|
print('missing rules for %s (file: %s)'
|
|
% (gi.name.encode('utf-8'), rules_fn))
|
|
continue
|
|
|
|
# print '>>>', rules_fn
|
|
|
|
title = 'PySol - Rules for ' + gi.name
|
|
s = ''
|
|
if gi.si.game_type == GI.GT_HANAFUDA:
|
|
s = '<a href="../hanafuda.html">General Flower Card rules</a>'
|
|
elif gi.si.game_type == GI.GT_DASHAVATARA_GANJIFA:
|
|
s = '<a href="../ganjifa.html">About Ganjifa</a>'
|
|
elif gi.si.game_type == GI.GT_HEXADECK:
|
|
s = '<a href="../hexadeck.html">General Hex A Deck rules</a>'
|
|
elif gi.si.game_type == GI.GT_MUGHAL_GANJIFA:
|
|
s = '<a href="../ganjifa.html">About Ganjifa</a>'
|
|
# print '***', gi.name, '***'
|
|
|
|
rules_list.append((rules_dir, rules_fn, title, s))
|
|
files_list.append(rules_fn)
|
|
# rules_list.append((rules_fn, gi.name))
|
|
print >> out_rules, '<li><a href="rules/%s">%s</a>' \
|
|
% (rules_fn, gi.name.encode('utf-8'))
|
|
for n in gi.altnames:
|
|
altnames.append((n, rules_fn))
|
|
|
|
print >> out_rules, '</ul>\n' + \
|
|
main_footer % '<a href="index.html">Back to the index</a>'
|
|
|
|
# create file of altnames
|
|
out_rules_alt = open(os.path.join('html', 'rules_alternate.html'), 'w')
|
|
print >> out_rules_alt, main_header % 'PySol - a Solitaire Game Collection'
|
|
print >> out_rules_alt, open('rules_alternate.html').read()
|
|
altnames.sort()
|
|
for name, fn in altnames:
|
|
print >> out_rules_alt, '<li> <a href="rules/%s">%s</a>' \
|
|
% (fn, name.encode('utf-8'))
|
|
print >> out_rules_alt, '</ul>\n' + \
|
|
main_footer % '<a href="index.html">Back to the index</a>'
|
|
|
|
# create rules
|
|
for dir, filename, title, footer in rules_list:
|
|
outfile = open(os.path.join('html', 'rules', filename), 'w')
|
|
if dir == 'rules':
|
|
print >> outfile, (rules_header % title).encode('utf-8')
|
|
else: # d == 'wikipedia'
|
|
print >> outfile, (wikipedia_header % title).encode('utf-8')
|
|
print >> outfile, open(os.path.join(dir, filename)).read()
|
|
print >> outfile, rules_footer % footer
|
|
|
|
|
|
gen_main_html()
|
|
gen_rules_html()
|