Gunakan lampu untuk melukis poligon

Laman dikemaskini :
Tarikh penciptaan halaman :

Ringkasan

Lampu (sumber cahaya) digunakan untuk menaungi poligon.

ライトを使用してポリゴンを描画する

Persekitaran operasi

Prasyarat

Versi XNA yang Disokong
  • 4.0
Platform yang Disokong
  • Windows (XP SP2 atau lebih baru, Vista, 7)
  • Xbox 360
  • Telefon Windows 7
Versi Vertex Shader yang Diperlukan Windows 2.0
Windows Versi Pixel Shader Diperlukan 2.01

Persekitaran operasi

Platform
  • Tingkap 7
  • Xbox 360
  • Windows Phone 7 Emulator

Bahan

Mengenai Lampu

Berikut ialah beberapa perkara yang boleh anda lakukan tentang menggunakan lampu.

Bahan

Secara ringkas, bahan adalah warna bahan. Bahan sering digunakan bersama dengan Lampu, dan BasicEffects juga membolehkan anda menetapkan parameter bahan dan cahaya. Walau bagaimanapun, ini tidak terpakai jika anda menulis program shader anda sendiri, dan anda boleh melaraskannya dengan bebas. Juga, ambil perhatian bahawa warna bahan berbeza daripada warna bucu.

Bahan biasanya mempunyai item berikut.

Meresap Warna asas bahan
Ambien Warna warna apabila terdedah kepada cahaya ambien (boleh dilihat walaupun cahaya tidak bersinar terus di atasnya)
Spekular Cahaya pantulan spekular (bersinar kuat seperti kilauan kereta, dsb.)
SpecularPower Kekuatan Reflektif (Kekuatan Spekular)
Emisif Cahaya berbeza (bersinar sendiri)

Lampu dan Normal

Jika anda ingin menggunakan lampu, anda memerlukan sesuatu yang dipanggil "biasa". Kedudukan cahaya berhubung dengan normal menentukan kecerahan objek. Normal akan ditetapkan sebagai data bucu.

面の方向と明るさ

Ia lebih terang jika muka menghadap ke arah cahaya, dan lebih gelap jika sebaliknya. Ini juga benar jika anda menggantikan arah muka dengan bucu. Orientasi muka dan bucu ini dipanggil "normal".

Sekarang, arah normal tidak ditakrifkan secara eksplisit, dan terdapat dua normal utama untuk ditetapkan dalam kotak: di bawah.

面の方向と明るさ

Terdapat perbezaan antara kiri dan kanan apabila cahaya digunakan.

Dalam kes kaedah di sebelah kiri, ruang antara muka akan kelihatan sudut. Ini kerana ia berorientasikan sepenuhnya ke arah yang sama dengan normal muka. Walau bagaimanapun, kaedah ini mempunyai kelemahan bahawa bucu tidak boleh dikongsi.

Dengan kaedah di sebelah kanan, ruang antara permukaan akan kelihatan sedikit bulat bergantung pada cara cahaya digunakan. Oleh kerana bucu dikongsi, terdapat kelebihan bahawa jumlah data dikurangkan. Kelemahannya ialah normal bucu tidak sama dengan arah muka, jadi walaupun cahaya disinarkan terus dari atas, sebagai contoh, permukaan atas tidak akan 100% terjejas oleh cahaya.

Sukar untuk difahami walaupun anda menerangkannya dalam ayat, jadi semak rajah di bawah untuk melihat perbezaannya.

面の方向と明るさ面の方向と明るさ
Ia dipaparkan dengan perisian pemodelan yang dipanggil Metasequoia

Anda dapat melihat bahawa ia agak berbeza dalam penampilan. Dalam sampel, kami akan mencipta kotak dengan cara yang betul supaya kod tidak berlebihan.

Bidang

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

/// <summary>
/// 頂点バッファ
/// </summary>
private VertexBuffer vertexBuffer = null;

