我最近一直在与 verbs 和 livewire 合作,并认为尝试创建一些我喜欢玩的纸牌游戏是一个有趣的实验。
为了促进这一点,我需要定义一副卡片,我可以在之后从事的任何项目中使用它。
一副牌需要包含 card、deck 和 cardcollection 类。一张牌应有花色和数值,一副牌应由 52 张牌组成。因为花色和数值都是为一副牌定义的,所以我可以使用枚举来表示牌的属性。
cardcollection 类允许我以 verbs 状态安全地存储卡片集合。
<?php // cards/enums/suit.php declare(strict_types=1); namespace cardsenums; enum suit: string { case clubs = 'clubs'; case diamonds = 'diamonds'; case hearts = 'hearts'; case spades = 'spades'; }登录后复制
<?php // cards/enums/value.php declare(strict_types=1); namespace cardsenums; enum value: string { case two = 'two'; case three = 'three'; case four = 'four'; case five = 'five'; case six = 'six'; case seven = 'seven'; case eight = 'eight'; case nine = 'nine'; case ten = 'ten'; case jack = 'jack'; case queen = 'queen'; case king = 'king'; case ace = 'ace'; }登录后复制
<?php // cards/card.php declare(strict_types=1); namespace cards; use cardsenumssuit; use cardsenumsalue; final readonly class card { public function __construct( public suit $suit, public value $value, ) {} }登录后复制
<?php // cards/cardcollection.php declare(strict_types=1); namespace cards; use illuminatesupportcollection; use symfonycomponentserializer ormalizerdenormalizerinterface; use symfonycomponentserializer ormalizer ormalizerinterface; use thunkerbsserializedbyverbs; class cardcollection extends collection implements serializedbyverbs { public static function deserializeforverbs(mixed $data, denormalizerinterface $denormalizer): static { return static::make($data) ->map(fn($serialized) => card::deserializeforverbs($serialized, $denormalizer)); } public function serializeforverbs(normalizerinterface $normalizer): string|array { return $this->map(fn(card $card) => $card->serializeforverbs($normalizer))->tojson(); } }登录后复制
<?php // Cards/Deck.php declare(strict_types=1); namespace Cards; use CardsEnumsSuit; use CardsEnumsValue; final class Deck { public CardCollection $cards; public function __construct() { $this->cards = CardCollection::make([]); collect(CardSuit::cases()) ->each(function (CardSuit $suit): void { collect(CardValue::cases()) ->each(function (CardValue $value) use ($suit): void { $this->cards->push(new Card($suit, $value)); }); }); $this->shuffle(); } public function shuffle(): void { $this->cards = $this->cards ->shuffle() ->reverse(); } public function deal(): ?Card { if (0 === $this->cards->count()) { return null; } return $this->cards->pop(); } public function remainingCards(): int { return $this->cards->count(); } }登录后复制
以上就是一副纸牌的详细内容,更多请关注慧达安全导航其它相关文章!
免责 声明
1、本网站名称:慧达安全导航
2、本站永久网址:https//www.huida178.com/
3、本站所有资源来源于网友投稿和高价购买,所有资源仅对编程人员及源代码爱好者开放下载做参考和研究及学习,本站不提供任何技术服务!
4、本站所有资源的属示图片和信息不代表本站的立场!本站只是储蓄平台及搬运
5、下载者禁止在服务器和虚拟机下进行搭建运营,本站所有资源不支持联网运行!只允许调试,参考和研究!!!!
6、未经原版权作者许可禁止用于任何商业环境,任何人不得擅作它用,下载者不得用于违反国家法律,否则发生的一切法律后果自行承担!
7、为尊重作者版权,请在下载24小时内删除!请购买原版授权作品,支持你喜欢的作者,谢谢!
8.若资源侵犯了您的合法权益,请持 您的版权证书和相关原作品信息来信通知我们!QQ:1247526623我们会及时删除,给您带来的不便,我们深表歉意!
9、如下载链接失效、广告或者压缩包问题请联系站长处理
10、如果你也有好源码或者教程,可以发布到网站,分享有金币奖励和额外收入!
11、本站资源售价只是赞助,收取费用仅维持本站的日常运营所需
12、因源码具有可复制性,一经赞助,不得以任何形式退款。
13、本文内容由网友自发贡献和站长收集,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系1247526623@qq.com
发表评论 取消回复