The global RNG state is now protected from simultaneous accesses by
employing a mutex.
Performance sensitive code requiring generation of a large number of
random numbers can utilize `LocalRNG`. This is not thread-safe but
provides a much greater throughput. `LocalRNG` is seeded by the global
RNG only at construction time.
* Skip dead players when spectating between spawns
This makes e.g. spectating the last player alive in arena easier
* Add skip dead players config option
* Backport ngspades’s FreeType2 font renderer
* Change system fonts
* Fix SWImage::Update
* Preliminary custom TTF/OTF font support
* Fix font rendering
* Adjust design
* Update devpak
* Fix to compile on Linux
* Update .travis.yml
* Update external libraries
* Update .travis.yml
* Attempt to fix Travis CI build
* Add missing sudo to travis.yml
* Nevermind the changes, it didn't work
* Update .travis.yml
* Update .travis.yml and CMakeLists.txt
Sources/Client/Client.cpp:
+ Added call to Client::DrawDisconnectScreen() in client destructor
Sources/Client/Client.h:
+ Added new prototype Client::DrawDisconnectScreen()
Sources/Client/Client_Draw.cpp:
+ Added function declaration for Client::DrawDisconnectScreen()
* New Localization Introduced: "Client":"Disconnecting..."
Resources/de/openspades.po:
+ Added rudimentary German translation for "Client":"Disconnecting..."
Resources/ja/openspades.po:
+ Added rudimentary Japanese translation for "Client":"Disconnecting..."
Resources/ko/openspades.po:
+ Added rudimentary Korean translation for "Client":"Disconnecting..."
Resources/pl_PL/pl_PL:
+ Added rudimentary Polish translation for "Client":"Disconnecting..."
Resources/pot/openspades.pot:
+ Added translation entry for "Client":"Disconnecting..."
Resources/ru/openspades.po:
+ Added rudimentary Russian translation for "Client":"Disconnecting..."
I revived e481553 commit back, add invert support (`if (!cg_invertMouseY) y = y;`) and applied this to all spectator mode.
Commented condition is unnecessary now.
Now both spectator modes behaves exactly like in Ace of Spades.