2016-03-01 15:47:10 +00:00
|
|
|
/*
|
|
|
|
** canvastexture.cpp
|
|
|
|
** Texture class for camera textures
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2004-2006 Randy Heit
|
|
|
|
** 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 "doomtype.h"
|
|
|
|
#include "files.h"
|
|
|
|
#include "v_palette.h"
|
|
|
|
#include "v_video.h"
|
|
|
|
#include "textures/textures.h"
|
|
|
|
|
|
|
|
FCanvasTexture::FCanvasTexture (const char *name, int width, int height)
|
|
|
|
{
|
|
|
|
Name = name;
|
|
|
|
Width = width;
|
|
|
|
Height = height;
|
|
|
|
LeftOffset = TopOffset = 0;
|
|
|
|
CalcBitSize ();
|
|
|
|
|
|
|
|
bMasked = false;
|
|
|
|
DummySpans[0].TopOffset = 0;
|
|
|
|
DummySpans[0].Length = height;
|
|
|
|
DummySpans[1].TopOffset = 0;
|
|
|
|
DummySpans[1].Length = 0;
|
2018-03-25 18:26:16 +00:00
|
|
|
UseType = ETextureType::Wall;
|
2016-03-01 15:47:10 +00:00
|
|
|
bNeedsUpdate = true;
|
|
|
|
bDidUpdate = false;
|
|
|
|
bHasCanvas = true;
|
|
|
|
bFirstUpdate = true;
|
|
|
|
bPixelsAllocated = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
FCanvasTexture::~FCanvasTexture ()
|
|
|
|
{
|
|
|
|
Unload ();
|
|
|
|
}
|
|
|
|
|
2018-03-18 20:33:44 +00:00
|
|
|
const uint8_t *FCanvasTexture::GetColumn(FRenderStyle style, unsigned int column, const Span **spans_out)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
bNeedsUpdate = true;
|
|
|
|
if (Canvas == NULL)
|
|
|
|
{
|
2018-03-18 20:33:44 +00:00
|
|
|
MakeTexture (style);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
if ((unsigned)column >= (unsigned)Width)
|
|
|
|
{
|
|
|
|
if (WidthMask + 1 == Width)
|
|
|
|
{
|
|
|
|
column &= WidthMask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
column %= Width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (spans_out != NULL)
|
|
|
|
{
|
|
|
|
*spans_out = DummySpans;
|
|
|
|
}
|
|
|
|
return Pixels + column*Height;
|
|
|
|
}
|
|
|
|
|
2018-03-18 20:33:44 +00:00
|
|
|
const uint8_t *FCanvasTexture::GetPixels (FRenderStyle style)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
bNeedsUpdate = true;
|
|
|
|
if (Canvas == NULL)
|
|
|
|
{
|
2018-03-18 20:33:44 +00:00
|
|
|
MakeTexture (style);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
return Pixels;
|
|
|
|
}
|
|
|
|
|
2016-06-13 01:16:48 +00:00
|
|
|
const uint32_t *FCanvasTexture::GetPixelsBgra()
|
|
|
|
{
|
|
|
|
bNeedsUpdate = true;
|
|
|
|
if (CanvasBgra == NULL)
|
|
|
|
{
|
|
|
|
MakeTextureBgra();
|
|
|
|
}
|
|
|
|
return PixelsBgra;
|
|
|
|
}
|
|
|
|
|
2018-03-18 20:33:44 +00:00
|
|
|
void FCanvasTexture::MakeTexture (FRenderStyle) // This ignores the render style because making it work as alpha texture is impractical.
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-05-31 07:36:18 +00:00
|
|
|
Canvas = new DSimpleCanvas (Width, Height, false);
|
2016-03-01 15:47:10 +00:00
|
|
|
Canvas->Lock ();
|
2016-05-30 23:49:39 +00:00
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
if (Width != Height || Width != Canvas->GetPitch())
|
|
|
|
{
|
2017-03-09 18:54:41 +00:00
|
|
|
Pixels = new uint8_t[Width*Height];
|
2016-03-01 15:47:10 +00:00
|
|
|
bPixelsAllocated = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-09 18:54:41 +00:00
|
|
|
Pixels = (uint8_t*)Canvas->GetBuffer();
|
2016-03-01 15:47:10 +00:00
|
|
|
bPixelsAllocated = false;
|
|
|
|
}
|
2016-05-30 23:49:39 +00:00
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
// Draw a special "unrendered" initial texture into the buffer.
|
|
|
|
memset (Pixels, 0, Width*Height/2);
|
|
|
|
memset (Pixels+Width*Height/2, 255, Width*Height/2);
|
|
|
|
}
|
|
|
|
|
2016-06-13 01:16:48 +00:00
|
|
|
void FCanvasTexture::MakeTextureBgra()
|
|
|
|
{
|
|
|
|
CanvasBgra = new DSimpleCanvas(Width, Height, true);
|
|
|
|
CanvasBgra->Lock();
|
|
|
|
|
|
|
|
if (Width != Height || Width != CanvasBgra->GetPitch())
|
|
|
|
{
|
|
|
|
PixelsBgra = new uint32_t[Width*Height];
|
|
|
|
bPixelsAllocatedBgra = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PixelsBgra = (uint32_t*)CanvasBgra->GetBuffer();
|
|
|
|
bPixelsAllocatedBgra = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a special "unrendered" initial texture into the buffer.
|
|
|
|
memset(PixelsBgra, 0, Width*Height / 2 * 4);
|
|
|
|
memset(PixelsBgra + Width*Height / 2, 255, Width*Height / 2 * 4);
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
void FCanvasTexture::Unload ()
|
|
|
|
{
|
|
|
|
if (bPixelsAllocated)
|
|
|
|
{
|
2016-06-13 01:16:48 +00:00
|
|
|
if (Pixels != NULL) delete[] Pixels;
|
2016-03-01 15:47:10 +00:00
|
|
|
bPixelsAllocated = false;
|
|
|
|
Pixels = NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-13 01:16:48 +00:00
|
|
|
if (bPixelsAllocatedBgra)
|
|
|
|
{
|
|
|
|
if (PixelsBgra != NULL) delete[] PixelsBgra;
|
|
|
|
bPixelsAllocatedBgra = false;
|
|
|
|
PixelsBgra = NULL;
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
if (Canvas != NULL)
|
|
|
|
{
|
2017-04-14 08:48:18 +00:00
|
|
|
delete Canvas;
|
2017-05-01 13:20:25 +00:00
|
|
|
Canvas = nullptr;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
2016-06-13 01:16:48 +00:00
|
|
|
|
|
|
|
if (CanvasBgra != NULL)
|
|
|
|
{
|
2017-04-14 08:48:18 +00:00
|
|
|
delete CanvasBgra;
|
2017-05-01 13:20:25 +00:00
|
|
|
CanvasBgra = nullptr;
|
2016-06-13 01:16:48 +00:00
|
|
|
}
|
2016-06-13 19:39:55 +00:00
|
|
|
|
|
|
|
FTexture::Unload();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
2018-03-18 20:33:44 +00:00
|
|
|
bool FCanvasTexture::CheckModified (FRenderStyle)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
if (bDidUpdate)
|
|
|
|
{
|
|
|
|
bDidUpdate = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|