From 1f5f7c63fe6bb3878357dd30b45f062277837580 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 28 Jan 2020 12:42:17 +0100 Subject: [PATCH] - rewrite of tileCopySection --- source/CMakeLists.txt | 1 - source/build/include/build.h | 1 - source/build/src/tiles.cpp | 54 --------------------------- source/common/textures/buildtiles.cpp | 46 +++++++++++++++++++++++ source/common/textures/textures.h | 1 + 5 files changed, 47 insertions(+), 56 deletions(-) delete mode 100644 source/build/src/tiles.cpp diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index c799685e8..07c078ce2 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -724,7 +724,6 @@ set (PCH_SOURCES build/src/pragmas.cpp build/src/scriptfile.cpp build/src/sdlayer.cpp - build/src/tiles.cpp build/src/timer.cpp build/src/voxmodel.cpp diff --git a/source/build/include/build.h b/source/build/include/build.h index 0cd932d5f..9bb875be1 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -842,7 +842,6 @@ int32_t qloadkvx(int32_t voxindex, const char *filename); void vox_undefine(int32_t const); void vox_deinit(); -void tileCopySection(int32_t tilenume1, int32_t sx1, int32_t sy1, int32_t xsiz, int32_t ysiz, int32_t tilenume2, int32_t sx2, int32_t sy2); void squarerotatetile(int16_t tilenume); int32_t videoSetGameMode(char davidoption, int32_t daupscaledxdim, int32_t daupscaledydim, int32_t dabpp, int32_t daupscalefactor); diff --git a/source/build/src/tiles.cpp b/source/build/src/tiles.cpp deleted file mode 100644 index 4af93859d..000000000 --- a/source/build/src/tiles.cpp +++ /dev/null @@ -1,54 +0,0 @@ -// "Build Engine & Tools" Copyright (c) 1993-1997 Ken Silverman -// Ken Silverman's official web site: "http://www.advsys.net/ken" -// See the included license file "BUILDLIC.TXT" for license info. -// -// This file has been modified from Ken Silverman's original release -// by Jonathon Fowler (jf@jonof.id.au) -// by the EDuke32 team (development@voidpoint.com) - -#include "compat.h" -#include "build.h" -#include "baselayer.h" -#include "engine_priv.h" - - -// -// copytilepiece -// -void tileCopySection(int32_t tilenume1, int32_t sx1, int32_t sy1, int32_t xsiz, int32_t ysiz, - int32_t tilenume2, int32_t sx2, int32_t sy2) -{ - int32_t xsiz1, ysiz1, xsiz2, ysiz2, i, j, x1, y1, x2, y2; - - xsiz1 = tilesiz[tilenume1].x; ysiz1 = tilesiz[tilenume1].y; - xsiz2 = tilesiz[tilenume2].x; ysiz2 = tilesiz[tilenume2].y; - if ((xsiz1 > 0) && (ysiz1 > 0) && (xsiz2 > 0) && (ysiz2 > 0)) - { - tileLoad(tilenume1); - if (tileData(tilenume2) == 0) return; // Error: Destination is not writable. - - x1 = sx1; - for (i=0; i= 0) && (y2 >= 0) && (x2 < xsiz2) && (y2 < ysiz2)) - { - auto ptr1 = tilePtr(tilenume1) + x1 * ysiz1 + y1; - auto ptr2 = tileData(tilenume2) + x2 * ysiz2 + y2; - auto dat = *ptr1; - if (dat != 255) - *ptr2 = *ptr1; - } - - y1++; if (y1 >= ysiz1) y1 = 0; - } - x1++; if (x1 >= xsiz1) x1 = 0; - } - } - tileInvalidate(tilenume2, -1, -1); -} - diff --git a/source/common/textures/buildtiles.cpp b/source/common/textures/buildtiles.cpp index 4621d0e79..37af4da9b 100644 --- a/source/common/textures/buildtiles.cpp +++ b/source/common/textures/buildtiles.cpp @@ -826,6 +826,52 @@ int tileDeleteReplacement(int picnum, int palnum) } +//========================================================================== +// +// Copy a block of a tile. +// Only used by RR's bowling lane. +// +//========================================================================== + +void tileCopySection(int tilenum1, int sx1, int sy1, int xsiz, int ysiz, int tilenum2, int sx2, int sy2) +{ + int xsiz1 = tilesiz[tilenum1].x; + int ysiz1 = tilesiz[tilenum1].y; + int xsiz2 = tilesiz[tilenum2].x; + int ysiz2 = tilesiz[tilenum2].y; + if (xsiz1 > 0 && ysiz1 > 0 && xsiz2 > 0 && ysiz2 > 0) + { + auto p1 = tilePtr(tilenum1); + auto p2 = tileData(tilenum2); + if (p2 == nullptr) return; // Error: Destination is not writable. + + int x1 = sx1; + int x2 = sx2; + for (int i=0; i= 0 && y2 >= 0 && x2 < xsiz2 && y2 < ysiz2) + { + auto src = p1[x1 * ysiz1 + y1]; + if (src != 255) + p2[x2 * ysiz2 + y2] = src; + } + + y1++; + y2++; + if (y1 >= ysiz1) y1 = 0; + } + x1++; + x2++; + if (x1 >= xsiz1) x1 = 0; + } + } + TileFiles.InvalidateTile(tilenum2); +} + TileSiz tilesiz; diff --git a/source/common/textures/textures.h b/source/common/textures/textures.h index 5bd9e877f..5db5d3a76 100644 --- a/source/common/textures/textures.h +++ b/source/common/textures/textures.h @@ -566,6 +566,7 @@ void tileSetAnim(int tile, const picanm_t& anm); int tileSetHightileReplacement(int picnum, int palnum, const char *filen, float alphacut, float xscale, float yscale, float specpower, float specfactor, uint8_t flags); int tileSetSkybox(int picnum, int palnum, const char **facenames, int flags ); int tileDeleteReplacement(int picnum, int palnum); +void tileCopySection(int tilenum1, int sx1, int sy1, int xsiz, int ysiz, int tilenum2, int sx2, int sy2); extern BuildTiles TileFiles; inline bool tileCheck(int num)