Developed for net4game.com (RolePlay), this SA-MP plugin provides precise timers for the server. It is written in Rust, a memory-safe language.
Simply install to your project:
sampctl package install bmisiak/samp-precise-timers
Include in your code and begin using the library:
#include <samp-precise-timers>
SA-MP's built-in timers experience progressively worse trigger inconsistency and suffer from poor performance and crashes due to invalid handling of arrays and state invalidation. This is written in Rust, which combines high-level ergonomics with the performance of a low-level language. As a result, the code is much cleaner, easily auditable, and more performant.
Take a look at the source to see the benefits.
Most other plugins, including the native OpenMP implementation, iterate over all the timers on every server tick. This plugin, instead, keeps track of the next timer to trigger, only checking one memory location on every tick, regardless of how many timers are scheduled.
- Creating new timers from callbacks works fine. ✔
- Supports strings and arrays properly without memory leaks. ✔
- Deleting/resetting a repeating timer from its callback works fine ✔
- Deleting/resetting a singular timer form its PAWN callback will gracefully fail. Set a new one instead.
Install Rust from rustup.rs. Afterwards, you are two commands away from being able to compile for SA-MP, which is a 32-bit application.
rustup target add i686-unknown-linux-gnu
Then, enter the project directory and execute:
cargo build --target=i686-unknown-linux-gnu --release
Note: You might need to install Visual Studio Build Tools.
rustup target add i686-pc-windows-msvc
Then, enter the project directory and execute:
cargo build --target=i686-pc-windows-msvc --release
If you like the code and would like to help out, feel free to submit a pull request. Let me know at [email protected] if you would like to join our team. 👋