1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
use std::collections::{BTreeSet, HashSet};
use anyhow::Result;
use instant::Instant;
use rand::SeedableRng;
use rand_xorshift::XorShiftRng;
use serde::{Deserialize, Serialize};
use structopt::StructOpt;
use abstio::{CityName, MapName};
use abstutil::{prettyprint_usize, serialized_size_bytes, Timer};
use geom::{Distance, Duration, Speed, Time};
use map_model::{
BuildingID, IntersectionID, LaneID, Map, ParkingLotID, Path, PathConstraints, PathRequest,
Position, TransitRoute, Traversable,
};
pub use self::queries::{AgentProperties, DelayCause};
use crate::{
AgentID, AlertLocation, Analytics, CarID, Command, CreateCar, DrivingSimState, Event,
IntersectionSimState, OrigPersonID, PandemicModel, ParkedCar, ParkingSim, ParkingSimState,
ParkingSpot, Person, PersonID, Router, Scheduler, SidewalkPOI, SidewalkSpot, StartTripArgs,
TrafficRecorder, TransitSimState, TripID, TripInfo, TripManager, TripPhaseType, Vehicle,
VehicleSpec, VehicleType, WalkingSimState, BUS_LENGTH, LIGHT_RAIL_LENGTH, MIN_CAR_LENGTH,
};
mod queries;
const BLIND_RETRY_TO_SPAWN: Duration = Duration::const_seconds(5.0);
#[derive(Serialize, Deserialize, Clone)]
pub struct Sim {
driving: DrivingSimState,
parking: ParkingSimState,
walking: WalkingSimState,
intersections: IntersectionSimState,
transit: TransitSimState,
trips: TripManager,
#[serde(skip_serializing, skip_deserializing)]
pandemic: Option<PandemicModel>,
scheduler: Scheduler,
time: Time,
pub(crate) map_name: MapName,
pub(crate) edits_name: String,
run_name: String,
step_count: usize,
highlighted_people: Option<BTreeSet<PersonID>>,
analytics: Analytics,
#[serde(skip_serializing, skip_deserializing)]
recorder: Option<TrafficRecorder>,
#[serde(skip_serializing, skip_deserializing)]
alerts: AlertHandler,
}
pub(crate) struct Ctx<'a> {
pub parking: &'a mut ParkingSimState,
pub intersections: &'a mut IntersectionSimState,
pub scheduler: &'a mut Scheduler,
pub map: &'a Map,
pub handling_live_edits: Option<BTreeSet<AgentID>>,
}
#[derive(Clone, StructOpt)]
pub struct SimOptions {
#[structopt(long, default_value = "unnamed")]
pub run_name: String,
#[structopt(long)]
pub use_freeform_policy_everywhere: bool,
#[structopt(long)]
pub allow_block_the_box: bool,
#[structopt(long)]
pub dont_recalc_lanechanging: bool,
#[structopt(long)]
pub dont_break_turn_conflict_cycles: bool,
#[structopt(long)]
pub dont_handle_uber_turns: bool,
#[structopt(long, parse(try_from_str = parse_rng))]
pub enable_pandemic_model: Option<XorShiftRng>,
#[structopt(long, parse(try_from_str = parse_alert_handler), default_value = "print")]
pub alerts: AlertHandler,
#[structopt(long)]
pub infinite_parking: bool,
#[structopt(long)]
pub disable_turn_conflicts: bool,
#[structopt(long)]
pub skip_analytics: bool,
}
impl SimOptions {
pub fn new(run_name: &str) -> SimOptions {
SimOptions {
run_name: run_name.to_string(),
use_freeform_policy_everywhere: false,
allow_block_the_box: false,
dont_recalc_lanechanging: false,
dont_break_turn_conflict_cycles: false,
dont_handle_uber_turns: false,
enable_pandemic_model: None,
alerts: AlertHandler::Print,
infinite_parking: false,
disable_turn_conflicts: false,
skip_analytics: false,
}
}
}
impl Default for SimOptions {
fn default() -> SimOptions {
SimOptions::new("tmp")
}
}
fn parse_rng(x: &str) -> Result<XorShiftRng> {
let seed: u64 = x.parse()?;
Ok(XorShiftRng::seed_from_u64(seed))
}
#[derive(Clone)]
pub enum AlertHandler {
Print,
Block,
Silence,
}
impl Default for AlertHandler {
fn default() -> AlertHandler {
AlertHandler::Print
}
}
fn parse_alert_handler(x: &str) -> Result<AlertHandler> {
match x {
"print" => Ok(AlertHandler::Print),
"block" => Ok(AlertHandler::Block),
"silence" => Ok(AlertHandler::Silence),
_ => bail!("Bad --alerts={}. Must be print|block|silence", x),
}
}
impl Sim {
pub fn new(map: &Map, mut opts: SimOptions) -> Sim {
let mut timer = Timer::new("create blank sim");
let mut scheduler = Scheduler::new();
if map.get_name() == &MapName::seattle("arboretum")
|| map.get_name().city == CityName::new("ir", "tehran")
|| map.get_name() == &MapName::new("gb", "poundbury", "center")
|| map.get_name() == &MapName::new("us", "phoenix", "tempe")
{
opts.infinite_parking = true;
}
if map.get_name() == &MapName::new("ir", "tehran", "parliament") {
opts.allow_block_the_box = true;
}
Sim {
driving: DrivingSimState::new(map, &opts),
parking: ParkingSimState::new(map, opts.infinite_parking, &mut timer),
walking: WalkingSimState::new(),
intersections: IntersectionSimState::new(map, &mut scheduler, &opts),
transit: TransitSimState::new(map),
trips: TripManager::new(),
pandemic: opts.enable_pandemic_model.map(PandemicModel::new),
scheduler,
time: Time::START_OF_DAY,
map_name: map.get_name().clone(),
edits_name: map.get_edits().edits_name.clone(),
run_name: opts.run_name,
step_count: 0,
highlighted_people: None,
alerts: opts.alerts,
analytics: Analytics::new(!opts.skip_analytics),
recorder: None,
}
}
pub(crate) fn spawn_trips(
&mut self,
input: Vec<(PersonID, TripInfo, StartTripArgs)>,
map: &Map,
timer: &mut Timer,
) {
timer.start_iter("spawn trips", input.len());
for (p, info, args) in input {
timer.next();
let trip = self.trips.new_trip(p, info.clone());
if let Some(msg) = info.cancellation_reason {
self.trips.cancel_unstarted_trip(trip, msg);
} else {
self.scheduler
.push(info.departure, Command::StartTrip(trip, args));
}
}
if let Some(ref mut m) = self.pandemic {
m.initialize(self.trips.get_all_people(), &mut self.scheduler);
}
self.dispatch_events(Vec::new(), map);
}
pub fn get_free_onstreet_spots(&self, l: LaneID) -> Vec<ParkingSpot> {
self.parking.get_free_onstreet_spots(l)
}
pub fn get_free_offstreet_spots(&self, b: BuildingID) -> Vec<ParkingSpot> {
self.parking.get_free_offstreet_spots(b)
}
pub fn get_free_lot_spots(&self, pl: ParkingLotID) -> Vec<ParkingSpot> {
self.parking.get_free_lot_spots(pl)
}
pub fn get_all_parking_spots(&self) -> (Vec<ParkingSpot>, Vec<ParkingSpot>) {
self.parking.get_all_parking_spots()
}
pub fn bldg_to_parked_cars(&self, b: BuildingID) -> Vec<CarID> {
self.parking.bldg_to_parked_cars(b)
}
pub fn walking_path_to_nearest_parking_spot(&self, map: &Map, b: BuildingID) -> Option<Path> {
let vehicle = Vehicle {
id: CarID {
id: 0,
vehicle_type: VehicleType::Car,
},
owner: None,
vehicle_type: VehicleType::Car,
length: MIN_CAR_LENGTH,
max_speed: None,
};
let driving_lane = map.find_driving_lane_near_building(b);
let spot = if let Some((spot, _)) = self
.parking
.get_all_free_spots(Position::start(driving_lane), &vehicle, b, map)
.get(0)
{
*spot
} else {
let (_, spot, _) =
self.parking
.path_to_free_parking_spot(driving_lane, &vehicle, b, map)?;
spot
};
let start = SidewalkSpot::building(b, map).sidewalk_pos;
let end = SidewalkSpot::parking_spot(spot, map, &self.parking).sidewalk_pos;
map.pathfind(PathRequest::walking(start, end)).ok()
}
pub(crate) fn new_person(
&mut self,
orig_id: Option<OrigPersonID>,
ped_speed: Speed,
vehicle_specs: Vec<VehicleSpec>,
) -> &Person {
self.trips.new_person(orig_id, ped_speed, vehicle_specs)
}
pub(crate) fn seed_parked_car(&mut self, vehicle: Vehicle, spot: ParkingSpot) {
self.parking.reserve_spot(spot, vehicle.id);
self.parking.add_parked_car(ParkedCar {
vehicle,
spot,
parked_since: self.time,
});
}
pub(crate) fn seed_bus_route(&mut self, route: &TransitRoute) {
for t in &route.spawn_times {
self.scheduler.push(*t, Command::StartBus(route.id, *t));
}
}
fn start_bus(&mut self, route: &TransitRoute, map: &Map) {
let path = self.transit.create_empty_route(route, map);
let (vehicle_type, length) = match route.route_type {
PathConstraints::Bus => (VehicleType::Bus, BUS_LENGTH),
PathConstraints::Train => (VehicleType::Train, LIGHT_RAIL_LENGTH),
_ => unreachable!(),
};
let vehicle = VehicleSpec {
vehicle_type,
length,
max_speed: None,
}
.make(
CarID {
id: self.trips.new_car_id(),
vehicle_type,
},
None,
);
self.scheduler.push(
self.time,
Command::SpawnCar(
CreateCar {
router: Router::follow_bus_route(vehicle.id, path),
vehicle,
maybe_parked_car: None,
trip_and_person: None,
maybe_route: Some(route.id),
},
true,
),
);
}
pub fn set_run_name(&mut self, name: String) {
self.run_name = name;
}
pub fn get_run_name(&self) -> &String {
&self.run_name
}
}
impl Sim {
fn minimal_step(
&mut self,
map: &Map,
max_dt: Duration,
maybe_cb: &mut Option<Box<dyn SimCallback>>,
) -> bool {
self.step_count += 1;
let max_time = if let Some(t) = self.scheduler.peek_next_time() {
if t > self.time + max_dt {
self.time += max_dt;
return false;
}
t
} else {
self.time += max_dt;
return false;
};
let mut halt = false;
while let Some(time) = self.scheduler.peek_next_time() {
if time > max_time {
return false;
}
if let Some(cmd) = self.scheduler.get_next() {
if self.do_step(map, time, cmd, maybe_cb) {
halt = true;
break;
}
}
}
halt
}
fn do_step(
&mut self,
map: &Map,
time: Time,
cmd: Command,
maybe_cb: &mut Option<Box<dyn SimCallback>>,
) -> bool {
self.time = time;
let mut events = Vec::new();
let mut halt = false;
let mut ctx = Ctx {
parking: &mut self.parking,
intersections: &mut self.intersections,
scheduler: &mut self.scheduler,
map,
handling_live_edits: None,
};
match cmd {
Command::StartTrip(id, args) => {
self.trips.start_trip(self.time, id, args, &mut ctx);
}
Command::SpawnCar(create_car, retry_if_no_room) => {
let constraints = create_car.vehicle.vehicle_type.to_constraints();
let mut ok = true;
for step in create_car.router.get_path().get_steps() {
match step.as_traversable() {
Traversable::Lane(l) => {
if !constraints.can_use(ctx.map.get_l(l), ctx.map) {
ok = false;
break;
}
}
Traversable::Turn(t) => {
if ctx.map.maybe_get_t(t).is_none() {
ok = false;
break;
}
}
}
}
if !ok {
self.trips.cancel_trip(
self.time,
create_car.trip_and_person.unwrap().0,
"path is no longer valid after map edits".to_string(),
Some(create_car.vehicle),
&mut ctx,
);
} else {
let id = create_car.vehicle.id;
let maybe_route = create_car.maybe_route;
let trip_and_person = create_car.trip_and_person;
let maybe_parked_car = create_car.maybe_parked_car.clone();
let req = create_car.router.get_path().get_req().clone();
if let Some(create_car) = self
.driving
.start_car_on_lane(self.time, create_car, &mut ctx)
{
if retry_if_no_room {
if let Some((trip, _)) = trip_and_person {
self.trips.agent_starting_trip_leg(AgentID::Car(id), trip);
}
self.driving.vehicle_waiting_to_spawn(
id,
req.start,
trip_and_person.map(|(_, p)| p),
);
self.scheduler.push(
self.time + BLIND_RETRY_TO_SPAWN,
Command::SpawnCar(create_car, retry_if_no_room),
);
} else if let Some((trip, person)) = create_car.trip_and_person {
self.trips.cancel_trip(
self.time,
trip,
format!(
"no room to spawn car for {} by {}, not retrying",
trip, person
),
Some(create_car.vehicle),
&mut ctx,
);
}
} else {
if let Some((trip, person)) = trip_and_person {
self.trips.agent_starting_trip_leg(AgentID::Car(id), trip);
events.push(Event::TripPhaseStarting(
trip,
person,
Some(req),
if id.vehicle_type == VehicleType::Car {
TripPhaseType::Driving
} else {
TripPhaseType::Biking
},
));
}
if let Some(parked_car) = maybe_parked_car {
if let ParkingSpot::Offstreet(b, _) = parked_car.spot {
events.push(Event::PersonLeavesBuilding(
trip_and_person.unwrap().1,
b,
));
}
self.parking.remove_parked_car(parked_car);
}
if let Some(route) = maybe_route {
self.transit.bus_created(id, route);
}
self.analytics
.record_demand(self.driving.get_path(id).unwrap(), map);
}
}
}
Command::SpawnPed(create_ped) => {
self.trips
.agent_starting_trip_leg(AgentID::Pedestrian(create_ped.id), create_ped.trip);
events.push(Event::TripPhaseStarting(
create_ped.trip,
create_ped.person,
Some(create_ped.path.get_req().clone()),
TripPhaseType::Walking,
));
self.analytics.record_demand(&create_ped.path, map);
match (&create_ped.start.connection, &create_ped.goal.connection) {
(
SidewalkPOI::Building(b1),
SidewalkPOI::ParkingSpot(ParkingSpot::Offstreet(b2, idx)),
) if b1 == b2 => {
self.trips.ped_reached_parking_spot(
self.time,
create_ped.id,
ParkingSpot::Offstreet(*b2, *idx),
Duration::ZERO,
Distance::ZERO,
&mut ctx,
);
}
_ => {
if let SidewalkPOI::Building(b) = &create_ped.start.connection {
events.push(Event::PersonLeavesBuilding(create_ped.person, *b));
}
self.walking
.spawn_ped(self.time, create_ped, map, &mut self.scheduler);
}
}
}
Command::UpdateCar(car) => {
self.driving.update_car(
car,
self.time,
&mut ctx,
&mut self.trips,
&mut self.transit,
&mut self.walking,
);
}
Command::UpdateLaggyHead(car) => {
self.driving.update_laggy_head(car, self.time, &mut ctx);
}
Command::UpdatePed(ped) => {
self.walking.update_ped(
ped,
self.time,
&mut ctx,
&mut self.trips,
&mut self.transit,
);
}
Command::UpdateIntersection(i) => {
self.intersections
.update_intersection(self.time, i, map, &mut self.scheduler);
}
Command::Callback(frequency) => {
self.scheduler
.push(self.time + frequency, Command::Callback(frequency));
if maybe_cb.as_mut().unwrap().run(self, map) {
halt = true;
}
}
Command::Pandemic(cmd) => {
self.pandemic
.as_mut()
.unwrap()
.handle_cmd(self.time, cmd, &mut self.scheduler);
}
Command::StartBus(r, _) => {
self.start_bus(map.get_tr(r), map);
}
}
self.dispatch_events(events, map);
halt
}
fn dispatch_events(&mut self, mut events: Vec<Event>, map: &Map) {
events.extend(self.trips.collect_events());
events.extend(self.transit.collect_events());
events.extend(self.driving.collect_events());
events.extend(self.walking.collect_events());
events.extend(self.intersections.collect_events());
events.extend(self.parking.collect_events());
for ev in events {
if let Some(ref mut m) = self.pandemic {
m.handle_event(self.time, &ev, &mut self.scheduler);
}
if let Some(ref mut r) = self.recorder {
r.handle_event(self.time, &ev, map, &self.driving);
}
self.analytics.event(ev, self.time, map);
}
}
pub fn timed_step(
&mut self,
map: &Map,
dt: Duration,
maybe_cb: &mut Option<Box<dyn SimCallback>>,
timer: &mut Timer,
) {
let end_time = self.time + dt;
let start = Instant::now();
let mut last_update = Instant::now();
timer.start(format!("Advance sim to {}", end_time));
while self.time < end_time {
if self.minimal_step(map, end_time - self.time, maybe_cb) {
break;
}
if !self.analytics.alerts.is_empty() {
match self.alerts {
AlertHandler::Print => {
for (t, loc, msg) in self.analytics.alerts.drain(..) {
println!("Alert at {} ({:?}): {}", t, loc, msg);
}
}
AlertHandler::Block => {
for (t, loc, msg) in &self.analytics.alerts {
println!("Alert at {} ({:?}): {}", t, loc, msg);
}
break;
}
AlertHandler::Silence => {
self.analytics.alerts.clear();
}
}
}
if Duration::realtime_elapsed(last_update) >= Duration::seconds(1.0) {
println!(
"- After {}, the sim is at {}. {} live agents",
Duration::realtime_elapsed(start),
self.time,
prettyprint_usize(self.num_active_agents()),
);
last_update = Instant::now();
}
}
timer.stop(format!("Advance sim to {}", end_time));
}
pub fn tiny_step(&mut self, map: &Map, maybe_cb: &mut Option<Box<dyn SimCallback>>) {
self.timed_step(
map,
Duration::seconds(0.1),
maybe_cb,
&mut Timer::throwaway(),
);
}
pub fn time_limited_step(
&mut self,
map: &Map,
dt: Duration,
real_time_limit: Duration,
maybe_cb: &mut Option<Box<dyn SimCallback>>,
) {
let started_at = Instant::now();
let end_time = self.time + dt;
while self.time < end_time && Duration::realtime_elapsed(started_at) < real_time_limit {
if self.minimal_step(map, end_time - self.time, maybe_cb) {
break;
}
if !self.analytics.alerts.is_empty() {
match self.alerts {
AlertHandler::Print => {
for (t, loc, msg) in self.analytics.alerts.drain(..) {
println!("Alert at {} ({:?}): {}", t, loc, msg);
}
}
AlertHandler::Block => {
for (t, loc, msg) in &self.analytics.alerts {
println!("Alert at {} ({:?}): {}", t, loc, msg);
}
break;
}
AlertHandler::Silence => {
self.analytics.alerts.clear();
}
}
}
}
}
pub fn dump_before_abort(&self) {
println!("At {}", self.time);
if let Some(path) = self.find_previous_savestate(self.time) {
println!("Debug from {}", path);
}
}
}
impl Sim {
pub fn save_dir(&self) -> String {
abstio::path_all_saves(&self.map_name, &self.edits_name, &self.run_name)
}
fn save_path(&self, base_time: Time) -> String {
abstio::path_save(
&self.map_name,
&self.edits_name,
&self.run_name,
base_time.as_filename(),
)
}
pub fn save(&mut self) -> String {
if false {
println!("sim savestate breakdown:");
println!(
"- driving: {} bytes",
prettyprint_usize(serialized_size_bytes(&self.driving))
);
println!(
"- parking: {} bytes",
prettyprint_usize(serialized_size_bytes(&self.parking))
);
println!(
"- walking: {} bytes",
prettyprint_usize(serialized_size_bytes(&self.walking))
);
println!(
"- intersections: {} bytes",
prettyprint_usize(serialized_size_bytes(&self.intersections))
);
println!(
"- transit: {} bytes",
prettyprint_usize(serialized_size_bytes(&self.transit))
);
println!(
"- trips: {} bytes",
prettyprint_usize(serialized_size_bytes(&self.trips))
);
println!(
"- scheduler: {} bytes",
prettyprint_usize(serialized_size_bytes(&self.scheduler))
);
}
let path = self.save_path(self.time);
abstio::write_binary(path.clone(), self);
path
}
pub fn find_previous_savestate(&self, base_time: Time) -> Option<String> {
abstio::find_prev_file(self.save_path(base_time))
}
pub fn find_next_savestate(&self, base_time: Time) -> Option<String> {
abstio::find_next_file(self.save_path(base_time))
}
pub fn load_savestate(path: String, timer: &mut Timer) -> Result<Sim> {
abstio::maybe_read_binary(path, timer)
}
}
impl Sim {
pub fn handle_live_edited_traffic_signals(&mut self, map: &Map) {
self.intersections
.handle_live_edited_traffic_signals(self.time, map, &mut self.scheduler)
}
pub fn handle_live_edits(&mut self, map: &Map, timer: &mut Timer) -> (usize, usize) {
self.edits_name = map.get_edits().edits_name.clone();
let (affected, num_parked_cars) = self.find_trips_affected_by_live_edits(map, timer);
let num_trips_cancelled = affected.len();
let affected_agents: BTreeSet<AgentID> = affected.iter().map(|(a, _)| *a).collect();
let mut ctx = Ctx {
parking: &mut self.parking,
intersections: &mut self.intersections,
scheduler: &mut self.scheduler,
map,
handling_live_edits: Some(affected_agents),
};
for (agent, trip) in affected {
match agent {
AgentID::Car(car) => {
let vehicle = self.driving.delete_car(car, self.time, &mut ctx);
self.trips.cancel_trip(
self.time,
trip,
"map edited without reset".to_string(),
Some(vehicle),
&mut ctx,
);
self.trips.trip_abruptly_cancelled(trip, AgentID::Car(car));
}
AgentID::Pedestrian(ped) => {
self.walking.delete_ped(ped, &mut ctx);
self.trips.cancel_trip(
self.time,
trip,
"map edited without reset".to_string(),
None,
&mut ctx,
);
self.trips
.trip_abruptly_cancelled(trip, AgentID::Pedestrian(ped));
}
AgentID::BusPassenger(_, _) => unreachable!(),
}
}
self.driving.handle_live_edits(map);
self.intersections.handle_live_edits(map);
(num_trips_cancelled, num_parked_cars)
}
fn find_trips_affected_by_live_edits(
&mut self,
map: &Map,
timer: &mut Timer,
) -> (BTreeSet<(AgentID, TripID)>, usize) {
let mut affected: BTreeSet<(AgentID, TripID)> = BTreeSet::new();
{
let (edited_lanes, _) = map.get_edits().changed_lanes(map);
let mut closed_intersections = HashSet::new();
for i in map.get_edits().original_intersections.keys() {
if map.get_i(*i).is_closed() {
closed_intersections.insert(*i);
}
}
for (a, trip) in self.trips.active_agents_and_trips() {
if let Some(path) = self.get_path(*a) {
if path
.get_steps()
.iter()
.any(|step| match step.as_traversable() {
Traversable::Lane(l) => edited_lanes.contains(&l),
Traversable::Turn(t) => {
closed_intersections.contains(&t.parent)
|| edited_lanes.contains(&t.src)
|| edited_lanes.contains(&t.dst)
}
})
{
affected.insert((*a, *trip));
}
}
}
affected.extend(
self.driving
.find_vehicles_affected_by_live_edits(&closed_intersections, &edited_lanes),
);
}
let num_evicted = {
let (evicted_cars, cars_parking_in_the_void) =
self.parking.handle_live_edits(map, timer);
let num_evicted = evicted_cars.len();
affected.extend(self.walking.find_trips_to_parking(evicted_cars));
for car in cars_parking_in_the_void {
let a = AgentID::Car(car);
affected.insert((a, self.agent_to_trip(a).unwrap()));
}
if !self.parking.is_infinite() {
let (filled, avail) = self.parking.get_all_parking_spots();
let mut all_spots: BTreeSet<ParkingSpot> = BTreeSet::new();
all_spots.extend(filled);
all_spots.extend(avail);
affected.extend(self.driving.find_trips_to_edited_parking(all_spots));
}
num_evicted
};
(affected, num_evicted)
}
}
impl Sim {
pub fn delete_car(&mut self, id: CarID, map: &Map) {
if let Some(trip) = self.agent_to_trip(AgentID::Car(id)) {
let mut ctx = Ctx {
parking: &mut self.parking,
intersections: &mut self.intersections,
scheduler: &mut self.scheduler,
map,
handling_live_edits: None,
};
let vehicle = self.driving.delete_car(id, self.time, &mut ctx);
self.trips.cancel_trip(
self.time,
trip,
format!("{} deleted manually through the UI", id),
Some(vehicle),
&mut ctx,
);
} else {
println!("{} has no trip?!", id);
}
}
pub fn clear_alerts(&mut self) -> Vec<(Time, AlertLocation, String)> {
std::mem::take(&mut self.analytics.alerts)
}
}
pub trait SimCallback: downcast_rs::Downcast {
fn run(&mut self, sim: &Sim, map: &Map) -> bool;
}
downcast_rs::impl_downcast!(SimCallback);
impl Sim {
pub fn set_periodic_callback(&mut self, frequency: Duration) {
self.scheduler
.push(self.time + frequency, Command::Callback(frequency));
}
pub fn unset_periodic_callback(&mut self) {
self.scheduler
.cancel(Command::Callback(Duration::seconds(1.0)));
}
}
impl Sim {
pub fn record_traffic_for(&mut self, intersections: BTreeSet<IntersectionID>) {
assert!(self.recorder.is_none());
self.recorder = Some(TrafficRecorder::new(intersections));
}
pub fn num_recorded_trips(&self) -> Option<usize> {
Some(self.recorder.as_ref()?.num_recorded_trips())
}
pub fn save_recorded_traffic(&mut self, map: &Map) {
self.recorder.take().unwrap().save(map);
}
}
impl Sim {
pub fn set_highlighted_people(&mut self, people: BTreeSet<PersonID>) {
self.highlighted_people = Some(people);
}
}