Suggested platform/tools for rapid game development and game prototyping [closed]
Asked Answered
F

29

38

What platforms and tools should I use for rapid game development and prototyping?

Say that I have an idea for a simple game or a game mechanic that I want to try out, what are the best tools for quickly creating something playable that I can experiment with to try out the idea?

The platform does not necessarily have to be easy to learn, that is not the issue, but once learned it has to be quick to use.

Financial answered 23/11, 2008 at 10:12 Comment(1)
For game mechanic only I'm using Trabant, which sounds like an excellent fit for you. Disclaimer: I'm the author.Wellgroomed
B
27

Flash or Game Maker for 2D games. Unity for 3D games.

Badinage answered 24/11, 2008 at 6:53 Comment(0)
E
19

Pygame is worth a try, mainly because it is possible to use a high-level programming language like Python to structure the game.

See What do you use for game dev ?

Embowed answered 23/11, 2008 at 10:26 Comment(0)
L
18

Have you investigated Microsoft's XNA platform?

Leesaleese answered 23/11, 2008 at 10:17 Comment(1)
I used XNA in game development competition and it was very easy to use and create a game in short time. +1Demantoid
B
11

I like index cards and a sharpie.

Bellabelladonna answered 5/12, 2008 at 18:44 Comment(0)
R
7

If platform independence is a consideration, you might want to check out the jMonkeyEngine. It is a scene graph based 3D engine written in Java.

public class HelloWorld extends SimpleGame{
 public static void main(String[] args) {
  HelloWorld app = new HelloWorld(); // Create Object
  // Signal to show properties dialog
  app.setConfigShowMode(ConfigShowMode.AlwaysShow);
  app.start(); // Start the program
 }
 protected void simpleInitGame() {
  // Make a box
  Box b = new Box("Mybox", new Vector3f(0,0,0), new Vector3f(1,1,1));
  rootNode.attachChild(b); // Put it in the scene graph
 }
}

That bit of code is all you need to start displaying 3D primitives on the screen. This example has a lot of basic functionality built in for you, including camera control, WASD movement and comprehensive performance stats. You can of course override all of this and do anything you would like.

Reservoir answered 23/11, 2008 at 13:35 Comment(0)
Z
7

I suggest you try the following:

Flash is good for fast development of 2d games (along with FlashDevelop 3 IDE for actionscript 3), but it is expensive.

Silverlight 2 is another good alternative and can be free if you use Visual studio express and some free graphics editor like inkscape.

If you want to do some 3d, I would strongly suggest that you take a look in Blitz3D (it uses the old DirectX 7 but you can still do powerfull stuff with it). You can do very fast prototyping with it. You could also try BlitzMax, for a powerfull 2d engine (there are also plugins for 3d engine like irrlicht3d, minib3d).

For a more robust 3d engine, you should try MOGRE (.NET Ogre3d wrapper).

Zinn answered 24/11, 2008 at 12:32 Comment(0)
E
6

I'd say something like Flash for a nice mix of quick and codability.

Eboni answered 23/11, 2008 at 10:18 Comment(0)
A
6

Also there is a fast 2D game prototyping engine Love2D based on Lua programming language.

Agiotage answered 22/2, 2011 at 17:30 Comment(1)
It's my favorite game prototyping framework! I would like to add that it's an opensource and cross platform engine (unlike Game Maker) and it has built-in API for Box2D physics engine (so you can build your own Angry Birds with blackjack and other stuff :)Smriti
D
5

HGE (C++, DirectX)

Very simple to use 2D game development library.

Demantoid answered 23/11, 2008 at 10:40 Comment(0)
K
4

http://wiki.blender.org/index.php/Game_Engine

Blender Game Engine is a 3D game development environment with a Python based 'AI' system.

Kelsi answered 23/11, 2008 at 10:37 Comment(0)
S
4

Flash is without a doubt the best platform for games prototyping. With flash, you can get a games running in a matter of hours. And the learning curve is not bad at all, compared to low-level languages and frameworks.

