Skip to content

画面を揺らす

Reputeless edited this page Mar 14, 2017 · 3 revisions
画面を揺らす
# include <Siv3D.hpp>

class ScreenShake : public IEffect
{
private:

    double m_maxOffset, m_lengthMillisec;

public:

    ScreenShake(double maxOffset, double lengthMillisec)
        : m_maxOffset(maxOffset)
        , m_lengthMillisec(lengthMillisec) {}

    bool update(double timeSec) override
    {
        const double timeMillisec = timeSec * 1000.0;

        const Vec2 offset = RandomVec2(Circle(m_maxOffset * Max(1.0 - timeMillisec / m_lengthMillisec, 0.0)));

        Graphics2D::SetTransform(Mat3x2::Translate(offset));

        return timeMillisec < m_lengthMillisec;
    }
};

void Main()
{
    const Texture texture0(L"Example/Windmill.png");
    const Texture texture1(L"Example/Siv3d-kun.png");
    const Font font(15);
    Effect effect;

    while (System::Update())
    {
        if (effect.num_effects == 0 && Input::MouseL.clicked)
        {
            effect.add<ScreenShake>(16, 600);
        }

        effect.update();

        texture0.draw();
        texture1.draw(300, 0);

        Graphics2D::SetTransform(Mat3x2::Identity());

        RoundRect(40, 380, 560, 80, 3).draw(Color(20, 80, 200, 230));

        if (effect.num_effects != 0)
        {
            font(L"攻撃!").draw(60, 390);
        }
    }
}

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