General code improvements, progress step tracker implementation for worldgen, and work towards enemy behavior

This commit is contained in:
2024-01-23 21:45:52 +01:00
parent 3f465a708c
commit 49562ba9ce
11 changed files with 517 additions and 214 deletions

View File

@ -8,43 +8,51 @@ var _subset_count: int = 0
var _tracker: ProgressTracker = null
func _init(tracker: ProgressTracker, step_name: String):
self._tracker = tracker
self._step_name = step_name
# set_substeps: set the number of substeps for this step
## Sets the number of substeps for this step
func set_substeps(substeps: int):
self._subset_count = substeps
# substep: should be called when a substep is started
## Progresses to the next substep
func substep(message: String = ""):
self._subset_index += 1
self._message = message
self._tracker.progress_update.emit()
# complete: should be called when this step is done
## Completes this step
func complete():
self._tracker.step_complete.emit()
# get_step_name: get the name of this step
func get_step_name() -> String:
return self._step_name
# get_message: get the message for this step
## Returns the name of this step
func get_step_name() -> String:
return self._step_name
## Returns the message for this step
func get_message() -> String:
return self._message
# get_substep_index: get the index of the current substep
## Returns the index of the current substep
func get_substep_index() -> int:
return self._subset_index
# get_substep_count: get the number of substeps for this step
## Returns the number of substeps for this step
func get_substep_count() -> int:
return self._subset_count
# get_progress: get the progress of this step
## Returns the progress of this step
func get_progress() -> float:
if self._subset_count == 0:
return 0.0
else:
return float(self._subset_index) / float(self._subset_count)
return float(self._subset_index) / float(self._subset_count)