私は Windows 10/Windows Phone (10) 用の UWP/UWA ゲームに取り組んでおり、Xbox One の開発モードを期待しています。今日開発者モードがリリースされたと聞いて興奮し、家に帰って Xbox でテストするのが待ちきれませんでした。
私のアプリ/ゲームは問題なく動作します。描画された領域が切り取られていることを除いて、(まだ)エラーは発生していません (「タイトルセーフ/テレビセーフ」領域の外側の外縁)。
Win2D CanvasSwapChain とジェネリック CoreWindow を使用しています。
この問題を軽減するために MyCoreWindow または MyViewSource でできることがあると思いますが、まだ答えが見つかりません。この時点での睡眠不足かもしれませんが、答えまたはそれを指す矢印が私自身と将来の探求者にとって大きな助けになることを願っています.
xamlを使用しないことをお勧めします。
これが私のViewコードです。
using Windows.ApplicationModel.Core;
class MyViewSource : IFrameworkViewSource
{
public IFrameworkView CreateView()
{
return new MyCoreWindow();
}
}
これが MyCoreWindow です
class MyCoreWindow : IFrameworkView
{
private IGameSurface _surface;
private Engine _gameEngine;
public void Initialize(CoreApplicationView applicationView)
{
applicationView.Activated += applicationView_Activated;
CoreApplication.Suspending += CoreApplication_Suspending;
CoreApplication.Resuming += CoreApplication_Resuming;
}
private void CoreApplication_Resuming(object sender, object e)
{
_surface.Resume(sender, e);
}
private void CoreApplication_Suspending(object sender, SuspendingEventArgs e)
{
_surface.Suspend(sender, e);
}
private void applicationView_Activated(CoreApplicationView sender, IActivatedEventArgs args)
{
Windows.UI.Core.CoreWindow.GetForCurrentThread().Activate();
}
public void Load(string entryPoint)
{
_surface.Load(entryPoint);
}
public void Run()
{
while (_gameEngine.IsRunning)
{
Windows.UI.Core.CoreWindow.GetForCurrentThread().Dispatcher.ProcessEvents(CoreProcessEventsOption.ProcessAllIfPresent);
_surface.Update();
_surface.Draw();
}
}
public void SetWindow(Windows.UI.Core.CoreWindow window)
{
_surface = new Surface(window);
_surface.SetFrameRate(60);
_surface.SetUpdateRate(100);
_gameEngine = new Engine(_surface.CanvasDevice);
_surface.AddComponent(_gameEngine);
}
public void Uninitialize()
{
_surface.Unload();
}
public static void Main(string[] args)
{
CoreApplication.Run(new MyViewSource());
}
}