From: Peep P. <so...@us...> - 2004-03-21 10:47:10
|
Update of /cvsroot/agd/server In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27838 Modified Files: BUGS ChangeLog TODO Log Message: Updates. Index: TODO =================================================================== RCS file: /cvsroot/agd/server/TODO,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- TODO 21 Mar 2004 08:56:42 -0000 1.8 +++ TODO 21 Mar 2004 10:37:02 -0000 1.9 @@ -22,22 +22,6 @@ * m..n * !n Need an intelligent parser for this. - Examples of compilation: - s[0..1] - F_BEGIN 0 - F_END 1 - F_RANGE 1 - s[0..1,3..4] - F_BEGIN 0 - F_END 1 - F_BEGIN 3 - F_BEGIN 4 - F_RANGE 2 - s[0..1,2..4] - F_BEGIN 0 - F_END 4 - F_RANGE 1 - s[!1, 2, 5] ! continue; and break; - allow to define locals inside statements @@ -92,10 +76,11 @@ - make maintainer-clean should also remove src/dfparse.output and src/lang.output - compile-time eval for < > <= >= == != ! - lang.y: - fun_call compare_args result >0 error (lang.y:1216) should show datatypes as strings, not ints compare_args(): 0 should be any valid type (shout("a", 0) should be ok) - or maybe use NULL or nil - if we crash while running apply(master::crash), then we should rerun with debugging on - set debuglevel with "agd -d=5" - define DEBUG and set CFLAGS to -g with "./configure --enable-debug" - IPv6 support? + - realloc wrapper + - make maintainer-clean shouldn't delete src/dfparse.h and src/lang.h Index: BUGS =================================================================== RCS file: /cvsroot/agd/server/BUGS,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- BUGS 21 Mar 2004 08:56:42 -0000 1.5 +++ BUGS 21 Mar 2004 10:37:02 -0000 1.6 @@ -32,6 +32,5 @@ string s; s = s + "abc"; will result in "0abc" - - this_ob and this_player are not set correctly - continue from here.. Index: ChangeLog =================================================================== RCS file: /cvsroot/agd/server/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ChangeLog 21 Mar 2004 08:56:42 -0000 1.9 +++ ChangeLog 21 Mar 2004 10:37:02 -0000 1.10 @@ -1,6 +1,8 @@ 0.0.2-3: ---------------------------------------------------------------------------- 2004-03-21 + * fixed net_send(), was a stupid bug - always sent to this_player. + * added type2str() * fixed the functionality of time() - works as expected. time() now returns seconds since the Epoch, asctime() returns its argument as a string. |