From 47b9de1fb4f6dc32aaf0d2b6e6e9d802ccbbad2d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 4 Jan 2022 17:12:15 +0100 Subject: [PATCH] - RR: interpolate moving furniture. --- source/games/duke/src/sectors_r.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/source/games/duke/src/sectors_r.cpp b/source/games/duke/src/sectors_r.cpp index 8055a6899..b53215d04 100644 --- a/source/games/duke/src/sectors_r.cpp +++ b/source/games/duke/src/sectors_r.cpp @@ -2844,6 +2844,25 @@ void dofurniture(walltype* wlwal, sectortype* sectp, int snum) ins = inside(min_x, max_y, sectp); if (!ins) var_C = 0; + + for (auto& wal : wallsofsector(nextsect)) + { + x = wal.pos.X; + y = wal.pos.Y; + switch (wlwal->lotag) + { + case 42: + case 41: + case 40: + case 43: + vertexscan(&wal, [=](walltype* w) + { + StartInterpolation(w, wlwal->lotag == 41 || wlwal->lotag == 42 ? Interp_Wall_X : Interp_Wall_Y); + }); + break; + } + } + if (var_C) { if (S_CheckActorSoundPlaying(ps[snum].GetActor(), 389) == 0)