Basic error correction
- Added basic error correction. - Program now asks before setting up the game for mod-use
This commit is contained in:
parent
532db5bd15
commit
e4569f1c57
@ -36,22 +36,75 @@ def openFileWithStandardApp(path):
|
|||||||
else:
|
else:
|
||||||
subprocess.call(['xdg-open', path])
|
subprocess.call(['xdg-open', path])
|
||||||
|
|
||||||
|
def exceptionCleanup():
|
||||||
|
success = True
|
||||||
|
logtext = ""
|
||||||
|
logtext = logtext + "Attempting cleanup.\n"
|
||||||
|
logtext = logtext + "Making folders visible...\n"
|
||||||
|
try:
|
||||||
|
ctypes.windll.kernel32.SetFileAttributesW(appPath,128)
|
||||||
|
ctypes.windll.kernel32.SetFileAttributesW(originalAppPath,128)
|
||||||
|
except Exception as e:
|
||||||
|
success = False
|
||||||
|
logtext = logtext + str(e) + "\n"
|
||||||
|
|
||||||
|
logtext = logtext + "Unloading mods...\n"
|
||||||
|
try:
|
||||||
|
unloadMods()
|
||||||
|
except Exception as e:
|
||||||
|
success = False
|
||||||
|
logtext = logtext + str(e) + "\n"
|
||||||
|
|
||||||
|
logtext = logtext + "Cleaning up temporary files...\n"
|
||||||
|
try:
|
||||||
|
cleanUp()
|
||||||
|
except Exception as e:
|
||||||
|
success = False
|
||||||
|
logtext = logtext + str(e) + "\n"
|
||||||
|
|
||||||
|
if success == False:
|
||||||
|
logtext = logtext + "\nCleanup not fully successful. Please review the errors, and go to X for a guide on how to reset your game manually. Sorry for the inconvenience, I tried :("
|
||||||
|
|
||||||
|
return logtext
|
||||||
|
|
||||||
|
|
||||||
def exceptionHandler(exc_type, exc_value, tb):
|
def exceptionHandler(exc_type, exc_value, tb):
|
||||||
import traceback
|
import traceback
|
||||||
while True:
|
while True:
|
||||||
clear()
|
clear()
|
||||||
print("An error has occurred:")
|
print("An exception has occurred:")
|
||||||
traceback.print_exception(exc_type, exc_value, tb)
|
traceback.print_exception(exc_type, exc_value, tb)
|
||||||
|
cleanupLog = exceptionCleanup()
|
||||||
|
print("\n" +cleanupLog)
|
||||||
choice = input("\nWould you like to log this exception? (y/n)\n")
|
choice = input("\nWould you like to log this exception? (y/n)\n")
|
||||||
if choice.lower() == "y":
|
if choice.lower() == "y":
|
||||||
|
success = False
|
||||||
|
fileCreated = False
|
||||||
errorFilePath = os.path.join(scriptPath,"error.log")
|
errorFilePath = os.path.join(scriptPath,"error.log")
|
||||||
errorFile = open(errorFilePath,"w")
|
try:
|
||||||
traceback.print_exception(exc_type, exc_value, tb, None, errorFile)
|
errorFile = open(errorFilePath,"w")
|
||||||
errorFile.close()
|
fileCreated = True
|
||||||
openFileWithStandardApp(errorFilePath)
|
|
||||||
sys.exit(-1)
|
try:
|
||||||
elif choice.lower() == "n":
|
traceback.print_exception(exc_type, exc_value, tb, None, errorFile)
|
||||||
sys.exit(-1)
|
errorFile.write("\n" +cleanupLog)
|
||||||
|
success = True
|
||||||
|
except:
|
||||||
|
input("Writing to errorlog-file failed. Press ENTER to continue.")
|
||||||
|
except:
|
||||||
|
input("Creating errorlog-file failed. Press ENTER to continue.")
|
||||||
|
|
||||||
|
if fileCreated: errorFile.close()
|
||||||
|
if success:
|
||||||
|
try:
|
||||||
|
openFileWithStandardApp(errorFilePath)
|
||||||
|
except:
|
||||||
|
input("Opening errorlog-file failed. You can find it at '" +errorFilePath+ "'. Press ENTER to continue.")
|
||||||
|
elif choice.lower() != "n":
|
||||||
|
continue
|
||||||
|
|
||||||
|
sys.exit(-1)
|
||||||
|
|
||||||
sys.excepthook = exceptionHandler
|
sys.excepthook = exceptionHandler
|
||||||
|
|
||||||
#Modloader
|
#Modloader
|
||||||
@ -160,7 +213,15 @@ def cleanUp():
|
|||||||
def checkUp():
|
def checkUp():
|
||||||
if areModsLoaded() == False:
|
if areModsLoaded() == False:
|
||||||
if os.path.isdir(modPath) == False:
|
if os.path.isdir(modPath) == False:
|
||||||
os.makedirs(modPath)
|
while True:
|
||||||
|
clear()
|
||||||
|
print("You selected the following path: '" +appPath+ "'")
|
||||||
|
choice = input("Do you wish to set up that folder for mod-use? (y/n)\n")
|
||||||
|
if choice == "y":
|
||||||
|
os.makedirs(modPath)
|
||||||
|
return
|
||||||
|
|
||||||
|
if choice == "n": sys.exit(-1)
|
||||||
|
|
||||||
def mainMenu():
|
def mainMenu():
|
||||||
clear()
|
clear()
|
||||||
|
Loading…
Reference in New Issue
Block a user