Skip to content

ポーズと終了

Reputeless edited this page Mar 14, 2017 · 2 revisions

ポーズ画面(背景ぼかし)

# include <Siv3D.hpp>

void Main()
{
	Graphics::SetBackground(Palette::White);

	const Texture texture(L"Example/siv3d-kun.png");

	const Font font(36, Typeface::Light);

	Stopwatch stopwatch(true);

	DynamicTexture texturePause;

	while (System::Update())
	{
		if (stopwatch.isPaused())
		{
			if (ScreenCapture::HasNewFrame())
			{
				texturePause.fill(ScreenCapture::GetFrame().gaussianBlurred(16, 16));
			}

			if (Input::KeyP.clicked)
			{
				stopwatch.resume();
			}

			texturePause.draw(AlphaF(0.5));

			RoundRect(Rect(300, 200).setCenter(Window::Center()), 20).draw(ColorF(0.2, 0.6, 0.8, 0.8));

			font(L"PAUSE").drawCenter(Window::Center());
		}
		else
		{
			if (Input::KeyP.clicked)
			{
				ScreenCapture::Request();

				stopwatch.pause();
			}

			for (auto i : step(18))
			{
				const double radian = Radians(i * 20 + stopwatch.ms() / 100.0);

				Circle(Circular(200, radian) + Window::Center(), 10).draw(HSV(i * 20));
			}

			texture.drawAt(Window::Center());
		}
	}
}

Esc 長押しで終了

# include <Siv3D.hpp>

void Main()
{
	System::SetExitEvent(WindowEvent::CloseButton);

	const Font font(20);

	while (System::Update())
	{
		const int32 t = Input::KeyEscape.pressedDuration;

		if (t > 0)
		{
			font(L"Quitting", String(Min(t / 300, 3), L'.'))
				.draw(20, 20, AlphaF(Min(t / 300.0, 1.0)));

			if (t >= 1200)
			{
				System::Exit();
			}
		}
	}
}

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