mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-15 00:41:32 +00:00
8b1757eee2
Mainly this means that it's no longer necessary to reorder the palette to get working translated glyphs, so the FFontChar1 class and the TranslatedPic member and its invasive handling could all be cleaned out. All font operations now take place on true color data, with the sole execption of FSpecialFont's 'notranslate' handling.
181 lines
4.7 KiB
C++
181 lines
4.7 KiB
C++
/*
|
|
** fontchars.cpp
|
|
** Texture class for font characters
|
|
**
|
|
**---------------------------------------------------------------------------
|
|
** Copyright 2004-2006 Randy Heit
|
|
** Copyright 2006-2018 Christoph Oelckers
|
|
** 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 "filesystem.h"
|
|
#include "bitmap.h"
|
|
#include "image.h"
|
|
#include "imagehelpers.h"
|
|
#include "fontchars.h"
|
|
#include "engineerrors.h"
|
|
|
|
//==========================================================================
|
|
//
|
|
// FFontChar2 :: FFontChar2
|
|
//
|
|
// Used by FON1 and FON2 fonts.
|
|
//
|
|
//==========================================================================
|
|
|
|
FFontChar2::FFontChar2(int sourcelump, int sourcepos, int width, int height, int leftofs, int topofs)
|
|
: SourceLump(sourcelump), SourcePos(sourcepos)
|
|
{
|
|
Width = width;
|
|
Height = height;
|
|
LeftOffset = leftofs;
|
|
TopOffset = topofs;
|
|
}
|
|
|
|
//==========================================================================
|
|
//
|
|
// FFontChar2 :: Get8BitPixels
|
|
//
|
|
// Like for FontChar1, the render style has no relevance here as well.
|
|
//
|
|
//==========================================================================
|
|
|
|
TArray<uint8_t> FFontChar2::CreatePalettedPixels(int)
|
|
{
|
|
auto lump = fileSystem.OpenFileReader(SourceLump);
|
|
int destSize = Width * Height;
|
|
uint8_t max = 255;
|
|
bool rle = true;
|
|
|
|
// This is to "fix" bad fonts
|
|
{
|
|
uint8_t buff[16];
|
|
lump.Read(buff, 4);
|
|
if (buff[3] == '2')
|
|
{
|
|
lump.Read(buff, 7);
|
|
max = buff[6];
|
|
lump.Seek(SourcePos - 11, FileReader::SeekCur);
|
|
}
|
|
else if (buff[3] == 0x1A)
|
|
{
|
|
lump.Read(buff, 13);
|
|
max = buff[12] - 1;
|
|
lump.Seek(SourcePos - 17, FileReader::SeekCur);
|
|
rle = false;
|
|
}
|
|
else
|
|
{
|
|
lump.Seek(SourcePos - 4, FileReader::SeekCur);
|
|
}
|
|
}
|
|
|
|
TArray<uint8_t> Pixels(destSize, true);
|
|
|
|
int runlen = 0, setlen = 0;
|
|
uint8_t setval = 0; // Shut up, GCC!
|
|
uint8_t* dest_p = Pixels.Data();
|
|
int dest_adv = Height;
|
|
int dest_rew = destSize - 1;
|
|
|
|
if (rle)
|
|
{
|
|
for (int y = Height; y != 0; --y)
|
|
{
|
|
for (int x = Width; x != 0; )
|
|
{
|
|
if (runlen != 0)
|
|
{
|
|
uint8_t color = lump.ReadUInt8();
|
|
color = MIN(color, max);
|
|
*dest_p = color;
|
|
dest_p += dest_adv;
|
|
x--;
|
|
runlen--;
|
|
}
|
|
else if (setlen != 0)
|
|
{
|
|
*dest_p = setval;
|
|
dest_p += dest_adv;
|
|
x--;
|
|
setlen--;
|
|
}
|
|
else
|
|
{
|
|
int8_t code = lump.ReadInt8();
|
|
if (code >= 0)
|
|
{
|
|
runlen = code + 1;
|
|
}
|
|
else if (code != -128)
|
|
{
|
|
uint8_t color = lump.ReadUInt8();
|
|
setlen = (-code) + 1;
|
|
setval = MIN(color, max);
|
|
}
|
|
}
|
|
}
|
|
dest_p -= dest_rew;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (int y = Height; y != 0; --y)
|
|
{
|
|
for (int x = Width; x != 0; --x)
|
|
{
|
|
uint8_t color = lump.ReadUInt8();
|
|
if (color > max)
|
|
{
|
|
color = max;
|
|
}
|
|
*dest_p = color;
|
|
dest_p += dest_adv;
|
|
}
|
|
dest_p -= dest_rew;
|
|
}
|
|
}
|
|
|
|
if (destSize < 0)
|
|
{
|
|
char name[9];
|
|
fileSystem.GetFileShortName(name, SourceLump);
|
|
name[8] = 0;
|
|
I_FatalError("The font %s is corrupt", name);
|
|
}
|
|
return Pixels;
|
|
}
|
|
|
|
int FFontChar2::CopyPixels(FBitmap* bmp, int conversion)
|
|
{
|
|
if (conversion == luminance) conversion = normal; // luminance images have no use as an RGB source.
|
|
auto ppix = CreatePalettedPixels(conversion);
|
|
bmp->CopyPixelData(0, 0, ppix.Data(), Width, Height, Height, 1, 0, SourceRemap, nullptr);
|
|
return 0;
|
|
}
|