mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-15 14:51:13 +00:00
98 lines
3.7 KiB
C++
98 lines
3.7 KiB
C++
/*
|
|
**
|
|
**
|
|
**---------------------------------------------------------------------------
|
|
** Copyright 2005-2016 Randy Heit
|
|
** Copyright 2005-2016 Christoph Oelckers et.al.
|
|
** All rights reserved.
|
|
**
|
|
** Redistribution and use in source and binary forms, with or without
|
|
** modification, are permitted provided that the following conditions
|
|
** are met:
|
|
**
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
** notice, this list of conditions and the following disclaimer.
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
** documentation and/or other materials provided with the distribution.
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
** derived from this software without specific prior written permission.
|
|
**
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
**---------------------------------------------------------------------------
|
|
**
|
|
*/
|
|
|
|
#include "textures/textures.h"
|
|
|
|
template<class TYPE>
|
|
void WarpBuffer(TYPE *Pixels, const TYPE *source, int width, int height, int xmul, int ymul, uint64_t time, float Speed, int warptype)
|
|
{
|
|
int ymask = height - 1;
|
|
int x, y;
|
|
|
|
if (warptype == 1)
|
|
{
|
|
TYPE *buffer = (TYPE *)alloca(sizeof(TYPE) * MAX(width, height));
|
|
// [mxd] Rewrote to fix animation for NPo2 textures
|
|
unsigned timebase = unsigned(time * Speed * 32 / 28);
|
|
for (y = height - 1; y >= 0; y--)
|
|
{
|
|
int xf = (TexMan.sintable[((timebase + y*ymul) >> 2)&TexMan.SINMASK] >> 11) % width;
|
|
if (xf < 0) xf += width;
|
|
int xt = xf;
|
|
const TYPE *sourcep = source + y;
|
|
TYPE *dest = Pixels + y;
|
|
for (xt = width; xt; xt--, xf = (xf + 1) % width, dest += height)
|
|
*dest = sourcep[xf + ymask * xf];
|
|
}
|
|
timebase = unsigned(time * Speed * 23 / 28);
|
|
for (x = width - 1; x >= 0; x--)
|
|
{
|
|
int yf = (TexMan.sintable[((time + (x + 17)*xmul) >> 2)&TexMan.SINMASK] >> 11) % height;
|
|
if (yf < 0) yf += height;
|
|
int yt = yf;
|
|
const TYPE *sourcep = Pixels + (x + ymask * x);
|
|
TYPE *dest = buffer;
|
|
for (yt = height; yt; yt--, yf = (yf + 1) % height)
|
|
*dest++ = sourcep[yf];
|
|
memcpy(Pixels + (x + ymask*x), buffer, height * sizeof(TYPE));
|
|
}
|
|
}
|
|
else if (warptype == 2)
|
|
{
|
|
unsigned timebase = unsigned(time * Speed * 40 / 28);
|
|
// [mxd] Rewrote to fix animation for NPo2 textures
|
|
for (x = 0; x < width; x++)
|
|
{
|
|
TYPE *dest = Pixels + (x + ymask * x);
|
|
for (y = 0; y < height; y++)
|
|
{
|
|
int xt = (x + 128
|
|
+ ((TexMan.sintable[((y*ymul + timebase * 5 + 900) >> 2) & TexMan.SINMASK]) >> 13)
|
|
+ ((TexMan.sintable[((x*xmul + timebase * 4 + 300) >> 2) & TexMan.SINMASK]) >> 13)) % width;
|
|
|
|
int yt = (y + 128
|
|
+ ((TexMan.sintable[((y*ymul + timebase * 3 + 700) >> 2) & TexMan.SINMASK]) >> 13)
|
|
+ ((TexMan.sintable[((x*xmul + timebase * 4 + 1200) >> 2) & TexMan.SINMASK]) >> 13)) % height;
|
|
|
|
*dest++ = source[(xt + ymask * xt) + yt];
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// should never happen, just in case...
|
|
memcpy(Pixels, source, width*height * sizeof(TYPE));
|
|
}
|
|
}
|
|
|