2014-10-08 35 views
0

我目前正在为Blender创建一个导出脚本,但是我觉得我的问题更多的是基于Python,所以我在这里发布了它。用Python导出基于二进制的文件

一位朋友在java中为.obj文件创建了一个转换程序,该程序将其转换为自定义二进制文件格式。但是,我想跳过该过程并直接从Blender导出二进制文件。

该文件包含使用utf-8,utf-16和utf-32格式的文本,整数和浮点数。

到目前为止,我将所有数据导出为标准文本文件,因此我只需要以适当的编码/格式输出它。这是他在Java中使用的代码数据写入到不同编码的文件:

import java.io.DataInputStream; 
import java.io.DataOutputStream; 
import java.io.IOException; 
import java.nio.ByteBuffer; 
import java.nio.ByteOrder; 

public class StreamConverter { 

//--------------------------------------------------- 

public static void buffer_write_string(DataOutputStream out,String text) throws IOException{ 
    byte[] bytes = text.getBytes(); 
    for(int i =0;i<text.length();i++){ 
     buffer_write_u8(out,bytes[i]); 
    } 
} 

public static void buffer_write_u32(DataOutputStream out,int i) throws IOException{ 
    ByteBuffer b = ByteBuffer.allocate(4); 
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putInt(i); 
    out.write(b.array());  
} 

public static void buffer_write_u16(DataOutputStream out,int i) throws IOException{ 
    out.write((byte) i); 
    out.write((byte) (i >> 8));  
} 

public static void buffer_write_s16(DataOutputStream out,int i) throws IOException{ 
    out.write((byte) i); 
    out.write((byte) (i >> 8));  
} 

public static void buffer_write_s32(DataOutputStream out,int i) throws IOException{ 
    ByteBuffer b = ByteBuffer.allocate(4); 
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putInt(i); 
    out.write(b.array()); 
} 

public static void buffer_write_u8(DataOutputStream out,int i) throws IOException{ 
    out.writeByte((byte) i); 
} 

public static void buffer_write_s8(DataOutputStream out,int i) throws IOException{ 
    out.writeByte((byte) i); 
} 

public static void buffer_write_f64(DataOutputStream out,double i) throws IOException{ 
    ByteBuffer b = ByteBuffer.allocate(8); 
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putDouble(i); 
    out.write(b.array()); 

} 

public static void buffer_write_f32(DataOutputStream out,float i) throws IOException{ 
    ByteBuffer b = ByteBuffer.allocate(4); 
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putFloat(i); 
    out.write(b.array()); 
} 

} 

我不知道怎么做,这是Python的,我想这个,看看我是否可以在至少得到整数输出正确,但没有运气。

def write_u8(file, num): 
    enum = num.encode('utf-8') 
    file.write(enum) 

def write_u16(file, num): 
    enum = num.encode('utf-16') 
    file.write(enum) 

def write_u32(file, num): 
    enum = num.encode('utf-32') 
    file.write(enum) 

用法示例:

write_u32(file, u'%i' % (vertex_count)) 

也试过这样:

counts = bytes([vertex_count,tex_count,normal_count]) 
file.write(counts) 

我有点这整个二进制/编码的东西丢了,我已经通过Python文档阅读,但它没有帮助。

任何指向教程或示例的链接都会很棒!

回答

0

从我的理解,你想要做的是序列化你的对象并反序列化它。在python Pickle是你正在寻找的软件包。你可以看看它的文档here