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 - Bbuschke

Pages: [1]
1
Scripting / Re: KeyboardSearch module
« on: April 19, 2018, 09:08:50 AM »
i cant get this working. Does the .nut file go in the plugins folder? Thats where I have it. when i view plugins in attractmode it allows me to turn it on but not select what triggers it to work.

2
Themes / Re: some robospin-like themes
« on: March 14, 2017, 08:25:48 PM »

Sega SG-1000
https://mega.nz/#!B5hXxaqC!-9RrXgP7cMy_M_kbCHi8N8tl7Vz-xo0ql8ncoRf-s-w



Neo Geo MVS
https://mega.nz/#!5t4DWK6C!ZxfqsJJetp1oppz8WW-2mhz1NfBh7qlseZTBavcy3jQ

This layout is compatible con marquees and i have been experimenting with adding some crt effect to the screen (the shaders doesn't seem to work in retropie). You can enable or disable changing the cabinet in the layout options.
What marquee pack are you using?

3
Themes / Re: some robospin-like themes
« on: March 05, 2017, 03:37:42 PM »
MSX,MSX2, SG1000, needed here.

4
Scripting / available storage
« on: March 05, 2017, 07:37:04 AM »
i have attract mode on raspberry pi 3 and Im looking for a script that will show how much storage i have on my sd card and any attached drives. I would like this to show up in the attract mode settings menu

5
General / MS DOS
« on: March 02, 2017, 06:05:08 PM »
Anyone know how to set up MS DOS in attract mode?

6
Scripting / Re: Need Help...display an image when you press a button
« on: March 01, 2017, 04:47:53 PM »
Here's a plugin version with a few changes... copy the code into plugins/PopupImage.nut

* I changed it to use get_input_state so you can use more than just a specific signal
* Added option to Hold key (default is toggle)
* Make sure to specify the full path to the image, otherwise it will look in the plugins folder

Code: [Select]
class UserConfig </ help="This plugin will show a popup image when the specified key is pressed." /> {
</ label="Image", help="The full path to the image that will be displayed", order=1 />
image="";
</ label="Key", help="The key that will display the image", is_input="yes", order=2 />
key="";
</ label="Hold Key", help="If enabled, you must hold the key down", options="Yes,No", order=3 />
hold="No";
};

class PopUpImage
{
        _image = null;
_key = null;
_hold = false;
_showing = false;
_key_delay = 250;
_last_check = 0;

        constructor()
        {
local config = fe.get_config();
_image = fe.add_image( config["image"], 0, 0, fe.layout.width, fe.layout.height );
_image.visible=false;
_image.preserve_aspect_ratio = true;
_key = config["key"];
_hold = config["hold"];
fe.add_ticks_callback( this, "on_tick" );
        }

function on_tick( ttime )
{
local is_down = fe.get_input_state( _key );
if ( _hold == "Yes" )
{
_image.visible = is_down;
_showing = is_down;
} else
{
if ( is_down )
{
if ( ttime - _last_check > _key_delay )
{
_last_check = ttime;
_image.visible = !_showing;
_showing = !_showing;
}
}
}
}
}

fe.plugin[ "PopUpImage" ] <- PopUpImage();

Let me know if you find any issues, then I will add this to my github... :)
right now its displaying snaps. how can i get it to display the boxart. im not seeing what i would change

7
Themes / Re: some robospin-like themes
« on: March 01, 2017, 04:01:33 PM »
cosmo I downloaded the pc engine and turbo 16 layouts but they are the same file

8
Scripting / Re: Need Help...display an image when you press a button
« on: March 01, 2017, 01:20:25 PM »
instead of a stored image I have a url to my surveillance camera feed. Could that be used in place of an image somehow? the url is just my ip address and port

9
General / Re: vlc blank on exit
« on: March 01, 2017, 10:01:19 AM »
I want to use vlc to display my live feed from my security camera. I know I can view it on pc by putting the cameras ip address in vlc but how could I get it to work in attract mode?

10
Scripting / Re: Camera display
« on: March 01, 2017, 04:16:22 AM »
Vlc would work. Do you know how I would do it

11
Scripting / Camera display
« on: February 27, 2017, 08:30:34 PM »
I have an ip security camera connected to my raspberry pi. I can view the live stream by typing ip address in Web browser. Is there a way to either have a screen that shows the camera feed pop up when a button is  pushed or just have the camera feed show on a in a layout?

Pages: [1]