/// <summary>
/// インデックスバッファ
/// </summary>
private IndexBuffer indexBuffer = null;

/// <summary>
/// インデックスバッファの各頂点番号配列
/// </summary>
private static readonly Int16[] vertexIndices = new Int16[] {
    2, 0, 1, 1, 3, 2, 4, 0, 2, 2, 6, 4, 5, 1, 0, 0, 4, 5,
    7, 3, 1, 1, 5, 7, 6, 2, 3, 3, 7, 6, 4, 6, 7, 7, 5, 4 };

Kotak dicipta menggunakan penimbal bucu dan penimbal indeks.

Penciptaan

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

// エフェクトでライトを有効にする
this.basicEffect.LightingEnabled = true;

// デフォルトのライトの設定を使用する
this.basicEffect.EnableDefaultLighting();

// スペキュラーを無効
this.basicEffect.SpecularColor = Vector3.Zero;

// 2番目と3番目のライトを無効
this.basicEffect.DirectionalLight1.Enabled = false;
this.basicEffect.DirectionalLight2.Enabled = false;

Terdapat beberapa item dalam BasicEffect yang menetapkan cahaya.

Mula-mula, tetapkan sifat LightingEnabled kepada benar untuk mengarahkan cahaya yang akan dikira.

Apabila anda memanggil kaedah EnableDefaultLighting, warna cahaya atau bahan ditetapkan secara automatik. Walau bagaimanapun, menggunakan lampu lalai pada kotak ini terlalu terang, jadi saya melumpuhkan warna spekular dan melumpuhkan lampu kedua dan ketiga.

// 頂点の数
int vertexCount = 8;

// 頂点バッファ作成
this.vertexBuffer = new VertexBuffer(this.GraphicsDevice,
    typeof(VertexPositionNormalTexture), vertexCount, BufferUsage.None);

// 頂点データを作成する
VertexPositionNormalTexture[] vertives = new VertexPositionNormalTexture[vertexCount];

vertives[0] = new VertexPositionNormalTexture(
    new Vector3(-2.0f, 2.0f, -2.0f),
    Vector3.Normalize(new Vector3(-1.0f, 1.0f, -1.0f)),
    Vector2.Zero);
vertives[1] = new VertexPositionNormalTexture(
    new Vector3(2.0f, 2.0f, -2.0f),
    Vector3.Normalize(new Vector3(1.0f, 1.0f, -1.0f)),
    Vector2.Zero);
vertives[2] = new VertexPositionNormalTexture(
    new Vector3(-2.0f, 2.0f, 2.0f),
    Vector3.Normalize(new Vector3(-1.0f, 1.0f, 1.0f)),
    Vector2.Zero);
vertives[3] = new VertexPositionNormalTexture(
    new Vector3(2.0f, 2.0f, 2.0f),
    Vector3.Normalize(new Vector3(1.0f, 1.0f, 1.0f)),
    Vector2.Zero);
vertives[4] = new VertexPositionNormalTexture(
    new Vector3(-2.0f, -2.0f, -2.0f),
    Vector3.Normalize(new Vector3(-1.0f, -1.0f, -1.0f)),
    Vector2.Zero);
vertives[5] = new VertexPositionNormalTexture(
    new Vector3(2.0f, -2.0f, -2.0f),
    Vector3.Normalize(new Vector3(1.0f, -1.0f, -1.0f)),
    Vector2.Zero);
vertives[6] = new VertexPositionNormalTexture(
    new Vector3(-2.0f, -2.0f, 2.0f),
    Vector3.Normalize(new Vector3(-1.0f, -1.0f, 1.0f)),
    Vector2.Zero);
vertives[7] = new VertexPositionNormalTexture(
    new Vector3(2.0f, -2.0f, 2.0f),
    Vector3.Normalize(new Vector3(1.0f, -1.0f, 1.0f)),
    Vector2.Zero);

// 頂点データを頂点バッファに書き込む
this.vertexBuffer.SetData(vertives);

Ia agak panjang daripada kod, tetapi ia mencipta data bucu. Struktur data bucu yang digunakan kali ini ialah "VertexPositionNormalTexture" dengan data "kedudukan", "normal" dan "koordinat tekstur". Oleh kerana Rangka Kerja XNA tidak menyediakan struktur dengan hanya "kedudukan" dan "normal", "Vector2.Zero" ditentukan untuk semua bucu untuk koordinat tekstur. (Sudah tentu, jika anda faham, anda boleh membuat struktur anda sendiri.)

Bagi yang normal, seperti yang ditunjukkan dalam rajah sebelumnya, ia ditetapkan untuk menunjuk ke arah serong. Memandangkan normal ialah takrifan data yang diwakili hanya oleh orientasi, arah ditentukan dan kemudian dinormalkan dengan kaedah Vector3.Normalize.

VertexPositionNormalTexture Constructor

Cipta contoh struktur "VertexPositionNormalTexture" dengan data bucu untuk kedudukan dan koordinat normal dan tekstur.

Kedudukan Vektor3 Kedudukan Puncak
Biasa Vektor3 Normal bucu
textureCoordinate Vektor2 Koordinat tekstur bucu

Vector3.Normalize Kaedah

Mencipta vektor unit daripada vektor yang ditentukan.

Nilai Vektor3 Vektor sumber untuk menormalkan
Nilai Pulangan Vektor3 Vektor unit
// インデックスバッファを作成
this.indexBuffer = new IndexBuffer(this.GraphicsDevice,
    IndexElementSize.SixteenBits, 3 * 12, BufferUsage.None);

// 頂点インデックスを書き込む
this.indexBuffer.SetData(vertexIndices);

Mencipta penimbal indeks tidak berbeza.

Lukisan

// 描画に使用する頂点バッファをセット
this.GraphicsDevice.SetVertexBuffer(this.vertexBuffer);

// インデックスバッファをセット
this.GraphicsDevice.Indices = this.indexBuffer;

// パスの数だけ繰り替えし描画
foreach (EffectPass pass in this.basicEffect.CurrentTechnique.Passes)
{
    // パスの開始
    pass.Apply();

    // ボックスを描画する
    this.GraphicsDevice.DrawIndexedPrimitives(
        PrimitiveType.TriangleList,
        0,
        0,
        8,
        0,
        12
    );
}

Oleh kerana maklumat bucu ditetapkan terlebih dahulu, tidak ada yang istimewa mengenai kod lukisan.

Semua Kod

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

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

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

        /// <summary>
        /// 頂点バッファ
        /// </summary>
        private VertexBuffer vertexBuffer = null;

        /// <summary>
        /// インデックスバッファ
        /// </summary>
        private IndexBuffer indexBuffer = null;

        /// <summary>
        /// インデックスバッファの各頂点番号配列
        /// </summary>
        private static readonly Int16[] vertexIndices = new Int16[] {
            2, 0, 1, 1, 3, 2, 4, 0, 2, 2, 6, 4, 5, 1, 0, 0, 4, 5,
            7, 3, 1, 1, 5, 7, 6, 2, 3, 3, 7, 6, 4, 6, 7, 7, 5, 4 };


        /// <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.LightingEnabled = true;

            // デフォルトのライトの設定を使用する
            this.basicEffect.EnableDefaultLighting();

            // スペキュラーを無効
            this.basicEffect.SpecularColor = Vector3.Zero;

            // 2番目と3番目のライトを無効
            this.basicEffect.DirectionalLight1.Enabled = false;
            this.basicEffect.DirectionalLight2.Enabled = false;


            // ビューマトリックスをあらかじめ設定 ((6, 6, 12) から原点を見る)
            this.basicEffect.View = Matrix.CreateLookAt(
                    new Vector3(6.0f, 6.0f, 12.0f),
                    Vector3.Zero,
                    Vector3.Up
                );

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

            // 頂点の数
            int vertexCount = 8;

            // 頂点バッファ作成
            this.vertexBuffer = new VertexBuffer(this.GraphicsDevice,
                typeof(VertexPositionNormalTexture), vertexCount, BufferUsage.None);

            // 頂点データを作成する
            VertexPositionNormalTexture[] vertives = new VertexPositionNormalTexture[vertexCount];

            vertives[0] = new VertexPositionNormalTexture(
                new Vector3(-2.0f, 2.0f, -2.0f),
                Vector3.Normalize(new Vector3(-1.0f, 1.0f, -1.0f)),
                Vector2.Zero);
            vertives[1] = new VertexPositionNormalTexture(
                new Vector3(2.0f, 2.0f, -2.0f),
                Vector3.Normalize(new Vector3(1.0f, 1.0f, -1.0f)),
                Vector2.Zero);
            vertives[2] = new VertexPositionNormalTexture(
                new Vector3(-2.0f, 2.0f, 2.0f),
                Vector3.Normalize(new Vector3(-1.0f, 1.0f, 1.0f)),
                Vector2.Zero);
            vertives[3] = new VertexPositionNormalTexture(
                new Vector3(2.0f, 2.0f, 2.0f),
                Vector3.Normalize(new Vector3(1.0f, 1.0f, 1.0f)),
                Vector2.Zero);
            vertives[4] = new VertexPositionNormalTexture(
                new Vector3(-2.0f, -2.0f, -2.0f),
                Vector3.Normalize(new Vector3(-1.0f, -1.0f, -1.0f)),
                Vector2.Zero);
            vertives[5] = new VertexPositionNormalTexture(
                new Vector3(2.0f, -2.0f, -2.0f),
                Vector3.Normalize(new Vector3(1.0f, -1.0f, -1.0f)),
                Vector2.Zero);
            vertives[6] = new VertexPositionNormalTexture(
                new Vector3(-2.0f, -2.0f, 2.0f),
                Vector3.Normalize(new Vector3(-1.0f, -1.0f, 1.0f)),
                Vector2.Zero);
            vertives[7] = new VertexPositionNormalTexture(
                new Vector3(2.0f, -2.0f, 2.0f),
                Vector3.Normalize(new Vector3(1.0f, -1.0f, 1.0f)),
                Vector2.Zero);

            // 頂点データを頂点バッファに書き込む
            this.vertexBuffer.SetData(vertives);

            // インデックスバッファを作成
            this.indexBuffer = new IndexBuffer(this.GraphicsDevice,
                IndexElementSize.SixteenBits, 3 * 12, BufferUsage.None);

            // 頂点インデックスを書き込む
            this.indexBuffer.SetData(vertexIndices);
        }

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

        /// <summary>
        /// 描画以外のデータ更新等の処理を行うメソッド
        /// 主に入力処理、衝突判定などの物理計算、オーディオの再生など
        /// </summary>
        /// <param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
        protected override void Update(GameTime gameTime)
        {
            // Xbox 360 コントローラ、Windows Phone の BACK ボタンを押したときに
            // ゲームを終了させます
            if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
            {
                this.Exit();
            }

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

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

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

            // 描画に使用する頂点バッファをセット
            this.GraphicsDevice.SetVertexBuffer(this.vertexBuffer);

            // インデックスバッファをセット
            this.GraphicsDevice.Indices = this.indexBuffer;

            // パスの数だけ繰り替えし描画
            foreach (EffectPass pass in this.basicEffect.CurrentTechnique.Passes)
            {
                // パスの開始
                pass.Apply();

                // ボックスを描画する
                this.GraphicsDevice.DrawIndexedPrimitives(
                    PrimitiveType.TriangleList,
                    0,
                    0,
                    8,
                    0,
                    12
                );
            }

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