We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The players that, for any reason, are logged out from the RdServer are never updated locally.
Two possible solutions are:
The text was updated successfully, but these errors were encountered:
Solution 1 seems okay for now.
Additionally, if a robotDevastation instance crashes, it is not logged out. Maybe add a heartbeat?
Sorry, something went wrong.
Note for future @David-Estevez: implement check myself is in received player list.
Done at af93a90. Note for future David is left as a separe issue (see #83).
Provide trivial copy ctor and assignment operator for singleton classes
2272d97
One could still create copies with the following code: // Create singleton MockImageManager::RegisterManager(); ImageManager * im = ImageManager::getImageManager(MockImageManager::id); // Violate singleton's contract with copy constructor MockImageManager * temp = (MockImageManager*)im; // for conciseness MockImageManager mim1(*temp); // copy-ctor #1 MockImageManager mim2 = *temp; // copy-ctor #2 MockImageManager mim3 = MockImageManager(*temp); // copy-ctor #3 MockImageManager *pmim = new MockImageManager(*temp); // copy-ctor #4 // Copy assignment operator mim1 = mim3; See also http://stackoverflow.com/a/6811055
David-Estevez
No branches or pull requests
The players that, for any reason, are logged out from the RdServer are never updated locally.
Two possible solutions are:
The text was updated successfully, but these errors were encountered: