cpp: State Pattern
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 | /*****************************************************************/ /** * \file Gold.h * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #pragma once #ifndef GOLD_H #define GOLD_H #include <iostream> using namespace std; namespace DuJewelryStatePattern { class GoldStatus; /// <summary> /// 液态 固态 气态 无态 solid, liquid and gas stateless /// </summary> class Gold { public : Gold( int life); ~Gold(); public : /// <summary> /// /// </summary> /// <param name="power"></param> void Liked( int power); public : /// <summary> /// 获取生命值 /// </summary> /// <returns></returns> int GetBoilingPoint() // { return mBoilingPoint; } /// <summary> /// 设置生命值 /// </summary> /// <param name="life"></param> void SetBoilingPoint( int life) { mBoilingPoint = life; } /// <summary> /// 获取当前状态 /// </summary> /// <returns></returns> GoldStatus* getCurrentState() { return mState; } /// <summary> /// 设置当前状态 /// </summary> /// <param name="pstate"></param> void setCurrentState(GoldStatus* pstate) { mState = pstate; } private : /// <summary> /// 沸點 /// </summary> int mBoilingPoint; /// <summary> /// 持有状态对象 /// </summary> GoldStatus* mState; }; } #endif /*****************************************************************/ /** * \file Gold.cpp * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #include "Gold.h" #include "GoldStatusLiquid.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// 构造函数,怪物的初始状态 /// </summary> /// <param name="life"></param> Gold::Gold( int life) :mBoilingPoint(life), mState( nullptr ) { //mState = new GoldStatusLiquid(); mState = GoldStatusLiquid::getInstance(); } /// <summary> /// 析构函数 /// </summary> Gold::~Gold() { //delete m_pState; } //怪物被攻击 void Gold::Liked( int power) { /* int orglife = mBoilingPoint; //暂存原来的怪物血量值用于后续比较 mBoilingPoint -= power; //怪物剩余的血量 if (orglife > 400) //怪物原来处于凶悍状态 { if (mBoilingPoint > 400) //状态未变 { //cout << "怪物受到" << power << "点伤害并对主角进行疯狂的反击!" << endl; mState->Liked(power, this); //其他的逻辑代码被本Monster类委托给了具体状态类来处理 } else if (mBoilingPoint > 100) //状态从凶悍改变到不安 { //cout << "怪物受到" << power << "点伤害并对主角进行反击,怪物变得焦躁不安并开始呼唤支援!" << endl; delete mState; //释放原有的状态对象 mState = new GoldStatusGas(); //怪物转到不安状态 mState->Liked(power, this); } else if (mBoilingPoint > 0)//状态从凶悍状态改变到恐惧状态,主角的攻击太恐怖了 { //cout << "怪物受到" << power << "点伤害,怪物变得恐惧并开始逃跑!" << endl; delete mState; //释放原有的状态对象 mState = new GoldStatusSolid(); //怪物转到恐惧状态 mState->Liked(power, this); } else//状态从凶悍改变到死亡 { //cout << "怪物受到" << power << "点伤害,已经死亡!" << endl; delete mState; //释放原有的状态对象 mState = new GoldStatusStateless(); //怪物转到死亡状态 mState->Liked(power, this); } } else if (orglife > 100) //怪物原来处于不安状态 { if (mBoilingPoint > 100) //状态未变 { //cout << "怪物受到" << power << "点伤害并对主角进行反击,并继续急促的呼唤支援!" << endl; mState->Liked(power, this); } else if (mBoilingPoint > 0)//状态从不安改变到恐惧 { //cout << "怪物受到" << power << "点伤害,怪物变得恐惧并开始逃跑!" << endl; delete mState; //释放原有的状态对象 mState = new GoldStatusSolid(); //怪物转到恐惧状态 mState->Liked(power, this); } else//状态从不安改变到死亡 { //cout << "怪物受到" << power << "点伤害,已经死亡!" << endl; delete mState; //释放原有的状态对象 mState = new GoldStatusStateless(); //怪物转到死亡状态 mState->Liked(power, this); } } else if (orglife > 0) //怪物原来处于恐惧状态 { if (mBoilingPoint > 0)//状态未变 { //cout << "怪物受到" << power << "点伤害,怪物继续逃跑!" << endl; mState->Liked(power, this); } else//状态从恐惧改变到死亡 { //cout << "怪物受到" << power << "点伤害,已经死亡!" << endl; delete mState; //释放原有的状态对象 mState = new GoldStatusStateless(); //怪物转到死亡状态 mState->Liked(power, this); } } else //怪物已经死亡 { //已经死亡的怪物,状态不会继续发生改变 //cout << "怪物已死亡,不能再被攻击!" << endl; mState->Liked(power, this); } */ mState->Liked(power, this ); } } #pragma once #ifndef GOLDSTATUS_H #define GOLDSTATUS_H #include <iostream> using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> class Gold; /// <summary> /// /// </summary> class GoldStatus { public : /// <summary> /// /// </summary> /// <param name="power"></param> /// <param name="mainobj"></param> virtual void Liked( int power, Gold* mainobj) = 0; /// <summary> /// /// </summary> virtual ~GoldStatus() {} }; } #endif /*****************************************************************/ /** * \file GoldStatusStateless.h * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #pragma once #ifndef GOLDSTATUSSTATELESS_H #define GOLDSTATUSSTATELESS_H #include <iostream> #include "Gold.h" #include "GoldStatus.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> class GoldStatusStateless: public GoldStatus { public : virtual void Liked( int power, Gold* mainobj); public : static GoldStatusStateless* getInstance() { static GoldStatusStateless instance; return &instance; } }; } #endif /*****************************************************************/ /** * \file GoldStatusStateless.cpp * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #include "GoldStatusStateless.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> /// <param name="power"></param> /// <param name="mainobj"></param> void GoldStatusStateless::Liked( int power, Gold* mainobj) { int orglife = mainobj->GetBoilingPoint(); if (orglife > 0) { // mainobj->SetBoilingPoint(orglife - power); //无态 //处理等 } cout << "无形之中!" << std::endl; } } /*****************************************************************/ /** * \file GoldStatusSolid.h * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #pragma once #ifndef GOLDSTATUSSOLID_H #define GOLDSTATUSSOLID_H #include <iostream> #include "Gold.h" #include "GoldStatus.h" #include "GoldStatusGas.h" #include "GoldStatusStateless.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> class GoldStatusSolid : public GoldStatus { public : virtual void Liked( int power, Gold* mainobj); public : static GoldStatusSolid* getInstance() { static GoldStatusSolid instance; return &instance; } }; } #endif /*****************************************************************/ /** * \file GoldStatusSolid.cpp * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #include "GoldStatusSolid.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> /// <param name="power"></param> /// <param name="mainobj"></param> void GoldStatusSolid::Liked( int power, Gold* mainobj) { int orglife = mainobj->GetBoilingPoint(); if ((orglife - power) > 0) // { //状态未变 mainobj->SetBoilingPoint(orglife - power); //液态 cout << "处于液态状态中,随处都有其容入之处!" << std::endl; //处理其他动作逻辑比如逃跑 } else { //不管下个状态是啥,总之不会是凶悍、不安和恐惧状态,只可能是死亡状态 //delete mainobj->getCurrentState(); //mainobj->setCurrentState(new GoldStatusDead); mainobj->setCurrentState(GoldStatusStateless::getInstance()); mainobj->getCurrentState()->Liked(power, mainobj); } } } /*****************************************************************/ /** * \file GoldStatusLiquid.h * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #pragma once #ifndef GOLDSTATUSFEROC_H #define GOLDSTATUSFEROC_H #include <iostream> #include "Gold.h" #include "GoldStatus.h" #include "GoldStatusGas.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> class GoldStatusLiquid: public GoldStatus { public : virtual void Liked( int power, Gold* mainobj); public : static GoldStatusLiquid* getInstance() { static GoldStatusLiquid instance; return &instance; } }; } #endif /*****************************************************************/ /** * \file GoldStatusSolid.cpp * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #include "GoldStatusSolid.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> /// <param name="power"></param> /// <param name="mainobj"></param> void GoldStatusSolid::Liked( int power, Gold* mainobj) { int orglife = mainobj->GetBoilingPoint(); if ((orglife - power) > 0) // { //状态未变 mainobj->SetBoilingPoint(orglife - power); //液态 cout << "处于液态状态中,随处都有其容入之处!" << std::endl; //处理其他动作逻辑比如逃跑 } else { //不管下个状态是啥,总之不会是凶悍、不安和恐惧状态,只可能是死亡状态 //delete mainobj->getCurrentState(); //mainobj->setCurrentState(new GoldStatusDead); mainobj->setCurrentState(GoldStatusStateless::getInstance()); mainobj->getCurrentState()->Liked(power, mainobj); } } } /*****************************************************************/ /** * \file GoldStatusGas.h * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #pragma once #ifndef GOLDSTATUSGAS_H #define GOLDSTATUSGAS_H #include <iostream> #include "Gold.h" #include "GoldStatus.h" #include "GoldStatusSolid.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> class GoldStatusGas: public GoldStatus { public : virtual void Liked( int power, Gold* mainobj); public : static GoldStatusGas* getInstance() { static GoldStatusGas instance; return &instance; } }; } #endif /*****************************************************************/ /** * \file GoldStatusGas.cpp * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #include "GoldStatusGas.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> /// <param name="power"></param> /// <param name="mainobj"></param> void GoldStatusGas::Liked( int power, Gold* mainobj) { int orglife = mainobj->GetBoilingPoint(); if ((orglife - power) > 100) //怪物原来处于不安状态,现在依旧处于不安状态 { //状态未变 mainobj->SetBoilingPoint(orglife - power); //气态 cout << "处于气态状态中,可以四处飘溢!" << std::endl; //处理其他动作逻辑比如反击和不停的呼唤支援 } else { //不管下个状态是啥,总之不会是凶悍和不安状态,只可能是恐惧、死亡状态之一,先无条件转到恐惧状态去 //delete mainobj->getCurrentState(); //mainobj->setCurrentState(new GoldStatusFear); mainobj->setCurrentState(GoldStatusSolid::getInstance()); mainobj->getCurrentState()->Liked(power, mainobj); } } } /*****************************************************************/ /** * \file Pear.h * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #pragma once #ifndef PEAR_H #define PEAR_H #include <iostream> #include "Gold.h" #include "GoldStatus.h" #include "GoldStatusGas.h" #include "GoldStatusStateless.h" using namespace std; namespace DuJewelryStatePattern { //怪物状态枚举值 enum PearState { /// <summary> /// 液态 /// </summary> Solid, /// <summary> /// 固态 /// </summary> Liquid, /// <summary> /// 气态 /// </summary> Gas, /// <summary> /// 无态 /// </summary> Stateless }; /// <summary> /// /// </summary> class Pear { public : //构造函数,怪物的初始状态从“凶悍”开始 Pear( int life) :mBoilingPoint(life), mStatus(Solid) {} public : /// <summary> /// /// </summary> /// <param name="power"></param> void Liked( int power) { mBoilingPoint -= power; if (mStatus == Solid) { if (mBoilingPoint > 400) { cout << "液态" << power << " 可以熔炼制工!" << endl; //处理其他动作逻辑 } else if (mBoilingPoint > 100) { cout << "固态" << power << "可以制作精美饰物!" << endl; mStatus = Liquid; //处理其他动作逻辑 } else if (mBoilingPoint > 0) { cout << "气态" << power << "可以无处不飘溢!" << endl; mStatus = Gas; //处理其他动作逻辑 } else { cout << "无态" << power << "无所不在!" << endl; mStatus = Stateless; //处理等 } } else if (mStatus == Liquid) { if (mBoilingPoint > 100) { cout << "固态" << power << "可以制作精美饰物!" << endl; //处理其他动作逻辑 } else if (mBoilingPoint > 0) { cout << "气态" << power << "可以无处不飘溢!" << endl; mStatus = Gas; //处理其他动作逻辑 } else { cout << "无态" << power << "无所不在!" << endl; mStatus = Stateless; //处理等 } } else if (mStatus == Solid) { if (mBoilingPoint > 0) { cout << "固态" << power << "可以制作精美饰物!" << endl; //处理其他动作逻辑比如 } else { cout << "无态" << power << "无所不在!" << endl; mStatus = Stateless; //处理等 } } else { cout << "无态,无所不在!" << endl; } } private : /// <summary> /// 沸点 /// </summary> int mBoilingPoint; /// <summary> /// 初始状态 /// </summary> PearState mStatus; }; } #endif /*****************************************************************/ /** * \file GeovinDu.h * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #pragma once #ifndef GEOVINDU_H #define GEOVINDU_H #include <iostream> #include "Gold.h" #include "GoldStatus.h" #include "GoldStatusGas.h" #include "GoldStatusStateless.h" #include "Pear.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> class GeovinDu { private : public : /// <summary> /// /// </summary> void displaySimple(); /// <summary> /// /// </summary> void displayPearSimple(); }; } #endif /*****************************************************************/ /** * \file GeovinDu.cpp * \brief State Pattern 状态模式 C++ 14 * 2023年5月29日 涂聚文 Geovin Du Visual Studio 2022 edit. * \author geovindu * \date May 2023 *********************************************************************/ #include "GeovinDu.h" using namespace std; namespace DuJewelryStatePattern { /// <summary> /// /// </summary> void GeovinDu::displaySimple() { Gold gold(500); cout << "黃金礦挖取,当前处于升華状态,500点!" << endl; gold.Liked(20); gold.Liked(100); gold.Liked(200); gold.Liked(170); gold.Liked(100); gold.Liked(100); } /// <summary> /// /// </summary> void GeovinDu::displayPearSimple() { DuJewelryStatePattern::Pear pear(500); cout << "美好状态,500点!" << endl; pear.Liked(20); pear.Liked(100); pear.Liked(200); pear.Liked(170); pear.Liked(100); pear.Liked(100); } } |
调用:
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 | // ConsoleDuStatePattern.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #define _UNICODE #include <iostream> #include "GeovinDu.h" #ifdef _DEBUG //只在Debug(调试)模式下 #ifndef DEBUG_NEW #define DEBUG_NEW new(_NORMAL_BLOCK,__FILE__,__LINE__) //重新定义new运算符 #define new DEBUG_NEW #endif #endif using namespace std; using namespace DuJewelryStatePattern; int main() { std::cout << "Hello World!涂聚文 Geovin Du\n" ; GeovinDu geovin; geovin.displaySimple(); cout << "***********" << endl; geovin.displayPearSimple(); system ( "pause" ); return 0; } // 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单 // 调试程序: F5 或调试 >“开始调试”菜单 // 入门使用技巧: // 1. 使用解决方案资源管理器窗口添加/管理文件 // 2. 使用团队资源管理器窗口连接到源代码管理 // 3. 使用输出窗口查看生成输出和其他消息 // 4. 使用错误列表窗口查看错误 // 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目 // 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件 #define UNICODE |
输出
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | Hello World!涂聚文 Geovin Du 黃金礦挖取,当前处于升華状态,500点! 处于固状态中,可以制作精美器物! 处于气态状态中,可以四处飘溢! 处于气态状态中,可以四处飘溢! 处于液态状态中,随处都有其容入之处! 无形之中! 无形之中! *********** 美好状态,500点! 液态20 可以熔炼制工! 固态100可以制作精美饰物! 固态200可以制作精美饰物! 气态170可以无处不飘溢! 无态,无所不在! 无态,无所不在! 请按任意键继续. . . |
哲学管理(学)人生, 文学艺术生活, 自动(计算机学)物理(学)工作, 生物(学)化学逆境, 历史(学)测绘(学)时间, 经济(学)数学金钱(理财), 心理(学)医学情绪, 诗词美容情感, 美学建筑(学)家园, 解构建构(分析)整合学习, 智商情商(IQ、EQ)运筹(学)生存.---Geovin Du(涂聚文)
分类:
Cpp programming
标签:
desgin patterns
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
2013-05-29 sql server:自定義計算固定工作日,雙休日函數