簡體   English   中英

WP7 Silverlight / XNA拆分

[英]WP7 Silverlight/XNA split

我想制作一個具有Silverlight菜單的應用程序,但該應用程序的游戲部分是XNA。 我試圖使用此示例游戲中的代碼以及此處的在Silverlight中進行XNA渲染的方法來使Silverlight / XNA拆分工作。 結合這兩個教程,我得到的源代碼如下所示:

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.Input.Touch;
using Microsoft.Xna.Framework.Media;
using Microsoft.Phone.Controls;
using System.Windows.Navigation;

namespace FYP
{
    public partial class GamePage : PhoneApplicationPage
    {
        GameTimer timer;
        SpriteBatch spriteBatch;
        Texture2D ballTexture;
        IList<Ball> balls = new List<Ball>();
        bool touching = false;

        public GamePage(ContentManager contentManager)
        {
            InitializeComponent();

            //base.Initialize();

            // Create a timer for this page
            timer = new GameTimer();
            timer.UpdateInterval = TimeSpan.FromTicks(333333);
            //timer.Update += OnUpdate;
            //timer.Draw += OnDraw;

            // TODO: use this.Content to load your game content here
            ballTexture = contentManager.Load<Texture2D>("Ball");
        }

        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            base.OnNavigatedTo(e);

            // Set the sharing mode of the graphics device to turn on XNA rendering
            SharedGraphicsDeviceManager.Current.GraphicsDevice.SetSharingMode(true);

            timer.Start();

            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(SharedGraphicsDeviceManager.Current.GraphicsDevice);
        }

        protected override void OnNavigatedFrom(NavigationEventArgs e)
        {
            base.OnNavigatedFrom(e);

            // Set the sharing mode of the graphics device to turn off XNA rendering
            SharedGraphicsDeviceManager.Current.GraphicsDevice.SetSharingMode(false);

            // Stop the timer
            timer.Stop();
        }

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

            // TODO: Add your update logic here

            //base.Update(gameTime);

            HandleTouches();
            UpdateBalls();
        }

        private void OnDraw(GameTime gameTime)
        {
            SharedGraphicsDeviceManager.Current.GraphicsDevice.Clear(Microsoft.Xna.Framework.Color.White);

            // TODO: Add your drawing code here
            foreach (Ball ball in balls)
            {
                ball.Draw(spriteBatch);
            }

            //base.Draw(gameTime);
        }

        private void HandleTouches()
        {
            TouchCollection touches = TouchPanel.GetState();
            if (!touching && touches.Count > 0)
            {
                touching = true;
                Random random = new Random(DateTime.Now.Millisecond);
                Color ballColor = new Color(random.Next(255), random.Next(255), random.Next(255));
                Vector2 velocity = new Vector2((random.NextDouble() > .5 ? -1 : 1) * random.Next(9), (random.NextDouble() > .5 ? -1 : 1) * random.Next(9)) + Vector2.UnitX + Vector2.UnitY;
                //Vector2 center = new Vector2((float)SharedGraphicsDeviceManager.Current.GraphicsDevice.Viewport.Width / 2, (float)SharedGraphicsDeviceManager.Current.GraphicsDevice.Height / 2);
                Vector2 center = new Vector2((float)SharedGraphicsDeviceManager.Current.GraphicsDevice.Viewport.Width / 2, 200);
                float radius = 25f * (float)random.NextDouble() + 5f;
                balls.Add(new Ball(this, ballColor, ballTexture, center, velocity, radius));
            }
            else if (touches.Count == 0)
            {
                touching = false;
            }
        }

        private void UpdateBalls()
        {
            foreach (Ball ball in balls)
            {
                ball.Update();
            }
        }
    }
}

我不了解base是如何工作的,我不得不注釋掉base.initialize,更新和繪制base.OnNavigatedFrom的工作原理。

另外,我應該能夠使我的代碼在理論上起作用嗎? 我發現它非常復雜,盡管有可能閱讀有關XNA / Silverlight的信息,但是我找不到任何人們成功將XNA和Silverlight合並到同一應用程序中的源代碼。

這些視頻將幫助您了解XNA和SilverLight / XNA組合平台

http://channel9.msdn.com/Series/Mango-Jump-Start/Mango-Jump-Start-11a-XNA-for-Windows-Phone--Part-1

http://channel9.msdn.com/Series/Mango-Jump-Start/Mango-Jump-Start-11b-XNA-for-Windows-Phone--Part-2

從理論上講,XNA和SilverLight XNA組合平台幾乎相同,只是一點點的不同,您甚至可以要求XNA渲染一些SilverLight控件,這將使在游戲中處理某些按鈕事件更加容易。

希望這可以幫助

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM