Oordeel over botsingen tussen ballen

Pagina bijgewerkt :
Aanmaakdatum van pagina :

samenvatting

Een bol die elk model omvat, wordt gebruikt om een trefferoordeel te vellen. In dit voorbeeld wordt botsingsdetectie uitgevoerd voor twee bolmodellen.

球と球のあたり判定

Werkomgeving

Voorwaarden

Ondersteunde XNA-versies
  • 4.0
Ondersteunde platforms
  • Windows (XP SP2 of hoger, Vista, 7)
  • Xbox 360
  • Windows Phone 7
Windows vereist Vertex Shader Version 2.0
Windows vereist Pixel Shader-versie 2.0

Werkomgeving

perron
  • Vensters 7
  • Xbox 360
  • Windows Phone 7-emulator

Werken met het voorbeeld

Werkt toetsenbordXbox 360-controllermuis touch
Bewegende bal 1 ↑↓←→ Linker joystick Linkerknop & slepen -

stof

Over Hit Judgement

In schietspellen en actiespellen komen verschillende botsingen voor, zoals botsingen tussen personages en kogels, en botsingen tussen personages, dus het is noodzakelijk om een programma te schrijven om ze te beoordelen. In het programma wordt dit over het algemeen aangeduid als botsingsdetectie. Er zijn verschillende patronen van trefferoordeel, van eenvoudig tot wiskundig en fysiek complex. Over het algemeen worden games vaak gemaakt om de verwerkingsbelasting te verminderen in plaats van de nauwkeurigheid, en als er geen extreme afwijking in het gebied is, maakt het niet veel uit als het niet nauwkeurig is.

Deze tip beschrijft de meest voorkomende en minst belastende "bal-tot-bal" trefferdetectie. Omdat het een bol en een bol is, hebben we het over botsingsoordeel in de driedimensionale ruimte, maar het is mogelijk om bijna hetzelfde proces te vervangen door botsingen tussen cirkels in de tweedimensionale ruimte.

Hoe de bal en het oordeel over de bal raken werkt

Twee parameters worden gebruikt om de botsing van bollen en bollen te bepalen: de "positie" van elk model en de "straal" van de grootte van het model. Om te bepalen of deze twee parameters correct zijn, is het gemakkelijk te begrijpen door naar de onderstaande figuur te kijken.

  • P: Positie van het model L: Afstand tussen twee punten (P2-P1) R: Straal van de bol

当たっていない 接触衝突

Als de "afstand tussen de twee modellen" "L" is en de "som van de stralen van de twee modellen" "R" is, dan betekent "L < R" dat ze botsen. Aan de andere kant, als het "L > R" is, betekent dit dat er geen botsing is. De botsingsdetectie van "L = R" maakt voor geen van beide uit.

veld

/// <summary>
/// モデル
/// </summary>
private Model model = null;

/// <summary>
/// モデルの基本包括球
/// </summary>
private BoundingSphere baseBoundingSphere = new BoundingSphere();

/// <summary>
/// 球1の位置
/// </summary>
private Vector3 sphere1Position = new Vector3(0.0f, 0.0f, 0.0f);

/// <summary>
/// 球2の位置
/// </summary>
private Vector3 sphere2Position = new Vector3(1.5f, 0.0f, -3.0f);

/// <summary>
/// 球1の包括球
/// </summary>
private BoundingSphere sphere1BoundingSphere = new BoundingSphere();

/// <summary>
/// 球2の包括球
/// </summary>
private BoundingSphere sphere2BoundingSphere = new BoundingSphere();

/// <summary>
/// 衝突フラグ
/// </summary>
private bool isCollision = false;

Je kunt je eigen programma schrijven voor het hitdetectieproces, maar het XNA-framework heeft een structuur genaamd "BoundingSphere" die het gemakkelijk maakt om de parameters van de bol en de trefferdetectie te hanteren, dus ik zou het graag willen gebruiken.

Elke ModelMesh van de geladen Model-klasse bevat al de bolinformatie "BoundingSphere" die het model omvat, dus we hebben een veld "baseBoundingSphere" voorbereid om het op te halen.

Andere kenmerken zijn de positie van elke bol, een BoundingSphere die wordt gebruikt om de impact van twee bollen te bepalen en een botsingsvlag.

Lading

// モデルを作成 
this.model = this.Content.Load<Model>("Sphere"); 

// 包括球取得 
this.baseBoundingSphere = this.model.Meshes[0].BoundingSphere; 

// 各モデル用の包括球半径設定 
this.sphere1BoundingSphere.Radius = this.baseBoundingSphere.Radius; 
this.sphere2BoundingSphere.Radius = this.baseBoundingSphere.Radius;

Elke ModelMesh in een model heeft een eigenschap BoundingSphere waarmee u informatie kunt ophalen over de bol die het model in de ModelMesh omvat. Aangezien het model dat we gebruiken één ModelMesh heeft, hebben we de inclusieve bol gekopieerd van de eerste index naar de baseBoundingSphere.

Aangezien de straal van de bol vast is, wordt de straal vooraf ingesteld in de eigenschap Straal van de twee begrenzingsbollen.

Raak oordeel

// 衝突判定用の球を設定 
this.sphere1BoundingSphere.Center = 
    this.sphere1Position + this.baseBoundingSphere.Center; 
this.sphere2BoundingSphere.Center = 
    this.sphere2Position + this.baseBoundingSphere.Center; 

// 衝突判定 
this.isCollision = 
    this.sphere1BoundingSphere.Intersects(this.sphere2BoundingSphere);

Gebruik de methode BoundingSphere.Intersects om botsingen tussen bollen te bepalen. Omdat we al een straal hebben ingesteld voor de twee BoundingSpheres, stellen we de eigenschap BoundingSphere.Center in op de positie van de bol plus de middelste coördinaten van de oorspronkelijke paraplubol. De middelste coördinaten van de oorspronkelijke bol worden toegevoegd omdat het middelpunt van de inclusieve bol niet noodzakelijkerwijs de oorsprong is.

Als u de andere BoundingSphere opgeeft als een argument voor BoundingSphere.Intersects, zal het een bool retourneren om te zien of het botst of niet, dus we krijgen het. Deze vlag wordt gebruikt om tekens te tekenen om te zien of ze correct zijn.

Hoe het trefferoordeel te berekenen

Het XNA-framework biedt een handige botsingsdetectiestructuur genaamd BoundingSphere, die niet alleen kan worden gebruikt voor bollen, maar ook voor botsingen met verschillende vormen, zoals stralen (lijnen) en vakken.

Als het echter een botsing tussen bollen is, kan deze worden bepaald door een eenvoudige berekening zonder gebruik te maken van BoundingSphere.Intersects.

  • Resultaat (of het wordt geraakt) = Afstand tussen de positie van Sfeer 2 en de positie van Sfeer 1 < Straal van Sfeer 1 + Straal van Sfeer 2

Als je het programmatisch schrijft

this.isCollision = (this.sphere2Position - this.sphere1Position).Length() <
                   (this.sphere1BoundingSphere.Radius + this.sphere2BoundingSphere.Radius);

Het komt op. (Het botsingsdetectieproces hierboven gaat ervan uit dat het centrum van de inclusieve bol de oorsprong is, zoals een perfecte bol, dus het houdt geen rekening met het centrum van de inclusieve bol van het model.) Als je erover nadenkt, ziet het er als volgt uit)

this.isCollision = ((this.sphere2Position + this.baseBoundingSphere.Center) -
                        (this.sphere1Position + this.baseBoundingSphere.Center)).Length() <
                   (this.sphere1BoundingSphere.Radius + this.sphere2BoundingSphere.Radius);

Alle 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 CollisionSphereAndSphere
{
    /// <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 Model model = null;

        /// <summary>
        /// モデルの基本包括球
        /// </summary>
        private BoundingSphere baseBoundingSphere = new BoundingSphere();

        /// <summary>
        /// 球1の位置
        /// </summary>
        private Vector3 sphere1Position = new Vector3(0.0f, 0.0f, 0.0f);

        /// <summary>
        /// 球2の位置
        /// </summary>
        private Vector3 sphere2Position = new Vector3(1.5f, 0.0f, -3.0f);

        /// <summary>
        /// 球1の包括球
        /// </summary>
        private BoundingSphere sphere1BoundingSphere = new BoundingSphere();

        /// <summary>
        /// 球2の包括球
        /// </summary>
        private BoundingSphere sphere2BoundingSphere = new BoundingSphere();

        /// <summary>
        /// 衝突フラグ
        /// </summary>
        private bool isCollision = false;

        /// <summary>
        /// 前回のマウスの状態
        /// </summary>
        private MouseState oldMouseState;


        /// <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.font = this.Content.Load<SpriteFont>("Font");

            // モデルを作成
            this.model = this.Content.Load<Model>("Sphere");

            // 包括球取得
            this.baseBoundingSphere = this.model.Meshes[0].BoundingSphere;

            // 各モデル用の包括球半径設定
            this.sphere1BoundingSphere.Radius = this.baseBoundingSphere.Radius;
            this.sphere2BoundingSphere.Radius = this.baseBoundingSphere.Radius;

            // あらかじめパラメータを設定しておく
            foreach (ModelMesh mesh in this.model.Meshes)
            {
                foreach (BasicEffect effect in mesh.Effects)
                {
                    // デフォルトのライト適用
                    effect.EnableDefaultLighting();

                    // ビューマトリックスをあらかじめ設定
                    effect.View = Matrix.CreateLookAt(
                        new Vector3(0.0f, 10.0f, 1.0f),
                        Vector3.Zero,
                        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();
            }

            float speed = 0.1f;

            // 球1の位置を移動させる
            if (gamePadState.IsConnected)
            {
                this.sphere1Position.X += gamePadState.ThumbSticks.Left.X * speed;
                this.sphere1Position.Z -= gamePadState.ThumbSticks.Left.Y * speed;
            }
            if (keyboardState.IsKeyDown(Keys.Left))
            {
                this.sphere1Position.X -= speed;
            }
            if (keyboardState.IsKeyDown(Keys.Right))
            {
                this.sphere1Position.X += speed;
            }
            if (keyboardState.IsKeyDown(Keys.Down))
            {
                this.sphere1Position.Z += speed;
            }
            if (keyboardState.IsKeyDown(Keys.Up))
            {
                this.sphere1Position.Z -= speed;
            }
            if (mouseState.LeftButton == ButtonState.Pressed)
            {
                // 直前にマウスの左ボタンが押されていない場合は差分を0にする
                if (this.oldMouseState.LeftButton == ButtonState.Released)
                {
                    this.oldMouseState = mouseState;
                }

                this.sphere1Position += new Vector3((mouseState.X - this.oldMouseState.X) * 0.01f,
                                                   0,
                                                   (mouseState.Y - this.oldMouseState.Y) * 0.01f);
            }

            // マウスの状態記憶
            this.oldMouseState = mouseState;

            // 衝突判定用の球を設定
            this.sphere1BoundingSphere.Center =
                this.sphere1Position + this.baseBoundingSphere.Center;
            this.sphere2BoundingSphere.Center =
                this.sphere2Position + this.baseBoundingSphere.Center;

            // 衝突判定
            this.isCollision =
                this.sphere1BoundingSphere.Intersects(this.sphere2BoundingSphere);

            // 登録された 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)
            {
                // 球1を描画
                foreach (BasicEffect effect in mesh.Effects)
                {
                    // ワールドマトリックス(位置指定)
                    effect.World = Matrix.CreateTranslation(this.sphere1Position);
                }
                mesh.Draw();

                // 球2を描画
                foreach (BasicEffect effect in mesh.Effects)
                {
                    // ワールドマトリックス(位置指定)
                    effect.World = Matrix.CreateTranslation(this.sphere2Position);
                }
                mesh.Draw();
            }

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

            // 衝突判定表示
            this.spriteBatch.DrawString(this.font,
                "IsCollision : " + this.isCollision,
                new Vector2(30.0f, 30.0f), Color.White);

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

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