Especifique a face do polígono a ser desenhado

Página atualizada :
Data de criação de página :

resumo

Esta seção explica a superfície de um polígono. No exemplo, a câmera circula automaticamente o triângulo e você pode alterar o modo de seleção com a tecla A, o botão A, o botão esquerdo do mouse ou o toque.

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

Ambiente operacional

Pré-requisitos

Versões do XNA suportadas
  • 4.0
Plataformas suportadas
  • Windows (XP SP2 ou posterior, Vista, 7)
  • Xbox 360
  • Windows Phone 7
Versão do sombreador de vértice necessária para Windows 2.0
Versão do sombreador de pixel necessária para Windows 2.0

Ambiente operacional

plataforma
  • janelas 7
  • Xbox 360
  • Emulador do Windows Phone 7

Como trabalhar com a amostra

Teclado de trabalhoControle do Xbox 360Toque do mouse
Alterando o modo de abate Um Um Botão esquerdo -

substância

Quando você executa o programa, a câmera circula automaticamente ao redor do polígono, mas se você olhar para ele como está, verá que o outro lado do polígono não está desenhado.

ポリゴンの表ポリゴンの裏
À esquerda está a parte da frente do polígono e à direita está a parte de trás

Isso se deve a um processo chamado abate, que impede que a parte de trás do polígono seja desenhada. Por exemplo, se você imaginar uma caixa fechada como a abaixo, poderá ver que o interior da caixa geralmente é invisível, portanto, não há necessidade de se preocupar em desenhar a parte invisível. Muitos modelos geralmente têm uma forma tão fechada, e o abate é uma tentativa de reduzir o custo do desenho ao não desenhar a parte de trás do polígono.

ボックスの内側はもともと見えない
Você só pode ver os três lados na frente e não os três lados atrás.

A frente e o verso da face são determinados pela "posição dos vértices" e pela "ordem dos vértices". Em geral, a superfície onde os vértices são dispostos no sentido horário (sentido horário) do ponto de vista é a frente.

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

O abate é eficaz na redução dos custos de desenho, mas, em alguns casos, você pode querer desenhar apenas o verso ou desenhar ambos os lados com um único polígono para desenhar um objeto fino.

O modo de seleção é determinado pela propriedade "GraphicsDevice.RasterizerState.CullMode". A enumeração "CullMode" tem os três valores a seguir, que podem ser alternados de acordo com o aplicativo.

CullMode enumeração

Mostra como selecionar.

EliminaçãoSentido horárioRosto Selecionando a face no sentido horário (horário). Desenhe a parte de trás de um rosto
CullCounterclockwiseFace Retire a superfície no sentido anti-horário (anti-horário). Desenhar a parte da frente de um rosto
Nenhum Desenhe os dois lados sem abater.

No entanto, RasterizerState é somente leitura uma vez associado a um GraphicsDevice, portanto, para alterar o modo de abate, crie uma nova instância de RasterizerState, defina o modo de abate como RasterizerState.CullMode e defina o modo de abate como GraphicsDevice.RasterizerState.

No entanto, se você quiser apenas alterar o modo de seleção, poderá usar o RasterizerState interno que é pré-selecionado pelo XNA Framework.

No programa a seguir, RasterizerState é obtido para mudar do modo de abate atual para outro modo de abate quando uma tecla é pressionada.

campo
/// <summary>
/// ポリゴンの描画を決定するためのラスタライザステート
/// </summary>
private RasterizerState rasterizerState = RasterizerState.CullCounterClockwise;
Método de atualização
// ボタンが押された瞬間

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

No método Draw, o RasterizerState recuperado é definido.

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

Abaixo está o resultado extraído por abate. À esquerda está a frente do rosto e à direita está a parte de trás do rosto.

CullMode.CullCounterClockwiseFace

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

CullMode.CullClockwiseFace

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

CullMode.None

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

Todos os códigos

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);
        }
    }
}