#include <interpret_methodes.h>
Inheritance diagram for NLAISCRIPT::CParam:
This class is an type container who's strored the arguments type of a given method.
Nevrax France
Definition at line 46 of file interpret_methodes.h.
Public Member Functions | |
virtual TQueue | canProcessMessage (const IVarName &) |
void | clear () |
Clear the vector containt. | |
CParam (int count,...) | |
CParam (const CParam &) | |
CParam () | |
sint32 | decRef () |
Decrement the reference of an object. | |
double | eval (const CParam &p) const |
const IOpType & | get () const |
get the last parameter added. | |
virtual const std::string | getInfo () |
const NLAIAGENT::IBaseGroupType * | getInfo () const |
virtual std::string | getMethodeMemberDebugString (sint32, sint32) const |
virtual sint32 | getMethodIndexSize () const |
const sint32 & | getRef () const |
get the refence count. | |
const IObjectIA * | getStaticMember (const IVarName &compName) const |
virtual const IObjectIA * | getStaticMember (sint32) const |
virtual sint32 | getStaticMemberIndex (const IVarName &) const |
virtual sint32 | getStaticMemberSize () const |
void | getString (std::string &txt) const |
void | incRef () |
Inc a reference. We use this when we have to conserve a pointer memeory for exemple in a list. | |
virtual void | init (IObjectIA *) |
virtual sint32 | isClassInheritedFrom (const IVarName &) const |
virtual bool | isEqual (const IBasicObjectIA &a) const=0 |
virtual bool | isLocal () |
If the result is true the object is loclal else its a representation of an object on the server. By the method return true. | |
virtual TQueue | isMember (const IVarName *, const IVarName *, const IObjectIA &) const |
void | operator= (const CParam &p) |
Make equality. | |
bool | operator== (const IBasicObjectIA &classType) const |
bool | operator== (const CParam &p) const |
Need to know if a CParam is equal as an ather. | |
const IOpType * | operator[] (sint32 i) const |
get a parameter in the vector. | |
void | pop () |
pop the last parameter added. | |
void | push (IOpType *i) |
Push new parameter type. User have to make an incRef(). | |
void | push (const IOpType &) |
Push new parameter type. Here we clone the arguments. | |
void | push (const NLAIAGENT::IBaseGroupType &) |
Push new parameter type define in a list define by an NLAIAGENT::IBaseGroupType object. | |
virtual void | release () |
Release allow to release the pointer. The last release when the _Ref is nul delete the object. | |
virtual CProcessResult | runMethodeMember (sint32 index, IObjectIA *) |
virtual CProcessResult | runMethodeMember (sint32, sint32, IObjectIA *) |
virtual const CProcessResult & | runStep () |
virtual CProcessResult | sendMessage (const IVarName &, IObjectIA *) |
virtual CProcessResult | sendMessage (IObjectIA *) |
virtual void | serial (NLMISC::IStream &f) throw (NLMISC::EStream) |
void | setInfo (NLAIAGENT::IBaseGroupType *) |
virtual bool | setStaticMember (sint32, IObjectIA *) |
bool | setStaticMember (const IVarName &compName, IObjectIA *change) |
sint32 | size () const |
get vector size. | |
virtual | ~CParam () |
NLAIC::IBasicInterface and NLAIAGENT::IObjectIA method. | |
virtual const NLAIC::IBasicType * | clone () const |
virtual void | getDebugString (std::string &) const |
virtual const NLAIC::CIdentType & | getType () const |
virtual bool | isEqual (const NLAIAGENT::IBasicObjectIA &) const |
void | load (NLMISC::IStream &) |
virtual const NLAIC::IBasicType * | newInstance () const |
virtual const NLAIAGENT::IObjectIA::CProcessResult & | run () |
void | save (NLMISC::IStream &) |
Static Public Attributes | |
const NLAIC::CIdentType | IdParam |
TProcessStatement | ProcessBuzzy = processBuzzy |
TProcessStatement | ProcessEnd = processEnd |
TProcessStatement | ProcessError = processError |
TProcessStatement | ProcessIdle = processIdle |
TProcessStatement | ProcessLocked = processLocked |
CProcessResult | ProcessNotComplit = IObjectIA::CProcessResult(processNotComplete) |
CProcessResult | ProcessRun = IObjectIA::CProcessResult() |
Private Types | |
typedef std::vector< IOpType * > | TParam |
Private Attributes | |
TParam | _Param |
Vector that is contain a IOpType argument type. | |
NLAIAGENT::IBaseGroupType * | _ParamInfo |
|
Definition at line 49 of file interpret_methodes.h. |
|
Definition at line 34 of file interpret_methodes.cpp. Referenced by clone(), and newInstance().
00034 :_Param(0),_ParamInfo(NULL){} |
|
Definition at line 35 of file interpret_methodes.cpp. References _Param, sint32, size(), and size.
00035 :NLAIAGENT::IObjectIA(p),_Param(p._Param.size()),_ParamInfo(NULL) 00036 { 00037 for(sint32 i = 0; i<p.size(); i++) 00038 { 00039 _Param[i] = (IOpType *)p._Param[i]->clone();//new NLAIC::CIdentType(*p._Param[i]); 00040 } 00041 } |
|
Definition at line 43 of file interpret_methodes.cpp. References count.
00043 :_ParamInfo(NULL) 00044 { 00045 va_list marker; 00046 00047 va_start( marker, count ); 00048 while(count --) 00049 { 00050 IOpType *o = va_arg( marker, IOpType *); 00051 _Param.push_back(o); 00052 } 00053 } |
|
Definition at line 205 of file interpret_methodes.cpp.
|
|
The method canProcessMessage(const IVarName &msgName) allow us to know if agent can preocess given by msgName. TQueue contain the liste of method (same as a run(msg)) that coud process the msg. Reimplemented in NLAIAGENT::CLocalAgentMail. Definition at line 350 of file baseai.cpp. References NLAIAGENT::TQueue. Referenced by NLAIAGENT::CLocalAgentMail::canProcessMessage().
00351 { 00352 return TQueue(); 00353 } |
|
Clear the vector containt.
Definition at line 185 of file interpret_methodes.cpp. References pop(), and NLAIC::IPointerGestion::release().
|
|
This function allow a pointer copy, that mean that the new class have the sam attributs caracteristics as the owne. Implements NLAIC::IBasicType. Definition at line 136 of file interpret_methodes.cpp. References CParam(). Referenced by operator=().
|
|
Decrement the reference of an object.
Definition at line 93 of file abstract_interface.h. References NLAIC::IPointerGestion::_Ref, and sint32. Referenced by NLAIC::IPointerGestion::release(), and NLAIAGENT::CAgentTimerHandle::~CAgentTimerHandle().
00094 {
00095 return --_Ref;
00096 }
|
|
Return the distance between to arguments. An infinite result is defined by a negative value and represent an unequal argument. 0.0 value mean that the two arguments is equal. A positive value mean that some of parameter is unequal but have the same based class, in this configuration the return value represent how far the two class was between the base class. More the value is more far the class is. Definition at line 68 of file interpret_methodes.cpp. References _Param, NLAISCRIPT::IOpType::eval(), NLAISCRIPT::l, r, and sint32. Referenced by NLAISCRIPT::CAgentClass::getPrivateMember(), NLAIAGENT::IBasicAgent::isMember(), NLAIAGENT::IVector::isMember(), and NLAISCRIPT::CCompilateur::registerMethod().
00069 { 00070 sint32 l; 00071 double D = 0.0; 00072 if(( l = _Param.size() ) != (sint32)p._Param.size()) return -1.0; 00073 double k = 1.0; 00074 for(sint32 i = 0; i<l; i++) 00075 { 00076 IOpType &p1 = *_Param[i], &p2 = *p._Param[i]; 00077 double r = p1.eval(&p2); 00078 if( r < 0) return -1.0; 00079 D += (r*r)*k; 00080 k += 1.0; 00081 /*if(p1.getConstraintTypeOf() != NULL && p2.getConstraintTypeOf() != NULL) 00082 { 00083 00084 if(!(p1 == p2)) 00085 { 00086 const NLAIC::CIdentType &idG = *p1.getConstraintTypeOf(); 00087 const NLAIC::CIdentType &idD = *p2.getConstraintTypeOf(); 00088 if(!(idG == idD)) 00089 { 00090 if(((const NLAIC::CTypeOfObject &)idD) & NLAIC::CTypeOfObject::tAgentInterpret) 00091 { 00092 const IClassInterpret *o = (const IClassInterpret *)((CClassInterpretFactory *)idD.getFactory())->getClass(); 00093 bool type = false; 00094 sint32 i = 0; 00095 while(o != NULL) 00096 { 00097 i ++; 00098 if( o->getType() == idG) 00099 { 00100 d = ((double)(o->sizeVTable() - i - 1))*k; 00101 D += d*d; 00102 type = true; 00103 } 00104 o = o->getBaseClass(); 00105 } 00106 if(!type) return -1.0; 00107 } 00108 else 00109 { 00110 //NLAIC::CTypeOfObject o_t(tNombre | TString | tList | tLogic); 00111 if(((const NLAIC::CTypeOfObject &)idD) & ((const NLAIC::CTypeOfObject &)idG)) 00112 { 00113 return 0.0; 00114 } 00115 else return -1.0; 00116 } 00117 } 00118 } 00119 else return 0.0; 00120 00121 00122 }*/ 00123 } 00124 if(D != 0.0) return sqrt(D); 00125 else return 0.0; 00126 } |
|
get the last parameter added.
Definition at line 175 of file interpret_methodes.cpp.
00176 { 00177 return *_Param.back(); 00178 } |
|
Implements NLMISC::IClassable. Reimplemented in NLAIC::CIdentType. Definition at line 116 of file abstract_interface.h. Referenced by NLAISCRIPT::CAgentClass::isClassInheritedFrom().
00117 { 00118 return std::string("<unnamed>"); 00119 } |
|
This is a Debug function, text is an character pointer to receive the debug text output, the debug text containe all think sensible to interset user. Implements NLAIC::IBasicType. Definition at line 213 of file interpret_methodes.cpp. References getString(), and t. Referenced by NLAISCRIPT::CConstraintMethode::CConstraintMethode(), NLAISCRIPT::CFindRunMsg::getDebugResult(), NLAISCRIPT::CMethodeName::getDebugString(), NLAISCRIPT::CConstraintFindRun::run(), and NLAISCRIPT::CConstraintMethode::run().
00214 { 00215 getString(t); 00216 } |
|
Definition at line 292 of file abstract_interface.h. References NLAIC::IBasicType::getDebugString(), and s.
00293 { 00294 std::string s; 00295 getDebugString(s); 00296 return s; 00297 } |
|
Definition at line 117 of file interpret_methodes.h. References _ParamInfo.
00118 { 00119 return _ParamInfo; 00120 } |
|
The methode getMethodeMemberDebugString(sint32 heritance, sint32 index) return a string that define the name and the argument of the method Reimplemented in NLAIAGENT::CAgentScript. Definition at line 311 of file baseai.cpp. References sint32. Referenced by NLAISCRIPT::CCallHeapMethodi::getDebugResult(), NLAISCRIPT::CCallStackMethodi::getDebugResult(), NLAISCRIPT::CCallMethodi::getDebugResult(), NLAISCRIPT::CLibHeapMemberMethod::getDebugResult(), NLAISCRIPT::CLibStackNewMemberMethod::getDebugResult(), NLAISCRIPT::CLibStackMemberMethod::getDebugResult(), NLAISCRIPT::CLibCallMethodi::getDebugResult(), NLAISCRIPT::CLibCallInheritedMethod::getDebugResult(), NLAISCRIPT::CLibCallMethod::getDebugResult(), NLAISCRIPT::CLibMemberMethodi::getDebugResult(), NLAISCRIPT::CLibMemberInheritedMethod::getDebugResult(), and NLAISCRIPT::CLibMemberMethod::getDebugResult().
00312 { 00313 switch(id) 00314 { 00315 case 0: 00316 { 00317 return std::string("IObjectIA::sendMessage(IMessage)"); 00318 } 00319 break; 00320 case 1: 00321 break; 00322 case 2: 00323 return std::string("IObjectIA::run()"); 00324 break; 00325 00326 case 3: 00327 { 00328 return std::string("IObjectIA::getStaticMember(Integer)"); 00329 } 00330 } 00331 return std::string("Mathod_?????(Param_?????)"); 00332 } |
|
getMethodIndexSize define the nomber of method define in the class. Reimplemented in NLAIAGENT::CActor, NLAIAGENT::CActorScript, NLAIAGENT::IBasicAgent, NLAIAGENT::IVector, NLAIAGENT::CLocalAgentMail, NLAIAGENT::INombreDefine, NLAIAGENT::CPairType, NLAIAGENT::IBaseGroupType, NLAIAGENT::CVectorGroupType, NLAIAGENT::IObjetOp, NLAIAGENT::CProxyAgentMail, NLAIAGENT::CAgentScript, NLAIAGENT::CLibTimerManager, NLAIAGENT::CAgentWatchTimer, NLAIAGENT::CAgentTimerHandle, NLAILOGIC::CGoalStack, NLAIAGENT::IListBasicManager, NLAIAGENT::CMessageScript, NLAIAGENT::IMessageBase, NLAIAGENT::CAgentOperation, NLAIFUZZY::CFuzzyVar, NLAILOGIC::CFact, NLAIAGENT::CFsmScript, NLAILOGIC::CGoal, NLAILOGIC::CInternalGoal, NLAILOGIC::CGoalPath, NLAILOGIC::CGoalStack, NLAIAGENT::COperatorScript, NLAILOGIC::IBaseVar, NLAISCRIPT::CAgentClass, and NLAISCRIPT::CLibTest. Definition at line 251 of file baseai.cpp. References sint32.
00252 {
00253 return 4;
00254 }
|
|
get the refence count.
Definition at line 99 of file abstract_interface.h. References NLAIC::IPointerGestion::_Ref, and sint32. Referenced by NLAIAGENT::CAgentTimerHandle::~CAgentTimerHandle().
00100 {
00101 return _Ref;
00102 }
|
|
to get the pointer of a given components referened by an string. Definition at line 261 of file baseai.h. References NLAIAGENT::IObjectIA::getStaticMember(), and NLAIAGENT::IObjectIA::getStaticMemberIndex().
00262 { 00263 return getStaticMember(getStaticMemberIndex(compName)); 00264 } |
|
|
to get the index of a given components name. Reimplemented in NLAIAGENT::CLocalAgentMail, NLAIAGENT::CAgentScript, and NLAIAGENT::CMessageScript. Definition at line 188 of file baseai.cpp. References sint32. Referenced by NLAISCRIPT::CCompilateur::affectation(), NLAIAGENT::CComponentHandle::getComponent(), NLAIAGENT::IObjectIA::getStaticMember(), NLAIAGENT::CLocalAgentMail::getStaticMemberIndex(), NLAISCRIPT::CCompilateur::getValidateHierarchyBase(), NLAISCRIPT::CCompilateur::isValidateVarName(), NLAISCRIPT::CCodeBrancheRunDebug::printVariable(), NLAISCRIPT::CCompilateur::processingVar(), NLAISCRIPT::CConstraintStackComp::run(), and NLAIAGENT::IObjectIA::setStaticMember().
00189 {
00190 return -1;
00191 }
|
|
Static member is the component that the agent is create and die with. getStaticMemberSize to get the size of the static member components Reimplemented in NLAIAGENT::CLocalAgentMail, NLAIAGENT::CAgentScript, NLAIAGENT::CMessageScript, NLAISCRIPT::IClassInterpret, and NLAISCRIPT::CAgentClass. Definition at line 180 of file baseai.cpp. References NLAIC::IBasicType::getType(), sint32, and NLAIC::stringGetBuild(). Referenced by NLAIAGENT::CLocalAgentMail::getStaticMemberSize().
00181 { 00182 std::string text; 00183 text = NLAIC::stringGetBuild("sint32 IObjectIA::getStaticMemberSize() note implementaited for the '%s' interface",(const char *)getType()); 00184 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00185 return 0; 00186 } |
|
Definition at line 257 of file interpret_methodes.cpp. References size(). Referenced by getDebugString().
00258 { 00259 txt += "("; 00260 if(size()) 00261 { 00262 int i; 00263 for( i = 0; i < size() - 1; i++) 00264 { 00265 const NLAIC::CIdentType *id = _Param[i]->getConstraintTypeOf(); 00266 if(id) txt += (const char *)*id; 00267 else txt += "UNDEF"; 00268 txt += ","; 00269 } 00270 const NLAIC::CIdentType *id = _Param[i]->getConstraintTypeOf(); 00271 if(id) txt += (const char *)*id; 00272 else txt += "UNDEF"; 00273 } 00274 txt += ")"; 00275 } |
|
getType return a unique string how represente the class, it can be the name of the class. This function is used for the sytem regstry class (see the definition of the template class Gen::CRegistry). Implements NLAIC::IBasicType. Definition at line 252 of file interpret_methodes.cpp. References IdParam. Referenced by NLAISCRIPT::CFindRunMsg::save().
00253 { 00254 return IdParam; 00255 } |
|
|
Init method alows to init the attribut of an object. the maparmetre is in more time a list of IObjectIA. Reimplemented in NLAIFUZZY::CSimpleFuzzyCond, NLAIFUZZY::CFuzzyRule, NLAIFUZZY::CFuzzyRuleSet, NLAIFUZZY::CFuzzyInterval, NLAIFUZZY::CRightFuzzySet, NLAIFUZZY::CTriangleFuzzySet, NLAIFUZZY::CTrapezeFuzzySet, NLAIFUZZY::CLeftFuzzySet, NLAIFUZZY::CFuzzyVar, NLAILOGIC::CFirstOrderAssert, NLAILOGIC::CRule, and NLAILOGIC::CFactPattern. Definition at line 116 of file baseai.cpp. Referenced by NLAIFUZZY::IFuzzySet::runMethodeMember(), and NLAISCRIPT::CLdbNewOpCode::runOpCode().
00117 { 00118 00119 } |
|
isClassInheritedFrom(className) allow us to known if this class have a base class with the name className. If true the method return the range of the base class, this range is an arbitrary reference id define by the programmer or bay the scrypt. the false return is define by -1. Reimplemented in NLAIAGENT::IVector, NLAIAGENT::CLocalAgentMail, NLAIAGENT::INombreDefine, NLAIAGENT::IBaseGroupType, and NLAIAGENT::CMessageScript. Definition at line 246 of file baseai.cpp. References sint32. Referenced by NLAISCRIPT::CCompilateur::getValidateHierarchyBase(), NLAIAGENT::CLocalAgentMail::isClassInheritedFrom(), NLAIAGENT::CActorScript::Launch(), NLAIAGENT::CFsmScript::setTopLevel(), and NLAIAGENT::CActorScript::setTopLevel().
00247 {
00248 return -1;
00249 }
|
|
|
Definition at line 245 of file interpret_methodes.cpp.
|
|
If the result is true the object is loclal else its a representation of an object on the server. By the method return true.
Definition at line 356 of file baseai.cpp.
00357 { 00358 return true; 00359 } |
|
The method isMember(nameSubClass,methodName,param) return the best method correspondent to the search. remember we use the overloadind method. NameSubClass: if this pointer is not NULL then NameSubClass is the name of the base class were the method are defined. methodName: is the name of the class. param: is an IObjectIA where it defined the parametre of the method. lot of method use a IObjectIA vector object with an NLAIC::CIdentType as the the template argm. Reimplemented in NLAIAGENT::IBasicAgent, NLAIAGENT::IVector, NLAIAGENT::CLocalAgentMail, NLAIAGENT::INombreDefine, NLAIAGENT::CPairType, NLAIAGENT::IBaseGroupType, NLAIAGENT::CVectorGroupType, NLAIAGENT::CProxyAgentMail, NLAIAGENT::CAgentTimerHandle, NLAIAGENT::IListBasicManager, NLAIAGENT::CMessageScript, and NLAIAGENT::IMessageBase. Definition at line 206 of file baseai.cpp. References _CONSTRUCTOR_, _RUN_, _SEND_, param, r, NLAIAGENT::IObjectIA::run(), and NLAIAGENT::TQueue. Referenced by NLAIAGENT::CAgentWatchTimer::addAttrib(), NLAISCRIPT::CCompilateur::findMethode(), NLAISCRIPT::CAgentClass::isMember(), NLAIAGENT::CLocalAgentMail::isMember(), and NLAISCRIPT::CFindRunMsg::runOpCode().
00207 { 00208 static CStringVarName send(_SEND_); 00209 static CStringVarName constructor(_CONSTRUCTOR_); 00210 static CStringVarName run(_RUN_); 00211 static CStringVarName statM("GetStaticMember"); 00212 00213 if(*methodName == send) 00214 { 00215 TQueue r; 00216 CObjectType *c = new CObjectType(new NLAIC::CIdentType(NLAIC::CIdentType::VoidType)); 00217 r.push(CIdMethod(0,0.0,NULL,c)); 00218 return r; 00219 } 00220 else 00221 if(*methodName == constructor && !((const NLAISCRIPT::CParam &)param).size()) 00222 { 00223 TQueue r; 00224 CObjectType *c = new CObjectType(new NLAIC::CIdentType(NLAIC::CIdentType::VoidType)); 00225 r.push(CIdMethod(1,0.0,NULL,c)); 00226 return r; 00227 } 00228 else 00229 if(*methodName == run && !((const NLAISCRIPT::CParam &)param).size()) 00230 { 00231 TQueue r; 00232 CObjectType *c = new CObjectType(new NLAIC::CIdentType(NLAIC::CIdentType::VoidType)); 00233 r.push(CIdMethod(2,0.0,NULL,c)); 00234 return r; 00235 } 00236 if(*methodName == statM && ((const NLAISCRIPT::CParam &)param).size()) 00237 { 00238 TQueue r; 00239 CObjectType *c = new CObjectType(new NLAIC::CIdentType(*IAgent::IdAgent)); 00240 r.push(CIdMethod(3,0.0,NULL,c)); 00241 return r; 00242 } 00243 return TQueue(); 00244 } |
|
Load the class from a stream. Implements NLAIC::IBasicInterface. Definition at line 218 of file interpret_methodes.cpp. References NLMISC::IStream::serial(), and sint32. Referenced by NLAISCRIPT::CFindRunMsg::load().
00219 { 00220 sint32 n; 00221 int i; 00222 is.serial(n); 00223 for(i = 0; i < (int)_Param.size(); i++) 00224 { 00225 _Param[i]->release(); 00226 } 00227 _Param.clear(); 00228 _Param.resize(n); 00229 for(i = 0; i < (int)_Param.size(); i++) 00230 { 00231 _Param[i] = (IOpType *)IOpType::loadIOpType(is); 00232 } 00233 } |
|
This function allow a new instance, that mean that the class is a class factory. Implements NLAIC::IBasicType. Definition at line 142 of file interpret_methodes.cpp. References CParam().
|
|
Make equality.
Definition at line 128 of file interpret_methodes.cpp. References clone(), sint32, and size().
|
|
Lot of algo use this function to determine the equality between 2 class, in particular the extraction from stl list. the == operator call the bool isEqual(const IBasicObjectIA &a) const member method to determine the equality between tow class. Definition at line 134 of file baseai.cpp. References NLAIC::IBasicType::getType(), and NLAIAGENT::IBasicObjectIA::isEqual().
|
|
Need to know if a CParam is equal as an ather.
Definition at line 55 of file interpret_methodes.cpp. References _Param, NLAISCRIPT::IConstraint::getConstraintTypeOf(), NLAISCRIPT::l, and sint32.
00056 { 00057 sint32 l; 00058 if(( l = _Param.size() ) != (sint32)p._Param.size()) return false; 00059 for(sint32 i = 0; i<l; i++) 00060 { 00061 IOpType &p1 = *_Param[i], &p2 = *p._Param[i]; 00062 if(p1.getConstraintTypeOf() == NULL || p2.getConstraintTypeOf() == NULL) return false; 00063 if(!(*p1.getConstraintTypeOf() == *p2.getConstraintTypeOf())) return false; 00064 } 00065 return true; 00066 } |
|
get a parameter in the vector.
Definition at line 149 of file interpret_methodes.cpp. References sint32.
00150 { 00151 return _Param[i]; 00152 } |
|
pop the last parameter added.
Definition at line 180 of file interpret_methodes.cpp. Referenced by clear().
00181 { 00182 _Param.pop_back(); 00183 } |
|
Push new parameter type. User have to make an incRef().
Definition at line 170 of file interpret_methodes.cpp.
00171 { 00172 _Param.push_back(i); 00173 } |
|
Push new parameter type. Here we clone the arguments.
Definition at line 165 of file interpret_methodes.cpp. References NLAISCRIPT::IConstraint::clone().
00166 { 00167 _Param.push_back((IOpType*)i.clone()); 00168 } |
|
Push new parameter type define in a list define by an NLAIAGENT::IBaseGroupType object.
Definition at line 154 of file interpret_methodes.cpp. References NLAIAGENT::IBaseGroupType::getConstIterator(), NLAIC::IBasicType::getType(), and NLAIAGENT::CConstIteratorContener::isInEnd(). Referenced by NLAIAGENT::IVector::isMember(), and NLAISCRIPT::CCompilateur::registerMethod().
00155 { 00156 NLAIAGENT::CConstIteratorContener i = g.getConstIterator(); 00157 00158 while( !i.isInEnd() ) 00159 { 00160 const NLAIAGENT::IObjectIA *o = i++; 00161 push(COperandSimple(new NLAIC::CIdentType(o->getType()))); 00162 } 00163 } |
|
|
Some where Run method define the process of the agen. Implements NLAIAGENT::IObjectIA. Definition at line 200 of file interpret_methodes.cpp.
00201 { 00202 return NLAIAGENT::IObjectIA::ProcessRun;; 00203 } |
|
|
|
Some where Run method define the process of the agen. Reimplemented in NLAIAGENT::IAgent, and NLAIAGENT::CAgentScript. Definition at line 163 of file baseai.cpp. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild(). Referenced by NLAIAGENT::IAgent::runChildrenStepByStep().
00164 { 00165 std::string text; 00166 text = NLAIC::stringGetBuild("const CProcessResult &IObjectIA::runStep() note implementaited for the '%s' interface",(const char *)getType()); 00167 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00168 return IObjectIA::ProcessNotComplit; 00169 } |
|
Save the class in a stream. Implements NLAIC::IBasicInterface. Definition at line 235 of file interpret_methodes.cpp. References NLMISC::IStream::serial(), and sint32. Referenced by NLAISCRIPT::CFindRunMsg::save().
|
|
This method allow to send a message to an compoment given by an string IVarName. Reimplemented in NLAIAGENT::CProxyAgentMail, NLAIAGENT::CAgentScript, and NLAIAGENT::IMessageBase. Definition at line 334 of file baseai.cpp. References NLAIAGENT::IVarName::getString(), NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild().
00335 { 00336 std::string text; 00337 text = NLAIC::stringGetBuild("method 'sendMessage(%s,const IObjectIA &)' '%s' interface",name.getString(), (const char *)getType()); 00338 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00339 return CProcessResult(); 00340 } |
|
The method sendMessage(const IObjectIA &msg) allow us to achive a message defined in msg. Reimplemented in NLAIAGENT::CActorScript, NLAIAGENT::CLocalAgentMail, NLAIAGENT::CProxyAgentMail, NLAIAGENT::CAgentScript, NLAIAGENT::CAgentTimerHandle, NLAIAGENT::IConnectIA, NLAIAGENT::IListManager, NLAIAGENT::CMainAgentScript, and NLAIAGENT::IMessageBase. Definition at line 342 of file baseai.cpp. References NLAIC::IBasicType::getType(), and NLAIC::stringGetBuild(). Referenced by NLAIAGENT::IObjectIA::runMethodeMember(), NLAIAGENT::CAgentScript::sendBroadCast(), NLAIAGENT::IMessageBase::sendMessage(), NLAIAGENT::IListManager::sendMessage(), and NLAIAGENT::CAgentScript::sendMessage().
00343 { 00344 std::string text; 00345 text = NLAIC::stringGetBuild("method 'sendMessage(const IObjectIA &)' '%s' interface", (const char *)getType()); 00346 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00347 return CProcessResult(); 00348 } |
|
Reimplemented from NLAIC::IPointerGestion. Definition at line 328 of file abstract_interface.h. References NLAIC::IBasicInterface::load(), and NLAIC::IBasicInterface::save().
|
|
Definition at line 278 of file interpret_methodes.cpp. References _ParamInfo, and NLAIC::IPointerGestion::release(). Referenced by NLAISCRIPT::CCompilateur::registerMethod().
00279 { 00280 if(_ParamInfo != NULL) _ParamInfo->release(); 00281 _ParamInfo = pInfo; 00282 } |
|
to cahnge a given components given by a string. Reimplemented in NLAIAGENT::CLocalAgentMail, NLAIAGENT::CAgentScript, NLAIAGENT::CMessageScript, and NLAISCRIPT::CAgentClass. Definition at line 198 of file baseai.cpp. References NLAIC::IBasicType::getType(), sint32, and NLAIC::stringGetBuild().
00199 { 00200 std::string text; 00201 text = NLAIC::stringGetBuild("Function void IObjectIA::setStaticMember(sint32,IObjectIA *) note implementaited for the '%s' interface",(const char *)getType()); 00202 throw NLAIE::CExceptionNotImplemented(text.c_str()); 00203 return false; 00204 } |
|
to cahnge a given components given by an index. Definition at line 268 of file baseai.h. References NLAIAGENT::IObjectIA::getStaticMemberIndex(). Referenced by NLAISCRIPT::CAffHeapMemberiOpCode::runOpCode(), NLAISCRIPT::CAffMemberiOpCode::runOpCode(), and NLAIAGENT::CLocalAgentMail::setStaticMember().
00269 { 00270 return setStaticMember(getStaticMemberIndex(compName),change); 00271 } |
|
get vector size.
Definition at line 195 of file interpret_methodes.cpp. References sint32. Referenced by CParam(), getString(), and operator=().
00196 { 00197 return _Param.size(); 00198 } |
|
Vector that is contain a IOpType argument type.
Definition at line 52 of file interpret_methodes.h. Referenced by CParam(), eval(), and operator==(). |
|
Definition at line 53 of file interpret_methodes.h. |
|
Referenced by getType(). |
|
Define the an buzzy state for an agent all time in this state. Definition at line 147 of file baseai.cpp. |
|
Define the an end state for an agent all time in this state. Definition at line 148 of file baseai.cpp. |
|
Define the an error state for an agent all time in this state. Definition at line 149 of file baseai.cpp. |
|
Define the an idle state for an agent all time in this state. Definition at line 145 of file baseai.cpp. |
|
Define the an locked state for an agent all time in this state. Definition at line 146 of file baseai.cpp. |
|
Definition at line 144 of file baseai.cpp. |
|
Definition at line 143 of file baseai.cpp. |