1

我有这个代码示例,我需要找到如何在屏幕上显示/显示每秒帧数。尝试使用该课程,但效果不佳,我不知道如何使用它。

protected override void Initialize()
{
    base.Initialize();

    fpsm = new FpsMonitor();
    fpsm.Update();
    fpsm.Draw(spriteBatch, fonts, new Vector2(5,5), Color.Red);

}

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

    modelRotation += (float)gameTime.ElapsedGameTime.TotalMilliseconds *
        MathHelper.ToRadians(0.1f);

    base.Update(gameTime);
}

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

    // Copy any parent transforms.
    Matrix[] transforms = new Matrix[myModel.Bones.Count];
    myModel.CopyAbsoluteBoneTransformsTo(transforms);

    // Draw the model. A model can have multiple meshes, so loop.
    foreach (ModelMesh mesh in myModel.Meshes)
    {
        // This is where the mesh orientation is set, as well 
        // as our camera and projection.
        foreach (BasicEffect effect in mesh.Effects)
        {
            effect.EnableDefaultLighting();
            effect.World = transforms[mesh.ParentBone.Index] *
                Matrix.CreateRotationY(modelRotation)
                * Matrix.CreateTranslation(modelPosition);
            effect.View = Matrix.CreateLookAt(cameraPosition,
                Vector3.Zero, Vector3.Up);
            effect.Projection = Matrix.CreatePerspectiveFieldOfView(
                MathHelper.ToRadians(45.0f), aspectRatio,
                1.0f, 10000.0f);
        }
        // Draw the mesh, using the effects set above.
        mesh.Draw();
    }
    base.Draw(gameTime);
}

和 FPS 类:

public class FpsMonitor
{
    public float Value { get; private set; }
    public TimeSpan Sample { get; set; }
    private Stopwatch sw;
    private int Frames;
    public FpsMonitor()
    {
        this.Sample = TimeSpan.FromSeconds(1);
        this.Value = 0;
        this.Frames = 0;
        this.sw = Stopwatch.StartNew();
    }
    public void Update()
    {
        if (sw.Elapsed > Sample)
        {
            this.Value = (float)(Frames / sw.Elapsed.TotalSeconds);
            this.sw.Reset();
            this.sw.Start();
            this.Frames = 0;
        }
    }
    public void Draw(SpriteBatch SpriteBatch, SpriteFont Font, Vector2 Location, Color Color)
    {
        this.Frames++;
        SpriteBatch.DrawString(Font, "FPS: " + this.Value.ToString(), Location, Color);
    }
}

我在 Game1.cs 中尝试在构造函数中使用它:

fpsm = new FpsMonitor();
fpsm.Update();
fpsm.Draw(spriteBatch, fonts, new Vector2(5,5), Color.Red);

但这不是如何使用它。我如何使用它以及在我的代码中的什么位置?

4

2 回答 2

2

从我看到的

fpsm = new FpsMonitor(); // in constructor
fpsm.Update();// in update I think first line

spriteBatch.Begin();  // in draw Last lines probably even after base.Draw(gameTime);
fpsm.Draw(spriteBatch, fonts, new Vector2(5,5), Color.Red);
spriteBatch.End();

这应该像一个魅力

[编辑 spritefont 解释]

您将需要创建一个 SpriteFont。为此,右键单击内容,选择添加新并创建 spritefont。它是一个 XML 文件,将在您编译时进行转换。你可以改变字体和高度,我建议 Arial 和 10.... 你可以随时改变它。

接下来,您需要加载它。我通常这样做。

在课堂里

private Spritefont Arial10;

在加载内容中

Arial10 = Content.Load<Spritefont>("Arial10");

现在你可以这样做

spriteBatch.Begin();  // in draw Last lines probably even after base.Draw(gameTime);
fpsm.Draw(spriteBatch, Arial10 , new Vector2(5,5), Color.Red);
spriteBatch.End();
于 2013-10-20T09:34:06.917 回答
0

您无法在 Initialize 方法中绘制 FPS。您需要在 Draw 方法中进行绘制,并在 Update 方法中进行更新。如果它不在 Draw 方法上绘制,你的 FPS 将永远不会绘制。Initialize 只会被调用一次,并且您的 GraphicsDevice 会在每一帧中被清除。

Game1.csInitialize方法中,删除这些行:

fpsm.Update();
fpsm.Draw(spriteBatch, fonts, new Vector2(5,5), Color.Red);

添加fpsm.Update();Update()方法中,并将其添加到DrawGame1.cs 中的方法中(在 之后GraphicsDevice.Clear(Color.CornflowerBlue);):

spriteBatch.Begin();
fpsm.Draw(spriteBatch, fonts, new Vector2(5,5), Color.Red);
spriteBatch.End();

我很确定这是你需要做的。

不要忘记LoadContent()通过执行以下操作在方法中加载字体:

fonts = Content.Load<SpriteFont>("MySpriteFont");

spritefont 也需要是来自您的内容项目的编译文件!只需右键单击内容项目,选择 Add > New Item 并选择 SpriteFont 文件。

于 2013-10-20T11:55:18.910 回答