Be a Supporter!

Consoles

  • 567 Views
  • 8 Replies
New Topic Respond to this Topic
Chellow
Chellow
  • Member since: Mar. 13, 2005
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Consoles 2005-03-24 13:23:34 Reply

Ok i know that a lot of commercial games are written in c++.

So if i got it and made a game with it, would i have to get anything else to make it so my friend (he doesnt have a computer only the consoles,) can play it on his PS2 of whatever, or can i do that in the c++ program?

Ravens-Grin
Ravens-Grin
  • Member since: Jun. 3, 2003
  • Offline.
Forum Stats
Member
Level 05
Blank Slate
Response to Consoles 2005-03-24 13:48:28 Reply

At 3/24/05 01:23 PM, chellow wrote: Ok i know that a lot of commercial games are written in c++.

So if i got it and made a game with it, would i have to get anything else to make it so my friend (he doesnt have a computer only the consoles,) can play it on his PS2 of whatever, or can i do that in the c++ program?

Short Answer: No, you as an individual most likely can't.

henke37
henke37
  • Member since: Sep. 10, 2004
  • Offline.
Forum Stats
Member
Level 30
Blank Slate
Response to Consoles 2005-03-24 15:06:40 Reply

Exeption: playstation has linux.


Each time someone abuses hittest, God kills a kitten. Please, learn real collision testing.

Lordfat
Lordfat
  • Member since: May. 30, 2000
  • Offline.
Forum Stats
Member
Level 06
Blank Slate
Response to Consoles 2005-03-24 15:10:13 Reply

Actually, yes, you can do it with a ps2 hard drive, a dvd burner, and a few software programs. So start learning!

azrag
azrag
  • Member since: Aug. 26, 2003
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Response to Consoles 2005-03-24 16:28:25 Reply

wouldnt it require puting a playstation game in your cd rom. Then see how it is and then script your program somewhat the way the playstation game is. It works like that i guess is I should try it sometime.

PONGpaddle
PONGpaddle
  • Member since: Sep. 23, 2003
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Response to Consoles 2005-03-24 19:02:05 Reply

C++ librarys are completly different for consoles than they are for say, Windows. Most companies require you to buy special test systems and the SDK (Software Development Kit) for their console. And most companies will only give test systems and SDKs to certain people/companies.

Basicly, porting programs from PC to, for example PS2, is virtually impossible.

BurstStudio
BurstStudio
  • Member since: Dec. 27, 2002
  • Offline.
Forum Stats
Member
Level 12
Programmer
Response to Consoles 2005-03-24 22:28:10 Reply

You can make one, but as ABoxInABox said, it's VERY different. Also, if you ever planned to sell it, you'd have to get special licensing from the console manufacturer.

White-Rhyno
White-Rhyno
  • Member since: Apr. 28, 2003
  • Offline.
Forum Stats
Member
Level 38
Blank Slate
Response to Consoles 2005-03-24 23:41:14 Reply

At 3/24/05 07:02 PM, ABoxInABox wrote: C++ librarys are completly different for consoles than they are for say, Windows. Most companies require you to buy special test systems and the SDK (Software Development Kit) for their console. And most companies will only give test systems and SDKs to certain people/companies.

Basicly, porting programs from PC to, for example PS2, is virtually impossible.

Dude, that doesn't sound like a programmer talking :)

There are a few open source or free PS2, GameCube and X-Box SDK's out there if you know where you're looking (all of them are 100% legal, just well hidden). X-Box runs of DirectX, so it would be easier to port DX PC games to the X-Box.

And it's not impossible to port PC games over to PS2 or GameCube, game companies do it al the time.

PONGpaddle
PONGpaddle
  • Member since: Sep. 23, 2003
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Response to Consoles 2005-03-25 18:47:22 Reply

At 3/24/05 11:41 PM, White_Rhyno wrote: There are a few open source or free PS2, GameCube and X-Box SDK's out there if you know where you're looking (all of them are 100% legal, just well hidden). X-Box runs of DirectX, so it would be easier to port DX PC games to the X-Box.

I've seen lots unofficial SDKs for Nintendo consoles, but never for Xbox or PS2. Nintendo/Microsoft/Sony won't let you sell the games unless you become a registered developer anyway (I think all of the companies call it something different), and then you can get the SDKs and test systems from them.

And it's not impossible to port PC games over to PS2 or GameCube, game companies do it al the time.

I thought that game companies create APIs with the same functions, data types, etc, for the systems that they want to compile thier games on, so they don't have to make any changes to the actual game source. At least, that's what I'd do. Saves the effort of taking weeks to port something - you only have to write it once.