I have done some looking and I can't figure out a good way to write a 2D tile/sprite based game in C# for Win8. According to the MSDN documentation:

You can use managed code languages like C# and Visual Basic to develop 2D (and lightweight 3D) games.

The problem is that I can't figure out how to do this. The reason I would like to use C# is because I already have a lot of code written for Windows Phone that I would like to reuse.

Can anyone point me to how I would write a fairly efficient 2D tile/sprite MetroUI game for Win8? The only thing I can find uses C++ and DirectX.

[EDIT]

To clarify I do not care too much what I use (WinRT, DirectX...) so long as I can submit to the app store, and write my code in C#.

link|improve this question

I guess with metro-ui you mean WinRT? Have a look at this document download.microsoft.com/download/1/E/4/… it explains what options you have to write games. To make it short, you can use Direct2D, Direct3D and some helper stuff from XNA will also be available. But if you just want to make a game, that runs on win8 without WinRT this will also be possible, but might not work on tablets or the propably upcoming windows phone 8. Also WinRT is compatible to c#,so directx support will probably expand to c# aswell – dowhilefor Feb 23 at 17:07
This still wasn't much help. It was very generic. – gamernb Feb 24 at 0:15
Rgarding your edit and comment. What did you expect? You want to be able to submit to the appstore, afaik you must use WinRT. Whats possible with WinRT is written in this document. And on top of all that, win8 and winrt is not final. The whole API and alot of components are not finished and maybe will completely change. So for now you can use what the developer preview of winrt offers you, which to be fair is not much for game development needs. – dowhilefor Feb 24 at 0:31
feedback

1 Answer

up vote 2 down vote accepted

If you are familiar with the DirectX API, you can use SharpDX available via http://www.sharpdx.org. It is basically exposing DirectX APIs into C#. From my understanding, if you are going to upload apps to the store, the SharpDX should be fine and pass compliance, but I would look into it further before going too deep.

Also, as of this time, not all of the features are available (like Direct2d not fully certified for Win8 Metro).

link|improve this answer
1  
From what i understand he wants to use WinRT. And i don't think slimdx is WinRT ready nor necessary. Because in WinRT directx will be available again. – dowhilefor Feb 23 at 17:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.