50 lines
1.5 KiB
Bash
Executable File
50 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
#nb: must be bash to support shopt globstar
|
|
shopt -s globstar
|
|
|
|
st=0
|
|
|
|
if grep -El '^\".+\" = \(.+\)' _maps/**/*.dmm; then
|
|
echo "Non-TGM formatted map detected. Please convert it using Map Merger!"
|
|
st=1
|
|
fi;
|
|
if grep -P '^\ttag = \"icon' _maps/**/*.dmm; then
|
|
echo "tag vars from icon state generation detected in maps, please remove them."
|
|
st=1
|
|
fi;
|
|
if grep 'step_[xy]' _maps/**/*.dmm; then
|
|
echo "step_x/step_y variables detected in maps, please remove them."
|
|
st=1
|
|
fi;
|
|
if grep 'pixel_[xy] = 0' _maps/**/*.dmm; then
|
|
echo "pixel_x/pixel_y = 0 variables detected in maps, please review to ensure they are not dirty varedits."
|
|
fi;
|
|
if grep -P '\td[1-2] =' _maps/**/*.dmm; then
|
|
echo "d1/d2 cable variables detected in maps, please remove them."
|
|
st=1
|
|
fi;
|
|
if grep '^/area/.+[\{]' _maps/**/*.dmm; then
|
|
echo "Vareditted /area path use detected in maps, please replace with proper paths."
|
|
st=1
|
|
fi;
|
|
if grep '\W\/turf\s*[,\){]' _maps/**/*.dmm; then
|
|
echo "base /turf path use detected in maps, please replace with proper paths."
|
|
st=1
|
|
fi;
|
|
if grep '^/*var/' code/**/*.dm; then
|
|
echo "Unmanaged global var use detected in code, please use the helpers."
|
|
st=1
|
|
fi;
|
|
if grep -i 'centcomm' code/**/*.dm; then
|
|
echo "Misspelling(s) of CENTCOM detected in code, please remove the extra M(s)."
|
|
st=1
|
|
fi;
|
|
if grep -i 'centcomm' _maps/**/*.dmm; then
|
|
echo "Misspelling(s) of CENTCOM detected in maps, please remove the extra M(s)."
|
|
st=1
|
|
fi;
|
|
|
|
exit $st
|