For my hobby and self-employed work I write games, and as of now i've only targeted Windows.

I want to break the chains that bind me to windows (and also important: .NET) but I do not know which language I should use primarily for writing 3D games , I want to use DirectX on windows and OpenGL on linux so there should at least be a way to use those frameworks in the language, and it should be fast. (ie Java would not be suitable for a good looking pc first person shooter or MMO in my opinion) . Compatibility with existing rendering/game engines does not matter.

My background:

Main coding language: C#

I also have experience in Java (writing an android game) , Lua , and also some web languages but that's not important.

My personal criteria: - Run on Windows and Linux (directx,opengl support) - Have a Garbage Collector - I want to avoid using pointers - There should be a decent IDE for it in linux and preferably also in windows - Object Oriented - available libraries (first or third party) which include things like IO , XML , Networking (like .net).

I have seen the Mono project, but I want to move away from the .NET platfrom and propietary languages as much as possible.

I would greatly appreciate advice and stories based on your own experience..

Please refrain from turning this into a 'which programming language is better' discussion, it should ideally be a list of experiences which would allow me and others to make our own conclusions.

link|improve this question

3  
Your question is a great question. It's better suited for Slashdot or Reddit. It's not a question that can be objectively answered; and at best you're asking for extended discussion, which the FAQ explicitly discourages. – George Stocker Jun 27 '10 at 20:43
1  
Java works and supports all you are asking for. – Romain Hippeau Jun 27 '10 at 20:48
Take a peek at Mono, or Unity3D, both enable you to use C#. Both are very mature. – Dykam Jun 27 '10 at 20:49
@George Stocker: I'm not asking for an answer i'm asking for advice and experiences as i've written, I'll accept the most clear,understandable and objective answer. @Romain Hippeau: does Java have Direct3D support I want to use both directx and opengl based on the os the app is running on. @Dykam If I understand correctly that means I'd have to write for .net which I would like to abandon if possible. Unity3D is an engine not a language, the scripting language does not provide what a full language has to offer?. – Mervin Jun 27 '10 at 21:19
@George Stocker - It should be clear that the OP narrowly tailored the question to try to elicit objective answers. Simply because there is some degree of inherent subjectivity to the topic is not enough reason to close it; the overwhelmingly vast majority of technical programming issues are not purely objective. – Joel Hoff Jun 27 '10 at 21:46
show 3 more comments
feedback

closed as not constructive by George Stocker, Lucero, Michael Petrotta, Bart Kiers, Bill the Lizard Jun 27 '10 at 21:20

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

If you want to use OpenGL in Linux and DirectX, then you will need to use an already existing game engine (that, in my opinion, is actually a good idea). Not being a big studio, the amount of options is limited, and I think your best bet would be to try Unity.

http://unity3d.com/unity/

The nice thing about Unity is that you would be able to target not just Windows and Linux, but Mac, iPhone, Android...

And you can actually use C# to program the behavior of the game, so your current knowledge will be useful.

link|improve this answer
feedback

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