mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
Reduce game implementation repetition (#122)
* [Games] Add macro to replace valve game query implementations This somewhat reduces repeated code (#120), and also adds auto-generated doc comments to all valve game query functions. * [Games] Add macro to replace gamespy game query implementations This somewhat reduces repeated code (#120), and also adds auto-generated doc comments to all gamespy game query functions. * [Games] Add macro to replace quake game query implementations This somewhat reduces repeated code (#120), and also adds auto-generated doc comments to all quake game query functions. * [Games] Move all valve game modules into a single file using macros Vastly reduces the number of files. However does break the game definition-per-file test, so that was removed. * [Games] Move all quake game modules into a single file using macros * [Games] Move all gamespy game modules into a single file using macros * [Docs] Update CHANGELOG * [Docs] Improve game query function generation macro documentation * [Games] Add missed Halo: Combat Evolved to gamespy
This commit is contained in:
parent
c8a93357cf
commit
3b9c784e70
61 changed files with 250 additions and 872 deletions
9
src/games/gamespy.rs
Normal file
9
src/games/gamespy.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
//! Gamespy game query modules
|
||||
|
||||
use crate::protocols::gamespy::game_query_mod;
|
||||
|
||||
game_query_mod!(battlefield1942, "Battlefield 1942", one, 23000);
|
||||
game_query_mod!(crysiswars, "Crysis Wars", three, 64100);
|
||||
game_query_mod!(hce, "Halo: Combat Evolved", two, 2302);
|
||||
game_query_mod!(serioussam, "Serious Sam", one, 25601);
|
||||
game_query_mod!(unrealtournament, "Unreal Tournament", one, 7778);
|
||||
Loading…
Add table
Add a link
Reference in a new issue