write png twiddled
This commit is contained in:
parent
aa655a0bca
commit
9a3b383ddf
@ -92,8 +92,10 @@ class NinjaTexture: # {
|
|||||||
if tex['bitmap'] is None:
|
if tex['bitmap'] is None:
|
||||||
continue
|
continue
|
||||||
imgName = "output/" + tex['name'] + '.png'
|
imgName = "output/" + tex['name'] + '.png'
|
||||||
print(tex['bitmap'])
|
w = png.Writer(tex['width'], tex['height'], greyscale=False, alpha=True,compression=9)
|
||||||
png.from_array(tex['bitmap'], 'RGBA').save(imgName)
|
f = open(imgName, 'wb')
|
||||||
|
w.write(f, tex['bitmap'])
|
||||||
|
f.close()
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@ -117,8 +119,8 @@ class NinjaTexture: # {
|
|||||||
|
|
||||||
if flags & 0x08:
|
if flags & 0x08:
|
||||||
bytes = self.file.read(0x1c)
|
bytes = self.file.read(0x1c)
|
||||||
name = str(bytes)
|
name = bytes.decode()
|
||||||
tex['name'] = name.replace('\\x00', '')
|
tex['name'] = name.replace('\x00', '')
|
||||||
if flags & 0x04:
|
if flags & 0x04:
|
||||||
bytes = self.file.read(2)
|
bytes = self.file.read(2)
|
||||||
p = struct.unpack('H', bytes)
|
p = struct.unpack('H', bytes)
|
||||||
@ -155,8 +157,8 @@ class NinjaTexture: # {
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def readPvr(self, info):
|
def readPvr(self, tex):
|
||||||
print(info)
|
print(tex)
|
||||||
|
|
||||||
# Read Header
|
# Read Header
|
||||||
bytes = self.file.read(8)
|
bytes = self.file.read(8)
|
||||||
@ -178,6 +180,9 @@ class NinjaTexture: # {
|
|||||||
self.codebook_size = 0
|
self.codebook_size = 0
|
||||||
self.mipWidth = self.width
|
self.mipWidth = self.width
|
||||||
self.mipHeight = self.height
|
self.mipHeight = self.height
|
||||||
|
tex['complete'] = False
|
||||||
|
|
||||||
|
self.bitmap = [[0 for x in range(self.width * 4)] for y in range(self.height)]
|
||||||
|
|
||||||
twiddled = (
|
twiddled = (
|
||||||
NinjaTexture.TWIDDLED,
|
NinjaTexture.TWIDDLED,
|
||||||
@ -255,32 +260,25 @@ class NinjaTexture: # {
|
|||||||
seek_ofs = self.get_mipmap_size()
|
seek_ofs = self.get_mipmap_size()
|
||||||
self.file.read(seek_ofs)
|
self.file.read(seek_ofs)
|
||||||
|
|
||||||
self.startOfs = self.file.tell()
|
|
||||||
|
|
||||||
if self.isTwiddled:
|
if self.isTwiddled:
|
||||||
print("Reading twiddled texture")
|
self.startOfs = self.file.tell()
|
||||||
self.dst_array = self.detwiddle(self.mipWidth, self.mipHeight)
|
for y in range(self.height):
|
||||||
else:
|
for x in range(self.width):
|
||||||
return None
|
i = self.untwiddle(x, y)
|
||||||
|
self.file.seek(self.startOfs + (i * 2), 0)
|
||||||
tmp_bitmap = []
|
b = self.file.read(2)
|
||||||
for i in range(len(self.dst_array)):
|
color = struct.unpack('H', b)[0]
|
||||||
if self.color_format == 0:
|
if self.color_format == 0:
|
||||||
color = self.dst_array[i]
|
rgba = self.ARGB_1555(color)
|
||||||
bitmap = self.ARGB_1555(color)
|
elif self.color_format == 1:
|
||||||
tmp_bitmap.extend(bitmap)
|
rgba = self.RGB_565(color)
|
||||||
elif self.color_format == 1:
|
elif self.color_format == 2:
|
||||||
color = self.dst_array[i]
|
rgba = self.ARGB_4444(color)
|
||||||
bitmap = self.ARGB_565(color)
|
self.bitmap[y][x*4 + 0] = rgba[0]
|
||||||
tmp_bitmap.extend(bitmap)
|
self.bitmap[y][x*4 + 1] = rgba[1]
|
||||||
elif self.color_format == 2:
|
self.bitmap[y][x*4 + 2] = rgba[2]
|
||||||
color = self.dst_array[i]
|
self.bitmap[y][x*4 + 3] = rgba[3]
|
||||||
bitmap = self.ARGB_4444(color)
|
return self.bitmap
|
||||||
tmp_bitmap.extend(bitmap)
|
|
||||||
else:
|
|
||||||
print("Color format: ", self.color_format)
|
|
||||||
noesis.doException("Non supported pvr color format")
|
|
||||||
return struct.pack('B'*len(tmp_bitmap), *tmp_bitmap)
|
|
||||||
|
|
||||||
def get_mipmap_size(self):
|
def get_mipmap_size(self):
|
||||||
mipCount = 0
|
mipCount = 0
|
||||||
@ -310,22 +308,6 @@ class NinjaTexture: # {
|
|||||||
seek_ofs = seek_ofs + 2
|
seek_ofs = seek_ofs + 2
|
||||||
return seek_ofs
|
return seek_ofs
|
||||||
|
|
||||||
def detwiddle(self, w, h):
|
|
||||||
arr = [None] * (w * h)
|
|
||||||
for y in range(h):
|
|
||||||
for x in range(w):
|
|
||||||
i = self.untwiddle(x, y)
|
|
||||||
idx = y * h + x
|
|
||||||
if self.isCompressed:
|
|
||||||
self.file.seek(self.startOfs + i, 0)
|
|
||||||
b = self.file.read(1)
|
|
||||||
arr[idx] = struct.unpack('B', b)[0]
|
|
||||||
else:
|
|
||||||
self.file.seek(self.startOfs + (i * 2), 0)
|
|
||||||
b = self.file.read(2)
|
|
||||||
arr[idx] = struct.unpack('H', b)[0]
|
|
||||||
return arr
|
|
||||||
|
|
||||||
def untwiddle(self, x, y):
|
def untwiddle(self, x, y):
|
||||||
key = "{0}_{1}".format(x,y)
|
key = "{0}_{1}".format(x,y)
|
||||||
if key in NinjaTexture.LOOKUP_TABLE:
|
if key in NinjaTexture.LOOKUP_TABLE:
|
||||||
@ -348,18 +330,18 @@ class NinjaTexture: # {
|
|||||||
r = (v >> (10-3)) & 0xf8
|
r = (v >> (10-3)) & 0xf8
|
||||||
g = (v >> (5-3)) & 0xf8
|
g = (v >> (5-3)) & 0xf8
|
||||||
b = (v << 3) & 0xf8
|
b = (v << 3) & 0xf8
|
||||||
return [r,g,b,a]
|
return (r,g,b,a)
|
||||||
|
|
||||||
def ARGB_4444 (self, v):
|
def ARGB_4444 (self, v):
|
||||||
a = (v >> (12-4)) & 0xf0
|
a = (v >> (12-4)) & 0xf0
|
||||||
r = (v >> (8-4)) & 0xf0
|
r = (v >> (8-4)) & 0xf0
|
||||||
g = (v >> (4-4)) & 0xf0
|
g = (v >> (4-4)) & 0xf0
|
||||||
b = (v << 4) & 0xf0
|
b = (v << 4) & 0xf0
|
||||||
return [r,g,b,a]
|
return (r,g,b,a)
|
||||||
|
|
||||||
def ARGB_565(self, v):
|
def RGB_565(self, v):
|
||||||
a = 0xff
|
a = 0xff
|
||||||
r = (v >> (11-3)) & (0x1f<<3)
|
r = (v >> (11-3)) & (0x1f<<3)
|
||||||
g = (v >> (5-2)) & (0x3f<<2)
|
g = (v >> (5-2)) & (0x3f<<2)
|
||||||
b = (v << 3) & (0x1f<<3)
|
b = (v << 3) & (0x1f<<3)
|
||||||
return [r,g,b,a]
|
return (r,g,b,a)
|
||||||
|
Loading…
Reference in New Issue
Block a user