Skip to content

Commit

Permalink
Merge pull request #19 from simulate-digital-rail/side-tracks
Browse files Browse the repository at this point in the history
Avoid problems having side tracks
  • Loading branch information
dfriedenberger authored Jun 20, 2024
2 parents 33f0290 + 4c5a870 commit fc4fedb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion interlocking/model/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,14 @@ def is_only_used_by_train(self, train_id: str):
return len(self.used_by) == 1 and train_id in self.used_by

def is_track_connected(self, track):
return track.base_track_id in {self.head.base_track_id, self.left.base_track_id, self.right.base_track_id}
all_base_ids = []
if self.head is not None:
all_base_ids.append(self.head.base_track_id)
if self.left is not None:
all_base_ids.append(self.left.base_track_id)
if self.right is not None:
all_base_ids.append(self.right.base_track_id)
return track.base_track_id in all_base_ids

def does_point_connect_tracks(self, track_1, track_2):
if not self.is_point:
Expand Down

0 comments on commit fc4fedb

Please sign in to comment.