MAMEWorld >> MAME Artwork X: Other Artwork Projects
View all threads Index   Threaded Mode Threaded  

Pages: 1

wemr97dl
MAME Fan
Reged: 04/25/21
Posts: 218
Send PM


Buck Rodgers Planet of Zoom
#396119 - 05/01/23 11:09 AM Attachment: Buck Rogers_ Planet of Zoom [buckrog] - MAME 0.237 (LLP64) 6_10_2023 3_11_27 AM.png 456 KB (0 downloads)


Added working Flightstick to Buck rodgers that I originally downloaded from @nightvoice, took a bit to do the script but is working. Created the Flightstick the best I could from a CPO pic posted on the arcade database. Included is other bezels and such downloaded from progetto.

Great News Flightstick Led now working, re-uploaded

[ATTACHED IMAGE - CLICK FOR FULL SIZE]

Attachment

Edited by wemr97dl (06/10/23 09:21 AM)



My Mame Artwork
https://drive.google.com/drive/folders/1OP43Qk_2uCIJ7HLY2maemAmJHtu9kbyV?usp=share_link



Nightvoice
MAME Fan
Reged: 03/19/10
Posts: 883
Loc: The Room Next To You
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: wemr97dl]
#396132 - 05/01/23 09:14 PM


Looks great! Now if we could only find a high-res scan of the CPO for this. Been looking for years.



----------------------
I have officially retired from sucking at everything I do. Life is much easier now.

My MAME/MESS artwork files: https://drive.google.com/open?id=1ABxeKgNIrKlIsyck7dx4V241NFQDWAF4
Related screen shots: https://drive.google.com/open?id=1U5IbvbVzYW97PuOOQuocvZFE_YJz7WIn



wemr97dl
MAME Fan
Reged: 04/25/21
Posts: 218
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: Nightvoice]
#396134 - 05/02/23 12:02 AM


Thanks trying to complete them as I go



My Mame Artwork
https://drive.google.com/drive/folders/1OP43Qk_2uCIJ7HLY2maemAmJHtu9kbyV?usp=share_link



Bad A Billy
Oop Ack!
Reged: 12/27/07
Posts: 1076
Loc: Outland
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: wemr97dl]
#396135 - 05/02/23 05:04 AM Attachment: sticks.png 514 KB (0 downloads)


Looks good! Great work but...

Don't know if you knew this or not and not to be picky or anything but the red button on the stick also lights when fire is pressed. In case you wanted to add that too.

I'm certain on that in the sit-down versions(some had a Zaxxon stick I think) and pretty certain on some(if not all?) stand ups. Pretty sure that stick was also used on a few other Sega games(Space Harrier).

Sorry if I'm wrong on any of this but at least someone out there will know for sure and correct me.

Keep up the good work!

[ATTACHED IMAGE]

Attachment



Pessimist: Oh, this can't get any worse!
Optimist: Yes, it can!



wemr97dl
MAME Fan
Reged: 04/25/21
Posts: 218
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: Bad A Billy]
#396136 - 05/02/23 05:27 AM


If I get a chance Ill take a look



My Mame Artwork
https://drive.google.com/drive/folders/1OP43Qk_2uCIJ7HLY2maemAmJHtu9kbyV?usp=share_link



wemr97dl
MAME Fan
Reged: 04/25/21
Posts: 218
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: wemr97dl]
#396137 - 05/02/23 11:48 AM


Tried, I uploaded a test file to my drive for this one I cannot figure out how to light the Led, the joystick is split between IN0 and IN1, so if i try to apply any type of mask to change states nothing works have a look maybe someone can see if there is another way to do it??

its buckrog_test



My Mame Artwork
https://drive.google.com/drive/folders/1OP43Qk_2uCIJ7HLY2maemAmJHtu9kbyV?usp=share_link



Nightvoice
MAME Fan
Reged: 03/19/10
Posts: 883
Loc: The Room Next To You
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: wemr97dl]
#396141 - 05/03/23 01:33 AM


I can see where you're going with this, and it's an interesting idea I could apply to After Burner as well. Maybe it's late and I'm tired, but the first thing I'm noticing is this section:

local in0 = file.device:ioport("IN0")
local in1 = file.device:ioport("IN1")

Which covers the lit and unlit sticks, but it seems to be missing the line for the LED. If you're using separate images for the LED itself, you'd need a "local in2" line assigned to it and referenced thereafter in the LUA calls.

So the question then becomes, is there an ioport name assigned to the LED?

This would be instantly solvable if anyone knew a syntax/format to say "IF [led state] = 1 THEN [display stick_led image] ELSE [hide stick_led image]" or some equivalent in the LUA section.

Edited by Nightvoice (05/03/23 01:48 AM)



----------------------
I have officially retired from sucking at everything I do. Life is much easier now.

My MAME/MESS artwork files: https://drive.google.com/open?id=1ABxeKgNIrKlIsyck7dx4V241NFQDWAF4
Related screen shots: https://drive.google.com/open?id=1U5IbvbVzYW97PuOOQuocvZFE_YJz7WIn



wemr97dl
MAME Fan
Reged: 04/25/21
Posts: 218
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: Nightvoice]
#396145 - 05/04/23 03:14 AM Attachment: buckrog.pdf - WPS Office 5_3_2023 9_06_26 PM.png 513 KB (0 downloads)


I don't believe its got a port assignment, looking at the manual I believe the led is just wired into the trigger switch. If so I would need the image controlled by the Fire Button i.e. IPT_BUTTON1

PORT_START("IN1") // Inputs
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT )
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON1 )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START1 )
PORT_SERVICE_NO_TOGGLE( 0x10, 0x10 )
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_SERVICE1 )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_COIN2 )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_COIN1 )

[ATTACHED IMAGE - CLICK FOR FULL SIZE]

Attachment



My Mame Artwork
https://drive.google.com/drive/folders/1OP43Qk_2uCIJ7HLY2maemAmJHtu9kbyV?usp=share_link



wemr97dl
MAME Fan
Reged: 04/25/21
Posts: 218
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: wemr97dl]
#396146 - 05/04/23 03:18 AM Attachment: e8239f58-4fd7-4eac-b905-05d9610b77bb_text.gif 873 KB (0 downloads)


Well

[ATTACHED IMAGE]

Attachment



wemr97dl
MAME Fan
Reged: 04/25/21
Posts: 218
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: Bad A Billy]
#396378 - 06/10/23 09:24 AM


Now working Updated 1st post with pic



Bad A Billy
Oop Ack!
Reged: 12/27/07
Posts: 1076
Loc: Outland
Send PM


Re: Buck Rodgers Planet of Zoom new [Re: wemr97dl]
#396382 - 06/10/23 04:23 PM


That's awesome! I'm glad someone has the time to get the little details done correctly...

Keep up the great work!


Pages: 1

MAMEWorld >> MAME Artwork X: Other Artwork Projects
View all threads Index   Threaded Mode Threaded  

Extra information Permissions
Moderator:  Mr. Do 
0 registered and 30 anonymous users are browsing this forum.
You cannot start new topics
You cannot reply to topics
HTML is enabled
UBBCode is enabled
Thread views: 321