Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid problems having side tracks #19

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading