X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_texture.py;h=e03b1b0c9185f09d44fc1a96f0d9ce42678965de;hb=1ced0f1993471e4cf8789186edc57f8f900d9b6c;hp=3e78a4cd6ee33af497f4cde7d6a27f281490982c;hpb=2a0d4c5aa8a6e3cca56fb446ab8e9a0fadc02bd1;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_texture.py b/blender/io_mspgl/export_texture.py index 3e78a4cd..e03b1b0c 100644 --- a/blender/io_mspgl/export_texture.py +++ b/blender/io_mspgl/export_texture.py @@ -1,58 +1,117 @@ import os +import base64 +import codecs +import bpy -class TextureExporter: - def __init__(self): - self.inline_data = True +def pixels_to_rgba(pixels): + return (int(p*255) for p in pixels) + +def pixels_to_rgb(pixels): + for i in range(0, len(pixels), 4): + yield int(pixels[i]*255) + yield int(pixels[i+1]*255) + yield int(pixels[i+2]*255) + +def pixels_to_rgb_invert(pixels, mask): + for i in range(0, len(pixels), 4): + r = int(pixels[i]*255) + yield 255-r if mask&1 else r + g = int(pixels[i+1]*255) + yield 255-g if mask&2 else g + b = int(pixels[i+2]*255) + yield 255-b if mask&4 else b + +def pixels_to_gray(pixels): + for i in range(0, len(pixels), 4): + yield int((pixels[i]+pixels[i+1]+pixels[i+2])*255/3) - def export_texture(self, tex_node, usage='RGB'): +class TextureExporter: + def export_texture(self, tex_node, channels=['R', 'G', 'B']): image = tex_node.image - from .datafile import Resource, Statement, Token - tex_res = Resource(image.name+".tex2d", "texture2d") + from .datafile import RawData, Resource, Statement, Token + tex_res = Resource(image.name+".tex", "texture") - use_interpolation = tex_node.interpolation!='Closest' - if use_interpolation: - if tex_node.use_mipmap: - tex_res.statements.append(Statement("filter", Token('LINEAR_MIPMAP_LINEAR'))) - tex_res.statements.append(Statement("generate_mipmap", True)) - else: - tex_res.statements.append(Statement("filter", Token('LINEAR'))) - tex_res.statements.append(Statement("max_anisotropy", tex_node.max_anisotropy)) - else: - if tex_node.use_mipmap: - tex_res.statements.append(Statement("filter", Token('NEAREST_MIPMAP_NEAREST'))) - tex_res.statements.append(Statement("generate_mipmap", True)) - else: - tex_res.statements.append(Statement("filter", Token('NEAREST'))) + tex_res.statements.append(Statement("type", Token("\\2d"))) + + if tex_node.use_mipmap: + tex_res.statements.append(Statement("generate_mipmap", True)) colorspace = image.colorspace_settings.name - if usage=='GRAY' and colorspace=='sRGB': - raise Exception("Grayscale textures with sRGB colorspace are not supported") + if len(channels)==1 and colorspace=='sRGB': + raise Exception("Unsupported configuration on texture {}: Grayscale with sRGB".format(image.name)) - fn = os.path.basename(image.filepath) - if not self.inline_data and fn: + invert_mask = sum(1<1: + name_parts.append("aniso{:g}x".format(tex_node.max_anisotropy)) + if tex_node.extension!="REPEAT": + name_parts.append("clip" if tex_node.extension=="CLIP" else "clamp") + + return "_".join(name_parts)+".samp"