/** * 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 */ #if !defined _RENX_PLAYERINFO_H_HEADER #define _RENX_PLAYERINFO_H_HEADER /** * @file RenX_PlayerInfo.h * @brief Defines the PlayerInfo structure. */ #include #include #include #include "Jupiter/Reference_String.h" #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 adminType; Jupiter::StringS uuid; Jupiter::StringS character; Jupiter::StringS vehicle; Jupiter::StringS rdns; std::mutex rdns_mutex; 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; bool rdns_resolved = 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 std::thread rdns_thread; mutable int access = 0; mutable Jupiter::INIFile varData; // This will be replaced later with a more dedicated type. }; static Jupiter::ReferenceString rdns_pending = STRING_LITERAL_AS_REFERENCE("RDNS_PENDING"); } /** Re-enable warnings */ #if defined _MSC_VER #pragma warning(pop) #endif #endif // _RENX_PLAYERINFO_H_HEADER