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!
|
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!
| ||||
|
feedback
|
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.
|
C++, mainly. Xbox 360, more C# with XNA. Yes, they are OOP. IDEs, mostly Visual Studio where these languages themselves are concerned. | |||||||
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++. | |||
|
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. | |||
|
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 :) | |||
|
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. | ||||
|
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. | |||
|
feedback
|