CTeamMsg.hh

00001 /*
00002 ** TowBowlTactics, a turn-based strategy football game.
00003 **
00004 ** Copyright (C) 2007-2010 The TBT Team.
00005 **
00006 ** This program is free software; you can redistribute it and/or
00007 ** modify it under the terms of the GNU General Public License
00008 ** as published by the Free Software Foundation; either version 2
00009 ** of the License, or (at your option) any later version.
00010 **
00011 ** The complete GNU General Public Licence Notice can be found as the
00012 ** `NOTICE' file in the root directory.
00013 **
00014 ** The TBT Team consists of people listed in the `AUTHORS' file.
00015 */
00016 
00017 #ifndef CTEAMMSG_HH_
00018 # define CTEAMMSG_HH_
00019 
00020 # include "CTeam.hh"
00021 
00029 class CTeamMsg
00030 {
00031 public:
00032   CTeamMsg(CRules* r);
00033   ~CTeamMsg();
00034 
00035   void setTeam(int team_id, CTeam *t);
00036 
00037 private:
00038   CTeam* getTeam(int token, int team_id);
00039 
00040   void msgTeamInfo(const MsgTeamInfo* m);
00041   void msgPlayerCreate(const MsgPlayerCreate* m);
00042   void msgAction(const MsgAction* m);
00043   void msgReroll(const MsgReroll* m);
00044   void msgTouchdooown(const MsgTouchdooown* m);
00045 
00046   CRules* r_;
00047   CTeam* t_[2];
00048 };
00049 
00050 #endif /* !CTEAMMSG_HH_ */
Generated on Mon Apr 5 21:17:12 2010 for Stechec/TBT by  doxygen 1.6.3