How are software and game templates developed?

please do not mind my question, since I know little about software, because I proceed from a web perspective. For example, in web css is used for design and appearance

So..

How are projects, templates and environments for software and games created using programs such as C ++ and java created?

Are they designed with the same languges?

+7
source share
2 answers

There are many aspects to developing a game. Most games consist of the following:

1) The rendering engine. This is the presentation layer and provides scene graphics, math, particle effects, post-processing effects, and a host of other things. Unreal is such an engine. Good free Ogre rendering engine

2) Sound engine. This allows you to process sound effects (usually processing them in 3D space) and streaming audio. An excellent free sound layer is OpenAL .

3) Compress / play video (e.g. BINK ) if your game requires it. Free version of Theora .

4) Network. This is something that may well be written in the house or left the shelf, like other components, for example. Raknet

5) Scenarios. It does not always make sense to have the whole game written in C / C ++ / Java. Sometimes logic and level flow are easier to describe in a scripting language, which greatly facilitates its change on the fly without recompilation. Good candidates are LUA , Python, and even Squirrel . For example, LUA is used by World of Warcraft and is easily attached to C ++. Civ4 uses Python.

Obviously, some or all of them can be written on their own, but it makes sense in terms of cost, that if it's already done well, why bother? You also need some software to edit your assets ( 3D Studio Max for 3D, such as Blender , if you need a good, reliable, free package).

+2
source

Are they designed in the same languages?

It depends on how the game developer decided to do this.

  • They can be implemented in a (simple) coding language; e.g. C ++ or Java.
  • They can be partially implemented using some language provided by a standard game engine or framework ... or a more general (non-game) graphics / presentation infrastructure ... or some general-purpose scripting language (with an embedded interpreter).
  • They can be partially implemented using the game language implemented by the game developer as part of his / her.

Or some combination ...

+4
source

All Articles