Welcome to mirror list, hosted at ThFree Co, Russian Federation.

xfig_export.py « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddc0dd4dceab83e539c2d1ff811ae30c4b71c036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#!BPY
"""
Name: 'xfig export (.fig)'
Blender: 244
Group: 'Export'
Tooltip: 'Export selected mesh to xfig Format (.fig)'
"""

__author__ = 'Dino Ghilardi',  'Campbell Barton AKA Ideasman42'
__url__ = ("blender", "blenderartists.org")
__version__ = "1.1"

__bpydoc__ = """\
		This script exports the selected mesh to xfig (www.xfig.org) file format (i.e.: .fig)

		The starting point of this script was Anthony D'Agostino's raw triangle format export.
		(some code is still here and there, cut'n pasted from his script)

		Usage:<br>
			Select the mesh to be exported and run this script from "File->Export" menu.
			The toggle button 'export 3 files' enables the generation of 4 files: one global
			and three with the three different views of the object.
			This script is licensed under the GPL license. (c) Dino Ghilardi, 2005
			
"""

# .fig export, mostly brutally cut-n pasted from the 
# 'Raw triangle export' (Anthony D'Agostino, http://www.redrival.com/scorpius)|

import Blender
from Blender import Draw
import BPyObject
#, meshtools
import sys
import bpy
#import time

# =================================
# === Write xfig Format.===
# =================================

def collect_edges(edges):
	"""Gets the max-min coordinates of the mesh"""
	
	"""Getting the extremes of the mesh to be exported"""
	
	maxX=maxY=maxZ = -1000000000
	minX=minY=minZ =  1000000000
	
	FGON= Blender.Mesh.EdgeFlags.FGON
	
	me = bpy.data.meshes.new()
	for ob_base in bpy.data.scenes.active.objects.context:
		for ob in BPyObject.getDerivedObjects(ob_base):
			me.verts = None
			try:	me.getFromObject(ob[0])
			except: pass
			
			if me.edges:
				me.transform(ob[1])
				
				for ed in me.edges:
					if not ed.flag & FGON:
						x,y,z = v1 = tuple(ed.v1.co)
						maxX = max(maxX, x)
						maxY = max(maxY, y)
						maxZ = max(maxZ, z)
						minX = min(minX, x)
						minY = min(minY, y)
						minZ = min(minZ, z)
						
						x,y,z = v2 = tuple(ed.v2.co)
						maxX = max(maxX, x)
						maxY = max(maxY, y)
						maxZ = max(maxZ, z)
						minX = min(minX, x)
						minY = min(minY, y)
						minZ = min(minZ, z)
						
						edges.append( (v1, v2) )
					
	me.verts = None # free memory
	return maxX,maxY,maxZ,minX,minY,minZ

def xfigheader(file):
	file.write('#FIG 3.2  Produced by xfig version 3.2.5-alpha5\n')
	file.write('Landscape\n')
	file.write('Center\n')
	file.write('Metric\n')
	file.write('A4\n')
	file.write('100.00\n')
	file.write('Single\n')
	file.write('-2\n')
	file.write('1200 2\n')

def figdata(file, edges, expview, bounds, scale, space):
	maxX,maxY,maxZ,minX,minY,minZ = bounds
	
	def xytransform(ed):
		"""gives the face vertexes coordinates in the xfig format/translation (view xy)"""	
		x1,y1,z1 = ed[0]
		x2,y2,z2 = ed[1]
		y1=-y1; y2=-y2
		return x1,y1,z1,x2,y2,z2

	def xztransform(ed):
		"""gives the face vertexes coordinates in the xfig format/translation (view xz)"""
		x1,y1,z1 = ed[0]
		x2,y2,z2 = ed[1]
		y1=-y1
		y2=-y2
		
		z1=-z1+maxZ-minY +space
		z2=-z2+maxZ-minY +space
		return x1,y1,z1,x2,y2,z2

	def yztransform(ed):
		"""gives the face vertexes coordinates in the xfig format/translation (view xz)"""
		x1,y1,z1 = ed[0]
		x2,y2,z2 = ed[1]
		y1=-y1; y2=-y2
		z1=-(z1-maxZ-maxX-space)
		z2=-(z2-maxZ-maxX-space)
		return x1,y1,z1,x2,y2,z2

	def transform(ed, expview, scale):
		if		expview=='xy':
			x1,y1,z1,x2,y2,z2 = xytransform(ed)
			return int(x1*scale),int(y1*scale),int(x2*scale),int(y2*scale)
		elif	expview=='xz':
			x1,y1,z1,x2,y2,z2 = xztransform(ed)
			return int(x1*scale),int(z1*scale),int(x2*scale),int(z2*scale)
		elif	expview=='yz':
			x1,y1,z1,x2,y2,z2 = yztransform(ed)
			return int(z1*scale),int(y1*scale),int(z2*scale),int(y2*scale)
	
	
	"""Prints all the xfig data (no header)"""
	for ed in edges:
		file.write('2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2\n')
		file.write('\t %i %i %i %i\n' % transform(ed, expview, scale))

