【设计模式】题目小练2

// 题1. AI 对话系统

// 你要做一个 NPC 对话系统:

// 不同 NPC 有不同的对话脚本(村民、商人、战士)。

// 同时对话还会受玩家状态影响(任务是否完成、声望高低)。

// 👉 请结合 模板方法模式 和 策略模式,设计一下系统结构。

cs 复制代码
using System;

// 抽象策略
public interface ISpeakStrategy
{
    string Execute();
}

// 具体策略
public class RespectStrategy : ISpeakStrategy
{
    public string Execute() => "尊敬";
}
public class StrangeStrategy : ISpeakStrategy
{
    public string Execute() => "陌生";
}
public class SeriousStrategy : ISpeakStrategy
{
    public string Execute() => "严肃";
}
public class AppreciateStrategy : ISpeakStrategy
{
    public string Execute() => "赞赏";
}

// 模板方法模式 ------ NPC基类
public abstract class NPC
{
    // 模板方法:定义固定流程
    public void Talk(ISpeakStrategy strategy)
    {
        Greet();
        CoreDialogue(strategy);
        Farewell();
    }

    protected abstract void Greet();                    // 打招呼
    protected abstract void CoreDialogue(ISpeakStrategy strategy);  // 核心对话
    protected abstract void Farewell();                 // 告别
}

// 具体NPC
public class Villager : NPC
{
    protected override void Greet() => Console.WriteLine("村民:你好啊!");
    protected override void CoreDialogue(ISpeakStrategy strategy)
        => Console.WriteLine($"村民用「{strategy.Execute()}」的语气交谈。");
    protected override void Farewell() => Console.WriteLine("村民:路上小心!");
}

public class Merchant : NPC
{
    protected override void Greet() => Console.WriteLine("商人:客官请进。");
    protected override void CoreDialogue(ISpeakStrategy strategy)
        => Console.WriteLine($"商人用「{strategy.Execute()}」的语气讨价还价。");
    protected override void Farewell() => Console.WriteLine("商人:欢迎下次光临!");
}

public class Warrior : NPC
{
    protected override void Greet() => Console.WriteLine("战士:哼,你找我吗?");
    protected override void CoreDialogue(ISpeakStrategy strategy)
        => Console.WriteLine($"战士用「{strategy.Execute()}」的语气交流。");
    protected override void Farewell() => Console.WriteLine("战士:走好,不要添麻烦。");
}

// 玩家状态决定策略
public class Player
{
    public bool IsCompletedTask { get; set; }
    public float Reputation { get; set; }

    public ISpeakStrategy ChooseStrategyByTask()
        => IsCompletedTask ? new SeriousStrategy() : new AppreciateStrategy();

    public ISpeakStrategy ChooseStrategyByReputation()
        => Reputation >= 60f ? new RespectStrategy() : new StrangeStrategy();
}

// 客户端测试
public class Client
{
    public static void Main()
    {
        Player player = new Player { IsCompletedTask = true, Reputation = 80 };

        NPC villager = new Villager();
        NPC merchant = new Merchant();
        NPC warrior = new Warrior();

        villager.Talk(player.ChooseStrategyByReputation());
        merchant.Talk(player.ChooseStrategyByReputation());
        warrior.Talk(player.ChooseStrategyByTask());
    }
}
相关推荐
玄同7658 小时前
我的 Trae Skill 实践|使用 UV 工具一键搭建 Python 项目开发环境
开发语言·人工智能·python·langchain·uv·trae·vibe coding
Yorlen_Zhang8 小时前
Python Tkinter Text 控件完全指南:从基础编辑器到富文本应用
开发语言·python·c#
lxl13078 小时前
C++算法(1)双指针
开发语言·c++
不绝1919 小时前
C#进阶:预处理指令/反射,Gettype,Typeof/关键类
开发语言·c#
无小道9 小时前
Qt-qrc机制简单介绍
开发语言·qt
zhooyu9 小时前
C++和OpenGL手搓3D游戏编程(20160207进展和效果)
开发语言·c++·游戏·3d·opengl
HAPPY酷9 小时前
C++ 和 Python 的“容器”对决:从万金油到核武器
开发语言·c++·python
大鹏说大话9 小时前
告别 MSBuild 脚本混乱:用 C# 和 Nuke 构建清晰、可维护的现代化构建系统
开发语言·c#
Mr_sun.9 小时前
Day09——入退管理-入住-2
android·java·开发语言
MAGICIAN...9 小时前
【java-软件设计原则】
java·开发语言