Skip to content

15パズル

Reputeless edited this page Mar 14, 2017 · 3 revisions
15パズル

イラスト提供: 古古米 さん

# include <Siv3D.hpp>

bool Swappable(int32 a, int32 b)
{
    return (a / 4 == b / 4 && Abs(a - b) == 1) || (a % 4 == b % 4 && Abs(a - b) == 4);
}

void Main()
{
    const Texture texture = Dialog::OpenTexture(TextureDesc::Mipped);
    const int32 pieceSize = 100;
    Optional<int32> grabbed;
    std::array<Optional<int32>, 16> pieces = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 };

    for (int32 i = 0; i < 10000; ++i)
    {
        const int32 a = Random(0, 15);
        const int32 b = a + RandomSelect({ -4, -1, 1, 4 });

        if (pieces[a] && InRange(b, 0, 15) && !pieces[b] && Swappable(a, b))
        {
            std::swap(pieces[a], pieces[b]);
        }
    }

    while (System::Update())
    {
        if (!Input::MouseL.pressed)
        {
            grabbed = none;
        }

        for (auto i : step(16))
        {
            const Rect pieceRect(i % 4 * pieceSize, i / 4 * pieceSize, pieceSize, pieceSize);

            if (!pieces[i])
            {
                if (grabbed && pieceRect.mouseOver && Swappable(i, grabbed.value()))
                {
                    std::swap(pieces[i], pieces[grabbed.value()]);
                    grabbed = none;
                }

                continue;
            }

            const int32 offset = pieces[i].value();
            pieceRect(texture.uv(offset % 4 * 0.25, offset / 4 * 0.25, 0.25, 0.25)).draw();

            if (pieceRect.leftPressed)
            {
                grabbed = i;
                pieceRect.draw({ 255, 0, 0, 80 });
            }

            pieceRect.drawFrame();
        }

        texture.resize(200, 200).draw(440, 200);
    }
}

Siv3D について

  1. Siv3D の基本
  2. 図形を描く
  3. テクスチャを描く
  4. テキストを描く
  5. 文字列と数値の変換
  6. キーボード入力
  7. マウス入力
  8. サウンドの再生
  9. MIDI の再生
  10. ウィンドウと背景
  11. 図形のあたり判定
  12. 乱数
  13. ダイアログ
  14. ドラッグ & ドロップ
  15. アプリの状態
  16. テキストファイル
  17. INI, CSV, JSON
  18. バイナリファイル
  19. GUI
  20. アセット管理
  21. 画像編集
  22. Web カメラ
  23. マイク入力
  24. 経過時間の測定
  25. HSV カラー
  26. ファイルダウンロード
  27. 3D 描画
  28. 2D のレンダーステート
  29. 3D のレンダーステート
  30. パーティクル
  31. スクリーンショット
  32. アプリケーションの公開
  33. さらに学ぶには

表現テクニック集

入出力デバイス

開発のヒント

Clone this wiki locally