- Added a a general data handling object

- Extended the callback interface to register scipts on callbacks
- Fixed a stop bug in the anticollision object
- Modified the HM code to do zero through a client connection
This commit is contained in:
cvs
2003-06-13 11:35:35 +00:00
parent f3853c20f0
commit 6819991e85
26 changed files with 1649 additions and 98 deletions

15
event.c
View File

@@ -41,12 +41,25 @@
#include "fortify.h"
#include "event.h"
/*
WATCHIT! see event.h for defines of event codes! The list below MUST
match.
*/
static char *pEvent[] = {
"VARCHANGE",
"MOTORDRIVE",
"MONITOR",
"ROTORSTART",
"ROTORMOVE",
"SCANEND",
"SCANSTART",
"SCANPOINT",
"WLCHANGE",
"REFLECTIONDONE",
"COUNTSTART",
"COUNTEND",
"FILELOADED",
"MOTEND",
NULL
};
@@ -65,3 +78,5 @@
}
return -1;
}