mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
58 lines
1.2 KiB
Python
58 lines
1.2 KiB
Python
import logging
|
|
import os
|
|
import pickle
|
|
import shutil
|
|
|
|
_dcs_saved_game_folder = None # type: str
|
|
|
|
|
|
def setup(user_folder: str):
|
|
global _dcs_saved_game_folder
|
|
_dcs_saved_game_folder = user_folder
|
|
|
|
|
|
def base_path() -> str:
|
|
global _dcs_saved_game_folder
|
|
assert _dcs_saved_game_folder
|
|
return _dcs_saved_game_folder
|
|
|
|
|
|
def _save_file() -> str:
|
|
return os.path.join(base_path(), "liberation_save")
|
|
|
|
|
|
def _temporary_save_file() -> str:
|
|
return os.path.join(base_path(), "liberation_save_tmp")
|
|
|
|
|
|
def _save_file_exists() -> bool:
|
|
return os.path.exists(_save_file())
|
|
|
|
|
|
def mission_path_for(name: str) -> str:
|
|
return os.path.join(base_path(), "Missions", "{}".format(name))
|
|
|
|
|
|
def restore_game():
|
|
if not _save_file_exists():
|
|
return None
|
|
|
|
with open(_save_file(), "rb") as f:
|
|
try:
|
|
save = pickle.load(f)
|
|
return save
|
|
except:
|
|
print("Invalid Save game")
|
|
return None
|
|
|
|
|
|
def save_game(game) -> bool:
|
|
try:
|
|
with open(_temporary_save_file(), "wb") as f:
|
|
pickle.dump(game, f)
|
|
shutil.copy(_temporary_save_file(), _save_file())
|
|
return True
|
|
except Exception as e:
|
|
logging.error(e)
|
|
return False
|