베이직 이펙트 포그
페이지 업데이트 :
페이지 생성 날짜 :
요약
BasicEffect의 안개 부분과 관련된 매개 변수를 조작하여 모델이 표시되는 방식을 확인합니다.
운영 환경
필수 구성 요소
지원되는 XNA 버전 |
|
지원되는 플랫폼 |
|
Windows 필수 버텍스 셰이더 버전 | 2.0 |
Windows 필수 픽셀 셰이더 버전 | 2.0 |
운영 환경
플랫폼 |
|
샘플로 작업하는 방법
작동 키보드Xbox | 360 컨트롤러마우스 | 터치 | ||
---|---|---|---|---|
변경할 매개 변수를 선택합니다 | ↑、↓ | 왼쪽 스틱 ↑, ↓ | 왼쪽 버튼 | - |
파라미터 변경 | ←、→ | 왼쪽 스틱 ←, → | ←→ 드래그 | - |
물질
안개
안개는 안개의 의미를 말하며, 물체가 시점 위치에서 멀어질수록 안개로 인해 시야가 좁아지는 방식으로 표현할 수 있습니다. 안개는 환경 파라미터와 같은 일반적인 설정이 아니라 각 효과에 대해 설정됩니다.
안개 매개변수는 다음과 같습니다.
FogEnabled (영문) | 안개를 사용할지 여부를 지정합니다. |
안개색(FogColor) | 안개의 색상을 지정합니다. |
포그스타트 | 안개가 시작되기 전의 관측점 위치로부터의 거리를 지정합니다. |
포그엔드(FogEnd) | 안개 색상이 100% 반사되는 관측점으로부터의 거리를 지정합니다. |
안개 변화의 이미지
아래 이미지는 다양한 각 안개 값을 보여줍니다.
안개 없음
안개가 제거된 상태입니다.
사용 | 거짓 |
색상(빨간색) | 1 |
색상(녹색) | 1 |
색상(파란색) | 1 |
시작하다 | 60 |
끝 | 100 |
초기 상태
샘플이 시작될 때의 상태입니다.
사용 | 참 |
색상(빨간색) | 1 |
색상(녹색) | 1 |
색상(파란색) | 1 |
시작하다 | 60 |
끝 | 100 |
색상 변경
안개 색상이 빨간색으로 설정되어 있습니다.
사용 | 참 |
색상(빨간색) | 1 |
색상(녹색) | 0 |
색상(파란색) | 0 |
시작하다 | 60 |
끝 | 100 |
FogStart 수정
FogStart 값 변경. 안개가 0에서 시작하므로, 안개가 뷰포인트에서 FogEnd 거리까지 보간되는 것을 볼 수 있습니다.
사용 | 참 |
색상(빨간색) | 1 |
색상(녹색) | 0 |
색상(파란색) | 0 |
시작하다 | 0 |
끝 | 100 |
FogEnd 수정
FogEnd 값을 변경합니다. FogEnd의 거리가 완전히 흰색인 것을 볼 수 있습니다.
사용 | 참 |
색상(빨간색) | 1 |
색상(녹색) | 1 |
색상(파란색) | 1 |
시작하다 | 34.33 |
끝 | 61.66 |
밭
필드에는 BasicEffect로 설정할 안개 정보가 있습니다. 또한 메뉴 선택을위한 매개 변수가 있지만 조작을위한 매개 변수이기 때문에 자세한 내용은 생략합니다.
<summary>
フォグの有効フラグ
</summary>
private bool fogEnabled = true;
<summary>
フォグの色
</summary>
private Vector3 fogColor = Vector3.One;
<summary>
フォグの開始距離
</summary>
private float fogStart = 60.0f;
<summary>
フォグの終了距離
</summary>
private float fogEnd = 100.0f;
안개 설정
변경된 값은 효과의 fog 파라미터로 설정됩니다.
// フォグを設定
foreach (ModelMesh mesh in this.model.Meshes)
{
foreach (BasicEffect effect in mesh.Effects)
{
// フォグの有効フラグ
effect.FogEnabled = this.fogEnabled;
// フォグの色
effect.FogColor = this.fogColor;
// フォグの開始距離
effect.FogStart = this.fogStart;
// フォグの終了距離
effect.FogEnd = this.fogEnd;
}
}
BasicEffect.FogEnabled
재산
안개를 사용할지 여부를 지정합니다. | 부울 | get, set |
BasicEffect.FogColor
재산
안개의 색상을 지정합니다. | 벡터3 | get, set |
BasicEffect.FogStart
재산
안개의 시작 거리를 지정합니다. 이것은 시점으로부터의 거리입니다. | 뜨다 | get, set |
BasicEffect.FogEnd
재산
안개 색상이 완성되는 끝 거리를 지정합니다. 이것은 시점으로부터의 거리입니다. | 뜨다 | get, set |
모든 코드
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
#if WINDOWS_PHONE
using Microsoft.Xna.Framework.Input.Touch;
#endif
namespace BasicEffectFog
{
<summary>
ゲームメインクラス
</summary>
public class GameMain : Microsoft.Xna.Framework.Game
{
<summary>
グラフィックデバイス管理クラス
</summary>
private GraphicsDeviceManager graphics = null;
<summary>
スプライトのバッチ化クラス
</summary>
private SpriteBatch spriteBatch = null;
<summary>
スプライトでテキストを描画するためのフォント
</summary>
private SpriteFont font = null;
<summary>
直前のキーボード入力の状態
</summary>
private KeyboardState oldKeyboardState = new KeyboardState();
<summary>
直前のマウスの状態
</summary>
private MouseState oldMouseState = new MouseState();
<summary>
直前のゲームパッド入力の状態
</summary>
private GamePadState oldGamePadState = new GamePadState();
<summary>
モデル
</summary>
private Model model = null;
<summary>
フォグの有効フラグ
</summary>
private bool fogEnabled = true;
<summary>
フォグの色
</summary>
private Vector3 fogColor = Vector3.One;
<summary>
フォグの開始距離
</summary>
private float fogStart = 60.0f;
<summary>
フォグの終了距離
</summary>
private float fogEnd = 100.0f;
<summary>
選択しているメニューのインデックス
</summary>
private int selectedMenuIndex = 0;
<summary>
メニューリスト
</summary>
private static string[] MenuNameList = new string[]
{
"Enabled",
"Color (Red)",
"Color (Green)",
"Color (Blue)",
"Start",
"End"
};
<summary>
パラメータテキストリスト
</summary>
private string[] parameters = new string[6];
<summary>
GameMain コンストラクタ
</summary>
public GameMain()
{
// グラフィックデバイス管理クラスの作成
this.graphics = new GraphicsDeviceManager(this);
// ゲームコンテンツのルートディレクトリを設定
this.Content.RootDirectory = "Content";
#if WINDOWS_PHONE
// Windows Phone のデフォルトのフレームレートは 30 FPS
this.TargetElapsedTime = TimeSpan.FromTicks(333333);
// バックバッファサイズの設定
this.graphics.PreferredBackBufferWidth = 480;
this.graphics.PreferredBackBufferHeight = 800;
// フルスクリーン表示
this.graphics.IsFullScreen = true;
#endif
// ウインドウ上でマウスのポインタを表示するようにする
this.IsMouseVisible = true;
}
<summary>
ゲームが始まる前の初期化処理を行うメソッド
グラフィック以外のデータの読み込み、コンポーネントの初期化を行う
</summary>
protected override void Initialize()
{
// TODO: ここに初期化ロジックを書いてください
// コンポーネントの初期化などを行います
base.Initialize();
}
<summary>
ゲームが始まるときに一回だけ呼ばれ
すべてのゲームコンテンツを読み込みます
</summary>
protected override void LoadContent()
{
// テクスチャーを描画するためのスプライトバッチクラスを作成します
this.spriteBatch = new SpriteBatch(this.GraphicsDevice);
// フォントをコンテンツパイプラインから読み込む
this.font = this.Content.Load<SpriteFont>("Font");
// モデルを作成
this.model = this.Content.Load<Model>("Model");
// ライトとビュー、プロジェクションはあらかじめ設定しておく
foreach (ModelMesh mesh in this.model.Meshes)
{
foreach (BasicEffect effect in mesh.Effects)
{
// デフォルトのライト適用
effect.EnableDefaultLighting();
// ビューマトリックスをあらかじめ設定
effect.View = Matrix.CreateLookAt(
new Vector3(0.0f, 30.0f, 50.0f),
new Vector3(0.0f, -10.0f, 0.0f),
Vector3.Up
);
// プロジェクションマトリックスをあらかじめ設定
effect.Projection = Matrix.CreatePerspectiveFieldOfView(
MathHelper.ToRadians(45.0f),
(float)this.GraphicsDevice.Viewport.Width /
(float)this.GraphicsDevice.Viewport.Height,
1.0f,
100.0f
);
}
}
}
<summary>
ゲームが終了するときに一回だけ呼ばれ
すべてのゲームコンテンツをアンロードします
</summary>
protected override void UnloadContent()
{
// TODO: ContentManager で管理されていないコンテンツを
// ここでアンロードしてください
}
<summary>
描画以外のデータ更新等の処理を行うメソッド
主に入力処理、衝突判定などの物理計算、オーディオの再生など
</summary>
<param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
protected override void Update(GameTime gameTime)
{
// 入力デバイスの状態取得
KeyboardState keyboardState = Keyboard.GetState();
MouseState mouseState = Mouse.GetState();
GamePadState gamePadState = GamePad.GetState(PlayerIndex.One);
// Xbox 360 コントローラ、Windows Phone の BACK ボタンを押したときに
// ゲームを終了させます
if (gamePadState.Buttons.Back == ButtonState.Pressed)
{
this.Exit();
}
// メニューの選択
if ((keyboardState.IsKeyDown(Keys.Up) && this.oldKeyboardState.IsKeyUp(Keys.Up)) ||
(gamePadState.ThumbSticks.Left.Y >= 0.5f &&
this.oldGamePadState.ThumbSticks.Left.Y < 0.5f))
{
// 選択メニューをひとつ上に移動
this.selectedMenuIndex =
(this.selectedMenuIndex + this.parameters.Length - 1) % this.parameters.Length;
}
if ((keyboardState.IsKeyDown(Keys.Down) && this.oldKeyboardState.IsKeyUp(Keys.Down)) ||
(gamePadState.ThumbSticks.Left.Y <= -0.5f &&
this.oldGamePadState.ThumbSticks.Left.Y > -0.5f) ||
(this.oldMouseState.LeftButton == ButtonState.Pressed &&
mouseState.LeftButton == ButtonState.Released))
{
// 選択メニューをひとつ下に移動
this.selectedMenuIndex =
(this.selectedMenuIndex + this.parameters.Length + 1) % this.parameters.Length;
}
// 各マテリアルの値を操作
float moveValue = 0.0f;
if (keyboardState.IsKeyDown(Keys.Left))
{
moveValue -= (float)gameTime.ElapsedGameTime.TotalSeconds;
}
if (keyboardState.IsKeyDown(Keys.Right))
{
moveValue += (float)gameTime.ElapsedGameTime.TotalSeconds;
}
if (mouseState.LeftButton == ButtonState.Pressed)
{
moveValue += (mouseState.X - this.oldMouseState.X) * 0.005f;
}
if (gamePadState.IsConnected)
{
moveValue += gamePadState.ThumbSticks.Left.X *
(float)gameTime.ElapsedGameTime.TotalSeconds;
}
if (moveValue != 0.0f)
{
switch (this.selectedMenuIndex)
{
case 0: // フォグの有効フラグ
this.fogEnabled = (moveValue > 0.0f);
break;
case 1: // フォグの色 (赤)
this.fogColor.X = MathHelper.Clamp(this.fogColor.X + moveValue,
0.0f,
1.0f);
break;
case 2: // フォグの色 (緑)
this.fogColor.Y = MathHelper.Clamp(this.fogColor.Y + moveValue,
0.0f,
1.0f);
break;
case 3: // フォグの色 (青)
this.fogColor.Z = MathHelper.Clamp(this.fogColor.Z + moveValue,
0.0f,
1.0f);
break;
case 4: // フォグの開始距離
this.fogStart = MathHelper.Clamp(this.fogStart + moveValue * 10.0f,
0.0f,
100.0f);
break;
case 5: // フォグの終了距離
this.fogEnd = MathHelper.Clamp(this.fogEnd + moveValue * 10.0f,
0.0f,
100.0f);
break;
}
}
// フォグを設定
foreach (ModelMesh mesh in this.model.Meshes)
{
foreach (BasicEffect effect in mesh.Effects)
{
// フォグの有効フラグ
effect.FogEnabled = this.fogEnabled;
// フォグの色
effect.FogColor = this.fogColor;
// フォグの開始距離
effect.FogStart = this.fogStart;
// フォグの終了距離
effect.FogEnd = this.fogEnd;
}
}
// 入力情報を記憶
this.oldKeyboardState = keyboardState;
this.oldMouseState = mouseState;
this.oldGamePadState = gamePadState;
// 登録された GameComponent を更新する
base.Update(gameTime);
}
<summary>
描画処理を行うメソッド
</summary>
<param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
protected override void Draw(GameTime gameTime)
{
// 画面を指定した色でクリアします
this.GraphicsDevice.Clear(Color.CornflowerBlue);
// 深度バッファを有効にする
this.GraphicsDevice.DepthStencilState = DepthStencilState.Default;
// モデルを描画
foreach (ModelMesh mesh in this.model.Meshes)
{
#if WINDOWS_PHONE
foreach (BasicEffect effect in mesh.Effects)
{
effect.World = Matrix.CreateScale(new Vector3(0.5f, 1, 1));
}
#endif
mesh.Draw();
}
// スプライトの描画準備
this.spriteBatch.Begin();
// 操作
this.spriteBatch.DrawString(this.font,
"Up, Down : Select Menu",
new Vector2(20.0f, 20.0f), Color.Black);
this.spriteBatch.DrawString(this.font,
"Left, right : Change Value",
new Vector2(20.0f, 45.0f), Color.Black);
this.spriteBatch.DrawString(this.font,
"MouseClick & Drag :",
new Vector2(20.0f, 70.0f), Color.Black);
this.spriteBatch.DrawString(this.font,
" Select Menu & Change Value",
new Vector2(20.0f, 95.0f), Color.Black);
this.spriteBatch.DrawString(this.font,
"Up, Down : Select Menu",
new Vector2(19.0f, 19.0f), Color.White);
this.spriteBatch.DrawString(this.font,
"Left, right : Change Value",
new Vector2(19.0f, 44.0f), Color.White);
this.spriteBatch.DrawString(this.font,
"MouseClick & Drag :",
new Vector2(19.0f, 69.0f), Color.White);
this.spriteBatch.DrawString(this.font,
" Select Menu & Change Value",
new Vector2(19.0f, 94.0f), Color.White);
// 各メニュー //
for (int i = 0; i < MenuNameList.Length; i++)
{
this.spriteBatch.DrawString(this.font,
MenuNameList[i],
new Vector2(40.0f, 120.0f + i * 20.0f), Color.Black);
this.spriteBatch.DrawString(this.font,
MenuNameList[i],
new Vector2(39.0f, 119.0f + i * 20.0f), Color.White);
}
// 各パラメータ //
// フォグの有効フラグ
this.parameters[0] = this.fogEnabled.ToString();
// フォグの色 (赤)
this.parameters[1] = this.fogColor.X.ToString();
// フォグの色 (緑)
this.parameters[2] = this.fogColor.Y.ToString();
// フォグの色 (青)
this.parameters[3] = this.fogColor.Z.ToString();
// フォグの開始距離
this.parameters[4] = this.fogStart.ToString();
// フォグの終了距離
this.parameters[5] = this.fogEnd.ToString();
for (int i = 0; i < this.parameters.Length; i++)
{
this.spriteBatch.DrawString(this.font,
this.parameters[i],
new Vector2(220.0f, 120.0f + i * 20.0f), Color.Black);
this.spriteBatch.DrawString(this.font,
this.parameters[i],
new Vector2(219.0f, 119.0f + i * 20.0f), Color.White);
}
// 選択インデックス
this.spriteBatch.DrawString(this.font, "*",
new Vector2(20.0f, 120.0f + this.selectedMenuIndex * 20.0f), Color.Black);
this.spriteBatch.DrawString(this.font, "*",
new Vector2(19.0f, 119.0f + this.selectedMenuIndex * 20.0f), Color.White);
// スプライトの一括描画
this.spriteBatch.End();
// 登録された DrawableGameComponent を描画する
base.Draw(gameTime);
}
}
}