/***************************************************************************** * PROJECT: AAAI Challenge * * (c) Copyright 2002 Reid Simmons & Nick Roy. All rights reserved. * * FILE: vikiaInterface.h * * ABSTRACT: Interface specification for the Vikia face/expression subsystem. * * $Source: /usr3/Challenge/challenge/src/interfaces/vikiaInterface.h,v $ * $Revision: 1.1 $ * $Date: 2002年05月05日 19:15:41 $ * $Author: reids $ * * REVISION HISTORY: * $Log: vikiaInterface.h,v $ * Revision 1.1 2002年05月05日 19:15:41 reids * Added interface functions for the Vikia face/expression * ****************************************************************/ #ifndef VIKIA_INTERFACE_H #define VIKIA_INTERFACE_H #include #include "commonInterface.h" /* Do the expression behavior (see expression/expression.txt for syntax */ void VIKIA_do_expression (const char *expression); /* Say the phrase, with lip synching -- equivalent to VIKIA_do_expression("talk()") */ void VIKIA_do_speak (const char *phrase); /* Send a signal to a behavior machine */ void VIKIA_send_signal (const char *signal); /* Start executing the named behavior or state machine */ void VIKIA_exec_machine (const char *machine); /* Stop executing the named behavior or state machine */ void VIKIA_stop_machine (const char *machine); #endif /* VIKIA_INTERFACE_H */

AltStyle によって変換されたページ (->オリジナル) /