70 lines
1.2 KiB
Bash
Executable file
70 lines
1.2 KiB
Bash
Executable file
AnsageTyp=$1
|
|
GleisNr=$2
|
|
Zuggattung=$3
|
|
ZugNr=$4
|
|
ZielBhf=$5
|
|
ViaBhf=$6
|
|
AbfahrtUhr=$7
|
|
|
|
RED='\033[0;31m'
|
|
NC='\033[0m' # No Color
|
|
|
|
. $(dirname $0)/inc/floskeln.sh
|
|
. $(dirname $0)/inc/bahnhoefe.sh
|
|
. $(dirname $0)/inc/floskeln.sh
|
|
. $(dirname $0)/inc/platform.sh
|
|
. $(dirname $0)/inc/tones.sh
|
|
. $(dirname $0)/inc/zeiten.sh
|
|
. $(dirname $0)/inc/zuege.sh
|
|
|
|
if [ $AnsageTyp = "Einfahrt" ]; then
|
|
Ansage_Start
|
|
read -t 0.5
|
|
MeineDamenundHerrenanGleis
|
|
read -t 0.5
|
|
GleisNr $GleisNr
|
|
read -t 0.5
|
|
ZugEinfahrt
|
|
read -t 0.5
|
|
Zuggattung $Zuggattung
|
|
read -t 0.5
|
|
ZugNr $ZugNr
|
|
read -t 0.5
|
|
Nach
|
|
read -t 0.5
|
|
ZielBhf $ZielBhf
|
|
read -t 0.5
|
|
Ueber
|
|
read -t 0.5
|
|
ViaBhf $ViaBhf
|
|
read -t 0.5
|
|
planm_abfahrt
|
|
read -t 0.5
|
|
uhrzeit $AbfahrtUhr
|
|
read -t 0.5
|
|
vorsicht_bei_der_einfahrt
|
|
|
|
elif [ $AnsageTyp = "Information" ]; then
|
|
Ansage_Start
|
|
InformationZu
|
|
Zuggattung $Zuggattung
|
|
ZugNr $ZugNr
|
|
Nach
|
|
ZielBhf $ZielBhf
|
|
Ankunft_ursp
|
|
uhrzeit $AbfahrtUhr
|
|
Abfahrt_ursp
|
|
uhrzeit $AbfahrtUhr
|
|
Dieser_Zug_wird
|
|
verspaetung_45
|
|
exit
|
|
fi
|
|
#Dieser Zug wird
|
|
#mpv modules/dt/module/0207.wav
|
|
#vorraussichtlich 45 Minuten später eintreffen
|
|
#mpv modules/dt/zeiten/verspaetung_an/045.wav
|
|
#Grund dafür verspätung vorausfahender zug
|
|
#mpv modules/dt/grund_dafuer/035.wav
|
|
#Wir bitten um Entschuldigung
|
|
#mpv modules/dt/module_3_1/042.wav
|
|
|