mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
eaae0bb5e7
for i in `find src -type f|grep -v 3rdparty/fmt|grep -v 3rdparty/catch2|grep -v 3rdparty/opengl|grep -v stdafx.h`; do sed 's/uint16& /uint16 \&/g;s/int8\([ >*),;[]\)/int8_t\1/g;s/int16\([ >*),;[]\)/int16_t\1/g;s/int32\([ >*),;[]\)/int32_t\1/g;s/int64\([ >*),;[]\)/int64_t\1/g;s/ uint32(/ uint32_t(/g;s/_uint8_t/_uint8/;s/Uint8_t/Uint8/;s/ft_int64_t/ft_int64/g;s/uint64$/uint64_t/;s/WChar/char32_t/g;s/char32_t char32_t/char32_t WChar/' -i $i; done
69 lines
2.5 KiB
C++
69 lines
2.5 KiB
C++
/*
|
|
* This file is part of OpenTTD.
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/** @file league_base.h %LeagueTable base class. */
|
|
|
|
#ifndef LEAGUE_BASE_H
|
|
#define LEAGUE_BASE_H
|
|
|
|
#include "company_type.h"
|
|
#include "goal_type.h"
|
|
#include "league_type.h"
|
|
#include "core/pool_type.hpp"
|
|
|
|
bool IsValidLink(Link link);
|
|
|
|
typedef Pool<LeagueTableElement, LeagueTableElementID, 64, 64000> LeagueTableElementPool;
|
|
extern LeagueTableElementPool _league_table_element_pool;
|
|
|
|
typedef Pool<LeagueTable, LeagueTableID, 4, 256> LeagueTablePool;
|
|
extern LeagueTablePool _league_table_pool;
|
|
|
|
|
|
/**
|
|
* Struct about league table elements.
|
|
* Each LeagueTable is composed of one or more elements. Elements are sorted by their rating (higher=better).
|
|
**/
|
|
struct LeagueTableElement : LeagueTableElementPool::PoolItem<&_league_table_element_pool> {
|
|
LeagueTableID table; ///< Id of the table which this element belongs to
|
|
int64_t rating; ///< Value that determines ordering of elements in the table (higher=better)
|
|
CompanyID company; ///< Company Id to show the color blob for or INVALID_COMPANY
|
|
std::string text; ///< Text of the element
|
|
std::string score; ///< String representation of the score associated with the element
|
|
Link link; ///< What opens when element is clicked
|
|
|
|
/**
|
|
* We need an (empty) constructor so struct isn't zeroed (as C++ standard states)
|
|
*/
|
|
LeagueTableElement() { }
|
|
|
|
/**
|
|
* (Empty) destructor has to be defined else operator delete might be called with nullptr parameter
|
|
*/
|
|
~LeagueTableElement() { }
|
|
};
|
|
|
|
|
|
/** Struct about custom league tables */
|
|
struct LeagueTable : LeagueTablePool::PoolItem<&_league_table_pool> {
|
|
std::string title; ///< Title of the table
|
|
std::string header; ///< Text to show above the table
|
|
std::string footer; ///< Text to show below the table
|
|
|
|
/**
|
|
* We need an (empty) constructor so struct isn't zeroed (as C++ standard states)
|
|
*/
|
|
LeagueTable() { }
|
|
|
|
/**
|
|
* (Empty) destructor has to be defined else operator delete might be called with nullptr parameter
|
|
*/
|
|
~LeagueTable() { }
|
|
};
|
|
|
|
#endif /* LEAGUE_BASE_H */
|