获取访问不同类中的顶级变量和方法

时间:2013-04-11 12:12:27

标签: c++ visual-c++ artificial-intelligence

以下是我正在使用的标题和cpp文件

#include "2d/Vector2D.h"
#include <list>
#include "../../AbstTargetingSystem.h"


class AbstRaven_Bot;




class Fletcher_getClosestBotStrategy
{

public:
    Fletcher_getClosestBotStrategy()
    {}
    Fletcher_getClosestBotStrategy(AbstRaven_Bot* owner);

    //each time this method is called the opponents in the owner's sensory 
    //memory are examined and the closest  is assigned to m_pCurrentTarget.
    //if there are no opponents that have had their memory records updated
    //within the memory span of the owner then the current target is set
    //to null

    void       pickTarget();
};
class Fletcher_TargetingSystem : public AbstTargetingSystem
{

public:
    Fletcher_TargetingSystem(AbstRaven_Bot* owner);

    //each time this method is called the opponents in the owner's sensory 
    //memory are examined and the closest  is assigned to m_pCurrentTarget.
    //if there are no opponents that have had their memory records updated
    //within the memory span of the owner then the current target is set
    //to null
    void       Update();
    void         closestBotStrategy();

    void      setCurrentTarget(AbstRaven_Bot* t);
    AbstRaven_Bot* getCurrentTarget();

    void      setCurrentOwner(AbstRaven_Bot* t);
    AbstRaven_Bot* getCurrentOwner();
};

#endif

CPP

#include "Fletcher_TargetingSystem.h"
#include "../../AbstRaven_Bot.h"
#include "../../Raven_SensoryMemory.h"
#include "../../Debug/DebugConsole.h"


//-------------------------------- ctor ---------------------------------------
//-----------------------------------------------------------------------------
Fletcher_TargetingSystem::Fletcher_TargetingSystem(AbstRaven_Bot* owner):
AbstTargetingSystem(owner){

}

//-------------------------------- ctor ---------------------------------------
//-----------------------------------------------------------------------------
Fletcher_getClosestBotStrategy::Fletcher_getClosestBotStrategy(AbstRaven_Bot* owner){

}

//----------------------------- Update ----------------------------------------

//-----------------------------------------------------------------------------

//#define script AbstTargetingSystem::Instance()
//class AbstTargetingSystem;
//----------------------------- closestPlayer ----------------------------------------

//-----------------------------------------------------------------------------
void Fletcher_getClosestBotStrategy::pickTarget()
{

    double ClosestDistSoFar = MaxDouble;


    for (curBot; curBot != SensedBots.end(); ++curBot)
    {
        //make sure the bot is alive and that it is not the owner
        if ((*curBot)->isAlive() && (*curBot != getCurrentOwner()) )
        {
            double dist = Vec2DDistanceSq((*curBot)->Pos(), getCurrentOwner()->Pos());
            if (dist < ClosestDistSoFar)
            {
                ClosestDistSoFar = dist;
                setCurrentTarget(*curBot);// = *curBot;
            }

        }
    }

}
void Fletcher_TargetingSystem::Update()
{
    // currentStrategy = targetClosestBotStrategy;
    // target = currentStrategy.pickTarget();
    std::list<AbstRaven_Bot*> SensedBots;
    SensedBots = getCurrentOwner()->GetSensoryMem()->GetListOfRecentlySensedOpponents();

    std::list<AbstRaven_Bot*>::const_iterator curBot = SensedBots.begin();
    setCurrentTarget(0);//       = 0;

    Fletcher_getClosestBotStrategy* fGCBS = new Fletcher_getClosestBotStrategy(this->getCurrentOwner());
    fGCBS->pickTarget();
}

AbstRaven_Bot* Fletcher_TargetingSystem::getCurrentOwner(){
    return m_pOwner;
}
AbstRaven_Bot* Fletcher_TargetingSystem::getCurrentTarget(){
    return m_pCurrentTarget;
}

void Fletcher_TargetingSystem::setCurrentTarget(AbstRaven_Bot* t){
    m_pCurrentTarget = t;
}
void Fletcher_TargetingSystem::setCurrentOwner(AbstRaven_Bot* t){
    m_pOwner = m_pOwner;
}

void Fletcher_getClosestBotStrategy::pickTarget()我试图访问更新void Fletcher_TargetingSystem::Update()中的curBot和SensedBot方法。我还希望能够访问void Fletcher_TargetingSystem::setCurrentOwner(AbstRaven_Bot* t)以及与dat相似的其他3

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

从您的方法Fletcher_getClosestBotStrategy::pickTarget(),您无法访问Fletcher_TargetingSystem::Update()变量curBotSensedBot,因为它们是本地变量。

因此,如果您真的需要访问它们,请将它们转换为Fletcher_TargetingSystem类属性,创建setter和getter,并尝试避免friend条款,重新定义类依赖项:传递一个对Fletcher_TargetingSystem方法的Fletcher_getClosestBotStrategy const引用:

例如:

class Fletcher_getClosestBotStrategy
{
    void pickTarget(const Fletcher_TargetingSystem & targeting);
    ....
};

....

class Fletcher_TargetingSystem 
{
    protected:
        std::list<AbstRaven_Bot*> SensedBots;
    public:
        std::list<AbstRaven_Bot*> & getSensedBots() const { return SensedBots; }
};

void Fletcher_getClosestBotStrategy::pickTarget(const Fletcher_TargetingSystem & targeting)
{
    double ClosestDistSoFar = MaxDouble;
    std::list<AbstRaven_Bot*> & myLocalSensedBots = targeting.getSensedBots();
    ...
}
相关问题