2011-12-25 13:34:18 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# Copyright 2011-2013 Blender Foundation
|
2011-12-25 13:34:18 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2011-12-25 13:34:18 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-12-25 13:34:18 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License
|
2011-12-25 13:34:18 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# XML exporter for generating test files, not intended for end users
|
|
|
|
|
|
|
|
import os
|
|
|
|
import xml.etree.ElementTree as etree
|
|
|
|
import xml.dom.minidom as dom
|
|
|
|
|
|
|
|
import bpy
|
|
|
|
from bpy_extras.io_utils import ExportHelper
|
|
|
|
from bpy.props import PointerProperty, StringProperty
|
|
|
|
|
|
|
|
def strip(root):
|
|
|
|
root.text = None
|
|
|
|
root.tail = None
|
|
|
|
|
|
|
|
for elem in root:
|
|
|
|
strip(elem)
|
|
|
|
|
|
|
|
def write(node, fname):
|
|
|
|
strip(node)
|
|
|
|
|
|
|
|
s = etree.tostring(node)
|
|
|
|
s = dom.parseString(s).toprettyxml()
|
|
|
|
|
|
|
|
f = open(fname, "w")
|
|
|
|
f.write(s)
|
|
|
|
|
|
|
|
class CyclesXMLSettings(bpy.types.PropertyGroup):
|
|
|
|
@classmethod
|
|
|
|
def register(cls):
|
|
|
|
bpy.types.Scene.cycles_xml = PointerProperty(
|
|
|
|
type=cls,
|
|
|
|
name="Cycles XML export Settings",
|
|
|
|
description="Cycles XML export settings")
|
|
|
|
cls.filepath = StringProperty(
|
|
|
|
name='Filepath',
|
|
|
|
description='Filepath for the .xml file',
|
|
|
|
maxlen=256,
|
|
|
|
default='',
|
|
|
|
subtype='FILE_PATH')
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def unregister(cls):
|
|
|
|
del bpy.types.Scene.cycles_xml
|
|
|
|
|
|
|
|
# User Interface Drawing Code
|
|
|
|
class RenderButtonsPanel():
|
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_context = "render"
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(self, context):
|
|
|
|
rd = context.scene.render
|
|
|
|
return rd.engine == 'CYCLES'
|
|
|
|
|
|
|
|
|
|
|
|
class PHYSICS_PT_fluid_export(RenderButtonsPanel, bpy.types.Panel):
|
|
|
|
bl_label = "Cycles XML Exporter"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
cycles = context.scene.cycles_xml
|
|
|
|
|
|
|
|
#layout.prop(cycles, "filepath")
|
|
|
|
layout.operator("export_mesh.cycles_xml")
|
|
|
|
|
|
|
|
|
|
|
|
# Export Operator
|
|
|
|
class ExportCyclesXML(bpy.types.Operator, ExportHelper):
|
|
|
|
bl_idname = "export_mesh.cycles_xml"
|
|
|
|
bl_label = "Export Cycles XML"
|
|
|
|
|
|
|
|
filename_ext = ".xml"
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2012-02-02 21:07:56 +00:00
|
|
|
return (context.active_object is not None)
|
2011-12-25 13:34:18 +00:00
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
filepath = bpy.path.ensure_ext(self.filepath, ".xml")
|
|
|
|
|
|
|
|
# get mesh
|
|
|
|
scene = context.scene
|
|
|
|
object = context.active_object
|
|
|
|
|
|
|
|
if not object:
|
|
|
|
raise Exception("No active object")
|
|
|
|
|
|
|
|
mesh = object.to_mesh(scene, True, 'PREVIEW')
|
|
|
|
|
|
|
|
if not mesh:
|
|
|
|
raise Exception("No mesh data in active object")
|
|
|
|
|
|
|
|
# generate mesh node
|
|
|
|
nverts = ""
|
|
|
|
verts = ""
|
|
|
|
P = ""
|
|
|
|
|
|
|
|
for v in mesh.vertices:
|
|
|
|
P += "%f %f %f " % (v.co[0], v.co[1], v.co[2])
|
|
|
|
|
|
|
|
for i, f in enumerate(mesh.faces):
|
|
|
|
nverts += str(len(f.vertices)) + " "
|
|
|
|
|
|
|
|
for v in f.vertices:
|
|
|
|
verts += str(v) + " "
|
|
|
|
verts += " "
|
|
|
|
|
|
|
|
node = etree.Element('mesh', attrib={'nverts': nverts, 'verts': verts, 'P': P})
|
|
|
|
|
|
|
|
# write to file
|
|
|
|
write(node, filepath)
|
|
|
|
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
|
|
|
def register():
|
|
|
|
bpy.utils.register_module(__name__)
|
|
|
|
|
|
|
|
def unregister():
|
|
|
|
bpy.utils.unregister_module(__name__)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
register()
|
|
|
|
|