diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 00000000..233f27d3 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,24 @@ +Main Authors +============ + +Markus Franz Xaver Johannes Oberhumer + author of PySol +T. Kirk + author of Ultrasol +Skomoroh + author of PySolFC +Brian Lenihan + OSX package maintainer + + +Games contributors +================== + +Mark Andrews +Galen Brooks +Andrew Csillag +Michael Foord +Matthew Hohlfeld +Nicola Larosa +John Stoneham +David Svoboda diff --git a/MANIFEST.in b/MANIFEST.in index f1008845..cd03c435 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,6 +11,7 @@ include pysollib/tk/*.py pysollib/tile/*.py pysollib/pysolgtk/*.py include pysollib/games/*.py pysollib/games/special/*.py include pysollib/games/ultra/*.py pysollib/games/mahjongg/*.py include data/tcl/*.tcl +include data/pysolfc.glade graft data/themes include scripts/build.bat scripts/create_iss.py scripts/mahjongg_utils.py include scripts/pygettext.py scripts/all_games.py scripts/cardset_viewer.py diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py index d2b46c76..df276009 100644 --- a/pysollib/gamedb.py +++ b/pysollib/gamedb.py @@ -225,6 +225,7 @@ class GI: 262: 105, # Canfield 902: 88, # Trefoil 904: 68, # Lexington Harp + 297: 631, # Alternation/Alternations } GAMES_BY_COMPATIBILITY = ( @@ -336,7 +337,8 @@ class GI: 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236)), ("4.70", (237,)), - ('fc-0.5.0', (#121, 122, 187, 188, 189, 190, 191, 192, 194, 197, 198, + ('fc-0.5.0', ( # moved from Ultrasol + #121, 122, 187, 188, 189, 190, 191, 192, 194, 197, 198, 5301, 5302, 9011, 11001, 11002, 11003, 11004, 11005, 11006, 12353, 12354, 12355, 12356, 12357, 12358, 12359, 12360, 12361, 12362, 12363, 12364, 12365, 12366, 12367, @@ -361,6 +363,7 @@ class GI: ('fc-0.9.4', tuple(range(661, 671))), ('fc-1.0', tuple(range(671, 711))), ('fc-1.1', tuple(range(711, 759))), + ('fc-1.2', tuple(range(11011, 11014))), ) # deprecated - the correct way is to or a GI.GT_XXX flag diff --git a/pysollib/games/mahjongg/shisensho.py b/pysollib/games/mahjongg/shisensho.py index 0e4f15a5..b1b6009d 100644 --- a/pysollib/games/mahjongg/shisensho.py +++ b/pysollib/games/mahjongg/shisensho.py @@ -61,7 +61,7 @@ class Shisen_Hint(AbstractHint): # simple scoring... score = 1000 + r.rown + t.rown self.addHint(score, 1, r, t) - i = i + 1 + i += 1 # /*********************************************************************** @@ -456,6 +456,27 @@ class Shisen_24x12_NoGravity(AbstractShisenGame): # // Not Shisen-Sho # ************************************************************************/ +class NotShisen_Hint(AbstractHint): + # FIXME: no intelligence whatsoever is implemented here + def computeHints(self): + game = self.game + # get free stacks + stacks = [] + for r in game.s.rows: + if r.cards: + stacks.append(r) + # find matching tiles + i = 0 + for r in stacks: + for t in stacks[i+1:]: + #if game.cardsMatch(r.cards[0], t.cards[0]): + if r.acceptsCards(t, t.cards): + # simple scoring... + score = 2000 - r.rown - t.rown + self.addHint(score, 1, r, t) + i += 1 + + class NotShisen_RowStack(Shisen_RowStack): def acceptsCards(self, from_stack, cards): if not self.game.cardsMatch(self.cards[0], cards[-1]): @@ -467,15 +488,18 @@ class NotShisen_RowStack(Shisen_RowStack): class NotShisen_14x6(AbstractShisenGame): + Hint_Class = NotShisen_Hint RowStack_Class = NotShisen_RowStack L = (14, 6) NCARDS = 84 class NotShisen_18x8(AbstractShisenGame): + Hint_Class = NotShisen_Hint RowStack_Class = NotShisen_RowStack L = (18, 8) class NotShisen_24x12(AbstractShisenGame): + Hint_Class = NotShisen_Hint RowStack_Class = NotShisen_RowStack L = (24, 12) NCARDS = 288 diff --git a/setup.py b/setup.py index 366f7d5f..2a3a49b2 100644 --- a/setup.py +++ b/setup.py @@ -50,11 +50,11 @@ if os.name == 'posix': ##import sys; sys.exit() long_description = '''\ -PySol is a solitaire card game. Its features include support for many -different games, very nice look and feel, multiple cardsets and -backgrounds, unlimited undo & redo, load & save games, player -statistics, hint system, demo games, support for user written plug-ins, -integrated HTML help browser, and it\'s free Open Source software. +PySolFC is a collection of more than 1000 solitaire card games. +Its features include modern look and feel (uses Tile widget set), multiple +cardsets and tableau backgrounds, sound, unlimited undo, player statistics, +a hint system, demo games, a solitaire wizard, support for user written +plug-ins, an integrated HTML help browser, and lots of documentation. ''' kw = { @@ -63,7 +63,7 @@ kw = { 'url' : PACKAGE_URL, 'author' : 'Skomoroh', 'author_email' : 'skomoroh@gmail.com', - 'description' : 'PySol - a solitaire game collection', + 'description' : 'a Python solitaire game collection', 'long_description' : long_description, 'license' : 'GPL', 'scripts' : ['pysol.py'],