vote up 2 vote down star
2

Is C# an appropiate language to develop advanced games using XNA?

flag

Advance games such as Quake or Unreal – Bhaskar Aug 28 at 15:42
1  
There are also other frameworks similar to XNA, like SlimDX. Also you could consider prebuilt game engines that work on top of C# (some with XNA in the background as well) such as the Torque or TorqueX engine or OGRE (called Axiom in it's C# implementation) – mikeschuld Aug 28 at 16:10
Yes, C#+XNA is great for game development. If you're asking if they are the best choices for bleeding edge game dev, no but it doesn't matter. If you're asking what the best language is for bleeding edge game dev, then you probably are still in the beginning stages of learning game dev and don't need to worry yet about these distinctions. Get some more hands-on experience with game development for a while, learn fundamentals, then worry about bleeding edge. If this isn't what you were asking, disregard my comment but I hear this a lot from people who need to learn to walk before they can run. – Dinah Aug 28 at 16:23

closed as subjective and argumentative by Lucas Jones, Binary Worrier, Noldorin, redsquare, John Saunders Aug 29 at 20:19

6 Answers

vote up 1 vote down check

Yeah, you should really define 'advanced'. XNA is awesome for game development as it's much more rapid dev than C++/DirectX. Plus it's 'portable' at least in theory.

Most big shops still use C++ for games, but I think that's mostly because of the skill pool available in C++. I see that changing in the next few years.

And don't be swayed by a lot of people's arguments about how XNA is only for tiny game concepts because of the managed code. Managed Code can actually be almost as fast as native is written properly, and especially in the case of games, most of the heavy lifting is done by the GPU, which is executing your HLSL code anyway. So you do have a very fine degree of control(if you need it) and should get comparable performance for low level shading tasks. I haven't actually done side-by-side comparisons of C# vs. C++, but I can do pretty awesome things graphically in C# and get really decent frame rates, so it's my language of choice.

link|flag
vote up 1 vote down

Kinda depends on what you mean by 'advanced'. C# + XNA is kind of more for a more casual level of game development; serious, mass-market commercial games pretty much universally use C++. If you're asking this question in the first place, though, C# + XNA will probably be fine for nearly anything you'd have in mind.

link|flag
1  
This is not nearly as true as it used to be, but most mainstream game developers still focus on C++ as their primary language. There are more and more, however, that are making use of C# for portions or all of their newer development. – BBlake Aug 28 at 15:47
vote up 2 vote down

You can only use C# or VB.NET with XNA framework.

However, C# is the really only supported language for XNA. All of the documents, tutorials, samples, etc. are in C#. There's a small group of VB.NET XNA users, but typically, everyone that uses XNA uses C#.

link|flag
1  
Oh gosh not the language chestnut again. Any good programer should be able to read and translate easly between vb & c# – Darknight Aug 28 at 15:50
2  
Not to mention that F# sharp examples have been displayed for XNA. blogs.msdn.com/dsyme/archive/… – DouglasH Aug 28 at 16:11
vote up 5 vote down

Yes. C# is the language that most of the XNA samples have been written in.

However, you can use any .NET language, and even mix them if you wish.

link|flag
1  
I wouldn't reccommend the later though. – Dockers Aug 28 at 15:51
4  
Mixing languages in games is VERY handy. Once .NET 4 is released, and the DLR integration is better, this will become even more true. Having scriptability in games makes development very, very quick and easy, and .NET is very nice for this. – Reed Copsey Aug 28 at 15:52
yes but xna supports c# only ! – Yassir Aug 28 at 16:14
1  
XNA is .NET - I've written code that uses XNA from non-C# languages. "XNA Game Studio" just supports C#, but the actual libraries are usable from any .NET language. – Reed Copsey Aug 28 at 16:35
vote up 3 vote down

Yeah, its appropriate.

C# was probably the principle language the developers of XNA had in mind while creating the framework.

link|flag
vote up 2 vote down

You can produce any game you want with XNA.

2D or 3D.

As for 'advanced' it depends what you mean. As far as performance goes the stuff you want to do should be possible in XNA - ignore the fact it is not used commerically as there have been some splendid examples of how powerful XNA is.

As for C# - I find personally find it to be my favourite language at the moment. Very clean and works nicely for game programming. XNA works a treat with it too as mentioned already.

Edit:

Yes, I have produce FPS style games and the likes with C#/XNA.

Tools

On a side note, XNA with C# is a great platform for implementing tools used in game production. Speed/Performance is less of a concern with a nice rapid environment with nice GUI being the main concern both of which XNA give you.

link|flag

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