Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
* Added comparison operators
* Added type casting helper functions
|
|
|
|
specialized variant of std::shared_ptr that enforces unique ownership
* This is intended to be used by external code unable to track object lifetime such as custom scripting engines
|
|
|
|
|
|
|
|
|
|
|
|
* Core/Config: Implement config override with env vars
Implement overriding of configuration from the .conf file with environment variables.
Environment variables keys are autogenerated based on the keys defined in .conf file.
Usage example:
$ export TC_DATA_DIR=/usr
$ TC_WORLD_SERVER_PORT=8080 ./worldserver
* Core/Config Fix typo in logs
Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com>
* Core/Config Fix code style in EnvVarForIniKey
Co-authored-by: Shauren <shauren.trinity@gmail.com>
* Update tests/common/Config.cpp
* Apply suggestions from code review
Co-authored-by: Peter Keresztes Schmidt <carbenium@outlook.com>
* Apply suggestions from code review
Co-authored-by: Peter Keresztes Schmidt <carbenium@outlook.com>
Co-authored-by: Anton Popovichenko <anton.popovichenko@mendix.com>
Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com>
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Co-authored-by: Peter Keresztes Schmidt <carbenium@outlook.com>
(cherry picked from commit 1ddd9dc19cc1df1a1ab8c6123283999f9dea6760)
|
|
#25463)
(cherry picked from commit 1eca51b417678b9a48b28552925d5694105f82bb)
|
|
(cherry picked from commit 75f9e7396e35360f3016cc0cb21e72e20f5d96d5)
|
|
(cherry picked from commit f45aa5cac1579e87cbc599ffb58e10e662066792)
|
|
(cherry picked from commit 3fbbe7cfbe1bc51db12bdc1ec7b21c16d1716366)
|
|
(cherry picked from commit 5394b2ef0f1c7b48e8886257b93698358abb575f)
|
|
(cherry picked from commit 86e6438008cf5179a2ff3b22c2e0459ee7aaa20c)
|
|
(cherry picked from commit 2f7d2ef3e979ecd0536f3a3713e56c8e59652a47)
|
|
(cherry picked from commit 8ce3635d39dbdd101ddf180a66c483162df99c04)
|
|
Closes #25349
(cherry picked from commit f8a5783327f5ef5606453bcb9c906ba1297538ff)
|
|
is set to hierarchical-folders
(cherry picked from commit 19f69fcf060c4abba0cd3102529a4203eecac394)
|
|
(cherry picked from commit 228696bf80bcd55d35445cd24ae119020c310f88)
|
|
New methods:
TimeTrackerSmall(Milliseconds expiry);
void Update(Milliseconds diff);
void Reset(Milliseconds expiry)
Milliseconds GetExpiry() const
Removed methods:
int32 GetExpiry() const
Also add basic unit tests.
Core/Scripts: Use std::chrono interface of TimeTrackerSmall
(cherry picked from commit e55516348dbabaa8c9d559426315f3f70967acaa)
|
|
(cherry picked from commit e6f36f83b8af4d973a96f01c6095b075dd12f5d5)
|
|
(cherry picked from commit 7865c1c197f4eb9165ef3ab26eb4f750a5b58960)
|
|
DelayEvents(Milliseconds delay) had different semantics than
DelayEvents(Milliseconds delay, uint32 group).
The first method delayed the events only in the case the internal timer
already ticked at least for the amount of delay. In contrast the latter method
delayed events regardless of the internal timer value.
Use the latter semantics for DelayEvents(Milliseconds delay) as well which makes
the outcome more predictable. Adapt tests accordingly.
(cherry picked from commit 4470b9122379dc846b322a441951a03913912b71)
|
|
With the switch to std::chrono return type of GetTimeUntilEvent
we don't run into an overflow condition which happend with the previous
uint32 return value if the events scheduled execution time is in the past.
Test for this case.
(cherry picked from commit e877f988d1c4e1361612f3d5c4ebe915f746aee5)
|
|
(cherry picked from commit 8cb35b0d5f1462387033e6bd2f99d0ea829fdcd8)
|
|
(cherry picked from commit 7950275697c9d48781ad61cf3749e0392ee660bc)
|
|
To enable the test suite, make sure to configure CMake with -DBUILD_TESTING=1 , since it is disabled by default. The catch2 dependency will be downloaded during configure time.
Also add a new target "tests-common", which includes unit tests for the "common" project. To finally run the tests use the "test" target.
CircleCI: Run unit tests
(cherry picked from commit 6a28ee7b2a4269aa7e43265d1cd0067537e3e883)
|