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

Separate directory for import/export boards, to avoid confusion with saved games.

This commit is contained in:
Joe R 2024-01-20 12:10:11 -05:00
parent dc985d5882
commit ea7fe7c2e8
3 changed files with 4 additions and 2 deletions

View file

@ -132,6 +132,7 @@ class Application:
config=config, config=config,
plugins=os.path.join(config, "plugins"), plugins=os.path.join(config, "plugins"),
savegames=os.path.join(config, "savegames"), savegames=os.path.join(config, "savegames"),
boards=os.path.join(config, "boards"),
maint=os.path.join(config, "maint"), # debug maint=os.path.join(config, "maint"), # debug
) )
for k, v in self.dn.__dict__.items(): for k, v in self.dn.__dict__.items():

View file

@ -179,6 +179,7 @@ def pysol_init(app, args):
for d in ( for d in (
app.dn.config, app.dn.config,
app.dn.savegames, app.dn.savegames,
app.dn.boards,
os.path.join(app.dn.config, "music"), os.path.join(app.dn.config, "music"),
# os.path.join(app.dn.config, "screenshots"), # os.path.join(app.dn.config, "screenshots"),
os.path.join(app.dn.config, "tiles"), os.path.join(app.dn.config, "tiles"),

View file

@ -1457,7 +1457,7 @@ Unsupported game for export.
filename += ".board" filename += ".board"
idir, ifile = os.path.split(os.path.normpath(filename)) idir, ifile = os.path.split(os.path.normpath(filename))
if not idir: if not idir:
idir = self.app.dn.savegames idir = self.app.dn.boards
# print self.game.filename, ifile # print self.game.filename, ifile
d = tkinter_tkfiledialog.SaveAs() d = tkinter_tkfiledialog.SaveAs()
filename = d.show(filetypes=self.FILETYPES, filename = d.show(filetypes=self.FILETYPES,
@ -1490,7 +1490,7 @@ Unsupported game for import.
else: else:
idir, ifile = "", "" idir, ifile = "", ""
if not idir: if not idir:
idir = self.app.dn.savegames idir = self.app.dn.boards
d = tkinter_tkfiledialog.Open() d = tkinter_tkfiledialog.Open()
key = 'PYSOL_DEBUG_IMPORT' key = 'PYSOL_DEBUG_IMPORT'
if key not in os.environ: if key not in os.environ: