Specify the face of the polygon to be drawn

Page update date :
Page creation date :

summary

This section explains the surface of a polygon. In the sample, the camera automatically circles the triangle and you can change the culling mode with either the A key, the A button, the left mouse button, or touch.

ポリゴンの描画する面を指定する

Operating environment

Prerequisites

Supported XNA Versions
  • 4.0
Supported Platforms
  • Windows (XP SP2 or later, Vista, 7)
  • Xbox 360
  • Windows Phone 7
Windows Required Vertex Shader Version 2.0
Windows Required Pixel Shader Version 2.0

Operating environment

platform
  • Windows 7
  • Xbox 360
  • Windows Phone 7 Emulator

How to work with the sample

Works keyboardXbox 360 controllermouse touch
Changing the Culling Mode A A Left Button -

substance

When you run the program, the camera automatically circles around the polygon, but if you look at it as it is, you will see that the other side of the polygon is not drawn.

ポリゴンの表ポリゴンの裏
On the left is the front side of the polygon, and on the right is the back side

This is due to a process called culling, which prevents the backside of the polygon from being drawn. For example, if you imagine a closed box like the one below, you can see that the inside of the box is usually invisible, so there is no need to bother drawing the invisible part. Many models often have such a closed shape, and culling is an attempt to reduce the cost of drawing by not drawing the back side of the polygon.

ボックスの内側はもともと見えない
You can only see the three sides in the front and not the three sides in the back.

The front and back of the face are determined by the "position of the vertices" and the "order of the vertices". In general, the surface where the vertices are arranged in a clockwise (clockwise) order from the viewpoint is the front.

頂点の配置が右回りの面が表

Culling is effective in reducing drawing costs, but in some cases, you may want to draw only the back side, or you may want to draw both sides with a single polygon in order to draw a thin object.

The culling mode is determined by the "GraphicsDevice.RasterizerState.CullMode" property. The "CullMode" enumeration has the following three values, which can be switched according to the application.

CullMode enumeration

Shows how to culling.

CullClockwiseFace Culling the clockwise (clockwise) face. Draw the back of a face
CullCounterClockwiseFace Cull the counterclockwise (counterclockwise) surface. Draw the front side of a face
None Draw both sides without culling.

However, RasterizerState is read-only once bound to a GraphicsDevice, so to change the culling mode, create a new RasterizerState instance, set the culling mode to RasterizerState.CullMode, and set the culling mode to GraphicsDevice.RasterizerState.

However, if you only want to change the culling mode, you can use the built-in RasterizerState that is pre-culled by the XNA Framework.

In the following program, RasterizerState is obtained to change from the current culling mode to another culling mode when a key is pressed.

field
/// <summary>
/// ポリゴンの描画を決定するためのラスタライザステート
/// </summary>
private RasterizerState rasterizerState = RasterizerState.CullCounterClockwise;
Update Method
// ボタンが押された瞬間

if (this.rasterizerState.CullMode == CullMode.None)
{
    // 反時計回りをカリング
    this.rasterizerState = RasterizerState.CullCounterClockwise;
}
else if (this.rasterizerState.CullMode == CullMode.CullCounterClockwiseFace)
{
    // 時計回りをカリング
    this.rasterizerState = RasterizerState.CullClockwise;
}
else if (this.rasterizerState.CullMode == CullMode.CullClockwiseFace)
{
    // カリングなし
    this.rasterizerState = RasterizerState.CullNone;
}

In the Draw method, the retrieved RasterizerState is set.

Draw Method
// カリングのためのラスタライザステートの設定
this.GraphicsDevice.RasterizerState = this.rasterizerState;

Below is the result drawn by culling. On the left is the front of the face, and on the right is the back of the face.

CullMode.CullCounterClockwiseFace

CullMode.CullCounterClockwiseFace(面の表)CullMode.CullCounterClockwiseFace(面の裏)

CullMode.CullClockwiseFace

CullMode.CullClockwiseFace(面の表)CullMode.CullClockwiseFace(面の裏)

CullMode.None

CullMode.None(面の表)CullMode.None(面の裏)