Good things about flash IMO are :

  • Graphics and code can be managed within the same app, which is very handy.
  • ActionScript (Flash's dev language) makes it really easy to reuse your code.
  • There are tons of libraries for 2D, 3D, physics and what not, to make your games more polished.
  • Flash games can run on 98% of the computers in the world.
  • The community around Flash (and especially gaming with Flash) is huge and very responsive.
  • The community.
  • Did I mention the community ?

All in all, Flash is IMO the best platform for proofs-of-concept and quick games development. And the community makes it way easier, since most of the things you'll want to do have already been done many times, and are usually discussed on many forums and blogs.

Stound answered 20/7, 2009 at 9:35 Comment(0)
A
3

You should give a look at Allegro, it's fast to learn and a great library for prototyping ideas, even if you choose to use it for the final development it is a great library for games.

I started using it a couple years ago and recently I read a book that brought me a whole new lot of ideas and I started working on it again.

Alluvium answered 24/11, 2008 at 16:50 Comment(0)
E
2

Try Game Maker 7 http://www.yoyogames.com/gamemaker/

Exactitude answered 24/11, 2008 at 7:15 Comment(0)
S
2

I use SFML. It's like SDL but OO and more gamedev-oriented. It is free and very easy to use, has a clear documentation and tutorials, is in constant development, cross-platform, and has bindings to C, D, .NET, Python and Ruby. It's written in C++.

I would also suggest an excellent 2d physics engine - Chipmunk Physics. It is very fast, written in C, has bindings to Python(pymunk) and Ruby and probably more languages, and is really really easy to setup. It's easy to quickly put up a small game to test an idea.

So... Python or Ruby with Chipmunk Physics and SFML. There is also Gosu game engine for Ruby, and has some Chipmunk Physics integration, but I actually didn't use this one.

Sop answered 20/7, 2009 at 9:6 Comment(0)
S
1

If it's a 2D game, QT's QGraphicsScene is very easy to use.

Semi answered 23/11, 2008 at 10:55 Comment(0)
E
1

I happen to like TorqueScript - it has served me well over the years -- and I like Torque Game Builder. For 3D they Have Torque Game Engine and Torque Game Engine Advanced. GarageGames is pretty good stuff. Little learning curve up front, but after that you'll be sailin'

Eirena answered 27/11, 2008 at 1:58 Comment(0)
R
1

IndieLib is looking pretty slick these days. Lot's of nice tutorials and guides on offer too. It's C++ but there are wrappers out there that allow you to use .NET too.

Replicate answered 22/3, 2009 at 22:36 Comment(0)
P
1

ApocalyX is worth a try, you use Lua to write code, and although it isn't really that fast or simple or clean or easy to use, it has a crap-ton of features and prototyping in it is pretty fast.

Patella answered 1/4, 2009 at 20:48 Comment(0)
O
1

http://www.openprocessing.org/

Fantastic resource - we use it to prototype graphical effects and simple game mechanics often.

Hope this helps,

-Tom

Operatic answered 4/11, 2009 at 22:30 Comment(0)
H
0

If you like dynamic languages try out Pygame? Plus i think you can target OpenGL with this one too...depends on what you are looking at. XNA Game Studio is great...or u wana look at some Mac software

Hafiz answered 23/11, 2008 at 10:55 Comment(0)
S
0

I am using Python for protoyping, CGKit is an incredible library, with the help of PyOpenGL it is easy to create a playable demo, and most of the good 3d content creation tools support Python scripting which is essential to get you going.

Scalene answered 27/11, 2008 at 1:53 Comment(0)
F
0

if your coll with dynamic languages for 2d there's PyGame and for 3d I really like Panda3d both of which are cross platform. If python isn't your thing you can check out XNA or TAO both run on .NET and i think TAO also runs on Mono.

Freeboot answered 7/1, 2009 at 14:38 Comment(0)
B
0

I prefer to develop with Unity3D, but nothing beats Flash for prototyping. Flash is a perfect platform for testing and refining game mechanics before implementing them into a production pipeline. The learning curve is also pretty small.

Flash uses Actionscript and Unity Javascript, so because they are both ECMA-scripting languages the transition from prototype to production is smooth.

Brahe answered 2/6, 2009 at 14:33 Comment(0)
L
0

A lot of the Game Design students at Champlain college use MultiMedia fusion for Rapid prototyping and development.

Its another pretty decent piece on the already great list of answers here. Multimedia Fusion

Leggett answered 17/7, 2009 at 17:22 Comment(0)
H
0

Flash Allows you to develop games which can run as a desktop application using AIR , or as a thin client which can run inside a browser with flex or AS3 and even in mobile phones with Flash Mobile.

Horsehair answered 29/9, 2009 at 18:51 Comment(0)
S
0

You could use Coppercube. You can get a basic game up and running without any code, and then add some specific game logic using the builtin scripting language. It will then compile to either a Flash SWF or a native windows EXE.

You can read some tutorials to get you started with Coppercube here.

Seaport answered 15/11, 2009 at 4:33 Comment(0)
G
0

An interesting variation on Flash (2D games only), if your project is UI-heavy (such as wargames, RPG, strategy) is to use the Flex SDK and Flash Builder 4 as well, which also allows you to drag/drop UI components and quickly throw together prototype dialogs or interfaces and such. If you're doing a typical Flash-shooter or casual Flash game I probably wouldn't recommend using Flex in that case.

Greenness answered 16/10, 2010 at 14:56 Comment(0)
N
0

I would go for www.Unity3D.com as my prefered platform.

Why? Because its a crossplatform framework, so if you pay for it later, you will also be able to publish to eg. iPhone, iPad, Android, Xbox, Playstation and Wii...

Its a bit "hard" to start up, but as I am informed its currently one as the most chosen platforms for iPhone/iPad 3D game development.

You can do 2D stuff too, but the engine is build up upon 3D from start, including psysics, lightning, shadows and you can build FREE games with the FREE license. All the user needs is either to download and install the game (as usual) OR play it inside a browser (which requires the user to download and install a plugin, just as Flash/Java)

The Unity3Dplayer utilizes the platforms 3D acceleration, so some of the demos are quite nice to watch.

Flash on the otherhand is an easier platform for graphicartist (from at starting point), but its not really designed for 3D yet - and today Steve Jobs aka "God of Apple" still thinks that iPhones/iPads should not be able to run Flash applications inside their iOS. (as it probarbly would let way too many free game pass outside the AppleStore which will lead Apple to less revenue on Apps and also not force the developers to learn how to write native Objective-C)

So I will go for Unity3D

Noodlehead answered 16/10, 2010 at 15:18 Comment(0)
U
0

GameMaker for quick prototypes.

I've never used PyGames, but my brother uses it all the time and I would recommend trying that one if you want something more powerful than GameMaker, but honestly GameMaker is pretty powerful.

For 3D games I would try out Blender. Blender can be extended with Python. I've also heard a lot of good things about Unity.

For online games I would use GameMaker for HTML5. Or I would just learn HTML5.

I've used python a lot and although I've never used it for a game I can see it's ease of use being very beneficial for gaming. I've created a few games with GameMaker. It's a really good program. If you want to create something fancy use it. If you want to spend time creating your own architecture for structuring a game use another program.

Uphroe answered 22/3, 2012 at 18:53 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.