1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

* accelerated game registration

git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@90 39dd0a4e-7c14-0410-91b3-c4f2d318f732
This commit is contained in:
skomoroh 2006-11-08 23:28:56 +00:00
parent 224c2e76e4
commit 40fc8ea105
5 changed files with 32 additions and 11 deletions

View file

@ -1,6 +1,7 @@
# Makefile for PySolFC
override LANG=C
override PYSOL_DEBUG=1
PYSOLLIB_FILES=pysollib/tk/*.py pysollib/*.py \
pysollib/games/*.py pysollib/games/special/*.py \

View file

@ -40,6 +40,7 @@ import sys, imp, os, types
# PySol imports
from mfxutil import Struct, latin1_to_ascii
from resource import CSI
from settings import CHECK_GAMES
gettext = _
n_ = lambda x: x
@ -486,11 +487,8 @@ class GameManager:
def get(self, key):
return self.__all_games.get(key)
def register(self, gi):
##print gi.id, gi.short_name
if not isinstance(gi, GameInfo):
raise GameInfoException, "wrong GameInfo class"
gi.plugin = self.loading_plugin
def _check_game(self, gi):
##print 'check game:', gi.id, gi.short_name.encode('utf-8')
if self.__all_games.has_key(gi.id):
raise GameInfoException, "duplicate game ID %s: %s and %s" % \
(gi.id, str(gi.gameclass),
@ -508,6 +506,14 @@ class GameManager:
if self.__all_gamenames.has_key(n):
raise GameInfoException, "duplicate game altname %s: %s" % \
(gi.id, n)
def register(self, gi):
##print gi.id, gi.short_name.encode('utf-8')
if not isinstance(gi, GameInfo):
raise GameInfoException, "wrong GameInfo class"
gi.plugin = self.loading_plugin
if self.loading_plugin or CHECK_GAMES:
self._check_game(gi)
##if 0 and gi.si.game_flags & GI.GT_XORIGINAL:
## return
##print gi.id, gi.name

View file

@ -51,6 +51,15 @@ def init():
##if locale_dir: locale_dir = os.path.normpath(locale_dir)
gettext.install('pysol', locale_dir, unicode=True)
if os.environ.has_key('PYSOL_CHECK_GAMES') or \
os.environ.has_key('PYSOL_DEBUG'):
settings.CHECK_GAMES = True
if os.environ.has_key('PYSOL_DEBUG'):
try:
settings.DEBUG = int(os.environ['PYSOL_DEBUG'])
except:
settings.DEBUG = 1
## init toolkit
if '--gtk' in sys.argv:
settings.TOOLKIT = 'gtk'

View file

@ -43,6 +43,7 @@ import gettext
# PySol imports
from mfxutil import destruct, EnvError
from util import CARDSET, DataLoader
import settings
from settings import PACKAGE, TOOLKIT, VERSION, SOUND_MOD
from resource import Tile
from gamedb import GI
@ -110,7 +111,7 @@ def parse_option(argv):
"noplugins": False,
"nosound": False,
"sound-mod": None,
"debug": 0,
"debug": None,
}
for i in optlist:
if i[0] in ("-h", "--help"):
@ -137,7 +138,10 @@ def parse_option(argv):
assert i[1] in ('pss', 'pygame', 'oss', 'win')
opts["sound-mod"] = i[1]
elif i[0] in ("-D", "--debug"):
opts["debug"] = i[1]
try:
opts["debug"] = int(i[1])
except:
print >> sys.stderr, 'WARNING: invalid argument for debug'
if opts["help"]:
print _("""Usage: %s [OPTIONS] [FILE]
@ -202,10 +206,9 @@ def pysol_init(app, args):
app.commandline.gameid = int(opts['gameid'])
except:
print >> sys.stderr, 'WARNING: invalid game id:', opts['gameid']
try:
app.debug = int(opts['debug'])
except:
print >> sys.stderr, 'invalid argument for debug'
if not opts['debug'] is None:
settings.DEBUG = opts['debug']
app.debug = settings.DEBUG
# init games database
import games

View file

@ -57,3 +57,5 @@ if os.name == 'mac':
TOP_SIZE = 10
TOP_TITLE = n_('Top 10')
DEBUG = 0 # must be integer
CHECK_GAMES = False