私は最近 Verbs と Livewire を使って作業しており、楽しい実験として、自分が楽しんでプレイできるカード ゲームをいくつか作成してみることだと考えました。
これを容易にするために、この後取り組むプロジェクトで使用できるカードのデッキを定義する必要があります。
トランプのデッキには、Card、Deck、および CardCollection クラスが含まれている必要があります。カードにはスートと値があり、デッキは 52 枚のカードで構成されている必要があります。スートと値はすべてカード デッキに対して定義されているため、カードのプロパティに列挙型を使用できます。
CardCollection クラスを使用すると、カードのコレクションを動詞状態で安全に保存できます。
<?php // Cards/Enums/Suit.php declare(strict_types=1); namespace Cards\Enums; 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 Cards\Enums; 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 Cards\Enums\Suit; use Cards\Enums\Value; final readonly class Card { public function __construct( public Suit $suit, public Value $value, ) {} }
<?php // Cards/CardCollection.php declare(strict_types=1); namespace Cards; use Illuminate\Support\Collection; use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; use Symfony\Component\Serializer\Normalizer\NormalizerInterface; use Thunk\Verbs\SerializedByVerbs; 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 Cards\Enums\Suit; use Cards\Enums\Value; 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(); } }
以上がトランプのデッキの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。