Skip to content
Snippets Groups Projects
Commit ad0f7d39 authored by ThibautDemare's avatar ThibautDemare
Browse files

Add reflex to automatically save state of simulations (protection against breakdown on server)

parent e44be93c
Branches
No related merge requests found
......@@ -53,6 +53,14 @@ global {
i <- i + 1;
}
}
action backupSim {
if(cycle mod 100 = 0 ){
write "================ START SAVE SIMULATION - " + cycle;
write "Save of simulation : " + save_simulation("backup_simu_"+cycle+".gsim");
write "================ END SAVE SIMULATION - " + cycle;
}
}
}
experiment 'Docker' type: gui {
......@@ -63,6 +71,12 @@ experiment 'Docker' type: gui {
parameter "savedSteps" var: savedSteps <- [];
parameter "saveAgents" var: saveAgents <- false;
parameter "savedAgents" var: savedAgents <- [];
reflex reflexBackup {
ask world {
do backupSim;
}
}
}
experiment 'Docker from previous simulation' type: gui {
......@@ -78,6 +92,12 @@ experiment 'Docker from previous simulation' type: gui {
action _init_ {
create simulation from: saved_simulation_file(pathPreviousSim);
}
reflex reflexBackup {
ask world {
do backupSim;
}
}
}
experiment 'Docker with traffic screenshots' type: gui {
......@@ -89,6 +109,12 @@ experiment 'Docker with traffic screenshots' type: gui {
parameter "saveAgents" var: saveAgents <- false;
parameter "savedAgents" var: savedAgents <- [];
reflex reflexBackup {
ask world {
do backupSim;
}
}
output {
// The size of these two displays is due to the size of the calc I apply on the snapshots when I generate a video
display 'Road traffic' autosave:{1061,988} refresh:every(1) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment