Jump to content


Photo
* * * * - 1 votes

Barcrest SWP ROM's


  • Please log in to reply
54 replies to this topic

#21 Geddy

Geddy

    Banned

  • Banned
  • 3433 posts

Donator

Posted 13 February 2005 - 01:47 PM

PPS. Would anyone be interested in my categorised sets for Crystal Maze, they do run on MFME2, and have different games in them.


I would be interested mate even it it were just to add them to the SWP dat. Hopefully a naming convention would not be too difficult. ;)

#22 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 13 February 2005 - 07:19 PM

Well, I can't upload right now (I will do tomorrow), but I have the set construction info right here.

AM1G.P1 and AM1G.P2, then AM1Z.P1 to P8 as VIDROMS, and VID.P1 as a regular ROM, gives set ACM1 v01 (Which is non-payout)

AM2G.P1 and AM2G.P2, then AM2Z.P1 to P8 as VIDROMS, and VID.P1 as a regular ROM, gives set ACM2 v01 (Which is non-payout)

AM3G.P1 and AM3G.P2, then AM3Z.P1 to P8 as VIDROMS, and VID.P1 as a regular ROM, gives set ACM3 v01 (Which is non-payout, and crashes when the SWP program tries to execute it)

This is where it gets bizarre, my information gives the following as a set:

VIDROM cr2d.p1
VIDROM cr2d.p2
VIDROM cr22_2.1
VIDROM cr22_2.2
VIDROM cr22_2.3
VIDROM cr22_2.4
VIDROM cr22_2.5
VIDROM cr22_2.6
VIDROM cr22_2.7
VIDROM cr22_2.8
ROM VID.P1

Which names itself CRY2 v2.2 - but I can't remember if it runs properly (it should do, the CRC's check out, but I recommend independent testing.

There is one last set, but since I changed some things about it to make it easier to understand, that can wait until tomorrow.

#23 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 14 February 2005 - 08:11 AM

Here are the sets I have:

Attached Files



#24 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 14 February 2005 - 08:17 AM

And more

CM3 is the one Pete already has

I've just submitted some sets to MAMEDev as well, as they are accepting some gambling games too (pure skill only - ones which have apparently fixed payouts are being duplicated in MAGE for the time being)

Attached Files



#25 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 14 February 2005 - 11:19 AM

And here's an updated layout, this adds the LED segment support, but still won't help people who are having problems with the game.

Attached Files



#26 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 15 February 2005 - 09:22 AM

I noticed going through the FME archive that a lot of the graphics work on these games was done through Flair Paint on the Atari ST. Does that mean that the graphics contained within the ROMs are in an easily read format, or was that just because it was the best tool at the time?

#27 iamtheone

iamtheone

    Junior Member

  • Regulars
  • 30 posts

Posted 20 February 2005 - 05:16 PM

The earlier SWP's were done on Flair Paint, then we progressed to an Apple Mac. The graphics in the ROM are compressed. We uncompressed them as and when required. A compressed 8x8 character would be stored as 8 pointers which pointed to a 32bit chunk of pixels. So an empty character would have 8 pointers which all pointed to the same 32bit chunk of pixels.

0 --------> 32bit chunk of 8 pixels (4bpp)
1
2
3
4
5
6
7

So from the above, if we had an 4 x 2 block of characters that we wanted to map on the screen. It would look like this.

HELLO_C 4 2 $F000 $F000 $F000 $F000 $F000 $F000 $F000 $F000

HELLO_C is the name of the character block to map
4 2 is the x and y size of the characters

The rest of the data is $F for the colour attribute mask (Generally $F) and the 12bit 000 is the offset into the graphics memory 0 = $C00000

The 0 offset will point to $C00000 which contains the uncompressed block as mentioned above

0 --------> 32bit chunk of 8 pixels (4bpp)
1
2
3
4
5
6
7

An to confuse you even more, we could uncompress the graphics anywhere in the 128k graphics ram. So the offset of 0 which is stored in the character blocks to map. This could have a value added to it, to point in to the correct area. So if we uncompresed the block to $C00020 then the 0 will have a 1 added to it, so that if can still be stored in the ROM as a list of offsets but it is relocatable.

So to sum up, the graphics are compressed as pixels and 8 pointers to make up each character block.

These get uncompressed in memory eg $C00000, there may be lots of them. The the characters offset are just put on the screen.

It sounds really confusing, but it's pretty much like a C64 used to do it.

