summaryrefslogtreecommitdiffstats
path: root/src/modelinfo/ModelIndices.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-20 19:55:05 +0200
committerGitHub <noreply@github.com>2020-05-20 19:55:05 +0200
commit71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3 (patch)
treebcdf3151eaab37430d9aeac886a55acbe7f65ccd /src/modelinfo/ModelIndices.h
parentMerge remote-tracking branch 'origin/master' into miami (diff)
parentFixes for melees and various things (diff)
downloadre3-71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3.tar
re3-71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3.tar.gz
re3-71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3.tar.bz2
re3-71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3.tar.lz
re3-71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3.tar.xz
re3-71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3.tar.zst
re3-71b9b2ecf97bdd7d6813a11ca2df2dafba89f4b3.zip
Diffstat (limited to 'src/modelinfo/ModelIndices.h')
-rw-r--r--src/modelinfo/ModelIndices.h33
1 files changed, 31 insertions, 2 deletions
diff --git a/src/modelinfo/ModelIndices.h b/src/modelinfo/ModelIndices.h
index 1d70be3d..b8c6964a 100644
--- a/src/modelinfo/ModelIndices.h
+++ b/src/modelinfo/ModelIndices.h
@@ -358,9 +358,38 @@ IsGlass(int16 id)
}
inline bool
-IsStreetLight(int16 id)
+IsTrafficLight(int16 id)
{
- return id == MI_SINGLESTREETLIGHTS1 ||
+ return id == MI_TRAFFICLIGHTS ||
+ id == MI_TRAFFICLIGHTS_VERTICAL ||
+ id == MI_TRAFFICLIGHTS_MIAMI ||
+ id == MI_TRAFFICLIGHTS_TWOVERTICAL;
+}
+
+inline bool
+IsLightWithoutShift(int16 id)
+{
+ return id == MI_TRAFFICLIGHTS ||
+ id == MI_SINGLESTREETLIGHTS1 ||
+ id == MI_SINGLESTREETLIGHTS2 ||
+ id == MI_SINGLESTREETLIGHTS3 ||
+ id == MI_DOUBLESTREETLIGHTS;
+}
+
+inline bool
+IsLightWithPreRenderEffects(int16 id)
+{
+ return IsTrafficLight(id) ||
+ id == MI_SINGLESTREETLIGHTS1 ||
+ id == MI_SINGLESTREETLIGHTS2 ||
+ id == MI_SINGLESTREETLIGHTS3 ||
+ id == MI_DOUBLESTREETLIGHTS;
+}
+
+inline bool
+IsLightThatNeedsRepositioning(int16 id)
+{
+ return id == MI_SINGLESTREETLIGHTS1 ||
id == MI_SINGLESTREETLIGHTS2 ||
id == MI_SINGLESTREETLIGHTS3 ||
id == MI_TRAFFICLIGHTS_MIAMI ||