| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- /*
- * Copyright (c) 2012-2020 Daniele Bartolini and individual contributors.
- * License: https://github.com/dbartolini/crown/blob/master/LICENSE
- */
- using Gee;
- namespace Crown
- {
- public class Unit
- {
- public Database _db;
- public Guid _unit;
- public Database _prefabs;
- public Unit(Database db, Guid unit, Database? prefabs)
- {
- _db = db;
- _unit = unit;
- _prefabs = prefabs != null ? prefabs : new Database();
- }
- public Value? get_component_property(Guid component_id, string key)
- {
- // Search in components
- {
- Value? components = _db.get_property(_unit, "components");
- if (components != null && ((HashSet<Guid?>)components).contains(component_id))
- return _db.get_property(component_id, key);
- }
- // Search in modified components
- {
- Value? value = _db.get_property(_unit, "modified_components.#" + component_id.to_string() + "." + key);
- if (value != null)
- return value;
- }
- // Search in prefab's components
- {
- Value? value = _db.get_property(_unit, "prefab");
- if (value != null)
- {
- string prefab = (string)value;
- Value? pcvalue = _prefabs.get_property(GUID_ZERO, prefab + ".components");
- if (pcvalue != null)
- {
- HashSet<Guid?> prefab_components = (HashSet<Guid?>)pcvalue;
- if (prefab_components.contains(component_id))
- return _prefabs.get_property(component_id, key);
- }
- }
- }
- assert(false);
- return null;
- }
- public bool get_component_property_bool(Guid component_id, string key)
- {
- return (bool)get_component_property(component_id, key);
- }
- public double get_component_property_double(Guid component_id, string key)
- {
- return (double)get_component_property(component_id, key);
- }
- public string get_component_property_string(Guid component_id, string key)
- {
- return (string)get_component_property(component_id, key);
- }
- public Guid get_component_property_guid(Guid component_id, string key)
- {
- return (Guid)get_component_property(component_id, key);
- }
- public Vector3 get_component_property_vector3(Guid component_id, string key)
- {
- return (Vector3)get_component_property(component_id, key);
- }
- public Quaternion get_component_property_quaternion(Guid component_id, string key)
- {
- return (Quaternion)get_component_property(component_id, key);
- }
- public void set_component_property_bool(Guid component_id, string key, bool val)
- {
- // Search in components
- {
- Value? components = _db.get_property(_unit, "components");
- if (components != null && ((HashSet<Guid?>)components).contains(component_id))
- {
- _db.set_property_bool(component_id, key, val);
- return;
- }
- }
- _db.set_property_bool(_unit, "modified_components.#" + component_id.to_string() + "." + key, val);
- }
- public void set_component_property_double(Guid component_id, string key, double val)
- {
- // Search in components
- {
- Value? components = _db.get_property(_unit, "components");
- if (components != null && ((HashSet<Guid?>)components).contains(component_id))
- {
- _db.set_property_double(component_id, key, val);
- return;
- }
- }
- _db.set_property_double(_unit, "modified_components.#" + component_id.to_string() + "." + key, val);
- }
- public void set_component_property_string(Guid component_id, string key, string val)
- {
- // Search in components
- {
- Value? components = _db.get_property(_unit, "components");
- if (components != null && ((HashSet<Guid?>)components).contains(component_id))
- {
- _db.set_property_string(component_id, key, val);
- return;
- }
- }
- _db.set_property_string(_unit, "modified_components.#" + component_id.to_string() + "." + key, val);
- }
- public void set_component_property_guid(Guid component_id, string key, Guid val)
- {
- // Search in components
- {
- Value? components = _db.get_property(_unit, "components");
- if (components != null && ((HashSet<Guid?>)components).contains(component_id))
- {
- _db.set_property_guid(component_id, key, val);
- return;
- }
- }
- _db.set_property_guid(_unit, "modified_components.#" + component_id.to_string() + "." + key, val);
- }
- public void set_component_property_vector3(Guid component_id, string key, Vector3 val)
- {
- // Search in components
- {
- Value? components = _db.get_property(_unit, "components");
- if (components != null && ((HashSet<Guid?>)components).contains(component_id))
- {
- _db.set_property_vector3(component_id, key, val);
- return;
- }
- }
- _db.set_property_vector3(_unit, "modified_components.#" + component_id.to_string() + "." + key, val);
- }
- public void set_component_property_quaternion(Guid component_id, string key, Quaternion val)
- {
- // Search in components
- {
- Value? components = _db.get_property(_unit, "components");
- if (components != null && ((HashSet<Guid?>)components).contains(component_id))
- {
- _db.set_property_quaternion(component_id, key, val);
- return;
- }
- }
- _db.set_property_quaternion(_unit, "modified_components.#" + component_id.to_string() + "." + key, val);
- }
- public static bool has_component_static(Database db, Database prefabs_db, Guid unit_id, string component_type, ref Guid ref_component_id)
- {
- // Search in components
- {
- Value? value = db.get_property(unit_id, "components");
- if (value != null)
- {
- HashSet<Guid?> components = (HashSet<Guid?>)value;
- foreach (Guid component_id in components)
- {
- if((string)db.get_property(component_id, "type") == component_type)
- {
- ref_component_id = component_id;
- return true;
- }
- }
- }
- }
- {
- string[] keys = db.get_keys(unit_id);
- foreach (string m in keys)
- {
- if (!m.has_prefix("modified_components.#"))
- continue;
- // 0 21 58 62
- // | | | |
- // modified_components.#f56420ad-7f9c-4cca-aca5-350f366e0dc0.type
- string id = m[21:57];
- string type_or_name = m[58:62];
- if (!type_or_name.has_prefix("type"))
- continue;
- Value? type = db.get_property(unit_id, m);
- if (type != null && (string)type == component_type)
- {
- ref_component_id = Guid.parse(id);
- return true;
- }
- }
- }
- {
- Value? value = db.get_property(unit_id, "prefab");
- if (value != null)
- {
- string prefab = (string)value;
- Value? pcvalue = prefabs_db.get_property(GUID_ZERO, prefab + ".components");
- if (pcvalue != null)
- {
- HashSet<Guid?> prefab_components = (HashSet<Guid?>)pcvalue;
- foreach (Guid component_id in prefab_components)
- {
- if((string)prefabs_db.get_property(component_id, "type") == component_type)
- {
- ref_component_id = component_id;
- return true;
- }
- }
- }
- }
- }
- return false;
- }
- /// Returns whether the unit has the component_type.
- public bool has_component(string component_type, ref Guid ref_component_id)
- {
- return Unit.has_component_static(_db, _prefabs, _unit, component_type, ref ref_component_id);
- }
- public void remove_component(Guid component_id)
- {
- _db.remove_from_set(GUID_ZERO, "components", component_id);
- }
- /// Returns whether the unit has a prefab.
- public bool has_prefab()
- {
- return _db.has_property(_unit, "prefab");
- }
- /// Returns whether the unit is a light unit.
- public bool is_light()
- {
- return has_prefab()
- && _db.get_property_string(_unit, "prefab") == "core/units/light";
- }
- }
- }
|