From: Deborah H. <de...@us...> - 2001-11-06 08:33:39
|
Update of /cvsroot/tics/tics/tics In directory usw-pr-cvs1:/tmp/cvs-serv26778/tics Modified Files: UserShellSink.cc Log Message: Some initial tweaks towards having player objects. |
From: Deborah H. <de...@us...> - 2001-11-06 08:37:12
|
Update of /cvsroot/tics/tics/tlisp In directory usw-pr-cvs1:/tmp/cvs-serv26778/tlisp Modified Files: Object.cc Object.h Sexp.h Log Message: Some initial tweaks towards having player objects. |
From: Deborah H. <de...@us...> - 2001-11-06 08:37:12
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv26778/tlisp/functions Modified Files: Pemit.tcc Log Message: Some initial tweaks towards having player objects. |
From: Deborah H. <de...@us...> - 2001-11-26 18:48:10
|
Update of /cvsroot/tics/tics/tlisp In directory usw-pr-cvs1:/tmp/cvs-serv15215 Modified Files: Sexp.cc Log Message: Changed a large if-then-else into a switch-case. |
From: Deborah H. <de...@us...> - 2001-11-26 22:29:14
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv26129/tests Modified Files: FunctionTests.h Log Message: Added a simple Let test. |
From: Deborah H. <de...@us...> - 2001-11-26 22:43:47
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv30295/functions Modified Files: Let.tcc Log Message: Tweaks to Let. Wasn't evaluating the values to be assigned first. (Though I don't think this will fix Joel's problem.) |
From: Deborah H. <de...@us...> - 2001-11-26 22:43:47
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv30295/tests Modified Files: FunctionTests.h Log Message: Tweaks to Let. Wasn't evaluating the values to be assigned first. (Though I don't think this will fix Joel's problem.) |
From: Joel B. <fen...@us...> - 2001-11-26 22:56:53
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv1070/tlisp/functions Modified Files: Add.tcc Add1.tcc Log Message: We now have the Add and Add1 functions. The unit tests using variables are not yet working, due to issues with Let(), but are present and can be put back in easily once that's debugged. |
From: Joel B. <fen...@us...> - 2001-11-26 22:56:53
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv1070/tlisp/tests Modified Files: FunctionTests.h Log Message: We now have the Add and Add1 functions. The unit tests using variables are not yet working, due to issues with Let(), but are present and can be put back in easily once that's debugged. |
From: Joel B. <fen...@us...> - 2001-11-26 22:56:53
|
Update of /cvsroot/tics/tics/tlisp In directory usw-pr-cvs1:/tmp/cvs-serv1070/tlisp Modified Files: Function.h Log Message: We now have the Add and Add1 functions. The unit tests using variables are not yet working, due to issues with Let(), but are present and can be put back in easily once that's debugged. |
From: Deborah H. <de...@us...> - 2001-11-26 23:50:55
|
Update of /cvsroot/tics/tics/tlisp In directory usw-pr-cvs1:/tmp/cvs-serv15736 Modified Files: mkfunctions Log Message: Added #line directives to make finding compilation errors a little easier. |
From: Deborah H. <de...@us...> - 2001-11-26 23:53:26
|
Update of /cvsroot/tics/tics/tlisp In directory usw-pr-cvs1:/tmp/cvs-serv16207 Modified Files: Function.cc Log Message: Added an EVAL() macro for use in evaluating function arguments and other things in the proper context, and tweaked all the functions to use it. ALL FUNCTIONS SHOULD USE THIS MACRO TO EVAL THINGS unless that function has some specific reason for evaluating things outside of the normal context. |
From: Deborah H. <de...@us...> - 2001-11-26 23:53:26
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv16207/functions Modified Files: Add.tcc Add1.tcc Create.tcc Eval.tcc First.tcc Get.tcc Last.tcc Lattr.tcc Let.tcc Object.tcc Pemit.tcc Rest.tcc Reverse.tcc Set.tcc Log Message: Added an EVAL() macro for use in evaluating function arguments and other things in the proper context, and tweaked all the functions to use it. ALL FUNCTIONS SHOULD USE THIS MACRO TO EVAL THINGS unless that function has some specific reason for evaluating things outside of the normal context. |
From: Deborah H. <de...@us...> - 2001-11-26 23:54:38
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv16633/tests Modified Files: FunctionTests.h Log Message: Enabled the add-with-a-variable tests, now that they work right. Flipped the let tests over to using the eval() method instead of Sexp::Parse()->Eval(), for consistancy. |
From: Joel B. <fen...@us...> - 2001-11-27 01:10:03
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv32472/functions Modified Files: Sub.tcc Sub1.tcc Log Message: Added Sub and Sub1 functions. |
From: Joel B. <fen...@us...> - 2001-11-27 01:10:03
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv32472/tests Modified Files: FunctionTests.h Log Message: Added Sub and Sub1 functions. |
From: Joel B. <fen...@us...> - 2001-11-27 04:10:42
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv4400/tests Modified Files: FunctionTests.h Log Message: DIV and MUL functions now work. |
From: Joel B. <fen...@us...> - 2001-11-27 04:10:43
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv4400/functions Modified Files: Div.tcc Mul.tcc Log Message: DIV and MUL functions now work. |
From: Joel B. <fen...@us...> - 2001-11-27 05:53:53
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv24982/tests Modified Files: FunctionTests.h Log Message: Re-ordered things properly. |
From: Joel B. <fen...@us...> - 2001-11-27 06:17:08
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv28734 Added Files: Pi.tcc E.tcc Log Message: Added unimplemented functions (pi) and (e) |
From: Joel B. <fen...@us...> - 2001-11-28 01:18:18
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv9079/functions Modified Files: Div.tcc Log Message: Added a divide-by-zero unit test, and the code to pass it. |
From: Joel B. <fen...@us...> - 2001-11-28 01:18:18
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv9079/tests Modified Files: FunctionTests.h Log Message: Added a divide-by-zero unit test, and the code to pass it. |
From: Joel B. <fen...@us...> - 2001-11-28 03:13:01
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv878/functions Modified Files: Div.tcc Log Message: Added another test for DIV, and fixed a stupid excessive logic check in the code for it, while I was at it. |
From: Joel B. <fen...@us...> - 2001-11-28 03:13:01
|
Update of /cvsroot/tics/tics/tlisp/tests In directory usw-pr-cvs1:/tmp/cvs-serv878/tests Modified Files: FunctionTests.h Log Message: Added another test for DIV, and fixed a stupid excessive logic check in the code for it, while I was at it. |
From: Joel B. <fen...@us...> - 2001-11-28 04:17:44
|
Update of /cvsroot/tics/tics/tlisp/functions In directory usw-pr-cvs1:/tmp/cvs-serv14093/functions Modified Files: Max.tcc Min.tcc Log Message: Added Max and Min functions. |