What kind of languages and IDEs are used to develop video games? like Xbox 360 games?

Are they OOP?

Thanks.

UPDATE: Great answers guys, I am sorry I can only mark 1 as answer, you have all provided great feedback!

link|improve this question

feedback

closed as not constructive by Tim Cooper, ho1, BoltClock Dec 12 '11 at 14:41

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.

6 Answers

up vote 18 down vote accepted

C++, mainly. Xbox 360, more C# with XNA. Yes, they are OOP. IDEs, mostly Visual Studio where these languages themselves are concerned.

link|improve this answer
16  
XBox 360 - c# with XNA true but that's an initiative by MS for small game devs and hobbyists. Standard 360 SDK is still C++ – zebrabox Jul 30 '09 at 21:37
Also if it's for PS3, it'll be C or C++ (OpenGL ES). – legends2k Feb 27 '10 at 4:43
feedback

The vast majority of console games are written in C++, often with some kind of scripting language (such as Lua or Python or a custom solution) for scripting higher level game logic.

You can use C# and XNA to make 360 games, but generally most people are using C++ on that platform. If nothing else, you'd have trouble if you wrote an XBLA game in C# then the publisher decided they wanted a PS3 version, for example.

For smaller platforms, like the DS, C or C++ are still the main languages, but you might get a bit of assembler too for low level code. Similarly, you'll often find intrinsics being used for SSE or Altivec optimizations on larger platforms - so it's not just pure, portable C++.

link|improve this answer
feedback

On the engine side, it's usually a mix of C++ and a scripting engine that uses either in house language or a popular scripting engine like Lua.

Also languages like C, C# (XNA, Mono + Unity), Objective C, Java are used, but are far less popular than C++ and certainly are used very (very) little in AAA titles.

On the tooling side the use of languages is more diversified and modern OO languages like C# or dynamic languages like Python have started to see more use.

link|improve this answer
feedback

Agree with C++ Also bits of inline assembler or custom assembler/intrinsics for PSP/PS3

Also don't forget pixel/vertex shader ops - usually Cg. Very important :)

link|improve this answer
feedback

It really depends on the engine.

A lot of engines are written in C++, but the language used either is brewed in a scripting language or it's like the native code.

To give some examples Ogre uses C++ both as an engine and programming and Unreal is written in C++ but as game language it uses UnrealScript.

link|improve this answer
feedback

C++ is the good way to go. Most PC games are written in C++, some console games are made in Integrated Development Environments (IDE) made in C++. C# is used for XNA, but XNA programming isn't professional. Try C++ and maybe Java.

link|improve this answer
feedback

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