You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.7 KiB
99 lines
2.7 KiB
/**
|
|
* Copyright (C) 2014-2016 Jessica James.
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* Written by Jessica James <jessica.aj@outlook.com>
|
|
*/
|
|
|
|
#if !defined _RENX_PLAYERINFO_H_HEADER
|
|
#define _RENX_PLAYERINFO_H_HEADER
|
|
|
|
/**
|
|
* @file RenX_PlayerInfo.h
|
|
* @brief Defines the PlayerInfo structure.
|
|
*/
|
|
|
|
#include <chrono>
|
|
#include "Jupiter/String.h"
|
|
#include "Jupiter/INIFile.h"
|
|
#include "RenX.h"
|
|
|
|
/** DLL Linkage Nagging */
|
|
#if defined _MSC_VER
|
|
#pragma warning(push)
|
|
#pragma warning(disable: 4251)
|
|
#endif
|
|
|
|
namespace RenX
|
|
{
|
|
|
|
/**
|
|
* @brief Includes all of the tracked information about a player.
|
|
*/
|
|
struct RENX_API PlayerInfo
|
|
{
|
|
std::chrono::steady_clock::time_point joinTime = std::chrono::steady_clock::now();
|
|
|
|
// TODO: Add backpack
|
|
Jupiter::StringS name;
|
|
Jupiter::StringS ip;
|
|
Jupiter::StringS rdns;
|
|
Jupiter::StringS adminType;
|
|
Jupiter::StringS uuid;
|
|
Jupiter::StringS character;
|
|
Jupiter::StringS vehicle;
|
|
uint64_t steamid = 0;
|
|
uint32_t ip32 = 0;
|
|
uint16_t ban_flags = 0;
|
|
uint8_t exemption_flags = 0;
|
|
TeamType team = TeamType::Other;
|
|
int id = 0;
|
|
bool isBot = false;
|
|
bool is_dev = false;
|
|
unsigned short ping = 0;
|
|
double score = 0.0f;
|
|
double credits = 0.0f;
|
|
unsigned int global_rank = 0;
|
|
unsigned int local_rank = 0;
|
|
unsigned int kills = 0;
|
|
unsigned int deaths = 0;
|
|
unsigned int suicides = 0;
|
|
unsigned int headshots = 0;
|
|
unsigned int vehicleKills = 0;
|
|
unsigned int buildingKills = 0;
|
|
unsigned int defenceKills = 0;
|
|
unsigned int wins = 0;
|
|
unsigned int loses = 0;
|
|
unsigned int beaconPlacements = 0;
|
|
unsigned int beaconDisarms = 0;
|
|
unsigned int proxy_placements = 0;
|
|
unsigned int proxy_disarms = 0;
|
|
unsigned int captures = 0;
|
|
unsigned int steals = 0;
|
|
unsigned int stolen = 0;
|
|
|
|
mutable Jupiter::StringS gamePrefix;
|
|
mutable Jupiter::StringS formatNamePrefix;
|
|
mutable int access = 0;
|
|
mutable Jupiter::INIFile varData; // This will be replaced later with a more dedicated type.
|
|
};
|
|
|
|
}
|
|
|
|
/** Re-enable warnings */
|
|
#if defined _MSC_VER
|
|
#pragma warning(pop)
|
|
#endif
|
|
|
|
#endif // _RENX_PLAYERINFO_H_HEADER
|