diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2020-09-20 10:43:16 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2020-09-20 10:43:16 +0200 | 
| commit | 93256284a230bda3c8f04e4a9d3ae689a5fe7ff1 (patch) | |
| tree | e7cc9cb3ecd765ffdc58d63d505f62bc2bb12a51 /lib/DBInfoscreen/Controller | |
| parent | c8f5ba2493b6d9bcceab871d41b7ec5692d41058 (diff) | |
show direction of travel if available
Diffstat (limited to 'lib/DBInfoscreen/Controller')
| -rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 49 | 
1 files changed, 49 insertions, 0 deletions
| diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index c79a743..220e630 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -458,6 +458,55 @@ sub render_train {  		)->wait;  	} +	# Same for stationinfo (direction of travel). If it's too late and +	# therefore missing, that's okay. +	$self->wagonorder->get_stationinfo_p( $result->station_uic )->then( +		sub { +			my ($station_info)    = @_; +			my ($platform_number) = ( $result->platform =~ m{(\d+)} ); +			if ( not defined $platform_number ) { +				return; +			} +			my $platform_info = $station_info->{$platform_number}; +			if ( not $platform_info ) { +				return; +			} +			my $prev_stop = ( $result->route_pre )[-1]; +			my $next_stop = ( $result->route_post )[0]; +			my $direction; + +			if ( $platform_info->{kopfgleis} and $next_stop ) { +				$direction = $platform_info->{direction} eq 'r' ? 'l' : 'r'; +			} +			elsif ( $platform_info->{kopfgleis} ) { +				$direction = $platform_info->{direction}; +			} +			elsif ( $prev_stop +				and exists $platform_info->{direction_from}{$prev_stop} ) +			{ +				$direction = $platform_info->{direction_from}{$prev_stop}; +			} +			elsif ( $next_stop +				and exists $platform_info->{direction_from}{$next_stop} ) +			{ +				$direction +				  = $platform_info->{direction_from}{$next_stop} eq 'r' +				  ? 'l' +				  : 'r'; +			} + +			if ($direction) { +				$departure->{direction} = $direction; +			} + +			return; +		}, +		sub { +			# errors don't matter here +			return; +		} +	)->wait; +  	$self->hafas->get_route_timestamps_p( train => $result )->then(  		sub {  			my ( $route_ts, $route_info, $trainsearch ) = @_; | 
