From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- .../doxygen/nel/agent_local_mailer_cpp-source.html | 167 +++++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 docs/doxygen/nel/agent_local_mailer_cpp-source.html (limited to 'docs/doxygen/nel/agent_local_mailer_cpp-source.html') diff --git a/docs/doxygen/nel/agent_local_mailer_cpp-source.html b/docs/doxygen/nel/agent_local_mailer_cpp-source.html new file mode 100644 index 00000000..04e7ee82 --- /dev/null +++ b/docs/doxygen/nel/agent_local_mailer_cpp-source.html @@ -0,0 +1,167 @@ + + + + nevrax.org : docs + + + + + + + + + + + + + + +
# Home   # nevrax.com   
+ + + + +
Nevrax
+ + + + + + + + + + +
+ + +
+ Nevrax.org
+ + + + + + + +
#News
#Mailing-list
#Documentation
#CVS
#Bugs
#License
+
+ + +
+ + +
+Docs + +
+  + + + + + +
Documentation 
+ +
+Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages   Search  
+

agent_local_mailer.cpp

Go to the documentation of this file.
00001 
+00006 /* Copyright, 2000 Nevrax Ltd.
+00007  *
+00008  * This file is part of NEVRAX NEL.
+00009  * NEVRAX NEL is free software; you can redistribute it and/or modify
+00010  * it under the terms of the GNU General Public License as published by
+00011  * the Free Software Foundation; either version 2, or (at your option)
+00012  * any later version.
+00013 
+00014  * NEVRAX NEL is distributed in the hope that it will be useful, but
+00015  * WITHOUT ANY WARRANTY; without even the implied warranty of
+00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+00017  * General Public License for more details.
+00018 
+00019  * You should have received a copy of the GNU General Public License
+00020  * along with NEVRAX NEL; see the file COPYING. If not, write to the
+00021  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+00022  * MA 02111-1307, USA.
+00023  */
+00024 
+00025 #include "nel/ai/agent/agent_local_mailer.h"
+00026 #include "nel/ai/script/interpret_object_message.h"
+00027 #include "nel/ai/agent/agent_digital.h"
+00028 
+00029 namespace NLAIAGENT
+00030 {
+00031         CLocalAgentMail::CLocalAgentMail(IBasicAgent *host):IAgent(NULL)
+00032         {
+00033                 _HostAgent = host;
+00034                 //_HostAgent->connect(this);
+00035         }
+00036 
+00037         CLocalAgentMail::~CLocalAgentMail()
+00038         {
+00039                 /*if(_HostAgent) 
+00040                 {
+00041                         //_HostAgent->onKill(this);                     
+00042                         Kill();
+00043 
+00044                         //_HostAgent->release();
+00045 
+00046                 }
+00047                 else Kill();*/
+00048         }
+00049 
+00050         void CLocalAgentMail::runChildren()
+00051         {
+00052 
+00053         }
+00054         void CLocalAgentMail::processMessages()
+00055         {
+00056         }
+00057         void CLocalAgentMail::onKill(IConnectIA *a)
+00058         {
+00059                 //if(a == _HostAgent) _HostAgent->release();
+00060 
+00061         }
+00062 
+00063         tQueue CLocalAgentMail::isMember(const IVarName *h,const IVarName *m,const IObjectIA &p) const
+00064         {
+00065                 if(_HostAgent)
+00066                 {
+00067                         return _HostAgent->isMember(h,m,p);
+00068                 }
+00069                 else
+00070                 {
+00071                         const NLAIAGENT::IObjectIA *cl = (const NLAIAGENT::IObjectIA *)(IAgent::IdAgent.getFactory())->getClass();
+00072                         return cl->isMember(h,m,p);
+00073                 }
+00074         }
+00075         
+00076 
+00077         IObjectIA::CProcessResult CLocalAgentMail::sendMessage(IObjectIA *m)
+00078         {
+00079                 IMessageBase *msg = (IMessageBase *)m;
+00080 
+00081                 if(NLAISCRIPT::CMsgNotifyParentClass::IdMsgNotifyParentClass == msg->getType() )
+00082                 {                       
+00083                         const INombreDefine *n = (const INombreDefine *)msg->getFront();
+00084                         if(n->getNumber() != 0.0)
+00085                         {
+00086                                 const CLocalAgentMail *parent = (const CLocalAgentMail *)msg->get();
+00087                                 setParent((const IWordNumRef *)*parent->getHost());
+00088                         }
+00089                         return IObjectIA::CProcessResult();                     
+00090                 }
+00091                 else
+00092                 {
+00093                         return ((IObjectIA  *)_HostAgent)->sendMessage(msg);
+00094                 }
+00095         }
+00096         
+00097 }
+
+ + +
                                                                                                                                                                    +
+ + -- cgit v1.2.1