English Amiga Board


Go Back   English Amiga Board > Coders > Coders. General

 
 
Thread Tools
Old 06 June 2017, 13:36   #1
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
Question Arcade / Console --> Amiga conversion discussions

Quote:
Originally Posted by zero View Post
I had a look, his work is incredible with the palette.

http://icamtech.net.atarilegend.com/...?f=26&p=319613

Palettes were always a major problem with CPS and games, and even later 16 bit ports. At least on the Amiga you have the copper and sprites to give you some extra options. I'm always amazed at how good games using dual playfield can look when a skilled artist is involved.
Basically, CPS games have extremely made game code in 68k, with many ideas and things never implemented on an Amiga.

Always the same burden : 1) the ram needed, 2) the CPU takes care of the game logic, and is sending all the time tiles metadata to the chips, which has to be replaced by blitter routines (and sprites).

That's why the 68000 is clocked either at 10 or 12mhz.

Quote:
I think games like SF2 that really need 60Hz refresh might be difficult...
Ghouls'n'Ghosts also run at 60fps. what i saw until now on STE is certainly not 60fps, but 25 fps. And it works very well.

Quote:
I remember the Turbo versions work by calculating frames without rendering them, and then drawing only say 4 of 5 or 3 of 5, so perhaps a similar technique could be used on the Amiga.
I did a research about SSF2T. Basically, the 1200 version has everything ! The problem is that they never removed the PC routine that the coders have added : it forces the game to run @ 60fps at any cost (absolute), instead of automatic screen refresh (relative fps display).

Even at 30fps, SSF2T would have been great, with all the animations running, sound, music and sprites.

Quote:
Also 6 buttons :-)
A 6 buttons joystick can be used on Amiga. What's the problem ?
dlfrsilver is offline  
Old 06 June 2017, 19:15   #2
sandruzzo
Registered User
 
Join Date: Feb 2011
Location: Italy/Rome
Posts: 2,281
Quote:
Originally Posted by dlfrsilver View Post
Elfmania is very good for an Amiga game, but it's far to have the logic quality and complexity of the CPS games.

Imagine, 1mb of code ! Only games like Ambermoon from Thalion had such big programs. a big amiga game most of the time has a program of 350kb.

Next, the arcade code is doing thing in a way that an amiga is normally not doing.
on A1200 with 2mb would be possible
sandruzzo is offline  
Old 06 June 2017, 19:27   #3
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
Quote:
Originally Posted by sandruzzo View Post
on A1200 with 2mb would be possible
CPS games use unified code, and unified assets.

2mb would be only for a computer with tile hardware. With no tile hardware, you need 4mb (count also the conversion of the music and sfx, taking quite an amount of ram space).
dlfrsilver is offline  
Old 06 June 2017, 19:53   #4
sandruzzo
Registered User
 
Join Date: Feb 2011
Location: Italy/Rome
Posts: 2,281
Quote:
Originally Posted by dlfrsilver View Post
CPS games use unified code, and unified assets.

2mb would be only for a computer with tile hardware. With no tile hardware, you need 4mb (count also the conversion of the music and sfx, taking quite an amount of ram space).
we did great with rygar, who knows...
sandruzzo is offline  
Old 07 June 2017, 12:33   #5
zero
Registered User
 
Join Date: Jun 2016
Location: UK
Posts: 428
Quote:
Originally Posted by dlfrsilver View Post
2mb would be only for a computer with tile hardware. With no tile hardware, you need 4mb (count also the conversion of the music and sfx, taking quite an amount of ram space).
I think you vastly overestimate the requirements. Keep in mind that the Amiga version would use reduced graphics and sound (fewer colours, 8 bit samples).

You can also load stuff off disk when required so no need to keep it all in RAM.

The main problem with SF2 is that the sprites are massive and everything very colourful. The blitter just isn't fast enough to use 256 colour modes... Maybe 32 colours, but it gets tricky because you actually have four palettes you need to manage:

1. Character 1
2. Character 2
3. Background
4. Health/time display

The first three can be different every time.

The blitter speed is the real limitation on the Amiga. It's why so many games use 16 colour modes, or dual playfield. The Amiga's sprites are rarely used for actual sprites, instead being either for status displays or an extra layer of parallax.

The best games work within those limitations. Using the separate sprite palette and the copper you can get a lot of colours on screen and really effectively hide the limitations, but you need to design the game with that in mind from the very start. Arcade ports are obviously designed for CPS2 hardware.
zero is offline  
Old 07 June 2017, 13:26   #6
sandruzzo
Registered User
 
Join Date: Feb 2011
Location: Italy/Rome
Posts: 2,281
If we reduce sprites size, and use copper like you've said, we can manage to do well. On A1200 we can use 020 with blitter to speed up operation. Maybe we "only" well use 64 colors, we can have 50 hz conversion!
sandruzzo is offline  
Old 07 June 2017, 14:21   #7
AnimaInCorpore
Registered User
 
Join Date: Nov 2012
Location: Willich/Germany
Posts: 232
Quote:
Originally Posted by zero View Post
I think you vastly overestimate the requirements. Keep in mind that the Amiga version would use reduced graphics and sound (fewer colours, 8 bit samples).
I'm afraid that even with reduced graphics (i.e. 16 colours) you will need more memory to store the sprites and other assets. I would estimate that the reduced graphics data still requires about twice as much memory compared to the arcade machine. So the real problem here is the design of the Amiga graphics system.
AnimaInCorpore is offline  
Old 07 June 2017, 16:53   #8
zero
Registered User
 
Join Date: Jun 2016
Location: UK
Posts: 428
Quote:
Originally Posted by sandruzzo View Post
If we reduce sprites size, and use copper like you've said, we can manage to do well. On A1200 we can use 020 with blitter to speed up operation. Maybe we "only" well use 64 colors, we can have 50 hz conversion!
Well, once you get over 16 colours you need more cycles for bitplane DMA... And of course some of the extra colours are shared with sprites.

The problem with reducing the sprite size is that you need to fix all the hit boxes and movement speeds, it gets complex and the game won't play quite like the arcade version.
zero is offline  
Old 07 June 2017, 16:58   #9
zero
Registered User
 
Join Date: Jun 2016
Location: UK
Posts: 428
Quote:
Originally Posted by AnimaInCorpore View Post
I'm afraid that even with reduced graphics (i.e. 16 colours) you will need more memory to store the sprites and other assets. I would estimate that the reduced graphics data still requires about twice as much memory compared to the arcade machine. So the real problem here is the design of the Amiga graphics system.
That doesn't make any sense... Why would the Amiga graphics need more memory than the arcade ones? The arcade system has a huge memory mapped ROM for graphic data, which becomes RAM on the Amiga.
zero is offline  
Old 07 June 2017, 17:15   #10
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
Quote:
Originally Posted by AnimaInCorpore View Post
I'm afraid that even with reduced graphics (i.e. 16 colours) you will need more memory to store the sprites and other assets. I would estimate that the reduced graphics data still requires about twice as much memory compared to the arcade machine. So the real problem here is the design of the Amiga graphics system.
The problem Anima stands with the bitplans number.... CPS games use something like 8 bitplans in Amiga mode (considering that the CPS systems are planar to start with).

If the arcade needs 16mb (Ghouls'n'ghosts to name it), with only 16 colors, you lower the bar for the graphics storage.

For Ghouls'n'Ghosts STE, you will need 4mb of ram even with 16 colors for the whole game, also considering the amount of sprite frames and the diversity of the tiles for the whole game.

Ghouls'n'Ghosts should be working good on A500 with 4mb of ram (more if 32 colors mode is used), and in 64 or 128 colors on A1200.

I say this considering what you have achieved until now on STE on GNG.
dlfrsilver is offline  
Old 07 June 2017, 17:21   #11
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
Quote:
Originally Posted by zero View Post
I think you vastly overestimate the requirements. Keep in mind that the Amiga version would use reduced graphics and sound (fewer colours, 8 bit samples).

You can also load stuff off disk when required so no need to keep it all in RAM.

The main problem with SF2 is that the sprites are massive and everything very colourful. The blitter just isn't fast enough to use 256 colour modes... Maybe 32 colours, but it gets tricky because you actually have four palettes you need to manage:

1. Character 1
2. Character 2
3. Background
4. Health/time display

The first three can be different every time.

The blitter speed is the real limitation on the Amiga. It's why so many games use 16 colour modes, or dual playfield. The Amiga's sprites are rarely used for actual sprites, instead being either for status displays or an extra layer of parallax.

The best games work within those limitations. Using the separate sprite palette and the copper you can get a lot of colours on screen and really effectively hide the limitations, but you need to design the game with that in mind from the very start. Arcade ports are obviously designed for CPS2 hardware.
Even in 30 fps, SF2 would still be great to play. 60 fps is just pure delirium to achieve, the Amiga even the AGA machines just don't have the grunt for this.

Imagine, a PC with 486DX2 just could not have a way to make SSF2T running at 60 fps. That's why gametek PC coders had to insert a routine to fix the VBL @60fps. Otherwise, they explained the game never could have been running on PC.

Next the sprites size is not a problem. At all. Anima just got Shielder, the 1st level boss of Ghouls'Ghosts perfectly animated on a plain STE in 16 colors.

CPS Game doesn't work the way usual ST and Amiga games do. It's basically a print and display engine.

The real hard thing is to refresh the tiles needed for sprites and background per VBL. The CPU has to work overtime to put these out.

You should check Anima's test with arcade Final Fight, the huge sprites can move all together on the screen.
dlfrsilver is offline  
Old 07 June 2017, 18:16   #12
Amiga1992
Registered User
 
Join Date: May 2001
Location: ?
Posts: 19,645
Isn't also the main problem here that the stupid Amiga can only access 2MB of RAM for graphics, sound and stuff? So if you have Fast RAM, I guess it can be used as temp storage and you have to bank it/swap it with Chip all the time, or something, but it's inconvenient and I am sure introduces a huge performance problem.

Whereas the ST has only one type of RAM and it can use it all for whatever. I think that probably creates an advantage for the ST.
Amiga1992 is offline  
Old 07 June 2017, 18:21   #13
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
Quote:
Originally Posted by Akira View Post
Isn't also the main problem here that the stupid Amiga can only access 2MB of RAM for graphics, sound and stuff? So if you have Fast RAM, I guess it can be used as temp storage and you have to bank it/swap it with Chip all the time, or something, but it's inconvenient and I am sure introduces a huge performance problem.

Whereas the ST has only one type of RAM and it can use it all for whatever. I think that probably creates an advantage for the ST.
You get back to the : "you need to split every sprites asset and levels assets".

that's what it is.

Or else, you go for a software renderer and you use fast ram to get the maximum speed out of the 68000.
dlfrsilver is offline  
Old 07 June 2017, 18:36   #14
Amiga1992
Registered User
 
Join Date: May 2001
Location: ?
Posts: 19,645
It's so stupid to have memory this way, why was it even made like that? Is this the only machine that uses memory in this way?
Amiga1992 is offline  
Old 07 June 2017, 18:56   #15
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
Quote:
Originally Posted by Akira View Post
It's so stupid to have memory this way, why was it even made like that? Is this the only machine that uses memory in this way?
it's only a problem depending on the way you want to code on the amiga.

In fact, one great way to port CPS game would be to use the cartridge port.
It use up to 8mb of rom And it's directly connected to the 68000 processor.
dlfrsilver is offline  
Old 07 June 2017, 19:08   #16
Amiga1992
Registered User
 
Join Date: May 2001
Location: ?
Posts: 19,645
Quote:
Originally Posted by dlfrsilver View Post
In fact, one great way to port CPS game would be to use the cartridge port.
It use up to 8mb of rom And it's directly connected to the 68000 processor.
Yeah but that leaves out all the people that don't have an A500.
It would be great to have cartridge games, though. I would definitely be interested inn that, and always wondered why it never happened.
Amiga1992 is offline  
Old 07 June 2017, 19:08   #17
idrougge
Registered User
 
Join Date: Sep 2007
Location: Stockholm
Posts: 4,332
Quote:
Originally Posted by Akira View Post
It's so stupid to have memory this way, why was it even made like that? Is this the only machine that uses memory in this way?
Because otherwise your fast RAM would be as slow as your chip RAM.

Or you only get half as many colours, like the ST.

Or you do something even stupider, like the Sega consoles, and entirely separate your graphics memory from your CPU.
idrougge is offline  
Old 07 June 2017, 19:16   #18
Amiga1992
Registered User
 
Join Date: May 2001
Location: ?
Posts: 19,645
I see, speed considerations I have not had. But why is it capped at 2MB? Would have been nice to add an option to expand both.

Quote:
Originally Posted by idrougge View Post
Or you do something even stupider, like the Sega consoles, and entirely separate your graphics memory from your CPU.
Hmm that's the MSX way of working too, actually, all computers today have separate graphics memory, so, I guess it has been deemed it isn't that stupid
Amiga1992 is offline  
Old 07 June 2017, 19:34   #19
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,412
Send a message via MSN to dlfrsilver
Quote:
Originally Posted by Akira View Post
I see, speed considerations I have not had. But why is it capped at 2MB? Would have been nice to add an option to expand both.


Hmm that's the MSX way of working too, actually, all computers today have separate graphics memory, so, I guess it has been deemed it isn't that stupid
those 2mb of chip could be soupped up to more maybe (@Toni can you confirm or negate what i said ?)

the 68000 is able to support 16mb of ram (Fast-ram).

however, it's clear that with a new board that you could clip over the chip ram, in order to bring it to 16mb of chip....I'm maybe dreamin'
dlfrsilver is offline  
Old 07 June 2017, 19:39   #20
idrougge
Registered User
 
Join Date: Sep 2007
Location: Stockholm
Posts: 4,332
It's not as though 2 MB is a particularly low cap when you consider that all Amiga graphics cards, intended to use much bigger screens, are capped at 4 MB. A contemporary PC graphics card had something between 768 kB and 2 MB. Given the total addressable space of a 68000 or 68EC020 (8 MB fast), it was also well-rounded.

The access from CPU to graphics memory is much faster on today's PC than it was on the MSX or Sega, where access to graphics memory was so slow that you couldn't dream of drawing bitmapped graphics. The Amiga approach is more general, as much of the Amiga's hardware is, at the cost of being uncompetitive with "idiot savant" technology.
idrougge is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Japanese Console/Computer RPG discussions Retro-Nerd Retrogaming General Discussion 2 02 April 2009 01:32
Given the recent Scanlines discussions... DamienD request.UAE Wishlist 26 26 April 2007 17:36
Wii Virtual Console / Xbox Live Arcade? killergorilla HOL suggestions and feedback 2 06 March 2007 17:20
Landover's Amiga Arcade Conversion Contest Frog News 1 28 January 2005 23:41

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 17:45.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.16266 seconds with 13 queries