mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
83 lines
2.1 KiB
GDScript
83 lines
2.1 KiB
GDScript
tool
|
|
extends VoxelmanLevelGenerator
|
|
class_name MainPlanetGenerator
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
const planet_folder : String = "res://data/planets/"
|
|
|
|
export(int) var _force_planet : int = -1
|
|
export(int) var _level_seed : int
|
|
export(bool) var _spawn_mobs : bool
|
|
|
|
var _world : VoxelWorld
|
|
var _planet : Planet
|
|
var _library : VoxelmanLibrary
|
|
|
|
func setup(world : VoxelWorld, level_seed : int, spawn_mobs : bool, library: VoxelmanLibrary) -> void:
|
|
_level_seed = level_seed
|
|
_world = world
|
|
_spawn_mobs = spawn_mobs
|
|
_library = library
|
|
|
|
create_planet()
|
|
|
|
func _generate_chunk(chunk : VoxelChunk) -> void:
|
|
if _planet == null:
|
|
return
|
|
|
|
_planet.generate_chunk(chunk, _spawn_mobs)
|
|
|
|
func create_planet():
|
|
var planet_files : Array
|
|
|
|
var dir = Directory.new()
|
|
if dir.open(planet_folder) == OK:
|
|
dir.list_dir_begin()
|
|
var file_name = dir.get_next()
|
|
while (file_name != ""):
|
|
if not dir.current_is_dir():
|
|
planet_files.append(file_name)
|
|
|
|
file_name = dir.get_next()
|
|
|
|
if planet_files.size() == 0:
|
|
return
|
|
|
|
var ind : int
|
|
if _force_planet == -1:
|
|
seed(_level_seed)
|
|
ind = randi() % planet_files.size()
|
|
else:
|
|
ind = _force_planet
|
|
|
|
var planet_data : PlanetData = ResourceLoader.load(planet_folder + planet_files[ind], "PlanetData")
|
|
|
|
if planet_data == null:
|
|
print("planet_data is null!")
|
|
return
|
|
|
|
print("planet loaded: " + planet_data.resource_path)
|
|
|
|
if planet_data.target_script != null:
|
|
_planet = planet_data.target_script.new()
|
|
|
|
if _planet == null:
|
|
print("_planet is null. wrong type? " + planet_data.resource_path)
|
|
return
|
|
elif planet_data.target_class_name != "":
|
|
if not ClassDB.class_exists(planet_data.target_class_name):
|
|
print("class doesnt exists" + planet_data.resource_path)
|
|
return
|
|
|
|
_planet = ClassDB.instance(planet_data.target_class_name)
|
|
else:
|
|
_planet = Planet.new()
|
|
|
|
_planet.current_seed = _level_seed
|
|
_planet.data = planet_data
|
|
_planet.setup()
|
|
_planet.setup_library(_library)
|