From ba2d4acc18502bf13750d8ab0fea01bafc8f16d2 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 6 Nov 2021 13:26:46 +0100 Subject: [PATCH] - added a sector() method to spritetype. For making game code working with sectors a bit easier to read. --- source/build/include/build.h | 6 ++++++ source/build/include/buildtypes.h | 2 ++ 2 files changed, 8 insertions(+) diff --git a/source/build/include/build.h b/source/build/include/build.h index 6ff689474..c84f28c57 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -153,6 +153,12 @@ extern walltype wall[MAXWALLS]; extern spritetype sprite[MAXSPRITES]; EXTERN int leveltimer; +inline sectortype* spritetype::sector() const +{ + return &::sector[sectnum]; +} + + extern sectortype sectorbackup[MAXSECTORS]; extern walltype wallbackup[MAXWALLS]; diff --git a/source/build/include/buildtypes.h b/source/build/include/buildtypes.h index 7a3b792ad..354c1a63d 100644 --- a/source/build/include/buildtypes.h +++ b/source/build/include/buildtypes.h @@ -362,6 +362,8 @@ struct spritetype { return interpolatedangle(oang, ang, smoothratio, 16); } + + sectortype* sector() const; }; using tspritetype = spritetype;