Page 1 of 1 [ 7 posts ] 

theSPECTRE
Toucan
Toucan

User avatar

Joined: 24 Aug 2004
Gender: Male
Posts: 260
Location: USA PA

04 Mar 2005, 8:11 pm

does anyone know of a good one for making vidoe games?


_________________
In this country. You gotta have the money. Then when you get the money you get the power. Then when you get the power, you get the woman.

-Tony Mantanna
-Scarface

Say Good Night to the bad guy - Tony Montana
-Scarface


UltimApe
Snowy Owl
Snowy Owl

User avatar

Joined: 23 Jun 2004
Gender: Male
Posts: 130

05 Mar 2005, 3:08 am

C++ with the directx or opengl api.



alex
Developer
Developer

User avatar

Joined: 13 Jun 2004
Age: 37
Gender: Male
Posts: 10,214
Location: Beverly Hills, CA

05 Mar 2005, 9:40 am

UltimApe wrote:
C++ with the directx or opengl api.

Opengl would be best.


_________________
I'm Alex Plank, the founder of Wrong Planet. Follow me (Alex Plank) on Blue Sky: https://bsky.app/profile/alexplank.bsky.social


serine
Tufted Titmouse
Tufted Titmouse

User avatar

Joined: 25 Feb 2005
Age: 40
Gender: Male
Posts: 29
Location: an anglich, not english, location

05 Mar 2005, 3:41 pm

basically why so alex ?



alex
Developer
Developer

User avatar

Joined: 13 Jun 2004
Age: 37
Gender: Male
Posts: 10,214
Location: Beverly Hills, CA

05 Mar 2005, 3:49 pm

serine wrote:
basically why so alex ?


OpenGL will run on multiple platforms. Directx only runs on windows.


_________________
I'm Alex Plank, the founder of Wrong Planet. Follow me (Alex Plank) on Blue Sky: https://bsky.app/profile/alexplank.bsky.social


theSPECTRE
Toucan
Toucan

User avatar

Joined: 24 Aug 2004
Gender: Male
Posts: 260
Location: USA PA

07 Mar 2005, 8:47 am

I love C++ but im just not as advanced with it as you are alex. is there a tutorial online where i can learn too make my first video game with C++?


_________________
In this country. You gotta have the money. Then when you get the money you get the power. Then when you get the power, you get the woman.

-Tony Mantanna
-Scarface

Say Good Night to the bad guy - Tony Montana
-Scarface


PeterMacKenzie
Veteran
Veteran

User avatar

Joined: 15 May 2005
Gender: Male
Posts: 626
Location: BANNED FOR DISCUSSING RECENT BANNINGS!

01 Jun 2005, 10:02 am

If your comparitively new to programming, you might want to try python (http://www.python.org/). It's not as fast as C++, so I wouldn't recommend trying to code a fps with it, but it's very simple to get to grips with and can be converted to C++ later after you've used it to protoype your game.

Contrast "Hello world" in C++ and python for an idea of what I mean:


C++:

Code:
  #include <iostream.h>
  int main()
    {
    cout << "Hello, World\n";
    return -1;
    }



Python:
Code:
Print "Hello World"


You can also use python as 'glue' to stick together C++ libraries, meaning you get the speed of C++ (since the libraries are doing the grunt work) while having the readability and flexibility of python for your top level.

Take my advice with a pinch of salt though; I'm pretty crap at progamming and only really know python to any significant degree.


_________________
Banned for discussing the recent spate of bannings.