Last commit before the massive state refactor.

This commit is contained in:
2023-02-27 09:19:14 -08:00
parent cd0a5a2155
commit 3862a95332
4 changed files with 20 additions and 4 deletions

Submodule lib/SDL updated: 87a83787a3...9f8425a7a9

View File

@ -59,7 +59,7 @@ namespace Dawn {
* @param o The old, previous value of the property. * @param o The old, previous value of the property.
*/ */
template<class V> template<class V>
void onStatePropertyUpdated(StateProperty<V> *prop, V n, V o) { void _statePropertyUpdated(StateProperty<V> *prop, V n, V o) {
this->onStateUpdate(); this->onStateUpdate();
auto eff = &this->effects[prop]; auto eff = &this->effects[prop];
@ -69,5 +69,17 @@ namespace Dawn {
++itEff; ++itEff;
} }
} }
/**
* Internal method to listen for when a state property is disposed or
* destroyed so that it can be completely removed from this state owner.
*
* @tparam V Value type.
* @param prop Property that was destroyed.
*/
template<class V>
void _statePropertyDestroyed(StateProperty<V> *prop) {
this->effects.erase((void*)prop);
}
}; };
} }

View File

@ -18,7 +18,7 @@ namespace Dawn {
assertNotNull(this->owner); assertNotNull(this->owner);
auto old = this->value; auto old = this->value;
this->value = val; this->value = val;
this->owner->onStatePropertyUpdated(this, val, old); this->owner->_statePropertyUpdated(this, val, old);
} }
public: public:
@ -44,6 +44,10 @@ namespace Dawn {
return this->value; return this->value;
} }
~StateProperty() {
this->owner->_statePropertyDestroyed(this);
}
friend class StateOwner; friend class StateOwner;
}; };
} }