Found one more string that wasn't being read.
This commit is contained in:
parent
fce04adc54
commit
b6a2e722ee
@ -112,6 +112,7 @@ grepStrings+=('-e' ' died.'
|
|||||||
'-e' 'Lesser demon energy'
|
'-e' 'Lesser demon energy'
|
||||||
'-e' '^Found '
|
'-e' '^Found '
|
||||||
'-e' 'Got the '
|
'-e' 'Got the '
|
||||||
|
'-e' ' killed (her|him|it)self(\.|!)'
|
||||||
'-e' 'Picked up '
|
'-e' 'Picked up '
|
||||||
'-e' '^(Mega|Soul)sphere$'
|
'-e' '^(Mega|Soul)sphere$'
|
||||||
'-e' '^Took '
|
'-e' '^Took '
|
||||||
|
@ -29,6 +29,7 @@ grepStrings+=('-e' '^\*\*\* Brutality Bonus awarded!'
|
|||||||
'-e' 'Lesser demon energy'
|
'-e' 'Lesser demon energy'
|
||||||
'-e' '^Found '
|
'-e' '^Found '
|
||||||
'-e' 'Got the '
|
'-e' 'Got the '
|
||||||
|
'-e' ' killed (her|him|it)self(\.|!)'
|
||||||
'-e' 'Picked up '
|
'-e' 'Picked up '
|
||||||
'-e' '^(Mega|Soul)sphere$'
|
'-e' '^(Mega|Soul)sphere$'
|
||||||
'-e' ' skeleton key secured!$'
|
'-e' ' skeleton key secured!$'
|
||||||
|
@ -5,11 +5,11 @@ pushd "${doomPath}"
|
|||||||
|
|
||||||
# Set up the pk3 and wad files
|
# Set up the pk3 and wad files
|
||||||
gameOption=(
|
gameOption=(
|
||||||
"$(find /usr/share/games/ -name 'Project_Brutality-master.pk3')"
|
|
||||||
"${doomPath}/TobyAccMod_V${tobyVersion}.pk3"
|
"${doomPath}/TobyAccMod_V${tobyVersion}.pk3"
|
||||||
"${doomPath}/PB-Toby-Compatibility-Addon.pk3"
|
"${doomPath}/PB-Toby-Compatibility-Addon.pk3"
|
||||||
"${doomPath}/Toby-Universal-Pickup-Beacon-Prototype.pk3"
|
"${doomPath}/Toby-Universal-Pickup-Beacon-Prototype.pk3"
|
||||||
"${doomPath}/TobyDoomLevels.wad"
|
"${doomPath}/TobyDoomLevels.wad"
|
||||||
|
"$(find /usr/share/games/ -name 'Project_Brutality-master.pk3')"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Check for and include if present a wad. Some people may not have it.
|
# Check for and include if present a wad. Some people may not have it.
|
||||||
@ -20,8 +20,7 @@ elif [[ -e "${doomPath}/DoomMetalVol6.wad" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Extend the search for new messages to be read.
|
# Extend the search for new messages to be read.
|
||||||
grepStrings+=('-e' 'New PDA Entry:'
|
grepStrings+=('-e' '^\*\*\* Brutality Bonus awarded!'
|
||||||
'-e' '^\*\*\* Brutality Bonus awarded!'
|
|
||||||
'-e' ' died.'
|
'-e' ' died.'
|
||||||
'-e' 'Ectoplasmic Surge!'
|
'-e' 'Ectoplasmic Surge!'
|
||||||
'-e' '^Game Saved.'
|
'-e' '^Game Saved.'
|
||||||
@ -30,15 +29,21 @@ grepStrings+=('-e' 'New PDA Entry:'
|
|||||||
'-e' 'Lesser demon energy'
|
'-e' 'Lesser demon energy'
|
||||||
'-e' '^Found '
|
'-e' '^Found '
|
||||||
'-e' 'Got the '
|
'-e' 'Got the '
|
||||||
|
'-e' ' killed (her|him|it)self(\.|!)'
|
||||||
'-e' 'Picked up '
|
'-e' 'Picked up '
|
||||||
'-e' '^(Mega|Soul)sphere$'
|
'-e' '^(Mega|Soul)sphere$'
|
||||||
|
'-e' ' skeleton key secured!$'
|
||||||
|
'-e' ' (SPLATTERED|was) .*(\.|!)'
|
||||||
'-e' '^Took '
|
'-e' '^Took '
|
||||||
'-e' ' was .*(\.|!)'
|
|
||||||
'-e' '^Vanguard of the gods!$'
|
'-e' '^Vanguard of the gods!$'
|
||||||
'-e' "You've found "
|
'-e' "You've found "
|
||||||
'-e' 'You (collected|got|found|picked up) ')
|
'-e' 'You (collected|got|found|picked up) ')
|
||||||
|
|
||||||
antiGrepStrings+=('-e' 'key card')
|
antiGrepStrings+=('-e' 'key card'
|
||||||
|
'-e' ' was .*\?'
|
||||||
|
)
|
||||||
|
|
||||||
|
sedStrings+=('-e' 's/*\{3\}//g')
|
||||||
|
|
||||||
# Launch the game and pipe things to be spoken through speech-dispatcher.
|
# Launch the game and pipe things to be spoken through speech-dispatcher.
|
||||||
# This also leaves the console output intact for people who may want to read it.
|
# This also leaves the console output intact for people who may want to read it.
|
||||||
|
Loading…
Reference in New Issue
Block a user