From: Tom H. <tom...@us...> - 2003-04-23 04:33:25
|
Update of /cvsroot/rccparser/rccparser/src In directory sc8-pr-cvs1:/tmp/cvs-serv13096/src Modified Files: rccparse.ypp rccparser.h Log Message: 2003-04-23 Tom Howard <tom...@us...> * ./configure.in * ./src/Makefile.am Fixed documentation building * ./src/rccparse.ypp * ./src/rccparser.h Fixed newly introduced init parsing errors. Index: rccparse.ypp =================================================================== RCS file: /cvsroot/rccparser/rccparser/src/rccparse.ypp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** rccparse.ypp 23 Apr 2003 04:08:43 -0000 1.13 --- rccparse.ypp 23 Apr 2003 04:33:14 -0000 1.14 *************** *** 1280,1284 **** { PARAM.buildInit(); }; | LP INIT_KW side OK_KW RP ! { PARAM.buildInit(); }; | LP INIT_KW OK_KW RP { PARAM.buildCoachInit(); } --- 1280,1284 ---- { PARAM.buildInit(); }; | LP INIT_KW side OK_KW RP ! { PARAM.buildCoachInit(); }; | LP INIT_KW OK_KW RP { PARAM.buildCoachInit(); } Index: rccparser.h =================================================================== RCS file: /cvsroot/rccparser/rccparser/src/rccparser.h,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** rccparser.h 23 Apr 2003 04:08:43 -0000 1.34 --- rccparser.h 23 Apr 2003 04:33:15 -0000 1.35 *************** *** 7630,7640 **** doBuildInit( int unum ) {} ! /** This function is called after parsing an online coach init message or a player reconnect message * ! * Override this function in your subclass to handle player reconnect messages or online coach init messages * ! * \pre The client is an online coach or player * ! * \pre An entire online coach init message or player reconnect has been parsed. * */ --- 7630,7640 ---- doBuildInit( int unum ) {} ! /** This function is called after parsing a player reconnect message * ! * Override this function in your subclass to handle player reconnect messages * ! * \pre The client is a player * ! * \pre An entire player reconnect has been parsed. * */ *************** *** 7643,7654 **** doBuildInit() {} ! /** This function is called after parsing an offline coach init message * * Override this function in your subclass to handle player ! * offline coach init messages * ! * \pre The client is an offline coach * ! * \pre An entire offline coach init message has been parsed. * */ --- 7643,7654 ---- doBuildInit() {} ! /** This function is called after parsing an coach init message * * Override this function in your subclass to handle player ! * coach init messages * ! * \pre The client is an coach * ! * \pre An entire coach init message has been parsed. * */ |