]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_texture.py
Export raw texture data to a separate file
[libs/gl.git] / blender / io_mspgl / export_texture.py
index 3d21cd1a796a77d540cda19ff72ba39179509ea6..dc291c9cf64cd0c93a96df939bc0b1fd685bdc36 100644 (file)
@@ -2,10 +2,6 @@ import os
 import base64
 import codecs
 
-def encode_pixels(pixels):
-       from .datafile import Token
-       return Token(codecs.decode(b"="+base64.b64encode(bytes(pixels))+b"=", "ascii"))
-
 def pixels_to_rgba(pixels):
        return (int(p*255) for p in pixels)
 
@@ -28,7 +24,7 @@ def pixels_to_gray(pixels):
 class TextureExporter:
        def export_texture(self, tex_node, usage='RGB', *, invert_green=False):
                image = tex_node.image
-               from .datafile import Resource, Statement, Token
+               from .datafile import RawData, Resource, Statement, Token
                tex_res = Resource(image.name+".tex", "texture")
 
                tex_res.statements.append(Statement("type", Token("\\2d")))
@@ -58,14 +54,16 @@ class TextureExporter:
                        pixels = tuple(image.pixels)
                        texdata = ""
                        if usage=='RGBA':
-                               texdata = encode_pixels(pixels_to_rgba(pixels))
+                               texdata = pixels_to_rgba(pixels)
                        elif usage=='GRAY':
-                               texdata = encode_pixels(pixels_to_gray(pixels))
+                               texdata = pixels_to_gray(pixels)
                        elif invert_green:
-                               texdata = encode_pixels(pixels_to_rgb_invert_green(pixels))
+                               texdata = pixels_to_rgb_invert_green(pixels)
                        else:
-                               texdata = encode_pixels(pixels_to_rgb(pixels))
-                       tex_res.statements.append(Statement("raw_data", texdata))
+                               texdata = pixels_to_rgb(pixels)
+
+                       data = RawData(image.name+".mdr", bytes(texdata))
+                       tex_res.statements.append(tex_res.create_reference_statement("external_data", data))
 
                return tex_res