2016-03-21 04:10:14 +00:00
|
|
|
#include "Texture.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
namespace New3D {
|
|
|
|
|
|
|
|
Texture::Texture()
|
|
|
|
{
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
Texture::~Texture()
|
|
|
|
{
|
|
|
|
DeleteTexture(); // make sure to have valid context before destroying
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::DeleteTexture()
|
|
|
|
{
|
|
|
|
if (m_textureID) {
|
|
|
|
glDeleteTextures(1, &m_textureID);
|
|
|
|
printf("-----> deleting %i %i %i %i %i\n", m_format, m_x, m_y, m_width, m_height);
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::Reset()
|
|
|
|
{
|
|
|
|
m_x = 0;
|
|
|
|
m_y = 0;
|
|
|
|
m_width = 0;
|
|
|
|
m_height = 0;
|
|
|
|
m_format = 0;
|
|
|
|
m_textureID = 0;
|
|
|
|
m_mirrorU = false;
|
|
|
|
m_mirrorV = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::BindTexture()
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_textureID);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::GetCoordinates(UINT16 uIn, UINT16 vIn, float uvScale, float& uOut, float& vOut)
|
|
|
|
{
|
2016-03-26 22:44:26 +00:00
|
|
|
uOut = (uIn*uvScale) / m_width;
|
|
|
|
vOut = (vIn*uvScale) / m_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::GetCoordinates(int width, int height, UINT16 uIn, UINT16 vIn, float uvScale, float& uOut, float& vOut)
|
|
|
|
{
|
|
|
|
uOut = (uIn*uvScale) / width;
|
|
|
|
vOut = (vIn*uvScale) / height;
|
2016-03-21 04:10:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::SetWrapMode(bool mirrorU, bool mirrorV)
|
|
|
|
{
|
|
|
|
if (mirrorU != m_mirrorU) {
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, mirrorU ? GL_MIRRORED_REPEAT : GL_REPEAT);
|
|
|
|
m_mirrorU = mirrorU;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mirrorV != m_mirrorV) {
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, mirrorV ? GL_MIRRORED_REPEAT : GL_REPEAT);
|
|
|
|
m_mirrorV = mirrorV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
void Texture::UploadTextureMip(int level, const UINT16* src, UINT8* scratch, int format, int x, int y, int width, int height)
|
2016-03-21 04:10:14 +00:00
|
|
|
{
|
|
|
|
int xi, yi, i;
|
|
|
|
GLubyte texel;
|
|
|
|
GLubyte c, a;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
switch (format)
|
|
|
|
{
|
2016-05-21 15:50:54 +00:00
|
|
|
default: // Debug texture
|
2016-03-21 04:10:14 +00:00
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
scratch[i++] = 255; // R
|
|
|
|
scratch[i++] = 0; // G
|
|
|
|
scratch[i++] = 0; // B
|
|
|
|
scratch[i++] = 255; // A
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0: // T1RGB5 <- correct
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
2016-11-28 17:32:25 +00:00
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] >> 10) & 0x1F) * 255 / 0x1F; // R
|
2017-03-24 13:38:20 +00:00
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] >> 5) & 0x1F) * 255 / 0x1F; // G
|
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] >> 0) & 0x1F) * 255 / 0x1F; // B
|
2016-11-28 17:32:25 +00:00
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] & 0x8000) ? 0 : 255); // T
|
2016-03-21 04:10:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // Interleaved A4L4 (low byte)
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
// Interpret as A4L4
|
|
|
|
texel = src[yi * 2048 + xi] & 0xFF;
|
|
|
|
c = (texel & 0xF) * 17;
|
|
|
|
a = (texel >> 4) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // luminance alpha texture <- this one is correct
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] & 0xFF;
|
|
|
|
c = ((texel >> 4) & 0xF) * 17;
|
|
|
|
a = (texel & 0xF) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-04-04 10:21:34 +00:00
|
|
|
case 3: // 8-bit, A4L4 (high byte)
|
2016-03-21 04:10:14 +00:00
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] >> 8;
|
|
|
|
c = (texel & 0xF) * 17;
|
|
|
|
a = (texel >> 4) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-04-04 10:21:34 +00:00
|
|
|
case 4: // 8-bit, L4A4 (high byte)
|
2016-03-21 04:10:14 +00:00
|
|
|
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
2016-04-04 10:21:34 +00:00
|
|
|
texel = src[yi * 2048 + xi] >> 8;
|
|
|
|
c = ((texel >> 4) & 0xF) * 17;
|
2016-03-21 04:10:14 +00:00
|
|
|
a = (texel & 0xF) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5: // 8-bit grayscale
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] & 0xFF;
|
|
|
|
scratch[i++] = texel;
|
|
|
|
scratch[i++] = texel;
|
|
|
|
scratch[i++] = texel;
|
2017-03-24 13:38:20 +00:00
|
|
|
scratch[i++] = (texel == 255 ? 0 : 255);
|
2016-03-21 04:10:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: // 8-bit grayscale <-- this one is correct
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] >> 8;
|
|
|
|
scratch[i++] = texel;
|
|
|
|
scratch[i++] = texel;
|
|
|
|
scratch[i++] = texel;
|
2016-03-27 08:39:40 +00:00
|
|
|
scratch[i++] = (texel == 255 ? 0 : 255);
|
2016-03-21 04:10:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7: // RGBA4
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] >> 12) & 0xF) * 17;// R
|
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] >> 8) & 0xF) * 17; // G
|
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] >> 4) & 0xF) * 17; // B
|
|
|
|
scratch[i++] = ((src[yi * 2048 + xi] >> 0) & 0xF) * 17; // A
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2016-05-21 15:50:54 +00:00
|
|
|
|
|
|
|
//
|
2016-05-21 16:26:00 +00:00
|
|
|
// 4 bit texture types - all luminance textures (no alpha), only seem to be enabled when contour is enabled ( white = contour value )
|
2016-05-21 15:50:54 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
case 8: // low byte, low nibble
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] & 0xFF;
|
|
|
|
c = (texel & 0xF) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = (c == 255 ? 0 : 255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 9: // low byte, high nibble
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] & 0xFF;
|
|
|
|
c = ((texel >> 4) & 0xF) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = (c == 255 ? 0 : 255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 10: // high byte, low nibble
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] >> 8;
|
|
|
|
c = (texel & 0xF) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = (c == 255 ? 0 : 255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 11: // high byte, high nibble
|
|
|
|
|
|
|
|
for (yi = y; yi < (y + height); yi++)
|
|
|
|
{
|
|
|
|
for (xi = x; xi < (x + width); xi++)
|
|
|
|
{
|
|
|
|
texel = src[yi * 2048 + xi] >> 8;
|
|
|
|
c = ((texel >> 4) & 0xF) * 17;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = c;
|
|
|
|
scratch[i++] = (c == 255 ? 0 : 255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2016-03-21 04:10:14 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
glTexImage2D(GL_TEXTURE_2D, level, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, scratch);
|
|
|
|
}
|
2016-03-21 04:10:14 +00:00
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
UINT32 Texture::UploadTexture(const UINT16* src, UINT8* scratch, int format, bool mirrorU, bool mirrorV, int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
const int mipXBase[] = { 0, 1024, 1536, 1792, 1920, 1984, 2016, 2032, 2040, 2044, 2046, 2047 };
|
|
|
|
const int mipYBase[] = { 0, 512, 768, 896, 960, 992, 1008, 1016, 1020, 1022, 1023 };
|
|
|
|
const int mipDivisor[] = { 1, 2, 4, 8, 16, 32, 64, 128, 256, 512 };
|
2016-03-21 04:10:14 +00:00
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
if (!src || !scratch) {
|
|
|
|
return 0; // sanity checking
|
2016-03-21 04:10:14 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
DeleteTexture(); // free any existing texture
|
|
|
|
CreateTextureObject(format, mirrorU, mirrorV, x, y, width, height);
|
2016-03-21 04:10:14 +00:00
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
int page = y / 1024;
|
2016-03-21 04:10:14 +00:00
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
y -= (page * 1024); // remove page from tex y
|
|
|
|
|
|
|
|
for (int i = 0; i < 6; i++) {
|
2016-03-21 04:10:14 +00:00
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
int xPos = mipXBase[i] + (x / mipDivisor[i]);
|
|
|
|
int yPos = mipYBase[i] + (y / mipDivisor[i]);
|
2016-03-21 04:10:14 +00:00
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
UploadTextureMip(i, src, scratch, format, xPos, yPos + (page * 1024), width, height);
|
|
|
|
|
|
|
|
width /= 2;
|
|
|
|
height /= 2;
|
|
|
|
}
|
2016-03-21 04:10:14 +00:00
|
|
|
|
|
|
|
return m_textureID;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::GetDetails(int& x, int&y, int& width, int& height, int& format)
|
|
|
|
{
|
|
|
|
x = m_x;
|
|
|
|
y = m_y;
|
|
|
|
width = m_width;
|
|
|
|
height = m_height;
|
|
|
|
format = m_format;
|
|
|
|
}
|
|
|
|
|
2016-06-10 11:29:20 +00:00
|
|
|
bool Texture::Compare(int x, int y, int width, int height, int format)
|
|
|
|
{
|
|
|
|
if (m_x == x && m_y == y && m_width == width && m_height == height && m_format == format) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-22 20:30:10 +00:00
|
|
|
bool Texture::CheckMapPos(int ax1, int ax2, int ay1, int ay2)
|
|
|
|
{
|
|
|
|
int bx1 = m_x;
|
|
|
|
int bx2 = m_x + m_width;
|
|
|
|
int by1 = m_y;
|
|
|
|
int by2 = m_y + m_height;
|
|
|
|
|
|
|
|
if (ax1<bx2 && ax2>bx1 &&
|
|
|
|
ay1<by2 && ay2>by1) {
|
|
|
|
return true; // rectangles overlap
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-24 13:38:20 +00:00
|
|
|
void Texture::CreateTextureObject(int format, bool mirrorU, bool mirrorV, int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
GLfloat maxAnistrophy;
|
|
|
|
glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &maxAnistrophy);
|
|
|
|
|
|
|
|
if (maxAnistrophy > 8) {
|
|
|
|
maxAnistrophy = 8.0f; //anymore than 8 can get expensive for little gain
|
|
|
|
}
|
|
|
|
|
|
|
|
glPixelStorei(GL_UNPACK_ALIGNMENT, 4); // rgba is always 4 byte aligned
|
|
|
|
glGenTextures(1, &m_textureID);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_textureID);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, mirrorU ? GL_MIRRORED_REPEAT : GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, mirrorV ? GL_MIRRORED_REPEAT : GL_REPEAT);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
|
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, maxAnistrophy);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_BASE_LEVEL, 0);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 5); // 0-5 (real3d only uses 6 possible mipmap levels)
|
|
|
|
|
|
|
|
m_x = x;
|
|
|
|
m_y = y;
|
|
|
|
m_width = width;
|
|
|
|
m_height = height;
|
|
|
|
m_format = format;
|
|
|
|
m_mirrorU = mirrorU;
|
|
|
|
m_mirrorV = mirrorV;
|
|
|
|
|
|
|
|
printf("create format %i x: %i y: %i width: %i height: %i\n", format, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2016-03-21 04:10:14 +00:00
|
|
|
} // New3D
|