Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - stazna01

Pages: [1]
1
Themes / Re: Arcade1up Pac-Man 40th Anniversary theme
« on: November 06, 2020, 10:47:49 PM »
Attract Mode currently has an image caching bug which makes the images not show in the theme until you go left or right. I just figured out a workaround for this theme that seems to work well. After the "fe.layout.orient=RotateScreen.Left;" line in layout.nut, add...

fe.signal( "toggle_mute" );
fe.signal( "prev_game" );
fe.signal( "next_game" );
fe.signal( "toggle_mute" );

...This temporarily mutes things, quickly hits previous and next, and unmutes. It's so fast you don't see it happen, and since it's muted, you don't hear it. From a user standpoint, it just looks like it's loading normally.

2
Themes / Arcade1up Pac-Man 40th Anniversary theme
« on: August 12, 2020, 10:01:19 PM »
The Arcade1up 40th Anniversary arcade machine https://www.walmart.com/ip/Pacman-40th-Anniversary-Edition-Arcade-Machine-Arcade1Up/747431257 has a great UI, but was lacking some of the most popular vertical games. I was able to fully recreate the Pac-Man 40th Anniversary game selection UI in Photoshop, and jedione was a champ and able to turn that into an attract mode theme (thank you, jedione).

This theme was built to allow for a specific set of 20 games: BurgerTime, Dig Dug, Dig Dug II, Donkey Kong, Donkey Kong Junior, Donkey Kong 3, Frogger, Galaga, Galaxian, Jr. Pac-Man, Ms. Pac-Man, Namco Classic Collection Vol. 1, Namco Classic Collection Vol. 2, Nibbler, Pac and Pal, Pac-Man, Pac-Man Plus, Pac-Mania, Space Invaders, and Super Pac-Man. The theme includes the stock machine's left/right sound, as well as the game selection sound. I also included the startup video.

Many people modding their Arcade1up machines don't know how to set up their raspberry pi without a pre-made image, so if anyone wants to make an image with this theme, please feel free!

https://www.youtube.com/watch?v=Te0R4CJ3jOw

Theme download: https://rb.gy/aqrc9i


3
Thank you so much! Just PMed.

4
I'm getting ready to modify my Pac-Man 40th Anniversary Arcade1Up machine with a raspberry pi, and while I've modified a few with the Mr. Burns image (which runs attract mode), for this machine I'd really like to keep the same user interface that Arcade1Up built into the Pac-Man 40th machine (simple scrolling left and right with an image/logo for each game). I've been able to recreate the Arcade1Up graphics in Photoshop (jpg attached for reference), but now need to pair them with attract mode.

In this video you can see the user interface (https://youtu.be/086zbpyrdGc?t=66). The background image is stagnant and all that changes are the main image and logo underneath the Pac-Man 40th logo, and the image/logo of the previous and next games on the left and right of the main image. The main image is bordered by an orange/red/blue border, and previous and next are blurred out and bordered by a gray border. A sound is played for left/right movement, and another sound when you launch the game.

I've used a number of programming languages, so I'm sure I'll be able to muddle through squirrel, but a few things I did wonder...
  • For a beginner with attract mode, does it make sense to start from scratch, or start with a theme that seems to already be close to what you'd like?I noticed that the attract mode Arcade v3 theme (https://www.youtube.com/watch?v=cxbZCFbUGJQ) seems to have the same basic functionality, so would it make the most sense to start with that theme on my pi and work on modifying it?
  • I noticed in the Arcade v3 theme, the person in the video example seems to be using up/down to go left/right in the list, and I'd want to make sure that left/right on the joystick were what went left/right in the list. Is there anything to be aware of with that?
  • I'm planning on only having my machine use 18 total vertical arcade games, so I'll want to create the background color rectangle individually for each game so that the color goes with the game's main color scheme. Since these will need to be completely custom, I'm thinking that means there will need to be a separate folder where I can put in the custom ones by game name, but have a generic one if no match is found. Any suggestions on where to read up on separate images from the standards that can normally be automatically pulled?
  • In this UI, the 40th anniversary logo always overhangs the game's vertical rectangle. Anything to be aware of with layers so that always is there and just overtop fo the game's vertical rectangle image that ends up beneath it?
  • Anything to be aware of with sounds for going left/right and when the game launches?

I'm sure all of this screams noob, and I have been looking around the forum and doing some searches, but in some of these cases I wasn't sure of the exact terms to search, or if I'd be building something one way but it's much easier to build it a smarter way. Thanks for any insights.

Pages: [1]