-1

マウスの位置を取得しようとするとエラーが発生します。

これが私のプレイヤークラスです。プレイヤースプライトをマウスカーソルで動かそうとしています

class Player : Actor
{
    public MouseState mState;

    EnemyManager enemyManager;

    public Player(Texture2D texture, Vector2 origin, SpriteBatch spriteBatch, EnemyManager enemyManager)
        : base(texture, origin, spriteBatch, new Vector2(250.0f, 516.0f))
    {

        this.enemyManager = enemyManager;
    }

    public override void Update(GameTime gameTime)
    {
        //KeyboardState keyboardState = Keyboard.GetState();

        //if (keyboardState.IsKeyDown(Keys.Left))
        //{
        //    if (this.Position.X > 32.0f)
        //    {
        //        this.Position -= 10.0f * Vector2.UnitX;
        //    }
        //}

        //if (keyboardState.IsKeyDown(Keys.Right))
        //{
        //    if (this.Position.X < 748.0f)
        //    {
        //        this.Position += 10.0f * Vector2.UnitX;
        //    }
        //}

        MouseState mState = Mouse.GetState();
        this.Position = new Vector2(mState.x, mState.y);


        // Collisions... 
        foreach (Enemy e in this.enemyManager.Enemies)
        {
            if (this.BoundingRectangle.Intersects(e.BoundingRectangle))
            {
                e.OnHit();

                break;
            }
        }

        base.Update(gameTime);
    }
}

これは位置変数を持つ私のActorクラスです

namespace Shmup
{
    public class Actor
    {
       public Texture2D texture;
       public Vector2 origin;
       public SpriteBatch spriteBatch;
       public Vector2 position;
       public Rectangle boundingRectangle;

        public Vector2 Position
        {
             get { return position; }
             set { position = value; }
        }


        public Rectangle BoundingRectangle
        {
            get { return boundingRectangle; }
        }

        public Actor(Texture2D texture, Vector2 origin, SpriteBatch spriteBatch, Vector2 initialPosition)
        {
            this.texture = texture;
            this.origin = origin;
            this.spriteBatch = spriteBatch;
            this.position = initialPosition;

            boundingRectangle = new Rectangle((Int32)(initialPosition.X - origin.X), (Int32)(initialPosition.Y - origin.Y), texture.Width, texture.Height);
        }

        public virtual void Update(GameTime gameTime)
        {

        }

        public virtual void Draw(GameTime gameTime)
        {
            this.spriteBatch.Draw(texture, position - origin, Color.White);
        }
    }
}

私のメインクラス

public class MyGame : Microsoft.Xna.Framework.Game
{
    GraphicsDeviceManager graphics;
    SpriteBatch spriteBatch;
    Player player;
    EnemyManager enemyManager;
    Actor actor;


    public MyGame()
    {
        graphics = new GraphicsDeviceManager(this);



        IsMouseVisible = true;

        Content.RootDirectory = "Content";
    }

    protected override void Initialize()
    {
        // TODO: Add your initialization logic here
        Actor actor = new Actor();
        base.Initialize();
    }

    protected override void LoadContent()
    {
        // Create a new SpriteBatch, which can be used to draw textures.
        spriteBatch = new SpriteBatch(GraphicsDevice);

        startTheGame(); 
    }

    protected override void UnloadContent()
    {
        // TODO: Unload any non ContentManager content here
    }

    protected override void Update(GameTime gameTime)
    {
        // Allows the game to exit
        if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
        {
            this.Exit();
        }

        this.player.Update(gameTime);
        this.enemyManager.Update(gameTime);



        base.Update(gameTime);
    }

    protected override void Draw(GameTime gameTime)
    {
        GraphicsDevice.Clear(Color.Maroon);

        this.spriteBatch.Begin();


        this.player.Draw(gameTime);
        this.enemyManager.Draw(gameTime);

        this.spriteBatch.End(); 

        base.Draw(gameTime);
    }

    void startTheGame()
    {
        enemyManager = new EnemyManager(this.Content.Load<Texture2D>("Enemy"), new Vector2(16), this.spriteBatch);

        player = new Player(this.Content.Load<Texture2D>("Player"),actor.position, this.spriteBatch, enemyManager);

        enemyManager.StartTheGame(10);
    }
}
4

2 に答える 2

1

この行は私が思う問題です:

this.Position = new Vector2(mState.x, mState.y);

xy公開されていませんMouseState。大文字にする必要があります (C# では大文字と小文字が区別されます)。代わりにこれを使用してください:

this.Position = new Vector2(mState.X, mState.Y);
于 2012-08-29T14:15:30.183 に答える
0

「これらの変更を行うと、別のエラー Object reference not set to an instance of an object in line player = new Player(this.Content.Load("Player"),actor.position, this.spriteBatch, enemyManager); が表示されます。私のメインクラスには、エラー 'Shmup.Actor' に 0 引数を取るコンストラクターが含まれていません –"

Actor のコンストラクターには、Texture2D texture、Vector2 origin、SpriteBatch spriteBatch、Vector2 initialPosition が必要です。

したがって、「アクターアクター = new Actor();」を変更する必要があります。新しいアクタを宣言するために必要なすべての情報を提供した後、LoadContent() または別のメソッドに追加します。

次の行に沿って何かを読み取る必要があります (各引数をゲーム クラスの適切なアイテムに置き換えます)。

アクターアクター = new Actor( texture, origin, spriteBatch, initialPosition);

これを行うとエラーが修正されます。そうしないと、Actor で引数を 0 とるコンストラクタを定義しない限り、引き続きエラーが発生します。これが多少役立つことを願っています。

于 2013-04-01T03:39:29.720 に答える