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 - vengador toxico

Pages: [1]
1
Emulators / Re: Various emulator settings
« on: October 28, 2019, 07:16:03 AM »
Yabause - Sega Saturn Emulator

executable           C:\emulator\yabause.exe
args                 -i "[romfilename]" --autostart -f
rompath              C:\roms
romext               .iso;.bin;.mdf;.mdf

2
Scripting / Re: reset - reload layout
« on: January 02, 2019, 02:23:57 PM »
Hi.  Thanks for replying.  In fact, it was Giacomo who started the thread and asked the original question.

My use case is a little different.  I'm running a plugin which does the following.  Whenever I add a game to Favourites, it invokes a series of bash scripts which adds the game to my favourites romlist.  If I wait about 10 seconds and go back to the Favourites layout, the game will be among the favourites.  However, if I time it badly, then my favourites romlist will not have been updated.  With your script, I can now press the "R" key and it will update the layout manually, rather than having to exit the layout and re-enter it.  That is great.  It's just it would be fantastic if I didn't have to press "R" and that instead the plugin automatically reloads the layout once all of the bash scripts have finished.

To give you an idea, my current plugin is:

Quote
// This plugin regenerates the "Favourites.txt" romlist when a game is selected as a favourite or deselected as a favourite
fe.add_transition_callback( "favourites" );
function favourites( ttype, var, ttime )
{
 switch ( ttype )
 {
  case Transition.ChangedTag:
                system( "sudo /bin/bash /opt/retropie/configs/all/favourites.sh" ); // Starts the Favourites bash script to update the Favourites romlist whenever a game is tagged or untagged
        return false;
}}

This plugin invokes the bash script that starts the update to the favourites romlist.  It works in the background. 

Ideally, after the bash script has finished (and it takes about 10 seconds), this plugin would reload the romlist automatically.  I was thinking something like this:

Quote
// This plugin regenerates the "Favourites.txt" romlist when a game is selected as a favourite or deselected as a favourite
fe.add_transition_callback( "favourites" );
function favourites( ttype, var, ttime )
{
 switch ( ttype )
 {
  case Transition.ChangedTag:
                system( "sudo /bin/bash /opt/retropie/configs/all/favourites.sh" ); // Starts the Favourites bash script to update the Favourites romlist whenever a game is tagged or untagged
                 fe.signal("reload");
        return false;
}}

However, I'm not sure how to get the "reload" signal to wait about 10 seconds.

Thanks.
if you use xdotool inside bash sleep 10
xdotool keydown r
sleep 0.1
xdotool keyup r

3
General / Re: Run a sh script when exiting a game
« on: November 09, 2018, 08:19:31 AM »
Que quieres ejecutar?puedo ayudarte

4
Themes / pandora box 3d
« on: September 28, 2018, 07:21:46 PM »
hello friends some idea of ​​how to make this layout alone, I could modify a very simple layout like moving lists and tables


5
Emulators / Re: pre-compiled linux mame binaries here
« on: November 19, 2017, 06:26:51 PM »
These links are to compiled linux mame binaries. They have high scores save support and boxes removed. Get the one you need either 32-bit or 64-bit. Make sure to read the readme! Enjoy! :)

Note that this will not tell you if a game does not work in MAME. If you are having problems with a game working, load it with a normal mame build to see if any errors pop up (red box). If so there is nothing that can be done to make it work! DO NOT bother the mame devs about it they can not help you and neither can anyone else! We all just have to wait till they can get it working!

64-bit     32-bit

excelente trabajo amigo puedes compilar la ultima version tengo unos link  de descarga de roms mame 0.192 https://mega.nz/#F!opAVwbxK!eHOi9EE5vTSJ6plCSjUGJw  

6
Emulators / Pressing a key once to hold it down for a set length of time
« on: September 23, 2017, 08:40:58 PM »
ayuda salir del emulador presionado start durante 3 segundos y cerrar en bash escript linux

Pages: [1]