ó
È4ec           @   sŸ   d  Z  d d l Z d d l m Z d d l m Z m Z d Z d Z d Z	 d e j f d	 „  ƒ  YZ
 d
 „  Z e j e
 j e
 e ƒ e j e
 j d d g ƒ d S(   s  
A Pillow loader for .ftc and .ftu files (FTEX)
Jerome Leclanche <jerome@leclan.ch>

The contents of this file are hereby released in the public domain (CC0)
Full text of the CC0 license:
  https://creativecommons.org/publicdomain/zero/1.0/

Independence War 2: Edge Of Chaos - Texture File Format - 16 October 2001

The textures used for 3D objects in Independence War 2: Edge Of Chaos are in a
packed custom format called FTEX. This file format uses file extensions FTC
and FTU.
* FTC files are compressed textures (using standard texture compression).
* FTU files are not compressed.
Texture File Format
The FTC and FTU texture files both use the same format. This
has the following structure:
{header}
{format_directory}
{data}
Where:
{header} = {
    u32:magic,
    u32:version,
    u32:width,
    u32:height,
    u32:mipmap_count,
    u32:format_count
}

* The "magic" number is "FTEX".
* "width" and "height" are the dimensions of the texture.
* "mipmap_count" is the number of mipmaps in the texture.
* "format_count" is the number of texture formats (different versions of the
same texture) in this file.

{format_directory} = format_count * { u32:format, u32:where }

The format value is 0 for DXT1 compressed textures and 1 for 24-bit RGB
uncompressed textures.
The texture data for a format starts at the position "where" in the file.

Each set of texture data in the file has the following structure:
{data} = format_count * { u32:mipmap_size, mipmap_size * { u8 } }
* "mipmap_size" is the number of bytes in that mip level. For compressed
textures this is the size of the texture data compressed with DXT1. For 24 bit
uncompressed textures, this is 3 * width * height. Following this are the image
bytes for that mipmap level.

Note: All data is stored in little-Endian (Intel) byte order.
iÿÿÿÿN(   t   BytesIOi   (   t   Imaget	   ImageFilet   FTEXi    t   FtexImageFilec           B   s&   e  Z d  Z d Z d „  Z d „  Z RS(   R   s   Texture File Format (IW2:EOC)c         C   s”  t  j d |  j j d ƒ ƒ t  j d |  j j d ƒ ƒ t  j d |  j j d ƒ ƒ |  _ t  j d |  j j d ƒ ƒ \ } } d |  _ | d k s˜ t ‚ t  j d |  j j d ƒ ƒ \ } } |  j j | ƒ t  j d |  j j d ƒ ƒ \ } |  j j | ƒ } | t k r6d |  _ d	 d |  j	 d
 d f g |  _
 n> | t k rdd d |  j	 d
 d f g |  _
 n t d | ƒ ‚ |  j j ƒ  t | ƒ |  _ d  S(   Ns   <Ii   s   <is   <2ii   t   RGBi   t   RGBAt   bcni    t   raws&   Invalid texture compression format: %r(   i    i    (   i    i    (   R   i    i   (   t   structt   unpackt   fpt   readt   _sizet   modet   AssertionErrort   seekt   FORMAT_DXT1t   sizet   tilet   FORMAT_UNCOMPRESSEDt
   ValueErrort   closeR    (   t   selft   mipmap_countt   format_countt   formatt   wheret   mipmap_sizet   data(    (    s=   /usr/local/lib/python2.7/dist-packages/PIL/FtexImagePlugin.pyt   _openD   s$    !$	$!	""c         C   s   d  S(   N(    (   R   t   pos(    (    s=   /usr/local/lib/python2.7/dist-packages/PIL/FtexImagePlugin.pyt	   load_seeka   s    (   t   __name__t
   __module__R   t   format_descriptionR   R    (    (    (    s=   /usr/local/lib/python2.7/dist-packages/PIL/FtexImagePlugin.pyR   @   s   	c         C   s   |  d  t  k S(   Ni   (   t   MAGIC(   t   prefix(    (    s=   /usr/local/lib/python2.7/dist-packages/PIL/FtexImagePlugin.pyt	   _validatee   s    s   .ftcs   .ftu(   t   __doc__R	   t   ioR    t    R   R   R$   R   R   R   R&   t   register_openR   t   register_extensions(    (    (    s=   /usr/local/lib/python2.7/dist-packages/PIL/FtexImagePlugin.pyt   <module>4   s   %	