mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Add random game command line option
This commit is contained in:
parent
910f927727
commit
56489cb7bc
1 changed files with 9 additions and 1 deletions
|
@ -87,6 +87,7 @@ def parse_option(argv):
|
||||||
try:
|
try:
|
||||||
optlist, args = getopt.getopt(argv[1:], "g:i:hD:",
|
optlist, args = getopt.getopt(argv[1:], "g:i:hD:",
|
||||||
["deal=", "game=", "gameid=",
|
["deal=", "game=", "gameid=",
|
||||||
|
"random-game",
|
||||||
"french-only",
|
"french-only",
|
||||||
"noplugins",
|
"noplugins",
|
||||||
"nosound",
|
"nosound",
|
||||||
|
@ -100,6 +101,7 @@ def parse_option(argv):
|
||||||
"deal": None,
|
"deal": None,
|
||||||
"game": None,
|
"game": None,
|
||||||
"gameid": None,
|
"gameid": None,
|
||||||
|
"random-game": False,
|
||||||
"french-only": False,
|
"french-only": False,
|
||||||
"noplugins": False,
|
"noplugins": False,
|
||||||
"nosound": False,
|
"nosound": False,
|
||||||
|
@ -114,6 +116,8 @@ def parse_option(argv):
|
||||||
opts["game"] = i[1]
|
opts["game"] = i[1]
|
||||||
elif i[0] in ("-i", "--gameid"):
|
elif i[0] in ("-i", "--gameid"):
|
||||||
opts["gameid"] = i[1]
|
opts["gameid"] = i[1]
|
||||||
|
elif i[0] == "--random-game":
|
||||||
|
opts["random-game"] = True
|
||||||
elif i[0] == "--french-only":
|
elif i[0] == "--french-only":
|
||||||
opts["french-only"] = True
|
opts["french-only"] = True
|
||||||
elif i[0] == "--noplugins":
|
elif i[0] == "--noplugins":
|
||||||
|
@ -129,6 +133,7 @@ def parse_option(argv):
|
||||||
-g --game=GAMENAME start game GAMENAME
|
-g --game=GAMENAME start game GAMENAME
|
||||||
-i --gameid=GAMEID start game with ID GAMEID
|
-i --gameid=GAMEID start game with ID GAMEID
|
||||||
--deal=DEAL start game deal by number DEAL
|
--deal=DEAL start game deal by number DEAL
|
||||||
|
--random-game start a random game
|
||||||
--french-only disable non-french games
|
--french-only disable non-french games
|
||||||
--sound-mod=MOD use a certain sound module
|
--sound-mod=MOD use a certain sound module
|
||||||
--nosound disable sound support
|
--nosound disable sound support
|
||||||
|
@ -316,6 +321,9 @@ Please check your %(app)s installation.
|
||||||
bitmap="error", strings=(_("&Quit"),))
|
bitmap="error", strings=(_("&Quit"),))
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
if opts['random-game']:
|
||||||
|
app.commandline.gameid = app.getRandomGameId()
|
||||||
|
|
||||||
# init cardsets
|
# init cardsets
|
||||||
app.initCardsets()
|
app.initCardsets()
|
||||||
cardset = None
|
cardset = None
|
||||||
|
@ -421,7 +429,7 @@ Cardsets package is up to date.
|
||||||
|
|
||||||
progress = app.intro.progress
|
progress = app.intro.progress
|
||||||
# load cardset
|
# load cardset
|
||||||
if startgameid != app.opt.last_gameid:
|
if startgameid != app.opt.last_gameid and app.opt.game_holded == 0:
|
||||||
success = app.requestCompatibleCardsetType(startgameid,
|
success = app.requestCompatibleCardsetType(startgameid,
|
||||||
progress=progress)
|
progress=progress)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue