-
Notifications
You must be signed in to change notification settings - Fork 0
/
export_pop_v1_blender.py
229 lines (179 loc) · 6.45 KB
/
export_pop_v1_blender.py
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
bl_info = {
"name": "Export .OK64.POP Data",
"author": "Robichu; Litronom",
"version": (1, 0, 0),
"blender": (2, 79, 0),
"location": "File > Export > Mario Kart 64 POP (.OK64.POP)",
"description": "Export Population Data (.OK64.POP)",
"warning": "",
"category": "Import-Export"}
import bpy
import os
import time
import math
import struct
# ExportHelper is a helper class, defines filename and
# invoke() function which calls the file selector.
from bpy_extras.io_utils import ExportHelper
from bpy.props import StringProperty, BoolProperty, EnumProperty
from bpy.types import Operator, WindowManager
def export_pop_data(context, props, filepath):
print("running export_pop_data...")
file = open(filepath, 'w', encoding='utf-8')
ob = bpy.context.object # active object
# iterate over points of the curve's first spline
pointCount = len(ob.data.splines.active.bezier_points)
file.write("path")
file.write('\n')
file.write(str(pointCount))
file.write('\n')
for p in ob.data.splines.active.bezier_points:
file.write("[")
file.write(str((p.co.x))+",")
file.write(str((p.co.y))+",")
file.write(str((p.co.z)))
file.write("]")
file.write('\n')
file.write("1")
file.write("\n")
file.write("item")
file.write('\n')
itemCount = 0
for a in bpy.data.objects:
if a.name.startswith('itembox') and props.use_item:
itemCount += 1
file.write(str(itemCount))
file.write('\n')
for b in bpy.data.objects:
if b.name.startswith('itembox') and props.use_item:
file.write("[")
file.write(str((b.location.x))+",")
file.write(str((b.location.y))+",")
file.write(str((b.location.z)))
file.write("]")
file.write('\n')
file.write("1")
file.write("\n")
file.write("tree")
file.write('\n')
treeCount = 0
for a in bpy.data.objects:
if a.name.startswith('tree') and props.use_tree:
treeCount += 1
file.write(str(treeCount))
file.write('\n')
for b in bpy.data.objects:
if b.name.startswith('tree') and props.use_tree:
file.write("[")
file.write(str((b.location.x))+",")
file.write(str((b.location.y))+",")
file.write(str((b.location.z)))
file.write("]")
file.write('\n')
file.write("1")
file.write("\n")
file.write("piranha")
file.write('\n')
piranhaCount = 0
for a in bpy.data.objects:
if a.name.startswith('piranha') and props.use_piranha:
piranhaCount += 1
file.write(str(piranhaCount))
file.write('\n')
for b in bpy.data.objects:
if b.name.startswith('piranha') and props.use_piranha:
file.write("[")
file.write(str((b.location.x))+",")
file.write(str((b.location.y))+",")
file.write(str((b.location.z)))
file.write("]")
file.write('\n')
file.write("1")
file.write("\n")
file.write("redcoin")
file.write('\n')
redcoinCount = 0
for a in bpy.data.objects:
if a.name.startswith('redcoin') and props.use_redcoin:
redcoinCount += 1
file.write(str(redcoinCount))
file.write('\n')
for b in bpy.data.objects:
if b.name.startswith('redcoin') and props.use_redcoin:
file.write("[")
file.write(str((b.location.x))+",")
file.write(str((b.location.y))+",")
file.write(str((b.location.z)))
file.write("]")
file.write('\n')
file.write("1")
file.write("\n")
file.close()
ShowMessageBox("Pop data exported to file", "Finished", 'PLUS')
return {'FINISHED'}
def export_empty(context, props, filepath):
print("WARNING: no active curve")
ShowMessageBox("Make sure to have a BezierCurve selected before exporting", "WARNING - BezierCurve not selected", 'ERROR')
return {'FINISHED'}
def ShowMessageBox(message = "", title = "", icon = ''):
def draw(self, context):
self.layout.label(message)
bpy.context.window_manager.popup_menu(draw, title = title, icon = icon)
class PopExport(Operator, ExportHelper):
"""Saves POP data for Mario Kart 64 custom courses"""
bl_idname = "export_test.some_data" # important since its how bpy.ops.import_test.some_data is constructed
bl_label = "Save OK64.POP File"
filename_ext = ".OK64.POP" # ExportHelper mixin class uses this
filter_glob = StringProperty(
default="*.OK64.POP",
options={'HIDDEN'},
maxlen=255, # Max internal buffer length, longer would be clamped.
)
use_item = BoolProperty(
name="Item Boxes",
description="Export Item Boxes",
default = True,
)
use_tree = BoolProperty(
name="Trees",
description="Export Trees",
default=True,
)
use_piranha = BoolProperty(
name="Piranhas",
description="Export Piranha Plants",
default=True,
)
use_redcoin = BoolProperty(
name="Red Coins",
description="Export Red Coins",
default=True,
)
def execute(self, context):
start_time = time.time()
print('\n_____START_____')
props = self.properties
filepath = self.filepath
filepath = bpy.path.ensure_ext(filepath, self.filename_ext)
ob = bpy.context.object
if ob.type in ['CURVE']:
exported = export_pop_data(context, props, filepath)
if exported:
print('finished export in %s seconds' %((time.time() - start_time)))
print(filepath)
return {'FINISHED'}
else:
empty = export_empty(context, props, filepath)
return {'FINISHED'}
def menu_func_export(self, context):
self.layout.operator(PopExport.bl_idname, text="Mario Kart 64 POP (.OK64.POP)")
def register():
bpy.utils.register_class(PopExport)
bpy.types.INFO_MT_file_export.append(menu_func_export)
def unregister():
bpy.utils.unregister_class(PopExport)
bpy.types.INFO_MT_file_export.remove(menu_func_export)
if __name__ == "__main__":
register()
# test call
bpy.ops.export_test.some_data('INVOKE_DEFAULT')