62 lines
1.6 KiB
GDScript
62 lines
1.6 KiB
GDScript
extends RefCounted
|
|
class_name EntityFactory
|
|
## This class is used to create entities based on their type
|
|
|
|
const Switch = preload ("res://content/entities/switch/switch.tscn")
|
|
const Light = preload ("res://content/entities/light/light.tscn")
|
|
const Sensor = preload ("res://content/entities/sensor/sensor.tscn")
|
|
const MediaPlayer = preload ("res://content/entities/media_player/media_player.tscn")
|
|
const Camera = preload ("res://content/entities/camera/camera.tscn")
|
|
const ButtonEntity = preload ("res://content/entities/button/button.tscn")
|
|
const NumberEntity = preload ("res://content/entities/number/number.tscn")
|
|
const LineGraphEntity = preload ("res://content/entities/line_chart/line_chart.tscn")
|
|
|
|
static func create_entity(id: String, type=null):
|
|
var entity = null
|
|
|
|
if type == null:
|
|
type = id.split(".")[0]
|
|
|
|
match type:
|
|
"switch":
|
|
entity = Switch.instantiate()
|
|
"light":
|
|
entity = Light.instantiate()
|
|
"sensor":
|
|
entity = Sensor.instantiate()
|
|
"media_player":
|
|
entity = MediaPlayer.instantiate()
|
|
"camera":
|
|
entity = Camera.instantiate()
|
|
"button":
|
|
entity = ButtonEntity.instantiate()
|
|
"number":
|
|
entity = NumberEntity.instantiate()
|
|
"line_chart":
|
|
entity = LineGraphEntity.instantiate()
|
|
_:
|
|
return null
|
|
|
|
entity.entity_id = id
|
|
return entity
|
|
|
|
static func get_entity_icon(type: String) -> String:
|
|
match type:
|
|
"switch":
|
|
return "toggle_on"
|
|
"light":
|
|
return "lightbulb"
|
|
"sensor":
|
|
return "sensors"
|
|
"media_player":
|
|
return "play_circle"
|
|
"camera":
|
|
return "photo_camera"
|
|
"button":
|
|
return "radio_button_checked"
|
|
"number":
|
|
return "sliders"
|
|
"line_chart":
|
|
return "finance"
|
|
_:
|
|
return "question_mark" |