Blender Import Guide: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
This document is meant for Blender importer/exporter writers. | This document is meant for Blender importer/exporter writers. | ||
It explains all you need to know: how to create a mesh, add it to an object, add vertices, faces, vertex colors, UVs, normals, create and assign materials and textures to vertex groups, create bones, assign bones to vertices and add bone weights. | It explains all you need to know: how to create a mesh, add it to an object, add vertices, faces, vertex colors, UVs, normals, create and assign materials and textures to vertex groups, create bones, assign bones to vertices and add bone weights. | ||
This document will teach you how to import binary 3d files, not text-based. If you want to import text-based files, you'll find the "struct" module we use here completely useless and you might need a text parser like [ | |||
This document will teach you how to import binary 3d files, not text-based. If you want to import text-based files, you'll find the "struct" module we use here completely useless and you might need a text parser like [http://pyparsing.wikispaces.com/ Pyparsing]. | |||
==Why Blender/Python?== | ==Why Blender/Python?== | ||
| Line 32: | Line 33: | ||
==Basic things every script will need== | ==Basic things every script will need== | ||
In this tutorial we will be using helper functions which will call the methods of the struct module themselves. This is just to make things cleaner. | In this tutorial we will be using helper functions which will call the methods of the "struct" module themselves. This is just to make things cleaner. | ||
<pre class="codeblock"> | <pre class="codeblock"> | ||
| Line 76: | Line 77: | ||
<pre class="codeblock"> | <pre class="codeblock"> | ||
file.read() | file.read(size) | ||
file.tell() | file.tell() | ||
file.seek() | file.seek(where, fromwhere) | ||
</pre> | </pre> | ||
| Line 88: | Line 89: | ||
The first argument of seek() is the index you want to move to, second argument allows you to specify from where to count that index. Default value is 0 which means index relative to beginning of file, specify 1 instead if you want to move from current location. | The first argument of seek() is the index you want to move to, second argument allows you to specify from where to count that index. Default value is 0 which means index relative to beginning of file, specify 1 instead if you want to move from current location. | ||
So let's begin learning what we need from Blender. This | So let's begin learning what we need from Blender. This tutorial will be for Blender 2.5+. Blender 2.5 sections might be added later. | ||
==Creating models in Blender with Python== | ==Creating models in Blender with Python== | ||
| Line 96: | Line 97: | ||
The usual way to create vertices, edges and faces is creating lists of vertex positions, list of edge indexes and list of face indexes and passing them as arguments to the function mesh.from_pydata() . Note that you can pass empty lists for edges and faces if you want. | The usual way to create vertices, edges and faces is creating lists of vertex positions, list of edge indexes and list of face indexes and passing them as arguments to the function mesh.from_pydata() . Note that you can pass empty lists for edges and faces if you want. | ||
As you see, from_pydata() is a method (method - function belonging to class) of the Mesh class. So you'll need to make a Mesh object (object - instance of Mesh class) first. If these terms (“ method”. “class”, “object”, “instance”) confuse you, then you should probably learn some more on classes in Python. | As you see, from_pydata() is a method (method - function belonging to class) of the Mesh class. So you'll need to make a Mesh object (object - instance of Mesh class) first. If these terms (“ method”. “class”, “object”, “instance”) confuse you, then you should probably learn some more on classes in Python. | ||
Example: | |||
<pre class="codeblock"> | |||
vertices = [[x, y, z], [x, y, z], [x,y,z], [x,y,z]] # replace “x,y,z” with actual numbers | |||
faces = [[0,1,2], [3,4,5], [6,7,8], [9,10,11]] | |||
mesh = bpy.data.meshes.new('name') | |||
mesh.from_pydata(vertices, [], faces) # [] is in place of edges, is an empty list | |||
</pre> | |||
The first two lines create Python lists. vertices list contains sublists with 3 numbers, which will be used as x,y,z positions for the vertices. faces list is a collection of indexes, which tells how the vertices in the first list will connect and create triangles. | |||
The 3rd line creates a Mesh and third adds vertices and faces to the Mesh from the data we have in our lists. | |||
Like anything else in Blender (like Lights, Curves and Armatures), Meshes need to be assigned to “Objects”. Objects are like nodes. Everything in the 3d scene of Blender are Objects. However the Objects can contain different things, one can contain a Mesh, the other a Light. This allows everything in the 3d scene to the treated the same way, like a Light can be moved around the same way as a Mesh. | |||
So to actually see your Mesh you'll need to create a new Object, assign the Mesh to it and add (“link”) the Object to the current scene: | |||
<pre class="codeblock"> | |||
mesh = bpy.data.meshes.new('name') # again | |||
object = bpy.data.objects.new('name', mesh) | |||
bpy.context.scene.objects.link(object) # link object to scene | |||
</pre> | |||
And you should be able to see your Mesh, unless you used some odd values for your vertices and faces lists (even then you should at least see a dot which is the pivot of the Object. | |||
===Vertex colors=== | |||
To assign vertex colors, you will need to create a “VertexColor layer” for you mesh, then loop through your faces and add the colors to all vertices of each face, like this: | |||
<pre class="codeblock"> | |||
mesh.vertex_colors.new(name = 'VertexColor') | |||
index = 0 | |||
for face in mesh.vertex_colors[0].data: | |||
face.color1 = colors[index] | |||
face.color2 = colors[index + 1] | |||
face.color3 = colors[index + 2] | |||
index += 3 | |||
</pre> | |||
Where colors is a list of sublists containing RGB colors, like so: | |||
<pre class="codeblock"> | |||
colors = [[R,B,G],[R,G,B],[R,G,B]]</pre> | |||
Note that colors in Blender are float numbers in the range (0.0, 1.0). if you have an integer in the range (0, 255), just divide your number by 255. | |||
Revision as of 13:11, 29 January 2012
This document is meant for Blender importer/exporter writers. It explains all you need to know: how to create a mesh, add it to an object, add vertices, faces, vertex colors, UVs, normals, create and assign materials and textures to vertex groups, create bones, assign bones to vertices and add bone weights.
This document will teach you how to import binary 3d files, not text-based. If you want to import text-based files, you'll find the "struct" module we use here completely useless and you might need a text parser like Pyparsing.
Why Blender/Python?
Blender is a powerful 3d modeller. Blender is a great choice if you want to write an importer/exporter as anyone can use your script because the program is completely free, unlike very expensive tools like Max and Maya. In fact users of these expensive tools shouldn't complain, because they can just reexport the data from Blender to a format their own program understands, something which Blender users can't do with Max/Maya scripts without paying. And doing that will require only basic understanding of the Blender GUI.
However Blender scripts are comparably more difficult to write than Max/Maya scripts, especially if you have no experience in programming. The main reason is Blender uses an actual general-purpose programming language called “Python”. What “general-purpose” means is that the language can be used to write any kind of program, from web applications to video games, unlike MaxScript and MEL, which are only used by and inside these 3d modellers. The good news is Python is a very simple language compared to other general-purpose programming languages like C++.
Frankly we don't even need to understand most of Python and most of Blender's Python library to be able to write an importer/exporter.
Firstly, you'll need to learn some Python. Make sure you understand “variables”, “functions”, “lists/tuples”, “dictionaries” and have at least some idea of “classes”. This is a good tutorial: http://www.swaroopch.com/notes/Python
Next all is left to do is to learn the needed functions and classes of Blender's Python library (“library” means collection of modules). A full list is available here:
- B2.4: http://www.blender.org/documentation/249PythonDoc/
- B2.5+: http://www.blender.org/documentation/blender_python_api_2_61_2/
These are full lists of classes and functions you can use. You don't need to be a programmer to use a computer, the same way you don't need to know more than 5% of these to create an importer/exporter.
As you noticed there are two links, one for Blender 2.4, one for Blender 2.5 and above. The reason is everything was rewritten in Blender 2.5, including the Python library. 2.4 is quickly becoming deprecated, so you should go with Blender 2.5. This tutorial will list the commands for both of them, though.
Also note that Blender 2.4 uses Python 2, Blender 2.5 and above use Python 3. These languages are almost the same, but do some things differently. The main differences are: “print” statement doesn't exist in Python 3, only print() function “xrange()” doesn't exist in Python 3, “range()” does the same strings are handled differently
For both you will need to import and use the module “struct”. “struct” is a module for converting data read from file to the needed type, like integer, short, long or float.
Basic things every script will need
In this tutorial we will be using helper functions which will call the methods of the "struct" module themselves. This is just to make things cleaner.
# Convenience functions import struct # read unsigned byte from file def read_byte(file_object, endian = '<'): data = struct.unpack(endian+'B', file_object.read(1))[0] return data # read unsgned short from file def read_short(file_object, endian = '<'): data = struct.unpack(endian+'H', file_object.read(2))[0] return data # read unsigned integer from file def read_uint(file_object, endian = '<'): data = struct.unpack(endian+'I', file_object.read(4))[0] return data # read signed integer from file def read_int(file_object, endian = '<'): data = struct.unpack(endian+'i', file_object.read(4))[0] return data # read floating point number from file def read_float(file_object, endian = '<'): data = struct.unpack(endian+'f', file_object.read(4))[0] return data
So you'll need to pass your file object to the function. Like so:
file = open('filepath/filename.ext', 'rb') # 'rb' - open for reading in binary mode
value = read_uint(file)
The second argument of the functions is used to specify the endianness. Default is little endian ('<').
I'll also like to remind you the useful methods of the "file" class, which you get when you use open().
file.read(size) file.tell() file.seek(where, fromwhere)
- read() is a method for reading bytes from file object and moving the cursor location. "cursor location" is the index of where it will read next time when you'll call read(). When you use read(), you get raw data, Python doesn't know if it's an int, float, ASCII character or whatever, that's why we need the "struct" module. You won't need to mess with read() if you'll use the helper functions above. read() will only be useful when you are reading a string which you are sure is in ASCII, no need to use "struct" for that.
- tell() is used to tell you the current "cursor location".
- seek() moves the "cursor location" somewhere else. Useful when you have junk data you need to skip, it's faster to use seek() than read() some data you won't use anyway.
The first argument of seek() is the index you want to move to, second argument allows you to specify from where to count that index. Default value is 0 which means index relative to beginning of file, specify 1 instead if you want to move from current location.
So let's begin learning what we need from Blender. This tutorial will be for Blender 2.5+. Blender 2.5 sections might be added later.
Creating models in Blender with Python
Creating vertices, edges, faces
The usual way to create vertices, edges and faces is creating lists of vertex positions, list of edge indexes and list of face indexes and passing them as arguments to the function mesh.from_pydata() . Note that you can pass empty lists for edges and faces if you want. As you see, from_pydata() is a method (method - function belonging to class) of the Mesh class. So you'll need to make a Mesh object (object - instance of Mesh class) first. If these terms (“ method”. “class”, “object”, “instance”) confuse you, then you should probably learn some more on classes in Python.
Example:
vertices = [[x, y, z], [x, y, z], [x,y,z], [x,y,z]] # replace “x,y,z” with actual numbers
faces = [[0,1,2], [3,4,5], [6,7,8], [9,10,11]]
mesh = bpy.data.meshes.new('name')
mesh.from_pydata(vertices, [], faces) # [] is in place of edges, is an empty list
The first two lines create Python lists. vertices list contains sublists with 3 numbers, which will be used as x,y,z positions for the vertices. faces list is a collection of indexes, which tells how the vertices in the first list will connect and create triangles. The 3rd line creates a Mesh and third adds vertices and faces to the Mesh from the data we have in our lists.
Like anything else in Blender (like Lights, Curves and Armatures), Meshes need to be assigned to “Objects”. Objects are like nodes. Everything in the 3d scene of Blender are Objects. However the Objects can contain different things, one can contain a Mesh, the other a Light. This allows everything in the 3d scene to the treated the same way, like a Light can be moved around the same way as a Mesh.
So to actually see your Mesh you'll need to create a new Object, assign the Mesh to it and add (“link”) the Object to the current scene:
mesh = bpy.data.meshes.new('name') # again
object = bpy.data.objects.new('name', mesh)
bpy.context.scene.objects.link(object) # link object to scene
And you should be able to see your Mesh, unless you used some odd values for your vertices and faces lists (even then you should at least see a dot which is the pivot of the Object.
Vertex colors
To assign vertex colors, you will need to create a “VertexColor layer” for you mesh, then loop through your faces and add the colors to all vertices of each face, like this:
mesh.vertex_colors.new(name = 'VertexColor') index = 0 for face in mesh.vertex_colors[0].data: face.color1 = colors[index] face.color2 = colors[index + 1] face.color3 = colors[index + 2] index += 3
Where colors is a list of sublists containing RGB colors, like so:
colors = [[R,B,G],[R,G,B],[R,G,B]]
Note that colors in Blender are float numbers in the range (0.0, 1.0). if you have an integer in the range (0, 255), just divide your number by 255.