I could explain further with better examples, but is it worth it.

As you can see, you can't just pull the graphics out of the ROM and view them. 8-)

#28 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 20 February 2005 - 07:25 PM

Thanks for that, whoever you are (I won't even try to guess at a name).

I think this is how MFME is currently dealing with graphics, but certainly this post will go on file for future reference (there isn't an open source MPU4 board yet, let alone the video addon). For one thing, bar the original datasheets, there isn't much to go on about how the palettes and things work.

If you can think of anything else that you think is worth posting/emailing please do so, as even if it doesn't help the emulation, it's always nice to know the technical bits behind this sort of thing.

I think for MFME to finally emulate your SWPs the question protection is still the main issue, that and trying to tie two different CPUs together in a Delphi application without everything going pear shaped.

#29 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 21 February 2005 - 12:29 PM

I managed to find Turnover - I'm not sure if this set is complete, mind.

Oh, and Eyes Down too, just to make sure that Sean can't get away with it.

Attached Files



#30 iamtheone

iamtheone

    Junior Member

  • Regulars
  • 30 posts

Posted 21 February 2005 - 12:37 PM

Turnover and Eyes down didn't have any fancy pallette switching so if you got
Crystal maze working, how long do you think before these 2 work, and yeah, Sean will be the first to know about his infamous 'thumbs up'.

Cheers,

#31 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 21 February 2005 - 12:48 PM

It all depends on the protection, I'll try loading them into MFME, to see what happens.

#32 iamtheone

iamtheone

    Junior Member

  • Regulars
  • 30 posts

Posted 21 February 2005 - 01:33 PM

NO QUESTION SET ALARM, with Turnover.!! I would have at least thought it would run but display scrambled questions.

#33 pete_w

pete_w

    Member

  • Administrators
  • Pip
  • 199 posts

Posted 21 February 2005 - 01:54 PM

Try this zip ;)

Attached Files


Visit the MPU Mecca @ http://www.fruitemu.co.uk for all your old fruity needs.


#34 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 21 February 2005 - 02:39 PM

Noted, I'll have to inform Trouty about that.

PS. Eyes Down will probably do the same.

#35 Bencrest

Bencrest

    The furniture

  • New Members
  • PipPipPipPipPip
  • 7446 posts

Posted 21 February 2005 - 03:20 PM

Great little game, if that was in the pubs around me now you wouldn't be able to get me off it :D

The question scrambling doesn't help though :(

Nice to see it runs ok apart from that though, runs far better than Crystal Maze IMHO, so it probably dodgy trackball emulation that holds that up rather than processing power?
Ben
 
Hopefully recovering from years of compulsive gambling and wanting to be gamble free forever.
 
Recommended reading - http://www.gamblersaloud.com/ (yes, I bought the book, very happy with it!)

#36 iamtheone

iamtheone

    Junior Member

  • Regulars
  • 30 posts

Posted 21 February 2005 - 05:23 PM

Turnover works fine (apart from the obvious). God that machine looks so old looking back. Has anyone got Skill Trek / Eyes down or The Mating Game in a format that will work with MFME.

Cheers....:)

#37 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 21 February 2005 - 07:08 PM

Turnover reminds me of the end game of the semi-popular game show Strike it Lucky/Rich*

Speaking of Strike it Lucky, that was a game on this hardware as well, wasn't it?

Anyway, the best place to ask is here, as Pete and Gary seem to have a fairly large collection of Set 1 Question Roms.

Also, I noticed that trackball emulation seems to be the main issue with the maze, perhaps there are some optimisations yet to be performed.

*delete according to which Barrymore vehicle you remember best

#38 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 22 February 2005 - 11:14 AM

I've managed to find the mating game, but I don't rate your chances of getting to far with loading it - the graphics side should be fine, but I don't know about the sound.

Attached Files



#39 Geddy

Geddy

    Banned

  • Banned
  • 3433 posts

Donator

Posted 22 February 2005 - 06:50 PM

Cheers El for the roms and all who have contributed to this interesting thread. :D

#40 elcondor

elcondor

    MAME bloke

  • New Members
  • Pip
  • 238 posts

Posted 22 February 2005 - 07:56 PM

This thread is being recompiled, incidentally, for the benefit of MAME and MAGE, as the recently unearthed non-payout ROMs appear to satisfy the inclusion rules for MAME.

So if anyone wants to add anything else that would help a competent programmer put together an MPU4Video emulation, please do so.




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users