I have the following component based architecture. How can I break out of the Manager's loop which is updating the Components, from within the Update function of a specific Component?
Component
class Component
{
virtual void Update() = 0;
};
Manager
class Manager
{
vector<Component*> List;
void Add(Component* cpnt)
{
List.push_back(cpnt);
}
void Loop()
{
while(1)
{
for (auto i = List.begin(); i != List.end(); i++)
i->Update();
}
}
};
Example
class Example : public Component
{
void Update()
{
// want to break out of mgr's while loop from here
}
};
int main()
{
Manager mgr;
mgr.Add(new Example());
mrg.Loop();
}
(Please note that I ignored accesors in this example for simplicity.)
