Educational Software Programming in Delphi - for :: Which language would you recommend, and aren't the newer Delphi versions but there is nothing on the terms of use that prevent us to do so and I have http://answers.google.com/answers/threadview/id/293801.htmlHOME | what language do game programmers used in the games such as
ENTER THE MATRIX Making iPOD Games:: What coding language is used to make games for the video iPOD? module and a header (written in programmers notepad) added in the correct directories. http://answers.google.com/answers/threadview/id/429682.htmlHOME |
DOOM 3
HALF LIFE 2
and so on
plz help
Many game programmers use c++ and vc++
Doom 3 major code was written in Vc++ "For Researcher aceresearcher-ga Only":: 2) Trying to game the Googlebot is a never-ending escalation of war. Google Answers is one of those rare jobs where a person can do something they http://answers.google.com/answers/threadview/id/218833.htmlHOME |
OpenGl is also nice for game programmers
I have made many games in VB and PERL the 2 simplest languages in the world ;)
Many game programmers use c++ and vc++
Doom 3 major code was written in Vc++
OpenGl is also nice for game programmers
I have made many games in VB and PERL the 2 simplest languages in the world ;)
Vc++ is NOT a language. It is the name of a IDE for C++.
People usually code games in C/C++. Btw, are your games available anywhere on the web, do you have a website? I would like to see your games! Biology (evolution):: Only research grounded in evolutionary biology can do these things. . mutation) based on selection criteria chosen by a programmer to solve a particular http://answers.google.com/answers/threadview?id=611251HOME | analysis of the problems with todays web browsers :: Mar 5, 2003 For programmers, they make developing Internet applications much simpler. Since there are literally hundreds of ready-to-use OCX's (ActiveX http://answers.google.com/answers/threadview/id/172336.htmlHOME |
Pallav
Technically speaking, VC++ is just an IDE. But there has been so many developments and add-ons and tons of libraries added to it that pretty much the only thing it retained was the syntax of C++. The true power of VC++ is its libraries and other proprietary code, which regular old C++ cant even compare to. So, lets say I use VC++ and OpenGL in my program, which say looks something like this:
int CGLSample1View::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CView::OnCreate(lpCreateStruct) == -1)
return -1;
HWND hWnd = GetSafeHwnd();
HDC hDC = ::GetDC(hWnd);
if (SetWindowPixelFormat(hDC)==FALSE)
return 0;
return 0;
}
void CGLSample2View::OnSize(UINT nType, int cx, int cy)
{
CView::OnSize(nType, cx, cy);
GLsizei width, height;
GLdouble aspect;
width = cx;
height = cy;
if (cy==0)
aspect = (GLdouble)width;
else
aspect = (GLdouble)width/(GLdouble)height;
glViewport(0, 0, width, height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluOrtho2D(0.0, 500.0*aspect, 0.0, 500.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
I cant even imagine how many thousands and thousands of lines of code I have to write in plain old C++ to create an effect that above simple code creates with inbuilt VC++ libraries in a few lines. While VC++ is *ALSO* an IDE, its become a de facto programming language now, using pretty much only the borrowed C++ syntax.
You guys remember the Doom 3 trailer? If I remember correctly John Carmack was giving his interview sitting in front of his PC monitor in which Visual C++ was running.
Hey ! Tux well first of all u r comfusing all of the ppl here as we cant find out to whom r u asking the question to, brother :? R u askin to me or to gamefreak14 ??
well if u want to ask question to any particular person then please insert the "@" Example: @ashu888ashu888 and then u can ask querries dude. :) :P its just an advice so that the next time any one sees this topic, they will come to know to whom r u askin the questions :)
neways, for ur querry that u asked
And who create thosh languages
well the game programmers make the programs for such games and there r many other people involved in making the games apart from the game programmers, there r game designers, game artists and many more, take for example the SHREK movie :)
And who create thosh languages
Neither is OpenGL. It's just an API.
Hey harshagarwal well a good question dude but i think u can get all ur answers on this site---->
www.programmersheaven.com
the programming is basically done using C/C++ (as far as i know) :)
but a lot of ppl want to make games so if u want to start like a novice game maker then check out this site---->
www.gamemaker.nl
and post ur replies here abt how u liked the site ! :)
cheers n peace...
I guess this page will provide you with lots of information Amit’s Game Programming Information (http://www-cs-students.stanford.edu/~amitp/gameprog.html)
Microsoft Unleashes Visual Studio .NET
IBM's iPhrase Buy Adds to WebSphere
|