X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-maps.pk3dir.git;a=blobdiff_plain;f=scripts%2Fshader-audit.sh;h=07a3c2bff9fcd78f1b055aa5e6f7edd55093d5bc;hp=f7c0b95a4af02708cb12bac8a827726395c0f3b1;hb=8ba1a0ad95f90cef2c228fdde8027c4e03ae09a7;hpb=ed872c82e969d670a26545b9caf995758767f97b diff --git a/scripts/shader-audit.sh b/scripts/shader-audit.sh old mode 100644 new mode 100755 index f7c0b95a..07a3c2bf --- a/scripts/shader-audit.sh +++ b/scripts/shader-audit.sh @@ -1,5 +1,19 @@ #!/bin/sh +case "$0" in + */*) + cd "${0%/*}" + ;; +esac + +pid=$$ +status=true +trap 'status=false' USR1 +seterror() +{ + kill -USR1 "$pid" +} + LF=" " @@ -27,7 +41,7 @@ use_texture() if [ "$3" = "shader" ]; then return else - echo "(EE) shader $1 uses non-existing texture $2" + echo "(EE) shader $1 uses non-existing texture $2"; seterror fi fi textures_used="$textures_used$LF$2" @@ -52,7 +66,7 @@ use_texture() esac done if ! $ok; then - echo "(EE) shader $1 is not allowed in this shader file (allowed: $allowed_prefixes, forbidden: $forbidden_prefixes)" + echo "(EE) shader $1 is not allowed in this shader file (allowed: $allowed_prefixes, forbidden: $forbidden_prefixes)"; seterror fi case "$3" in @@ -62,7 +76,7 @@ use_texture() env/*) ;; *) - echo "(EE) texture $2 of shader $1 is out of place, $3 textures must be in env/" + echo "(EE) texture $2 of shader $1 is out of place, $3 textures must be in env/"; seterror ;; esac ;; @@ -70,7 +84,7 @@ use_texture() *) case "$2" in env/*) - echo "(EE) texture $2 of shader $1 is out of place, $3 textures must not be in env/" + echo "(EE) texture $2 of shader $1 is out of place, $3 textures must not be in env/"; seterror ;; *) ;; @@ -80,7 +94,7 @@ use_texture() # verify shader -> texture name case "$1" in - ## RULE: textures/FOOx/BAR-BAZ must use textures/FOO/*/*, recommended textures/FOO/BAR/BAZ + ## RULE: textures/FOOx/BAR-BAZ must use textures/FOOx/*/*, recommended textures/FOOx/BAR/BAZ textures/*x/*-*) pre=${1%%x/*}x suf=${1#*x/} @@ -89,11 +103,11 @@ use_texture() "$pre"/*/*) ;; *) - echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $pre/$suf" + echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $pre/$suf"; seterror ;; esac ;; - ## RULE: textures/FOOx/BAR must use textures/FOO/*/*, recommended textures/FOO/base/BAR + ## RULE: textures/FOOx/BAR must use textures/FOOx/*/*, recommended textures/FOOx/base/BAR textures/*x/*) pre=${1%%x/*}x suf=${1#*x/} @@ -101,7 +115,7 @@ use_texture() "$pre"/*/*) ;; *) - echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $pre/base/$suf" + echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $pre/base/$suf"; seterror ;; esac ;; @@ -113,8 +127,12 @@ use_texture() case "$2" in "$pre"/map_$map[/_]*) ;; + textures/map_*) + # protect one map's textures from the evil of other maps :P + echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $pre/map_$map/*"; seterror + ;; *) - echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $pre/map_$map/*" + # using outside stuff is permitted ;; esac ;; @@ -126,19 +144,19 @@ use_texture() textures/common/*/*) ;; *) - echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1 or textures/common/*/*" + echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1 or textures/common/*/*"; seterror ;; esac ;; - ## RULE: textures/FOO/* must use textures/FOO/*, for FOO in decals, liquids_water, liquids_slime, liquids_lava, warpzone - textures/decals/*|textures/liquids_water/*|textures/liquids_slime/*|textures/liquids_lava/*|textures/warpzone/*) - pre=${1%/*} + ## RULE: textures/FOO/* must use textures/FOO/*, for FOO in decals, liquids_water, liquids_slime, liquids_lava + textures/decals/*|textures/liquids_*/*|textures/effects_*/*|textures/screens/*|textures/logos/*) + pre=`echo "$1" | cut -d / -f 1-2` case "$2" in "$pre"/*) # I _suppose_ this is fine, as tZork committed this pack ;; *) - echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1" + echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1"; seterror ;; esac ;; @@ -147,14 +165,14 @@ use_texture() sky=${1#textures/skies/} sky=${sky%%_*} case "$2" in - "$1") + textures/skies/$sky|textures/skies/$sky[_]*) # typical place for preview image ;; env/$sky[/_]*) # typical place for skybox ;; *) - echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1" + echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1"; seterror ;; esac ;; @@ -164,12 +182,12 @@ use_texture() models/*) ;; *) - echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1 or models/*" + echo "(EE) texture $2 of shader $1 is out of place, recommended file name is $1 or models/*"; seterror ;; esac ;; *) - echo "(EE) no shader name pattern for $1" + echo "(EE) no shader name pattern for $1"; seterror ;; esac } @@ -177,8 +195,8 @@ use_texture() parsing_shader= parse_shaderstage() { - while read L A1 A2 Aother; do - case "$L" in + while read L A1 Aother; do + case "`echo "$L" | tr A-Z a-z`" in map) case "$A1" in '$lightmap') @@ -189,7 +207,7 @@ parse_shaderstage() esac ;; animmap) - for X in $A2 $Aother; do + for X in $Aother; do use_texture "$parsing_shader" "`normalize "$X"`" animmap done ;; @@ -205,13 +223,18 @@ parse_shaderstage() parse_shader() { use_texture "$parsing_shader" "$parsing_shader" shader - while read L A1; do - case "$L" in - qer_editorimage\ *) - use_texture "$parsing_shader" "$A1" editorimage + while read L A1 Aother; do + case "`echo "$L" | tr A-Z a-z`" in + qer_editorimage) + use_texture "$parsing_shader" "`normalize "$A1"`" editorimage ;; - skyparms\ *) - use_texture "$parsing_shader" "$A1" sky + skyparms) + use_texture "$parsing_shader" "${A1}_lf" sky + use_texture "$parsing_shader" "${A1}_rt" sky + use_texture "$parsing_shader" "${A1}_up" sky + use_texture "$parsing_shader" "${A1}_dn" sky + use_texture "$parsing_shader" "${A1}_ft" sky + use_texture "$parsing_shader" "${A1}_bk" sky ;; '{') parse_shaderstage @@ -230,7 +253,7 @@ parse_shaderfile() case "$1" in ## RULE: map_FOO.shader may define tetxures/map_FOO_* and textures/map_FOO/* map_*) - allowed_prefixes="textures/map_`echo "$1" | cut -d _ -f 2`_ textures/map_`echo "$1" | cut -d - -f 2`/" + allowed_prefixes="textures/map_`echo "$1" | cut -d _ -f 2`_ textures/map_`echo "$1" | cut -d _ -f 2`/" forbidden_prefixes= ;; ## RULE: skies_FOO.shader may define tetxures/skies/FOO and textures/skies/FOO_* @@ -271,14 +294,14 @@ strip_comments() sed 's,//.*,,g; s,\r, ,g; s,\t, ,g; s, *, ,g; s, $,,; s,^ ,,; /^$/ d' } -t=`mktemp` +t=`mktemp || echo ".temp"` for X in *.shader; do strip_comments < "$X" > "$t" parse_shaderfile "${X%.shader}" < "$t" done rm -f "$t" -textures_avail=`( cd ..; find textures/ -type f -not -name '*_norm.*' -not -name '*_glow.*' -not -name '*_gloss.*' -not -name '*.xcf' ) | while IFS= read -r T; do normalize "$T"; done | sort -u` +textures_avail=`( cd ..; find textures/ -type f -not -name '*_norm.*' -not -name '*_glow.*' -not -name '*_gloss.*' -not -name '*_reflect.*' -not -name '*.xcf' ) | while IFS= read -r T; do normalize "$T"; done | sort -u` textures_used=`echo "${textures_used#$LF}" | sort -u` echo "$textures_used$LF$textures_used$LF$textures_avail" | sort | uniq -u | while IFS= read -r L; do @@ -288,7 +311,9 @@ echo "$textures_used$LF$textures_used$LF$textures_avail" | sort | uniq -u | whil textures/map_*/*) ;; *) - echo "(EE) texture $L is not referenced by any shader" + echo "(EE) texture $L is not referenced by any shader"; seterror ;; esac done + +$status