当前位置:   article > 正文

C++设计模式-策略模式,AI角色动态选择行为

C++设计模式-策略模式,AI角色动态选择行为

运行在VS2022,x86,Debug下。

27. 策略模式

在这里插入图片描述

  • 策略模式让算法的选择与使用独立开来,使得代码更灵活、可扩展和易维护。
  • 应用:如在游戏开发中,AI角色需要根据环境和条件做出不同的行为,如寻路、攻击、躲避等。可以使用策略模式,定义一个行为策略接口,然后分别实现寻路决策类、攻击决策类、躲避决策类等。根据实际情况动态地选择合适的行为策略。
  • 实现
    • 抽象策略类,即定义策略接口。
    • 具体策略类,即实现策略接口。
    • 上下文类,负责使用策略对象。
  • 代码如下。
//抽象策略类:行为策略接口
class AIStrategy 
{
public:
    virtual void action() = 0;
};

//具体策略类:寻路决策类
class FindWayStrategy :public AIStrategy
{
public:
    void action() { cout << "Finding a way" << endl; }
};

//具体策略类:攻击决策类
class AttackStrategy :public AIStrategy
{
public:
    void action() { cout << "attacking" << endl; }
};

//具体策略类:躲避决策类
class AvoidStrategy :public AIStrategy
{
public:
    void action() { cout << "avoiding" << endl; }
};

//上下文类,负责使用策略对象
class Context 
{
private:
    AIStrategy* aiStrategy; //抽象策略类指针

public:
    void setStrategy(AIStrategy* strategy) { aiStrategy = strategy;} //设置策略

    void action() const  //行为
    {
        if (aiStrategy) { aiStrategy->action();}
    }
};

int main()
{
    FindWayStrategy* findWayStrategy = new FindWayStrategy();
    AttackStrategy* attackStrategy = new AttackStrategy();

    //算法的选择与使用独立开来
    Context context; 
    context.setStrategy(findWayStrategy); //选择策略1
    context.action(); //使用
    context.setStrategy(attackStrategy); //选择策略2
    context.action(); //使用

    delete findWayStrategy; 
    delete attackStrategy;

    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60

注意内存释放问题,这里手动释放子类对象。因为将基类析构函数声明为虚函数,当delete基类指针时,会调用子类析构函数,但它只会释放指向的子类对象(某个策略),其余子类对象是无法释放的(其余策略)。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/677321
推荐阅读
相关标签
  

闽ICP备14008679号