ketho-wow / MuteAnnoying

Mutes Annoying Sounds
https://www.curseforge.com/wow/addons/muteannoying
MIT License
2 stars 2 forks source link

some missings found #5

Closed bloerwald closed 5 years ago

bloerwald commented 5 years ago

found some missing files by just ignoring everything but file stem.

grep -vE '(avi|blp|m2|wdt|adt|txt|bls|anim|bone|skin|xml|lua|phys|db2|html|htm|unk|toc|amsfolder|unk|skel|wmo|tex|png|wdl|meta|tga|wlw|sbt|mdx|wwe|pd4|wlm|pm4|zmp|blob|col|sig|dbc|h2o|wtf|dylib|ttf|dat|lst|what|wfx)$' listfile.csv > listfile 
tr '[:upper:]' '[:lower:]' < missing.lua | sed -e s,.*/,, -e 's,.ogg$,,' > miss
cat miss | while read f; do grep --color=always "$f" listfile; done | tee found
sort -u found  > found.txt

found.txt

the following files appear to be false findings:

Sound/Creature/ArcaneGolemBroken/ArcaneGolemBroken.ogg:

544061;sound/creature/arcanegolembroken/arcanegolemsmall_wound02.ogg
544060;sound/creature/arcanegolembroken/arcanegolemsmall_wound01.ogg
544059;sound/creature/arcanegolembroken/arcanegolemsmall_aggro.ogg
544058;sound/creature/arcanegolembroken/arcanegolemsmall_wound03.ogg
544057;sound/creature/arcanegolembroken/arcanegolemsmall_attack01.ogg
544056;sound/creature/arcanegolembroken/arcanegolemsmall_attack04.ogg
544055;sound/creature/arcanegolembroken/arcanegolemsmall_woundcrit.ogg
544054;sound/creature/arcanegolembroken/arcanegolemsmall_death.ogg
544053;sound/creature/arcanegolembroken/arcanegolemsmall_attack03.ogg
544052;sound/creature/arcanegolembroken/arcanegolemsmall_preaggro.ogg
544051;sound/creature/arcanegolembroken/arcanegolemsmall_attack02.ogg

Sound/Spells/FireCast.ogg

569741;sound/spells/spell_uni_firecast_04.ogg
569392;sound/spells/spell_uni_firecast_03.ogg
569248;sound/spells/spell_uni_firecast_02.ogg
568967;sound/spells/spell_uni_firecast_06.ogg
568906;sound/spells/spell_uni_firecast_05.ogg
568585;sound/spells/spell_uni_firecast_01.ogg
568200;sound/spells/wandfirecast3.ogg
568066;sound/spells/wandfirecast1.ogg
567951;sound/spells/wandfirecast2.ogg

Sound/Spells/shadowcast.ogg

1391110;sound/creature/twilight_shadowcaster/vo_703_twilight_shadowcaster_01.ogg

the remainder look close enough to be the actual files.

Ketho commented 5 years ago

Wow thanks, I will add those missing files and fix those false findings

Ketho commented 5 years ago

Welp this going to take a while, need to rewrite some stuff and just match the file stem like you suggested