3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

前回と同じくクリスマスにちなんだゲームを作ってみました
今回は、今までと違い生成AI(Copilot)を利用してゲームを作成してみるということにチャレンジしてみます

ゲームイメージ

ゲームイメージとしては以下のようなものとします

  • 登場キャラクタはサンタと子供
  • サンタが画面上からランダムにプレゼントを落としてくる
  • 子供を操作して落ちてくるプレゼントをキャッチする
  • 一定時間のキャッチした数をスコアとする

さっそくやってみる

上記のゲームイメージをCopilotに伝えてみます

01_copilot.png

以下のソースコードが提示されました

<!DOCTYPE html>
<html>
<head>
    <title>Santa's Gift Drop Game</title>
    <style>
        body { margin: 0; overflow: hidden; background: lightblue; }
        canvas { display: block; }
        .rect { position: absolute; }
        .santa { width: 50px; height: 50px; background: red; top: 20px; left: 50%; transform: translateX(-50%); }
        .child { width: 50px; height: 50px; background: green; bottom: 20px; left: 50%; transform: translateX(-50%); }
        .gift { width: 20px; height: 20px; background: gold; position: absolute; }
    </style>
</head>
<body>
    <canvas id="gameCanvas" width="800" height="600"></canvas>
    <div class="rect santa" id="santa"></div>
    <div class="rect child" id="child"></div>
    <script>
        const canvas = document.getElementById('gameCanvas');
        const ctx = canvas.getContext('2d');
        const gifts = [];
        let score = 0;
        const child = document.getElementById('child');
        const santa = document.getElementById('santa');

        function random(min, max) {
            return Math.floor(Math.random() * (max - min)) + min;
        }

        function dropGift() {
            const gift = document.createElement('div');
            gift.className = 'gift';
            gift.style.left = random(0, canvas.width - 20) + 'px';
            gift.style.top = '0px';
            document.body.appendChild(gift);
            gifts.push(gift);
        }

        function updateGifts() {
            for (let i = 0; i < gifts.length; i++) {
                const gift = gifts[i];
                gift.style.top = (parseInt(gift.style.top) + 5) + 'px';

                if (parseInt(gift.style.top) > canvas.height - 70 &&
                    Math.abs(parseInt(gift.style.left) - parseInt(child.style.left)) < 50) {
                    document.body.removeChild(gift);
                    gifts.splice(i, 1);
                    score++;
                    console.log('Score:', score);
                }
            }
        }

        function moveChild(event) {
            const step = 10;
            if (event.key === 'ArrowLeft') {
                child.style.left = (parseInt(child.style.left) - step) + 'px';
            } else if (event.key === 'ArrowRight') {
                child.style.left = (parseInt(child.style.left) + step) + 'px';
            }
        }

        document.addEventListener('keydown', moveChild);

        setInterval(dropGift, 2000);
        setInterval(updateGifts, 50);
    </script>
</body>
</html>

ブラウザで表示すると以下のように表示されました
02_game_img.png

画面の上下にサンタと子供(上にサンタ、下に子供)が表示され、プレゼントが画面上から下に向かってランダムに落ちてきています
この時点で概ね自分のイメージしたアプリが作られています

機能追加

以下の部分が実現出来ていないため、追加してみます

  • カーソルキーで子供を移動させる(コード上には矢印キーで移動する処理があるが動いていない)
  • 子供がプレゼントを取るとスコアが加算される

以下のように質問してみました
03_copilot.png

出力されたコード

<!DOCTYPE html>
<html>
<head>
    <title>Santa's Gift Drop Game</title>
    <style>
        body { margin: 0; overflow: hidden; background: lightblue; }
        canvas { display: block; }
        .rect { position: absolute; }
        .santa { width: 50px; height: 50px; background: red; top: 20px; left: 50%; transform: translateX(-50%); }
        .child { width: 50px; height: 50px; background: green; bottom: 20px; left: 50%; transform: translateX(-50%); }
        .gift { width: 20px; height: 20px; background: gold; position: absolute; }
        #scoreBoard { position: absolute; top: 10px; left: 10px; font-size: 20px; font-family: Arial, sans-serif; }
    </style>
</head>
<body>
    <canvas id="gameCanvas" width="800" height="600"></canvas>
    <div class="rect santa" id="santa"></div>
    <div class="rect child" id="child"></div>
    <div id="scoreBoard">Score: 0</div>
    <script>
        const canvas = document.getElementById('gameCanvas');
        const ctx = canvas.getContext('2d');
        const gifts = [];
        let score = 0;
        const child = document.getElementById('child');
        const santa = document.getElementById('santa');
        const scoreBoard = document.getElementById('scoreBoard');

        function random(min, max) {
            return Math.floor(Math.random() * (max - min)) + min;
        }

        function dropGift() {
            const gift = document.createElement('div');
            gift.className = 'gift';
            gift.style.left = random(0, canvas.width - 20) + 'px';
            gift.style.top = '0px';
            document.body.appendChild(gift);
            gifts.push(gift);
        }

        function updateGifts() {
            for (let i = 0; i < gifts.length; i++) {
                const gift = gifts[i];
                gift.style.top = (parseInt(gift.style.top) + 5) + 'px';

                if (parseInt(gift.style.top) > canvas.height - 70 &&
                    Math.abs(parseInt(gift.style.left) - parseInt(child.style.left)) < 50) {
                    document.body.removeChild(gift);
                    gifts.splice(i, 1);
                    score++;
                    scoreBoard.textContent = 'Score: ' + score;
                    console.log('Score:', score);
                }
            }
        }

        function moveChild(event) {
            const step = 10;
            const currentPosition = parseInt(child.style.left) || (canvas.width / 2 - 25); // 初期位置設定
            if (event.key === 'ArrowLeft') {
                child.style.left = Math.max(0, currentPosition - step) + 'px';
            } else if (event.key === 'ArrowRight') {
                child.style.left = Math.min(canvas.width - 50, currentPosition + step) + 'px';
            }
        }

        document.addEventListener('keydown', moveChild);

        setInterval(dropGift, 2000);
        setInterval(updateGifts, 50);
    </script>
</body>
</html>

ブラウザでの表示はこのようになりました

04_game_img2.png

スコアの表示が追加されたのと、カーソルキーの左右で移動出来るようになりました
またプレゼントを取るとスコアが加算される部分も実現出来ています

ゲームとしての体裁を整える

現時点で大まかな部分は出来たので、もう少しだけゲームの形になるように要素を追加してみます

具体的には、

  • タイトル画面→ゲーム画面(先ほどのプレゼントが落ちてくる画面)→結果画面の3画面構成とする
  • ゲーム画面は30秒経過すると自動で結果画面へ移動するようにする

というわけで以下のように質問します

05_copilot.png

↓以下のものが作成されました
※実際に遊べます

See the Pen Qiita30_santagame03 by nojima (@noji505) on CodePen.

最後に

今回は自身初の試みとして生成AIを使用してゲームアプリを作成してみました
本記事では質問1→質問2と順当に機能をブラッシュアップさせていってますが、実際はその前に動いていた機能が動かなくなる(プレゼントが降ってこなくなる、キャラが操作出来なくなる等)ことがあり、何度か質問を繰り返してコードを生成しました

それでも作りたいアプリを日本語で指示するだけで、イメージ通りのものが出来上がってくるのはとても楽しかったし可能性を感じました
これからも生成AIの分野は進化していくと思うので、使う側も日々進化していきたいと思います

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?