mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
30 lines
870 B
GDScript
30 lines
870 B
GDScript
extends Sampler
|
|
class_name SamplerPriority
|
|
|
|
|
|
## Always sample the object with the highest priority in the queue.
|
|
|
|
|
|
## Get a reference.
|
|
func sample() -> Priority:
|
|
if len(possibilities) == 0:
|
|
return null
|
|
|
|
# FIXME: Change this to something more efficient when needed
|
|
var highest_possibility: Priority = null
|
|
for possibility in possibilities:
|
|
Log.p(self, "Possibility: %s (%d)" % [possibility, possibility.priority])
|
|
if highest_possibility == null or possibility.priority > highest_possibility.priority:
|
|
highest_possibility = possibility
|
|
|
|
if highest_possibility == null:
|
|
return null
|
|
|
|
Log.p(self, "Sampled: %s (%d)" % [highest_possibility, highest_possibility.priority])
|
|
return highest_possibility.get_ref()
|
|
|
|
func get_refs() -> Array[Node]:
|
|
var refs: Array[Node] = []
|
|
for possibility in possibilities:
|
|
refs.append(possibility.get_ref())
|
|
return refs
|