Remove all elements from monitored_bodies and monitored_areas when processed
This commit is contained in:
parent
626ca08108
commit
03cddd36db
|
@ -192,7 +192,9 @@ void AreaSW::call_queries() {
|
||||||
for (Map<BodyKey, BodyState>::Element *E = monitored_bodies.front(); E;) {
|
for (Map<BodyKey, BodyState>::Element *E = monitored_bodies.front(); E;) {
|
||||||
|
|
||||||
if (E->get().state == 0) { // Nothing happened
|
if (E->get().state == 0) { // Nothing happened
|
||||||
E = E->next();
|
Map<BodyKey, BodyState>::Element *next = E->next();
|
||||||
|
monitored_bodies.erase(E);
|
||||||
|
E = next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -228,7 +230,9 @@ void AreaSW::call_queries() {
|
||||||
for (Map<BodyKey, BodyState>::Element *E = monitored_areas.front(); E;) {
|
for (Map<BodyKey, BodyState>::Element *E = monitored_areas.front(); E;) {
|
||||||
|
|
||||||
if (E->get().state == 0) { // Nothing happened
|
if (E->get().state == 0) { // Nothing happened
|
||||||
E = E->next();
|
Map<BodyKey, BodyState>::Element *next = E->next();
|
||||||
|
monitored_areas.erase(E);
|
||||||
|
E = next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,9 @@ void Area2DSW::call_queries() {
|
||||||
for (Map<BodyKey, BodyState>::Element *E = monitored_bodies.front(); E;) {
|
for (Map<BodyKey, BodyState>::Element *E = monitored_bodies.front(); E;) {
|
||||||
|
|
||||||
if (E->get().state == 0) { // Nothing happened
|
if (E->get().state == 0) { // Nothing happened
|
||||||
E = E->next();
|
Map<BodyKey, BodyState>::Element *next = E->next();
|
||||||
|
monitored_bodies.erase(E);
|
||||||
|
E = next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -228,7 +230,9 @@ void Area2DSW::call_queries() {
|
||||||
for (Map<BodyKey, BodyState>::Element *E = monitored_areas.front(); E;) {
|
for (Map<BodyKey, BodyState>::Element *E = monitored_areas.front(); E;) {
|
||||||
|
|
||||||
if (E->get().state == 0) { // Nothing happened
|
if (E->get().state == 0) { // Nothing happened
|
||||||
E = E->next();
|
Map<BodyKey, BodyState>::Element *next = E->next();
|
||||||
|
monitored_areas.erase(E);
|
||||||
|
E = next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue