Page 1 of 1

How to?

Posted: May 26th, 2014, 12:00 pm
by CrisMataTuto
I like to create a game but i initiate, how to move the object and how to change the object? Tanks.

Re: How to?

Posted: May 26th, 2014, 2:44 pm
by Tommy
It sounds like possibly you don't know how to program in general? If so then the PlayStation isn't a good learning platform.

The tools are awkward — the compiler is out of date (especially by virtue of predating C99) and you're unlikely to get a debugger to work. I don't think there's any means to profile.

The environment is very quirky — the PS1 sits on the inflection point between straight-to-the-hardware programming and within-an-OS programming. You don't even get a heap automatically.

The hardware is peculiar by modern standards — in PC land, fixed point went out with the 486.

If you already know plenty about writing games then just follow this site's getting started tutorial and read the overview and reference documentation that comes with the compiler.

Re: How to?

Posted: May 26th, 2014, 4:32 pm
by Shadow
Tommy wrote:The environment is very quirky — the PS1 sits on the inflection point between straight-to-the-hardware programming and within-an-OS programming. You don't even get a heap automatically.
Thou shalt not speak of blasphemy towards the PlayStation 1 :evil:
You may only when you have made fun of Nintendo instead ;)

Re: How to?

Posted: May 27th, 2014, 2:05 am
by Tommy
Shadow wrote:You may only when you have made fun of Nintendo instead ;)
The Atari Lynx, 1989: a frame buffer with a scaling blitter and hardware support for line drawing and filled polygon drawing; a maths coprocessor oriented towards 3d transformations.

The Gameboy Advance, 2001: tiles and sprites, much like everything back to the ColecoVision, with some special-case background rotation and scaling effects. Decent CPU and the ability to end-run around the video hardware is the only saving grace.

Nintendo's hardware has nearly always been at least a generation behind everyone else's. It's just not a priority for them or for their customers. Had Sony not entered the console race when it did then it's very unlikely gaming would have been that mainstream for another decade, with Sega having no clarity of thought in terms of direction or hardware design until it had decent competition and Nintendo alienating all its third parties and settling into a routine of identikit franchise 3d platformers.

Better?

Re: How to?

Posted: May 27th, 2014, 2:11 am
by Shadow
Image