df8e47ddf4
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@3459 127b21dd-08f5-0310-b4b7-95ae10353056
29 lines
598 B
Plaintext
29 lines
598 B
Plaintext
{
|
|
GLOBAL =
|
|
{
|
|
UPDATE =
|
|
(
|
|
"disengageAutopilot",
|
|
/* The AI messaging mechanism is used for things that are handled
|
|
internally by Oolite, so we need a short think time even though
|
|
this AI apparently doesn't do anything.
|
|
*/
|
|
"pauseAI: 2"
|
|
);
|
|
};
|
|
BEGIN_DOCKING =
|
|
{
|
|
ENTER = ("setAITo: dockingAI.plist");
|
|
RESTARTED =
|
|
(
|
|
/* We get here if docking failed (for instance, if the station
|
|
disappeared or turned out not to have a docking slit).
|
|
*/
|
|
"dropMessages: DOCKING_ABORTED",
|
|
"setSpeedFactorTo: 0",
|
|
"disengageAutopilot",
|
|
"setStateTo: GLOBAL"
|
|
);
|
|
};
|
|
}
|