I’ve got dropbox uploading/downloading files I choose through ssh commands already using Dropbox-Uploader. What I’d like to do is tell emulation station to download a specific save for the intended game before emulation happens, and then upload the save when finished.
I come from a unity background so this is all pseudo code for what I’d like to do.
if(rom.name == Pokemon-Yellow)
{
./dropbox_uploader.sh download "Apps/GBSaves/pokemon-yellow.sav" "home/pi/blahblah/saves/Pokemon-Yellow.sav"
StartEmulation();
}
And then the reverse when emulation is finished. Any ideas on where to start or where to put commands? This would make a great feature for retropie I think.