mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
flake 8
This commit is contained in:
parent
dc867906cf
commit
73895c6bf3
4 changed files with 232 additions and 197 deletions
|
@ -368,3 +368,7 @@ def registerCustomGame(gameclass):
|
||||||
registerGame(GameInfo(gameid, gameclass, s['name'],
|
registerGame(GameInfo(gameid, gameclass, s['name'],
|
||||||
GI.GT_CUSTOM | GI.GT_ORIGINAL,
|
GI.GT_CUSTOM | GI.GT_ORIGINAL,
|
||||||
s['decks'], s['redeals'], s['skill_level']))
|
s['decks'], s['redeals'], s['skill_level']))
|
||||||
|
|
||||||
|
|
||||||
|
def no_use():
|
||||||
|
pass
|
||||||
|
|
|
@ -127,4 +127,3 @@ presets = {
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- mode: python; coding: utf-8; -*-
|
# -*- mode: python; coding: utf-8; -*-
|
||||||
# ---------------------------------------------------------------------------##
|
# ---------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Copyright (C) 1998-2003 Markus Franz Xaver Johannes Oberhumer
|
# Copyright (C) 1998-2003 Markus Franz Xaver Johannes Oberhumer
|
||||||
# Copyright (C) 2003 Mt. Hood Playing Card Co.
|
# Copyright (C) 2003 Mt. Hood Playing Card Co.
|
||||||
|
@ -19,28 +19,62 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
# ---------------------------------------------------------------------------##
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
import sys
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from pysollib.gamedb import GI, loadGame
|
from pysollib.gamedb import GI, loadGame
|
||||||
from pysollib.util import *
|
from pysollib.util import ACE, ANY_RANK, KING, NO_RANK, UNLIMITED_MOVES
|
||||||
from pysollib.stack import *
|
from pysollib.stack import AC_FoundationStack, \
|
||||||
|
AC_RowStack, \
|
||||||
|
BO_RowStack, \
|
||||||
|
DealReserveRedealTalonStack, \
|
||||||
|
DealRowRedealTalonStack, \
|
||||||
|
GroundsForADivorceTalonStack, \
|
||||||
|
InitialDealTalonStack, \
|
||||||
|
RK_FoundationStack, \
|
||||||
|
RK_RowStack, \
|
||||||
|
Spider_AC_Foundation, \
|
||||||
|
Spider_AC_RowStack, \
|
||||||
|
Spider_RK_Foundation, \
|
||||||
|
Spider_SS_Foundation, \
|
||||||
|
Spider_SS_RowStack, \
|
||||||
|
SpiderTalonStack, \
|
||||||
|
SC_FoundationStack, \
|
||||||
|
SC_RowStack, \
|
||||||
|
SS_FoundationStack, \
|
||||||
|
SS_RowStack, \
|
||||||
|
UD_AC_RowStack, \
|
||||||
|
UD_RK_RowStack, \
|
||||||
|
UD_SC_RowStack, \
|
||||||
|
UD_SS_RowStack, \
|
||||||
|
WasteTalonStack, \
|
||||||
|
Yukon_AC_RowStack, \
|
||||||
|
Yukon_RK_RowStack, \
|
||||||
|
Yukon_SS_RowStack
|
||||||
|
|
||||||
|
|
||||||
from pysollib.layout import Layout
|
from pysollib.layout import Layout
|
||||||
from wizardpresets import presets
|
from wizardpresets import presets
|
||||||
|
|
||||||
from pysollib.mygettext import _, n_
|
from pysollib.mygettext import _, n_
|
||||||
|
|
||||||
|
if sys.version_info > (3,):
|
||||||
|
basestring = str
|
||||||
|
unicode = str
|
||||||
|
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
# *
|
# *
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
|
|
||||||
|
|
||||||
class WizSetting:
|
class WizSetting:
|
||||||
def __init__(self, values_map, default, var_name,
|
def __init__(self, values_map, default, var_name,
|
||||||
label, widget='menu'):
|
label, widget='menu'):
|
||||||
self.values_map = values_map
|
self.values_map = values_map
|
||||||
self.default = default
|
self.default = default
|
||||||
##self.values_dict = dict(self.values_map)
|
# self.values_dict = dict(self.values_map)
|
||||||
self.translation_map = {} # for backward translation
|
self.translation_map = {} # for backward translation
|
||||||
if widget == 'menu':
|
if widget == 'menu':
|
||||||
self.values = []
|
self.values = []
|
||||||
|
@ -64,88 +98,88 @@ class WizSetting:
|
||||||
|
|
||||||
|
|
||||||
WizardPresets = WizSetting(
|
WizardPresets = WizSetting(
|
||||||
values_map = presets.keys(),
|
values_map=presets.keys(),
|
||||||
default = 'None',
|
default='None',
|
||||||
widget = 'preset',
|
widget='preset',
|
||||||
label = _('Initial setting:'),
|
label=_('Initial setting:'),
|
||||||
var_name = 'preset',
|
var_name='preset',
|
||||||
)
|
)
|
||||||
GameName = WizSetting(
|
GameName = WizSetting(
|
||||||
values_map = (),
|
values_map=(),
|
||||||
default = _('My Game'),
|
default=_('My Game'),
|
||||||
widget = 'entry',
|
widget='entry',
|
||||||
label = _('Name:'),
|
label=_('Name:'),
|
||||||
var_name = 'name',
|
var_name='name',
|
||||||
)
|
)
|
||||||
SkillLevel = WizSetting(
|
SkillLevel = WizSetting(
|
||||||
values_map = ((n_('Luck only'), GI.SL_LUCK),
|
values_map=((n_('Luck only'), GI.SL_LUCK),
|
||||||
(n_('Mostly luck'), GI.SL_MOSTLY_LUCK),
|
(n_('Mostly luck'), GI.SL_MOSTLY_LUCK),
|
||||||
(n_('Balanced'), GI.SL_BALANCED),
|
(n_('Balanced'), GI.SL_BALANCED),
|
||||||
(n_('Mostly skill'), GI.SL_MOSTLY_SKILL),
|
(n_('Mostly skill'), GI.SL_MOSTLY_SKILL),
|
||||||
(n_('Skill only'), GI.SL_SKILL),
|
(n_('Skill only'), GI.SL_SKILL),
|
||||||
),
|
),
|
||||||
default = n_('Balanced'),
|
default=n_('Balanced'),
|
||||||
label = _('Skill level:'),
|
label=_('Skill level:'),
|
||||||
var_name = 'skill_level',
|
var_name='skill_level',
|
||||||
)
|
)
|
||||||
NumDecks = WizSetting(
|
NumDecks = WizSetting(
|
||||||
values_map = ((n_('One'), 1),
|
values_map=((n_('One'), 1),
|
||||||
(n_('Two'), 2),
|
(n_('Two'), 2),
|
||||||
(n_('Three'), 3),
|
(n_('Three'), 3),
|
||||||
(n_('Four'), 4)),
|
(n_('Four'), 4)),
|
||||||
default = n_('One'),
|
default=n_('One'),
|
||||||
label = _('Number of decks:'),
|
label=_('Number of decks:'),
|
||||||
var_name = 'decks',
|
var_name='decks',
|
||||||
)
|
)
|
||||||
LayoutType = WizSetting(
|
LayoutType = WizSetting(
|
||||||
values_map = ((n_('FreeCell'), Layout.freeCellLayout),
|
values_map=((n_('FreeCell'), Layout.freeCellLayout),
|
||||||
(n_('Klondike'), Layout.klondikeLayout),
|
(n_('Klondike'), Layout.klondikeLayout),
|
||||||
(n_('Gypsy'), Layout.gypsyLayout),
|
(n_('Gypsy'), Layout.gypsyLayout),
|
||||||
(n_('Harp'), Layout.harpLayout),
|
(n_('Harp'), Layout.harpLayout),
|
||||||
),
|
),
|
||||||
default = n_('FreeCell'),
|
default=n_('FreeCell'),
|
||||||
label = _('Layout:'),
|
label=_('Layout:'),
|
||||||
var_name = 'layout',
|
var_name='layout',
|
||||||
)
|
)
|
||||||
TalonType = WizSetting(
|
TalonType = WizSetting(
|
||||||
values_map = ((n_('Deal all cards at the beginning'), InitialDealTalonStack),
|
values_map=((n_('Deal all cards at the beginning'), InitialDealTalonStack),
|
||||||
(n_('Deal to waste'), WasteTalonStack),
|
(n_('Deal to waste'), WasteTalonStack),
|
||||||
(n_('Deal to tableau'), DealRowRedealTalonStack),
|
(n_('Deal to tableau'), DealRowRedealTalonStack),
|
||||||
(n_('Deal to reserves'), DealReserveRedealTalonStack),
|
(n_('Deal to reserves'), DealReserveRedealTalonStack),
|
||||||
(n_('Spider'), SpiderTalonStack),
|
(n_('Spider'), SpiderTalonStack),
|
||||||
(n_('Grounds for a Divorce'), GroundsForADivorceTalonStack),
|
(n_('Grounds for a Divorce'), GroundsForADivorceTalonStack),
|
||||||
),
|
),
|
||||||
default = n_('Deal all cards at the beginning'),
|
default=n_('Deal all cards at the beginning'),
|
||||||
label = _('Type:'),
|
label=_('Type:'),
|
||||||
var_name = 'talon',
|
var_name='talon',
|
||||||
)
|
)
|
||||||
Redeals = WizSetting(
|
Redeals = WizSetting(
|
||||||
values_map = ((n_('No redeals'), 0),
|
values_map=((n_('No redeals'), 0),
|
||||||
(n_('One redeal'), 1),
|
(n_('One redeal'), 1),
|
||||||
(n_('Two redeals'), 2),
|
(n_('Two redeals'), 2),
|
||||||
(n_('Three redeals'), 3),
|
(n_('Three redeals'), 3),
|
||||||
(n_('Unlimited redeals'), -1),
|
(n_('Unlimited redeals'), -1),
|
||||||
),
|
),
|
||||||
default = n_('No redeals'),
|
default=n_('No redeals'),
|
||||||
label = _('Number of redeals:'),
|
label=_('Number of redeals:'),
|
||||||
var_name = 'redeals',
|
var_name='redeals',
|
||||||
)
|
)
|
||||||
DealToWaste = WizSetting(
|
DealToWaste = WizSetting(
|
||||||
values_map = (1, 5),
|
values_map=(1, 5),
|
||||||
default = 1,
|
default=1,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('# of cards dealt to the waste:'),
|
label=_('# of cards dealt to the waste:'),
|
||||||
var_name = 'deal_to_waste',
|
var_name='deal_to_waste',
|
||||||
)
|
)
|
||||||
TalonShuffle = WizSetting(
|
TalonShuffle = WizSetting(
|
||||||
values_map = (0, 1),
|
values_map=(0, 1),
|
||||||
default = 0,
|
default=0,
|
||||||
label = _('Shuffle during redeal:'),
|
label=_('Shuffle during redeal:'),
|
||||||
var_name = 'talon_shuffle',
|
var_name='talon_shuffle',
|
||||||
widget = 'check',
|
widget='check',
|
||||||
)
|
)
|
||||||
FoundType = WizSetting(
|
FoundType = WizSetting(
|
||||||
values_map = ((n_('Same suit'), SS_FoundationStack),
|
values_map=((n_('Same suit'), SS_FoundationStack),
|
||||||
(n_('Alternate color'), AC_FoundationStack),
|
(n_('Alternate color'), AC_FoundationStack),
|
||||||
(n_('Same color'), SC_FoundationStack),
|
(n_('Same color'), SC_FoundationStack),
|
||||||
(n_('Rank'), RK_FoundationStack),
|
(n_('Rank'), RK_FoundationStack),
|
||||||
|
@ -153,47 +187,47 @@ FoundType = WizSetting(
|
||||||
(n_('Spider alternate color'), Spider_AC_Foundation),
|
(n_('Spider alternate color'), Spider_AC_Foundation),
|
||||||
(n_('Spider rank'), Spider_RK_Foundation),
|
(n_('Spider rank'), Spider_RK_Foundation),
|
||||||
),
|
),
|
||||||
default = n_('Same suit'),
|
default=n_('Same suit'),
|
||||||
label = _('Type:'),
|
label=_('Type:'),
|
||||||
var_name = 'found_type',
|
var_name='found_type',
|
||||||
)
|
)
|
||||||
FoundBaseCard = WizSetting(
|
FoundBaseCard = WizSetting(
|
||||||
values_map = ((n_('Ace'), ACE),
|
values_map=((n_('Ace'), ACE),
|
||||||
(n_('King'), KING),
|
(n_('King'), KING),
|
||||||
(n_('Any'), ANY_RANK),
|
(n_('Any'), ANY_RANK),
|
||||||
),
|
),
|
||||||
default = n_('Ace'),
|
default=n_('Ace'),
|
||||||
label = _('Base card:'),
|
label=_('Base card:'),
|
||||||
var_name = 'found_base_card',
|
var_name='found_base_card',
|
||||||
)
|
)
|
||||||
FoundDir = WizSetting(
|
FoundDir = WizSetting(
|
||||||
values_map = ((n_('Up'), 1), (n_('Down'), -1)),
|
values_map=((n_('Up'), 1), (n_('Down'), -1)),
|
||||||
default = n_('Up'),
|
default=n_('Up'),
|
||||||
label = _('Direction:'),
|
label=_('Direction:'),
|
||||||
var_name = 'found_dir',
|
var_name='found_dir',
|
||||||
)
|
)
|
||||||
FoundMaxMove = WizSetting(
|
FoundMaxMove = WizSetting(
|
||||||
values_map = ((n_('None'), 0,), (n_('Top card'), 1)),
|
values_map=((n_('None'), 0,), (n_('Top card'), 1)),
|
||||||
default = n_('Top card'),
|
default=n_('Top card'),
|
||||||
label = _('Move:'),
|
label=_('Move:'),
|
||||||
var_name = 'found_max_move',
|
var_name='found_max_move',
|
||||||
)
|
)
|
||||||
FoundEqual = WizSetting(
|
FoundEqual = WizSetting(
|
||||||
values_map = (0, 1),
|
values_map=(0, 1),
|
||||||
default = 1,
|
default=1,
|
||||||
label = _('First card sets base cards:'),
|
label=_('First card sets base cards:'),
|
||||||
var_name = 'found_equal',
|
var_name='found_equal',
|
||||||
widget = 'check',
|
widget='check',
|
||||||
)
|
)
|
||||||
RowsNum = WizSetting(
|
RowsNum = WizSetting(
|
||||||
values_map = (1, 20),
|
values_map=(1, 20),
|
||||||
default = 8,
|
default=8,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('Number of tableau piles:'),
|
label=_('Number of tableau piles:'),
|
||||||
var_name = 'rows_num',
|
var_name='rows_num',
|
||||||
)
|
)
|
||||||
RowsType = WizSetting(
|
RowsType = WizSetting(
|
||||||
values_map = ((n_('Same suit'), SS_RowStack),
|
values_map=((n_('Same suit'), SS_RowStack),
|
||||||
(n_('Alternate color'), AC_RowStack),
|
(n_('Alternate color'), AC_RowStack),
|
||||||
(n_('Same color'), SC_RowStack),
|
(n_('Same color'), SC_RowStack),
|
||||||
(n_('Rank'), RK_RowStack),
|
(n_('Rank'), RK_RowStack),
|
||||||
|
@ -211,102 +245,102 @@ RowsType = WizSetting(
|
||||||
(n_('Yukon alternate color'), Yukon_AC_RowStack),
|
(n_('Yukon alternate color'), Yukon_AC_RowStack),
|
||||||
(n_('Yukon rank'), Yukon_RK_RowStack),
|
(n_('Yukon rank'), Yukon_RK_RowStack),
|
||||||
),
|
),
|
||||||
default = n_('Alternate color'),
|
default=n_('Alternate color'),
|
||||||
label = _('Type:'),
|
label=_('Type:'),
|
||||||
var_name = 'rows_type',
|
var_name='rows_type',
|
||||||
)
|
)
|
||||||
RowsBaseCard = WizSetting(
|
RowsBaseCard = WizSetting(
|
||||||
values_map = ((n_('Ace'), ACE),
|
values_map=((n_('Ace'), ACE),
|
||||||
(n_('King'), KING),
|
(n_('King'), KING),
|
||||||
(n_('Any'), ANY_RANK),
|
(n_('Any'), ANY_RANK),
|
||||||
(n_('None'), NO_RANK),
|
(n_('None'), NO_RANK),
|
||||||
),
|
),
|
||||||
default = n_('Any'),
|
default=n_('Any'),
|
||||||
label = _('Base card:'),
|
label=_('Base card:'),
|
||||||
var_name = 'rows_base_card',
|
var_name='rows_base_card',
|
||||||
)
|
)
|
||||||
RowsDir = WizSetting(
|
RowsDir = WizSetting(
|
||||||
values_map = ((n_('Up'), 1), (n_('Down'), -1)),
|
values_map=((n_('Up'), 1), (n_('Down'), -1)),
|
||||||
default = n_('Down'),
|
default=n_('Down'),
|
||||||
label = _('Direction:'),
|
label=_('Direction:'),
|
||||||
var_name = 'rows_dir',
|
var_name='rows_dir',
|
||||||
)
|
)
|
||||||
RowsMaxMove = WizSetting(
|
RowsMaxMove = WizSetting(
|
||||||
values_map = ((n_('Top card'), 1), (n_('Sequence'), UNLIMITED_MOVES)),
|
values_map=((n_('Top card'), 1), (n_('Sequence'), UNLIMITED_MOVES)),
|
||||||
default = n_('Sequence'),
|
default=n_('Sequence'),
|
||||||
label = _('Move:'),
|
label=_('Move:'),
|
||||||
var_name = 'rows_max_move',
|
var_name='rows_max_move',
|
||||||
)
|
)
|
||||||
RowsWrap = WizSetting(
|
RowsWrap = WizSetting(
|
||||||
values_map = (0, 1),
|
values_map=(0, 1),
|
||||||
default = 0,
|
default=0,
|
||||||
label = _('Wrapping:'),
|
label=_('Wrapping:'),
|
||||||
var_name = 'rows_wrap',
|
var_name='rows_wrap',
|
||||||
widget = 'check',
|
widget='check',
|
||||||
)
|
)
|
||||||
RowsSuperMove = WizSetting(
|
RowsSuperMove = WizSetting(
|
||||||
values_map = (0, 1),
|
values_map=(0, 1),
|
||||||
default = 0,
|
default=0,
|
||||||
label = _('Use "Super Move" feature:'),
|
label=_('Use "Super Move" feature:'),
|
||||||
var_name = 'rows_super_move',
|
var_name='rows_super_move',
|
||||||
widget = 'check',
|
widget='check',
|
||||||
)
|
)
|
||||||
ReservesNum = WizSetting(
|
ReservesNum = WizSetting(
|
||||||
values_map = (0, 20),
|
values_map=(0, 20),
|
||||||
default = 4,
|
default=4,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('Number of reserves:'),
|
label=_('Number of reserves:'),
|
||||||
var_name = 'reserves_num',
|
var_name='reserves_num',
|
||||||
)
|
)
|
||||||
ReservesMaxAccept = WizSetting(
|
ReservesMaxAccept = WizSetting(
|
||||||
values_map = (0, 20),
|
values_map=(0, 20),
|
||||||
default = 1,
|
default=1,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('Max # of accepted cards:'),
|
label=_('Max # of accepted cards:'),
|
||||||
var_name = 'reserves_max_accept',
|
var_name='reserves_max_accept',
|
||||||
)
|
)
|
||||||
DealType = WizSetting(
|
DealType = WizSetting(
|
||||||
values_map = ((n_('Triangle'), 'triangle'),
|
values_map=((n_('Triangle'), 'triangle'),
|
||||||
(n_('Rectangle'), 'rectangle'),
|
(n_('Rectangle'), 'rectangle'),
|
||||||
),
|
),
|
||||||
default = n_('Rectangle'),
|
default=n_('Rectangle'),
|
||||||
label = _('Type:'),
|
label=_('Type:'),
|
||||||
var_name = 'deal_type',
|
var_name='deal_type',
|
||||||
)
|
)
|
||||||
DealFaceDown = WizSetting(
|
DealFaceDown = WizSetting(
|
||||||
values_map = (0, 20),
|
values_map=(0, 20),
|
||||||
default = 0,
|
default=0,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('# of face-down cards dealt to the tableau pile:'),
|
label=_('# of face-down cards dealt to the tableau pile:'),
|
||||||
var_name = 'deal_face_down',
|
var_name='deal_face_down',
|
||||||
)
|
)
|
||||||
DealFaceUp = WizSetting(
|
DealFaceUp = WizSetting(
|
||||||
values_map = (0, 20),
|
values_map=(0, 20),
|
||||||
default = 8,
|
default=8,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('# of face-up cards dealt to the tableau pile:'),
|
label=_('# of face-up cards dealt to the tableau pile:'),
|
||||||
var_name = 'deal_face_up',
|
var_name='deal_face_up',
|
||||||
)
|
)
|
||||||
DealToReseves = WizSetting(
|
DealToReseves = WizSetting(
|
||||||
values_map = (0, 208),
|
values_map=(0, 208),
|
||||||
default = 0,
|
default=0,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('# of cards dealt to the reserve:'),
|
label=_('# of cards dealt to the reserve:'),
|
||||||
var_name = 'deal_to_reserves',
|
var_name='deal_to_reserves',
|
||||||
)
|
)
|
||||||
DealMaxCards = WizSetting(
|
DealMaxCards = WizSetting(
|
||||||
values_map = (0, 208),
|
values_map=(0, 208),
|
||||||
default = 52,
|
default=52,
|
||||||
widget = 'spin',
|
widget='spin',
|
||||||
label = _('Max # of dealt cards:'),
|
label=_('Max # of dealt cards:'),
|
||||||
var_name = 'deal_max_cards',
|
var_name='deal_max_cards',
|
||||||
)
|
)
|
||||||
DealToFound = WizSetting(
|
DealToFound = WizSetting(
|
||||||
values_map = (0, 1),
|
values_map=(0, 1),
|
||||||
default = 0,
|
default=0,
|
||||||
label = _('Deal first cards to the foundations:'),
|
label=_('Deal first cards to the foundations:'),
|
||||||
var_name = 'deal_found',
|
var_name='deal_found',
|
||||||
widget = 'check',
|
widget='check',
|
||||||
)
|
)
|
||||||
|
|
||||||
WizardWidgets = (
|
WizardWidgets = (
|
||||||
|
@ -350,11 +384,10 @@ WizardWidgets = (
|
||||||
|
|
||||||
def write_game(app, game=None):
|
def write_game(app, game=None):
|
||||||
import pysollib.customgame # for py2exe
|
import pysollib.customgame # for py2exe
|
||||||
|
pysollib.customgame.no_use()
|
||||||
if game is None:
|
if game is None:
|
||||||
# new game
|
# new game
|
||||||
d = app.dn.plugins
|
d = app.dn.plugins
|
||||||
ls = os.listdir(d)
|
|
||||||
n = 1
|
n = 1
|
||||||
while True:
|
while True:
|
||||||
fn = os.path.join(d, 'customgame%d.py' % n) # file name
|
fn = os.path.join(d, 'customgame%d.py' % n) # file name
|
||||||
|
@ -371,7 +404,7 @@ def write_game(app, game=None):
|
||||||
gameid = game.SETTINGS['gameid']
|
gameid = game.SETTINGS['gameid']
|
||||||
check_game = False
|
check_game = False
|
||||||
|
|
||||||
##print '===>', fn
|
# print '===>', fn
|
||||||
fd = open(fn, 'w')
|
fd = open(fn, 'w')
|
||||||
|
|
||||||
fd.write('''\
|
fd.write('''\
|
||||||
|
@ -420,6 +453,7 @@ registerCustomGame(MyCustomGame)
|
||||||
|
|
||||||
return gameid
|
return gameid
|
||||||
|
|
||||||
|
|
||||||
def reset_wizard(game):
|
def reset_wizard(game):
|
||||||
for w in WizardWidgets:
|
for w in WizardWidgets:
|
||||||
if isinstance(w, basestring):
|
if isinstance(w, basestring):
|
||||||
|
@ -434,5 +468,3 @@ def reset_wizard(game):
|
||||||
else:
|
else:
|
||||||
v = w.default
|
v = w.default
|
||||||
w.current_value = v
|
w.current_value = v
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ use String::ShellQuote qw/ shell_quote /;
|
||||||
|
|
||||||
# my $cmd = shell_quote( 'flake8', '.' );
|
# my $cmd = shell_quote( 'flake8', '.' );
|
||||||
my $cmd = shell_quote( 'flake8',
|
my $cmd = shell_quote( 'flake8',
|
||||||
grep { not($_ eq './pysollib/pysoltk.py') } glob('./pysollib/[a-u]*.py') );
|
grep { not($_ eq './pysollib/pysoltk.py') } glob('./pysollib/[a-z]*.py') );
|
||||||
|
|
||||||
# TEST
|
# TEST
|
||||||
eq_or_diff( scalar(`$cmd`), '', "flake8 is happy with the code." );
|
eq_or_diff( scalar(`$cmd`), '', "flake8 is happy with the code." );
|
||||||
|
|
Loading…
Add table
Reference in a new issue