![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 00006 #pragma once 00007 00008 #include <bhaveSim/bhaveSimDefines.h> 00009 #include "vrfTaskAgent.h" 00010 #include <kyruntime.h> 00011 00012 namespace BHAVE 00013 { 00014 00016 class DT_DLL_bhaveSim DtFollowTaskAgent : public DtVrfTaskAgent 00017 { 00018 public: 00019 00020 DtFollowTaskAgent( 00021 DtVrfEntityBot* bot, 00022 const char* task, 00023 const char* arg1, 00024 const char* arg2, 00025 const char* arg3, 00026 const char* arg4, 00027 const char* command); 00028 00029 virtual ~DtFollowTaskAgent(); 00030 00032 virtual void Clear(); 00033 00035 virtual bool Think(); 00036 00038 virtual bool HasFinished(); 00039 00041 virtual void onTeleport(); 00042 00043 protected: 00044 00045 Kaim::FollowAgent* myFollowAgent; 00046 KyResult myStatus; 00047 bool myFinishedStatus; 00048 }; 00049 00050 } //namespace BHAVE 00051