/[fgs]/fgs/src/roomproc.cc
ViewVC logotype

Diff of /fgs/src/roomproc.cc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by drysdam, Mon Sep 15 23:33:55 2003 UTC revision 1.11 by drysdam, Tue Sep 16 01:33:35 2003 UTC
# Line 77  struct open_game Line 77  struct open_game
77    int extraTime;    int extraTime;
78    int movesTime;    int movesTime;
79    std::string description;    std::string description;
80    std::pair<std::string, std::string> ratingRange;    std::pair<int, int> ratingRange;
81  };  };
82    
83  struct negotiated_game  struct negotiated_game
# Line 767  int com_roompostopengame(int p, param_li Line 767  int com_roompostopengame(int p, param_li
767    int r = param[0].val.integer;    int r = param[0].val.integer;
768    GameType gtype = (GameType)param[1].val.integer;    GameType gtype = (GameType)param[1].val.integer;
769    TimeType ttype = (TimeType)param[2].val.integer;    TimeType ttype = (TimeType)param[2].val.integer;
770    std::string lowrank = param[3].val.string;    int lowrank = param[3].val.integer;
771    std::string highrank = param[4].val.string;    int highrank = param[4].val.integer;
772    std::string desc = param[5].val.string;    std::string desc = param[5].val.string;
773        
774    // lookup room    // lookup room
# Line 837  int com_roomlistopengames(int p, param_l Line 837  int com_roomlistopengames(int p, param_l
837      s += ss.str();      s += ss.str();
838      s += " ";      s += " ";
839      //lowend      //lowend
840      s += i->second.ratingRange.first;      ss.str("");
841        ss << i->second.ratingRange.first;
842        s += ss.str();
843      s += " ";      s += " ";
844      //highend      //highend
845      s += i->second.ratingRange.second;      ss.str("");
846        ss << i->second.ratingRange.second;
847        s += ss.str();
848      s += " ";      s += " ";
849      //desc      //desc
850      s += i->second.description;      s += i->second.description;

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26