Class NationSummaryMessage


  • public class NationSummaryMessage
    extends ObjectMessage
    The message sent when summarizing a nation.
    • Constructor Detail

      • NationSummaryMessage

        public NationSummaryMessage​(Player player,
                                    NationSummary nationSummary)
        Create a new NationSummaryMessage for the specified player.
        Parameters:
        player - The Player to summarize.
        nationSummary - An optional NationSummary to attach.
      • NationSummaryMessage

        public NationSummaryMessage​(Game game,
                                    FreeColXMLReader xr)
                             throws javax.xml.stream.XMLStreamException
        Create a new NationSummaryMessage from a stream.
        Parameters:
        game - The Game containing the nation to summarize.
        xr - The FreeColXMLReader to read from.
        Throws:
        javax.xml.stream.XMLStreamException - if there is a problem reading the stream.
    • Method Detail

      • getPlayer

        private Player getPlayer​(Game game)
        Client side helper to get the player.
        Parameters:
        game - The Game to look for a player within.
        Returns:
        The player.
      • getNationSummary

        private NationSummary getNationSummary()
        Client side helper to get the summary.
        Returns:
        The summary.
      • aiHandler

        public void aiHandler​(FreeColServer freeColServer,
                              AIPlayer aiPlayer)
        AI-side handler for this message. AI handlers always return null. FIXME: One day the FreeColServer should devolve to AIMain.
        Overrides:
        aiHandler in class TrivialMessage
        Parameters:
        freeColServer - The FreeColServer handling the request.
        aiPlayer - The AIPlayer the message was sent to.
      • clientHandler

        public void clientHandler​(FreeColClient freeColClient)
        Client-side handler for this message. Client handlers always return null.
        Overrides:
        clientHandler in class TrivialMessage
        Parameters:
        freeColClient - The FreeColClient to handle this message.
      • serverHandler

        public ChangeSet serverHandler​(FreeColServer freeColServer,
                                       ServerPlayer serverPlayer)
        Server-side handler for this message.
        Overrides:
        serverHandler in class TrivialMessage
        Parameters:
        freeColServer - The FreeColServer handling the request.
        serverPlayer - The ServerPlayer that sent the request.
        Returns:
        A ChangeSet defining the response.