OpenClonk
C4PacketLeagueRoundResults Class Reference

#include <C4RoundResults.h>

Inheritance diagram for C4PacketLeagueRoundResults:
[legend]
Collaboration diagram for C4PacketLeagueRoundResults:
[legend]

Public Member Functions

 C4PacketLeagueRoundResults ()=default
 
 C4PacketLeagueRoundResults (const char *szResultsString, bool fSuccess, const C4RoundResultsPlayers &Players)
 
 C4PacketLeagueRoundResults (const char *szResultsString, bool fSuccess)
 
void CompileFunc (StdCompiler *pComp) override
 
C4NetIOPacket pack (const C4NetIO::addr_t &addr=C4NetIO::addr_t()) const
 
C4NetIOPacket pack (uint8_t cStatus, const C4NetIO::addr_t &addr=C4NetIO::addr_t()) const
 
void unpack (const C4NetIOPacket &Pkt, char *pStatus=nullptr)
 

Public Attributes

C4RoundResultsPlayers Players
 
StdCopyStrBuf sResultsString
 
bool fSuccess {false}
 

Detailed Description

Definition at line 213 of file C4RoundResults.h.

Constructor & Destructor Documentation

◆ C4PacketLeagueRoundResults() [1/3]

C4PacketLeagueRoundResults::C4PacketLeagueRoundResults ( )
default

◆ C4PacketLeagueRoundResults() [2/3]

C4PacketLeagueRoundResults::C4PacketLeagueRoundResults ( const char *  szResultsString,
bool  fSuccess,
const C4RoundResultsPlayers Players 
)
inline

Definition at line 221 of file C4RoundResults.h.

221 : Players(Players), sResultsString(szResultsString), fSuccess(fSuccess) {} // ctor
C4RoundResultsPlayers Players

◆ C4PacketLeagueRoundResults() [3/3]

C4PacketLeagueRoundResults::C4PacketLeagueRoundResults ( const char *  szResultsString,
bool  fSuccess 
)
inline

Definition at line 222 of file C4RoundResults.h.

222 : sResultsString(szResultsString), fSuccess(fSuccess) {} // ctor

Member Function Documentation

◆ CompileFunc()

void C4PacketLeagueRoundResults::CompileFunc ( StdCompiler pComp)
overridevirtual

Implements C4PacketBase.

Definition at line 442 of file C4RoundResults.cpp.

443 {
444  pComp->Value(mkNamingAdapt(fSuccess, "Success", false));
445  pComp->Value(mkNamingAdapt(sResultsString, "ResultString", StdCopyStrBuf()));
446  pComp->Value(Players);
447 }
StdNamingAdapt< T > mkNamingAdapt(T &&rValue, const char *szName)
Definition: StdAdaptors.h:92
void Value(const T &rStruct)
Definition: StdCompiler.h:161

References fSuccess, mkNamingAdapt(), Players, sResultsString, and StdCompiler::Value().

Here is the call graph for this function:

◆ pack() [1/2]

C4NetIOPacket C4PacketBase::pack ( const C4NetIO::addr_t addr = C4NetIO::addr_t()) const
inherited

Definition at line 150 of file C4Packet2.cpp.

151 {
152  return C4NetIOPacket(DecompileToBuf<StdCompilerBinWrite>(*this), addr);
153 }

Referenced by MkC4NetIOPacket().

Here is the caller graph for this function:

◆ pack() [2/2]

C4NetIOPacket C4PacketBase::pack ( uint8_t  cStatus,
const C4NetIO::addr_t addr = C4NetIO::addr_t() 
) const
inherited

Definition at line 155 of file C4Packet2.cpp.

156 {
157  return C4NetIOPacket(DecompileToBuf<StdCompilerBinWrite>(mkInsertAdapt(mkDecompileAdapt(*this), cStatus)), addr);
158 }
StdInsertAdapt< T, I > mkInsertAdapt(T &&rObj, I &&rIns, bool fBefore=true)
Definition: StdAdaptors.h:469
StdDecompileAdapt< T > mkDecompileAdapt(const T &rValue)
Definition: StdAdaptors.h:153

References mkDecompileAdapt(), and mkInsertAdapt().

Here is the call graph for this function:

◆ unpack()

void C4PacketBase::unpack ( const C4NetIOPacket Pkt,
char *  pStatus = nullptr 
)
inherited

Definition at line 160 of file C4Packet2.cpp.

161 {
162  if (pStatus) *pStatus = Pkt.getStatus();
163  CompileFromBuf<StdCompilerBinRead>(*this, pStatus ? Pkt.getPBuf() : Pkt.getRef());
164 }
uint8_t getStatus() const
Definition: C4NetIO.h:319
StdBuf getPBuf() const
Definition: C4NetIO.h:322
C4NetIOPacket getRef() const
Definition: C4NetIO.h:325

References C4NetIOPacket::getPBuf(), C4NetIOPacket::getRef(), and C4NetIOPacket::getStatus().

Referenced by C4IDPacket::C4IDPacket(), and C4Network2IO::HandlePacket().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ fSuccess

bool C4PacketLeagueRoundResults::fSuccess {false}

Definition at line 218 of file C4RoundResults.h.

Referenced by CompileFunc().

◆ Players

C4RoundResultsPlayers C4PacketLeagueRoundResults::Players

Definition at line 216 of file C4RoundResults.h.

Referenced by CompileFunc().

◆ sResultsString

StdCopyStrBuf C4PacketLeagueRoundResults::sResultsString

Definition at line 217 of file C4RoundResults.h.

Referenced by CompileFunc().


The documentation for this class was generated from the following files: