mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
55 lines
2.0 KiB
C
55 lines
2.0 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_cmd.h Command definitions related to league tables. */
|
||
|
|
||
|
#ifndef LEAGUE_CMD_H
|
||
|
#define LEAGUE_CMD_H
|
||
|
|
||
|
#include "command_aux.h"
|
||
|
|
||
|
struct LeagueTableCmdData : public CommandAuxiliarySerialisable<LeagueTableCmdData> {
|
||
|
std::string title;
|
||
|
std::string header;
|
||
|
std::string footer;
|
||
|
|
||
|
virtual void Serialise(CommandSerialisationBuffer &buffer) const override
|
||
|
{
|
||
|
buffer.Send_string(this->title);
|
||
|
buffer.Send_string(this->header);
|
||
|
buffer.Send_string(this->footer);
|
||
|
}
|
||
|
|
||
|
CommandCost Deserialise(CommandDeserialisationBuffer &buffer)
|
||
|
{
|
||
|
buffer.Recv_string(this->title, SVS_ALLOW_CONTROL_CODE | SVS_REPLACE_WITH_QUESTION_MARK);
|
||
|
buffer.Recv_string(this->header, SVS_ALLOW_CONTROL_CODE | SVS_REPLACE_WITH_QUESTION_MARK);
|
||
|
buffer.Recv_string(this->footer, SVS_ALLOW_CONTROL_CODE | SVS_REPLACE_WITH_QUESTION_MARK);
|
||
|
return CommandCost();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
struct LeagueTableElementCmdData : public CommandAuxiliarySerialisable<LeagueTableElementCmdData> {
|
||
|
std::string text_str;
|
||
|
std::string score;
|
||
|
|
||
|
virtual void Serialise(CommandSerialisationBuffer &buffer) const override
|
||
|
{
|
||
|
buffer.Send_string(this->text_str);
|
||
|
buffer.Send_string(this->score);
|
||
|
}
|
||
|
|
||
|
CommandCost Deserialise(CommandDeserialisationBuffer &buffer)
|
||
|
{
|
||
|
buffer.Recv_string(this->text_str, SVS_ALLOW_CONTROL_CODE | SVS_REPLACE_WITH_QUESTION_MARK);
|
||
|
buffer.Recv_string(this->score, SVS_ALLOW_CONTROL_CODE | SVS_REPLACE_WITH_QUESTION_MARK);
|
||
|
return CommandCost();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif /* LEAGUE_CMD_H */
|