-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathimport_plugin.gd
412 lines (332 loc) · 11.3 KB
/
import_plugin.gd
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
@tool
extends EditorImportPlugin
enum PRESETS { DEFAULT }
func _get_importer_name() -> String:
return "procgen_arcana"
func _get_visible_name() -> String:
return "Procgen Arcana"
func _get_recognized_extensions() -> PackedStringArray:
return ["json"]
func _get_save_extension() -> String:
return "json"
func _get_resource_type() -> String:
return ''
func _get_priority() -> float:
return 0.1
func _get_import_order() -> int:
return ImportOrder.IMPORT_ORDER_SCENE
func _get_import_options(path: String, preset_index: int) -> Array[Dictionary]:
match preset_index:
PRESETS.DEFAULT:
return [
{
"name": "house_scene",
"default_value": _abspath("models/house.glb"),
"property_hint": PROPERTY_HINT_FILE,
"hint_string": "*.glb,*.gltf,*.fbx,*.tscn"
},
{
"name": "tree_scene",
"default_value": _abspath("models/tree.glb"),
"property_hint": PROPERTY_HINT_FILE,
"hint_string": "*.glb,*.gltf,*.fbx,*.tscn"
},
{
"name": "col_earth",
"default_value": Color(0.533, 0.655, 0.482),
"property_hint": PROPERTY_HINT_COLOR_NO_ALPHA
},
{
"name": "col_road",
"default_value": Color(0.219, 0.219, 0.219),
"property_hint": PROPERTY_HINT_COLOR_NO_ALPHA
},
{
"name": "col_water",
"default_value": Color(0.357, 0.608, 0.655),
"property_hint": PROPERTY_HINT_COLOR_NO_ALPHA
}
]
_:
return []
func _get_option_visibility(path: String, option_name: StringName, options: Dictionary) -> bool:
return true
func _get_preset_count():
return PRESETS.size()
func _get_preset_name(preset_index):
match preset_index:
PRESETS.DEFAULT:
return "Default"
_:
return "Unknown"
func _import(source_file: String, save_path: String, options: Dictionary, platform_variants: Array[String], gen_files: Array[String]) -> Error:
var file = FileAccess.open(source_file, FileAccess.READ)
if file == null:
return FileAccess.get_open_error()
var root: Node3D = Node3D.new()
root.name = "Map"
var json: Variant = JSON.parse_string(FileAccess.get_file_as_string(source_file))
# Make sure we have a valid Procgen Arcana JSON file
if json == null:
push_error("Unable to parse %s, not valid JSON." % source_file)
return ERR_FILE_CANT_READ
elif not json.has('type') or json.type != 'FeatureCollection' or not json.has('features'):
push_error("Unable to find feature list for file %s - not a Procgen Arcana JSON file?" % source_file)
return ERR_FILE_CANT_READ
for row in json.features:
if has_method("_import_" + row.id):
call("_import_" + row.id, root, row, options)
var scene = PackedScene.new()
var pack_result = scene.pack(root)
if pack_result != Error.OK:
root.free()
return pack_result
var copy_result: Error = DirAccess.copy_absolute(
source_file,
"%s.%s" % [save_path, _get_save_extension()]
)
if copy_result != OK:
return copy_result
var save_result: Error = ResourceSaver.save(scene, source_file.replace(".json", ".tscn"))
return save_result
func _import_earth(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var min_xy: Vector2 = Vector2.INF
var max_xy: Vector2 = -Vector2.INF
var mat: StandardMaterial3D = StandardMaterial3D.new()
mat.albedo_color = options.col_earth
var verts: PackedVector2Array
for point in data.coordinates[0]:
verts.push_back(Vector2(point[0], point[1]))
var csg: CSGPolygon3D = CSGPolygon3D.new()
csg.polygon = verts
csg.name = "%s" % data.id
scene_root.add_child(csg)
csg.set_owner(scene_root)
csg.rotation_degrees.x = -90
csg.material = mat
csg.depth = 0.02
func _import_buildings(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var parent: Node3D = Node3D.new()
parent.name = data.id
scene_root.add_child(parent)
parent.set_owner(scene_root)
var house_scene : PackedScene = load(options.house_scene)
var num: int = 0
for building in data.coordinates:
# Get building boundaries
var coord_data: Dictionary = get_coord_data(building[0])
# Make the building
var m:Node3D = house_scene.instantiate()
#m.name = "building_%s" % num
m.name = "building_%s" % num
m.scale = Vector3(coord_data.width, 1, coord_data.depth)
m.position = coord_data.center
m.rotation.y = coord_data['rotation']
parent.add_child(m)
m.set_owner(scene_root)
num += 1
func _import_fields(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var parent: Node3D = Node3D.new()
parent.name = data.id
scene_root.add_child(parent)
parent.set_owner(scene_root)
var mat: StandardMaterial3D = StandardMaterial3D.new()
mat.albedo_color = Color(0.424, 0.38, 0.365)
var num: int = 0
for coord in data.coordinates:
var verts: PackedVector2Array
for point in coord[0]:
verts.push_back(Vector2(point[0], point[1]))
var csg: CSGPolygon3D = CSGPolygon3D.new()
csg.polygon = verts
csg.name = "%s_%s" % [data.id, num]
parent.add_child(csg)
csg.set_owner(scene_root)
csg.rotation_degrees.x = -90
csg.position.y += 0.01
csg.material = mat
csg.depth = 0.02
num += 1
func _import_palisade(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var parent: Node3D = Node3D.new()
parent.name = data.id
scene_root.add_child(parent)
parent.set_owner(scene_root)
var mat: StandardMaterial3D = StandardMaterial3D.new()
mat.albedo_color = Color(0.424, 0.38, 0.365)
var num: int = 0
for coord in data.coordinates:
var verts: PackedVector2Array
for point in coord:
verts.push_back(Vector2(point[0], point[1]))
# Create a path
var path: Path3D = Path3D.new()
path.name = "%s_%s" % [data.id, num]
parent.add_child(path)
path.set_owner(scene_root)
path.curve = Curve3D.new()
for point in coord:
path.curve.add_point(Vector3(point[0], 0, -point[1]))
# Add a CSGPolygon3D that follows the path
var csg: CSGPolygon3D = CSGPolygon3D.new()
csg.name = "%s_mesh_%s" % [data.id, num]
path.add_child(csg)
csg.set_owner(scene_root)
csg.mode = CSGPolygon3D.MODE_PATH
csg.path_node = NodePath("..")
csg.material = mat
csg.polygon = PackedVector2Array([
Vector2(-.5, -.01),
Vector2(-.5, 2),
Vector2(.5, 2),
Vector2(.5, -.01),
])
num += 1
func _import_planks(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var parent: Node3D = Node3D.new()
parent.name = data.id
scene_root.add_child(parent)
parent.set_owner(scene_root)
var mat: StandardMaterial3D = StandardMaterial3D.new()
mat.albedo_color = Color(0.722, 0.616, 0.541)
var num: int = 0
for geo in data.geometries:
# Create a path
var path: Path3D = Path3D.new()
path.name = "plank_%s" % num
parent.add_child(path)
path.set_owner(scene_root)
path.curve = Curve3D.new()
for coord in geo.coordinates:
path.curve.add_point(Vector3(coord[0], 0, -coord[1]))
# Add a CSGPolygon3D that follows the path
var csg: CSGPolygon3D = CSGPolygon3D.new()
csg.name = "plank_mesh_%s" % num
path.add_child(csg)
csg.set_owner(scene_root)
csg.mode = CSGPolygon3D.MODE_PATH
csg.path_node = NodePath("..")
csg.material = mat
csg.polygon = PackedVector2Array([
Vector2(-geo.width/2, -.01),
Vector2(-geo.width/2, .5),
Vector2(geo.width/2, .5),
Vector2(geo.width/2, -.01),
])
func _import_roads(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var parent: Node3D = Node3D.new()
parent.name = data.id
scene_root.add_child(parent)
parent.set_owner(scene_root)
var mat: StandardMaterial3D = StandardMaterial3D.new()
mat.albedo_color = options.col_road
var num: int = 0
for geo in data.geometries:
# Create a path
var path: Path3D = Path3D.new()
path.name = "road_%s" % num
parent.add_child(path)
path.set_owner(scene_root)
path.curve = Curve3D.new()
for coord in geo.coordinates:
path.curve.add_point(Vector3(coord[0], 0, -coord[1]))
# Add a CSGPolygon3D that follows the path
var csg: CSGPolygon3D = CSGPolygon3D.new()
csg.name = "road_mesh_%s" % num
path.add_child(csg)
csg.set_owner(scene_root)
csg.mode = CSGPolygon3D.MODE_PATH
csg.path_node = NodePath("..")
csg.material = mat
csg.polygon = PackedVector2Array([
Vector2(-geo.width/2, -.01),
Vector2(-geo.width/2, .02),
Vector2(geo.width/2, .02),
Vector2(geo.width/2, -.01),
])
num += 1
func _import_squares(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var parent: Node3D = Node3D.new()
parent.name = data.id
scene_root.add_child(parent)
parent.set_owner(scene_root)
var mat: StandardMaterial3D = StandardMaterial3D.new()
mat.albedo_color = options.col_road
var num: int = 0
for coord in data.coordinates:
var verts: PackedVector2Array
for point in coord[0]:
verts.push_back(Vector2(point[0], point[1]))
var csg: CSGPolygon3D = CSGPolygon3D.new()
csg.polygon = verts
csg.name = "%s_%s" % [data.id, num]
parent.add_child(csg)
csg.set_owner(scene_root)
csg.rotation_degrees.x = -90
csg.position.y += 0.01
csg.material = mat
csg.depth = 0.02
num += 1
func _import_trees(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var parent: Node3D = Node3D.new()
parent.name = data.id
scene_root.add_child(parent)
parent.set_owner(scene_root)
var tree_scene : PackedScene = load(options.tree_scene)
var num: int = 0
for coord in data.coordinates:
# Make the building
var m:Node3D = tree_scene.instantiate()
#m.name = "building_%s" % num
m.name = "tree_%s" % num
m.position = Vector3(coord[0], 0, -coord[1])
parent.add_child(m)
m.set_owner(scene_root)
num += 1
func _import_water(scene_root: Node3D, data: Variant, options: Dictionary) -> void:
var mat: StandardMaterial3D = StandardMaterial3D.new()
mat.albedo_color = options.col_water
var verts: PackedVector2Array
for point in data.coordinates[0][0]:
verts.push_back(Vector2(point[0], point[1]))
var csg: CSGPolygon3D = CSGPolygon3D.new()
csg.polygon = verts
csg.name = "%s" % data.id
scene_root.add_child(csg)
csg.set_owner(scene_root)
csg.rotation_degrees.x = -90
csg.position.y += 0.01
csg.material = mat
csg.depth = 0.02
# When there are 2 water sets, the first is an island cutout and second is
# an earth-sized rect.
# We need to change the cutout (water[0]) to be earth coloured, and change
# the earth node to be water coloured.
# Both nodes then need to be lowered by 0.01 so we're not overlapping fields,
# roads etc
if data.coordinates.size() > 1:
csg.material.albedo_color = options.col_earth
csg.position.y -= 0.01
var earth: CSGPolygon3D = scene_root.get_node("earth")
earth.material.albedo_color = options.col_water
earth.position.y -= 0.01
# Takes a relative path string and converts it to absolute from the current file.
func _abspath(path: String) -> String:
var dir: PackedStringArray = self.get_script().get_path().split('/')
dir.resize(dir.size() - 1)
return "%s/%s" % ["/".join(dir), path]
func get_coord_data(coords: Variant) -> Dictionary:
var dict: Dictionary = {}
# Convert coords to vectors
var points: Array[Vector3]
points.resize(4)
points[0] = Vector3(coords[0][0], 0, -coords[0][1])
points[1] = Vector3(coords[1][0], 0, -coords[1][1])
points[2] = Vector3(coords[2][0], 0, -coords[2][1])
points[3] = Vector3(coords[3][0], 0, -coords[3][1])
dict['width'] = points[1].distance_to(points[0])
dict['depth'] = points[3].distance_to(points[1])
dict['center'] = (points[1] + points[3]) / 2.0
#dict['rotation'] = points[2].angle_to(points[1])
dict['rotation'] = Vector2(coords[0][0], coords[0][1]).angle_to_point(Vector2(coords[1][0], coords[1][1]))
return dict