def writexy(edges, bounds, filename, scale, space):
	"""writes the x-y view file exported"""
	
	file = open(filename, 'wb')
	xfigheader(file)
	figdata(file, edges, 'xy', bounds, scale, space)
	file.close()
	print 'Successfully exported ', Blender.sys.basename(filename)# + seconds

def writexz(edges, bounds, filename, scale, space):
	"""writes the x-z view file exported"""
	#start = time.clock()
	file = open(filename, 'wb')
	xfigheader(file)
	figdata(file, edges, 'xz', bounds, scale, space)
	file.close()
	print 'Successfully exported ', Blender.sys.basename(filename)# + seconds

def writeyz(edges, bounds, filename, scale, space):
	"""writes the y-z view file exported"""
	
	#start = time.clock()
	file = open(filename, 'wb')
	xfigheader(file)
	figdata(file, edges, 'yz', bounds, scale, space)
	file.close()
	#end = time.clock()
	#seconds = " in %.2f %s" % (end-start, "seconds")
	print 'Successfully exported ', Blender.sys.basename(filename)# + seconds

def writeall(edges, bounds, filename, scale=450, space=2.0):
	"""writes all 3 views
	
	Every view is a combined object in the resulting xfig. file."""
	
	maxX,maxY,maxZ,minX,minY,minZ = bounds
	
	file = open(filename, 'wb')

	xfigheader(file)
	file.write('#upper view (7)\n')
	file.write('6 % i % i % i % i ')
	file.write('%.6f %.6f %.6f %.6f\n' % (minX, minY, maxX, maxY))
	
	figdata(file, edges, 'xy', bounds, scale, space)
	file.write('-6\n')
	file.write('#bottom view (1)\n')
	file.write('6 %i %i %i %i ')
	file.write('%.6f %.6f %.6f %.6f\n' % (minX, -minZ+maxZ-minY +space, maxX,-maxZ+maxZ-minY +space))
	
	figdata(file, edges, 'xz', bounds, scale, space)
	file.write('-6\n')
	
	file.write('#right view (3)\n')
	file.write('6 %i %i %i %i ')
	file.write('%.6f %.6f %.6f %.6f\n' % (minX, -minZ+maxZ-minY +space, maxX,-maxZ+maxZ-minY +space))
	figdata(file, edges, 'yz', bounds, scale, space)
	file.write('-6\n')
	
	file.close()
	print 'Successfully exported ', Blender.sys.basename(filename)# + seconds

import BPyMessages

def write_ui(filename):
	if filename.lower().endswith('.fig'): filename = filename[:-4]
	
	PREF_SEP= Draw.Create(0)
	PREF_SCALE= Draw.Create(1200)
	PREF_SPACE= Draw.Create(2.0)
	
	block = [\
		("Separate Files", PREF_SEP, "Export each view axis as a seperate file"),\
		("Space: ", PREF_SPACE, 0.0, 10.0, "Space between views in blender units"),\
		("Scale: ", PREF_SCALE, 10, 100000, "Scale, 1200 is a good default")]
	
	if not Draw.PupBlock("Export FIG", block):
		return
	
	edges = []
	bounds = collect_edges(edges)
	
	if PREF_SEP.val:
		writexy(edges, bounds, filename + '_XY.fig', PREF_SCALE.val, PREF_SPACE.val)
		writexz(edges, bounds, filename + '_XZ.fig', PREF_SCALE.val, PREF_SPACE.val)
		writeyz(edges, bounds, filename + '_YZ.fig', PREF_SCALE.val, PREF_SPACE.val)
	
	writeall(edges, bounds, filename + '.fig', PREF_SCALE.val, PREF_SPACE.val)

if __name__ == '__main__':
	Blender.Window.FileSelector(write_ui, 'Export XFIG', Blender.sys.makename(ext='.fig'))