Allow remote mode to load from client-side story files

(cherry picked from commit a1345263df42fba3345d1eecd119470a223bc4ee)
This commit is contained in:
henk717 2021-11-05 02:30:20 +01:00 committed by Gnome Ann
parent 9513240dfb
commit bc0f9c8032
3 changed files with 34 additions and 11 deletions

View File

@ -645,6 +645,8 @@ def get_message(msg):
savetofile() savetofile()
elif(not vars.remote and msg['cmd'] == 'loadfromfile'): elif(not vars.remote and msg['cmd'] == 'loadfromfile'):
loadfromfile() loadfromfile()
elif(msg['cmd'] == 'loadfromstring'):
loadRequest(json.loads(msg['data']), filename=msg['filename'])
elif(not vars.remote and msg['cmd'] == 'import'): elif(not vars.remote and msg['cmd'] == 'import'):
importRequest() importRequest()
elif(msg['cmd'] == 'newgame'): elif(msg['cmd'] == 'newgame'):
@ -2094,14 +2096,21 @@ def loadfromfile():
#==================================================================# #==================================================================#
# Load a stored story from a file # Load a stored story from a file
#==================================================================# #==================================================================#
def loadRequest(loadpath): def loadRequest(loadpath, filename=None):
if(loadpath): if(loadpath):
# Leave Edit/Memory mode before continuing # Leave Edit/Memory mode before continuing
exitModes() exitModes()
# Read file contents into JSON object # Read file contents into JSON object
file = open(loadpath, "r") if(isinstance(loadpath, str)):
js = json.load(file) with open(loadpath, "r") as file:
js = json.load(file)
if(filename is None):
filename = path.basename(loadpath)
else:
js = loadpath
if(filename is None):
filename = "untitled.json"
# Copy file contents to vars # Copy file contents to vars
vars.gamestarted = js["gamestarted"] vars.gamestarted = js["gamestarted"]
@ -2147,8 +2156,6 @@ def loadRequest(loadpath):
}) })
num += 1 num += 1
file.close()
# Save path for save button # Save path for save button
vars.savedir = loadpath vars.savedir = loadpath
@ -2156,10 +2163,10 @@ def loadRequest(loadpath):
vars.loadselect = "" vars.loadselect = ""
# Refresh game screen # Refresh game screen
filename = path.basename(loadpath) _filename = filename
if(filename.endswith('.json')): if(filename.endswith('.json')):
filename = filename[:-5] _filename = filename[:-5]
vars.laststory = filename vars.laststory = _filename
emit('from_server', {'cmd': 'setstoryname', 'data': vars.laststory}, broadcast=True) emit('from_server', {'cmd': 'setstoryname', 'data': vars.laststory}, broadcast=True)
sendwi() sendwi()
emit('from_server', {'cmd': 'setmemory', 'data': vars.memory}, broadcast=True) emit('from_server', {'cmd': 'setmemory', 'data': vars.memory}, broadcast=True)
@ -2167,7 +2174,7 @@ def loadRequest(loadpath):
refresh_story() refresh_story()
emit('from_server', {'cmd': 'setgamestate', 'data': 'ready'}, broadcast=True) emit('from_server', {'cmd': 'setgamestate', 'data': 'ready'}, broadcast=True)
emit('from_server', {'cmd': 'hidegenseqs', 'data': ''}, broadcast=True) emit('from_server', {'cmd': 'hidegenseqs', 'data': ''}, broadcast=True)
print("{0}Story loaded from {1}!{2}".format(colors.GREEN, path.basename(loadpath), colors.END)) print("{0}Story loaded from {1}!{2}".format(colors.GREEN, filename, colors.END))
#==================================================================# #==================================================================#
# Import an AIDungon game exported with Mimi's tool # Import an AIDungon game exported with Mimi's tool

View File

@ -77,6 +77,7 @@ var saved_prompt = "...";
var override_focusout = false; var override_focusout = false;
var sman_allow_delete = false; var sman_allow_delete = false;
var sman_allow_rename = false; var sman_allow_rename = false;
var remote = false;
// This is true iff [we're in macOS and the browser is Safari] or [we're in iOS] // This is true iff [we're in macOS and the browser is Safari] or [we're in iOS]
var using_webkit_patch = true; var using_webkit_patch = true;
@ -1516,7 +1517,8 @@ $(document).ready(function(){
// Update adventure state // Update adventure state
setadventure(msg.data); setadventure(msg.data);
} else if(msg.cmd == "runs_remotely") { } else if(msg.cmd == "runs_remotely") {
hide([button_loadfrfile, button_savetofile, button_import, button_importwi]); remote = true;
hide([button_savetofile, button_import, button_importwi]);
} }
}); });
@ -1583,7 +1585,20 @@ $(document).ready(function(){
}); });
button_loadfrfile.on("click", function(ev) { button_loadfrfile.on("click", function(ev) {
socket.send({'cmd': 'loadfromfile', 'data': ''}); if(remote) {
$("#remote-save-select").click();
} else {
socket.send({'cmd': 'loadfromfile', 'data': ''});
}
});
$("#remote-save-select").on("change", function() {
var reader = new FileReader();
var file = $("#remote-save-select")[0].files[0];
reader.addEventListener("load", function(response) {
socket.send({'cmd': 'loadfromstring', 'filename': file.name, 'data': response.target.result});
}, false);
reader.readAsText(file);
}); });
button_import.on("click", function(ev) { button_import.on("click", function(ev) {

View File

@ -17,6 +17,7 @@
<link rel="stylesheet" href="static/open-iconic-bootstrap.min.css"> <link rel="stylesheet" href="static/open-iconic-bootstrap.min.css">
</head> </head>
<body> <body>
<input type="file" id="remote-save-select" accept="application/json" style="display:none">
<div class="container"> <div class="container">
<div class="row" id="topmenu"> <div class="row" id="topmenu">
<div id="menuitems"> <div id="menuitems">