What are the best programming language for Game Programming

Reply

Join Date: Jul 2008
Posts: 29
Reputation: loken is an unknown quantity at this point 
Solved Threads: 0
loken's Avatar
loken loken is offline Offline
Light Poster

What are the best programming language for Game Programming

 
0
  #1
Nov 14th, 2008
I wanted to start my own game. I have experience developing in C, C++ and Java. I also have tried out Python and currently I am learning OpenGL.

I would like to know if there are preferrable programming languages that are suited best when it comes to game programming.

Thanks in anticipation,

Loken
Crash dump, something worse than dying...
Reply With Quote Quick reply to this message  
Join Date: Nov 2008
Posts: 939
Reputation: MosaicFuneral is just really nice MosaicFuneral is just really nice MosaicFuneral is just really nice MosaicFuneral is just really nice MosaicFuneral is just really nice 
Solved Threads: 92
MosaicFuneral's Avatar
MosaicFuneral MosaicFuneral is offline Offline
Posting Shark

Re: What are the best programming language for Game Programming

 
0
  #2
Nov 15th, 2008
Actionscript if your into flash games, C++ is my preferred language.
"Jedenfalls bin ich überzeugt, daß der Alte nicht würfelt."
"I became very sensitive to what will happen to all this and all of us." -Two geniuses named Albert
Reply With Quote Quick reply to this message  
Join Date: Sep 2008
Posts: 363
Reputation: tomtetlaw is an unknown quantity at this point 
Solved Threads: 4
tomtetlaw's Avatar
tomtetlaw tomtetlaw is online now Online
Posting Whiz

Re: What are the best programming language for Game Programming

 
0
  #3
Jan 26th, 2009
C++
Reply With Quote Quick reply to this message  
Join Date: Sep 2008
Posts: 14
Reputation: Lethos is an unknown quantity at this point 
Solved Threads: 0
Lethos Lethos is offline Offline
Newbie Poster

Re: What are the best programming language for Game Programming

 
0
  #4
Jan 26th, 2009
C++ easily for any PC based gaming.

For Browser based games, I have a preference to PHP, far more relaxed and easy.

To be honest If you are experience in C++ you'll be able to get by start on a game and be quiet happy with it.
Reply With Quote Quick reply to this message  
Join Date: Jun 2005
Posts: 2,039
Reputation: Rashakil Fol is just really nice Rashakil Fol is just really nice Rashakil Fol is just really nice Rashakil Fol is just really nice 
Solved Threads: 139
Team Colleague
Rashakil Fol's Avatar
Rashakil Fol Rashakil Fol is offline Offline
Super Senior Demiposter

Re: What are the best programming language for Game Programming

 
0
  #5
Jan 28th, 2009
It depends on the requirements for the game.
Reply With Quote Quick reply to this message  
Join Date: Jun 2008
Posts: 400
Reputation: sciwizeh is on a distinguished road 
Solved Threads: 20
sciwizeh's Avatar
sciwizeh sciwizeh is offline Offline
Posting Pro in Training

Re: What are the best programming language for Game Programming

 
0
  #6
Jan 28th, 2009
it does depend on the requirements for the game, but if you need real time 3D rendering, your on the right track with C++ and OpenGL. Be sure to have a good knowledge of both before starting something big though.
My site, random PM's from people I haven't hear from before will be DELETED
"If people are good only because they fear punishment, and hope for reward, then we are a sorry lot indeed.",
"If we knew what it was we were doing, it would not be called research, would it? "
-Albert Einstein
Reply With Quote Quick reply to this message  
Join Date: Jan 2009
Posts: 6
Reputation: jtfrench is an unknown quantity at this point 
Solved Threads: 0
jtfrench jtfrench is offline Offline
Newbie Poster

Re: What are the best programming language for Game Programming

 
0
  #7
Jan 30th, 2009
I would stay away from ActionScript and the like, unless your true goal is to make a bunch of browser games. The Flash market seems to be quite different from all the rest of the games, so that's a decision you'll have to make.

If you're making desktop games, there's no doubt that C++ is the root of your choice. Now whether or not you program directly in C++ is up to you... The thing about C++ is that it gives you a lot of power (which is good), but it's up to you to make your code cross-platform. You'll find plenty of libraries for Windows game engines, or DirectX this, OpenGL that, but I find it most beneficial when you can write a game and deploy it on Macs, PCs, Linux, the works.

I recommend BlitzMax to get you started with game programming. It uses the simple/non-intimidating syntax of BASIC, but under the hood it's really just a wrapper around C++ and open source libraries. It's actually quite genius, and as you grow as a programmer and learn more about memory management and whatnot, you can essentially do whatever you want with it.

Check it out at www.blitzmax.com. I'm writing a game write now in BlitzMax called Fantasy Hip Hop RPG. You can check out a video here http://www.youtube.com/watch?v=NXZzfrUUX0g or at www.fantasyhiphop.com/blog to see what's possible.
Reply With Quote Quick reply to this message  
Join Date: Jul 2008
Posts: 29
Reputation: loken is an unknown quantity at this point 
Solved Threads: 0
loken's Avatar
loken loken is offline Offline
Light Poster

Re: What are the best programming language for Game Programming

 
0
  #8
Feb 3rd, 2009
Thanks, it's been a while...been busy with work. BTW, I am planning to do 3d games. I am starting to familiarize myself with OpenGL and Python.

I have Blender 2.4 installed on my pc.
Would using Blender be a good way to start.

Thanks for your advices

Loken
Crash dump, something worse than dying...
Reply With Quote Quick reply to this message  
Join Date: Jan 2009
Posts: 19
Reputation: NightCrawler03X is an unknown quantity at this point 
Solved Threads: 0
NightCrawler03X's Avatar
NightCrawler03X NightCrawler03X is offline Offline
Newbie Poster

Re: What are the best programming language for Game Programming

 
0
  #9
Feb 11th, 2009
I would recommend the Blitzmax programming language.
http://www.blitzmax.com/
Reply With Quote Quick reply to this message  
Join Date: Jan 2007
Posts: 101
Reputation: PirateTUX is an unknown quantity at this point 
Solved Threads: 3
PirateTUX's Avatar
PirateTUX PirateTUX is offline Offline
Junior Poster

Re: What are the best programming language for Game Programming

 
0
  #10
Feb 11th, 2009
C++ and OpenGL is really the way to go. Blender is a 3D design tool more than it is a game language. From what I understand, you can do some limited programming in it, but for flexibility's sake, you're going to want to use Blender just to design your 3D models, and a real programming language to write your game.

For my project, we're using Ogre3D as our graphics engine. It is extremely flexible, well documented (books have been written on it), and portable between different platforms, so ultimately, it can be used to write games on PC, Mac, and Linux. There are also a bunch of third-party libraries and interface very well with Ogre3D that can help you handle physics. Very helpful.

This is a frequently asked question on Daniweb's gaming forum. Make sure you read the posts more thoroughly before you post a question as broad in scope as that again.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC