mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
// SONIC ROBO BLAST 2
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
|
// Copyright (C) 2011-2016 by Matthew "Inuyasha" Walsh.
|
|
// Copyright (C) 1999-2018 by Sonic Team Junior.
|
|
// Copyright (C) 2023 by AJ "Tyron" Martinez
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file k_serverstats.h
|
|
/// \brief serverside stat tracking definitions
|
|
|
|
#ifndef __SERVERSTATS_H__
|
|
#define __SERVERSTATS_H__
|
|
|
|
#include "doomdef.h" // MAXPLAYERNAME
|
|
#include "g_input.h" // Input related stuff
|
|
#include "string.h" // strcpy etc
|
|
#include "g_game.h" // game CVs
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SERVERSTATSFILE "srvstats.dat"
|
|
#define SERVERSTATSHEADER "Doctor Robotnik's Ring Racers Server Stats"
|
|
#define SERVERSTATSVER 2
|
|
|
|
struct serverplayer_t
|
|
{
|
|
uint8_t public_key[PUBKEYLENGTH];
|
|
UINT32 lastseen;
|
|
UINT16 powerlevels[PWRLV_NUMTYPES];
|
|
UINT32 finishedrounds;
|
|
|
|
UINT32 hash; // Not persisted! Used for early outs during key comparisons
|
|
};
|
|
|
|
void SV_SaveStats(void);
|
|
|
|
void SV_LoadStats(void);
|
|
|
|
serverplayer_t *SV_GetStatsByKey(uint8_t *key);
|
|
serverplayer_t *SV_GetStatsByPlayerIndex(UINT8 p);
|
|
serverplayer_t *SV_GetStats(player_t *player);
|
|
|
|
void SV_UpdateStats(void);
|
|
|
|
void SV_BumpMatchStats(void);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif
|