All Codes

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 FaceCulling
{
    /// <summary>
    /// ゲームメインクラス
    /// </summary>
    public class GameMain : Microsoft.Xna.Framework.Game
    {
        /// <summary>
        /// グラフィックデバイス管理クラス
        /// </summary>
        private GraphicsDeviceManager graphics = null;

        /// <summary>
        /// スプライトのバッチ化クラス
        /// </summary>
        private SpriteBatch spriteBatch = null;

        /// <summary>
        /// ポリゴン用頂点データリスト
        /// </summary>
        private VertexPositionColor[] triangleVertives = null;

        /// <summary>
        /// 面の表側を示すラインの頂点データリスト
        /// </summary>
        private VertexPositionColor[] lineVertices = null;

        /// <summary>
        /// 基本エフェクト
        /// </summary>
        private BasicEffect basicEffect = null;

        /// <summary>
        /// スプライトでテキストを描画するためのフォント
        /// </summary>
        private SpriteFont font = null;

        /// <summary>
        /// カメラの回転位置
        /// </summary>
        private float cameraRotate = 0.0f;

        /// <summary>
        /// ポリゴンの描画を決定するためのラスタライザステート
        /// </summary>
        private RasterizerState rasterizerState = RasterizerState.CullCounterClockwise;

        /// <summary>
        /// ボタンを押している状態かどうかを判定するためのフラグ
        /// </summary>
        private bool isPushed = false;


        /// <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
        }

        /// <summary>
        /// ゲームが始まる前の初期化処理を行うメソッド
        /// グラフィック以外のデータの読み込み、コンポーネントの初期化を行う
        /// </summary>
        protected override void Initialize()
        {
            // TODO: ここに初期化ロジックを書いてください

            // コンポーネントの初期化などを行います
            base.Initialize();
        }

        /// <summary>
        /// ゲームが始まるときに一回だけ呼ばれ
        /// すべてのゲームコンテンツを読み込みます
        /// </summary>
        protected override void LoadContent()
        {
            // テクスチャーを描画するためのスプライトバッチクラスを作成します
            this.spriteBatch = new SpriteBatch(this.GraphicsDevice);

            // エフェクトを作成
            this.basicEffect = new BasicEffect(this.GraphicsDevice);

            // エフェクトで頂点カラーを有効にする
            this.basicEffect.VertexColorEnabled = true;

            // プロジェクションマトリックスをあらかじめ設定
            this.basicEffect.Projection = Matrix.CreatePerspectiveFieldOfView(
                    MathHelper.ToRadians(45.0f),
                    (float)this.GraphicsDevice.Viewport.Width /
                        (float)this.GraphicsDevice.Viewport.Height,
                    1.0f,
                    100.0f
                );

            // ポリゴンの頂点データを作成する
            this.triangleVertives = new VertexPositionColor[3];

            this.triangleVertives[0] = new VertexPositionColor(new Vector3(0.0f, 3.0f, 0.0f),
                                                               Color.Red);
            this.triangleVertives[1] = new VertexPositionColor(new Vector3(3.0f, -2.0f, 0.0f),
                                                               Color.Blue);
            this.triangleVertives[2] = new VertexPositionColor(new Vector3(-3.0f, -2.0f, 0.0f),
                                                               Color.Green);

            // 面の表側を指すようにラインを作成
            this.lineVertices = new VertexPositionColor[2];

            this.lineVertices[0] = new VertexPositionColor(new Vector3(0.0f, -1.0f, 0.0f),
                                                           Color.Blue);
            this.lineVertices[1] = new VertexPositionColor(new Vector3(0.0f, -1.0f, 10.0f),
                                                           Color.Blue);

            // フォントをコンテンツパイプラインから読み込む
            this.font = this.Content.Load<SpriteFont>("Font");
        }

        /// <summary>
        /// ゲームが終了するときに一回だけ呼ばれ
        /// すべてのゲームコンテンツをアンロードします
        /// </summary>
        protected override void UnloadContent()
        {
            // TODO: ContentManager で管理されていないコンテンツを
            //       ここでアンロードしてください
        }

        /// <summary>
        /// 描画以外のデータ更新等の処理を行うメソッド
        /// 主に入力処理、衝突判定などの物理計算、オーディオの再生など
        /// </summary>
        /// <param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
        protected override void Update(GameTime gameTime)
        {
            // キーボードの情報取得
            KeyboardState keyState = Keyboard.GetState();

            // マウスの情報取得
            MouseState mouseState = Mouse.GetState();

            // ゲームパッドの情報取得
            GamePadState padState = GamePad.GetState(PlayerIndex.One);

            // Xbox 360 コントローラ、Windows Phone の BACK ボタンを押したときに
            // ゲームを終了させます
            if (padState.Buttons.Back == ButtonState.Pressed)
            {
                this.Exit();
            }

            ///// カリングの設定 /////
            if (keyState.IsKeyDown(Keys.A) ||
                mouseState.LeftButton == ButtonState.Pressed ||
                padState.Buttons.A == ButtonState.Pressed)
            {
                if (this.isPushed == false)
                {
                    // ボタンが押された瞬間

                    if (this.rasterizerState.CullMode == CullMode.None)
                    {
                        // 反時計回りをカリング
                        this.rasterizerState = RasterizerState.CullCounterClockwise;
                    }
                    else if (this.rasterizerState.CullMode == CullMode.CullCounterClockwiseFace)
                    {
                        // 時計回りをカリング
                        this.rasterizerState = RasterizerState.CullClockwise;
                    }
                    else if (this.rasterizerState.CullMode == CullMode.CullClockwiseFace)
                    {
                        // カリングなし
                        this.rasterizerState = RasterizerState.CullNone;
                    }
                }

                this.isPushed = true;
            }
            else
            {
                this.isPushed = false;
            }

            ///// カメラの位置回転 /////
            this.cameraRotate += (float)gameTime.ElapsedGameTime.TotalSeconds;

            // ビューマトリックスを設定
            this.basicEffect.View = Matrix.CreateLookAt(
                    Vector3.Transform(new Vector3(0.0f, 0.0f, 15.0f),
                        Matrix.CreateRotationY(this.cameraRotate)),
                    Vector3.Zero,
                    Vector3.Up
                );

            // TODO: ここに更新処理を記述してください

            // 登録された GameComponent を更新する
            base.Update(gameTime);
        }

        /// <summary>
        /// 描画処理を行うメソッド
        /// </summary>
        /// <param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
        protected override void Draw(GameTime gameTime)
        {
            // 画面を指定した色でクリアします
            this.GraphicsDevice.Clear(Color.CornflowerBlue);

            // カリングのためのラスタライザステートの設定
            this.GraphicsDevice.RasterizerState = this.rasterizerState;

            // 深度バッファの有効化
            this.GraphicsDevice.DepthStencilState = DepthStencilState.Default;

            // パスの数だけ繰り替えし描画 (といっても直接作成した BasicEffect は通常1回)
            foreach (EffectPass pass in this.basicEffect.CurrentTechnique.Passes)
            {
                // パスの開始
                pass.Apply();

                // 三角形を描画する
                this.GraphicsDevice.DrawUserPrimitives(
                    PrimitiveType.TriangleList,
                    this.triangleVertives,
                    0,
                    1
                );

                // 面の表側を示すラインを描画
                this.GraphicsDevice.DrawUserPrimitives(
                    PrimitiveType.LineList,
                    this.lineVertices,
                    0,
                    1
                );
            }

            // スプライトの描画準備
            this.spriteBatch.Begin();

            // カリングモードを表示
            this.spriteBatch.DrawString(this.font,
                "A or LeftButton:Change CullMode.",
                new Vector2(10, 30), Color.White);

            this.spriteBatch.DrawString(this.font,
                "CullMode:" + this.rasterizerState.CullMode.ToString(),
                new Vector2(10, 60), Color.Yellow);

            // スプライトの一括描画
            this.spriteBatch.End();

            // 登録された DrawableGameComponent を描画する
            base.Draw(gameTime);
        }
    }
}