Last commit before the massive state refactor.
This commit is contained in:
2
lib/SDL
2
lib/SDL
Submodule lib/SDL updated: 87a83787a3...9f8425a7a9
Submodule lib/openal-soft updated: d66107e9f0...2fd52d58cd
@ -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);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
Reference in New Issue
Block a user