Page 3 of 8 FirstFirst 12345678 LastLast
Results 21 to 30 of 75

Thread: RRGameStation- Multi-Emulator Rom player/manager

  1. #21
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,417
    sorry , that don't work for me .
    I don't understand why

  2. #22
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    8,046
    Blog Entries
    41
    Probably doesnt work because theirs no trailing "\" in you Rom Path. I dont understand how its loading games at all without it. Here's the code i'm using directly from the source

    Code:
    Do
                    temp = RomReader.ReadLine
                    LineSplit = Split(temp, ";")
                    namesplit = Split(LineSplit(1), ".")
                    RRSDK.Execute("CLADD;" & LineSplit(0) & ";" & LineSplit(1))
                    If File.Exists(EmulatorRomPath(SelectedEmulator - 1) & namesplit(0) & ".jpg") Then
                        RRSDK.Execute("CLSETIMG;" & p & ";" & EmulatorRomPath(SelectedEmulator - 1) & namesplit(0) & ".jpg")
                    Else
                        RRSDK.Execute("CLSETIMG;" & p & ";" & DPath & "nogameart.jpg")
                    End If
    
                    p = p + 1
                Loop Until RomReader.Peek = -1
    the EmulatorPath array is expecting the trailing "\", but since for whatever reason you cant use a trailing slash its not finding the art file. I could add a check for the trailing slash to that line, but the real question is how the heck does it find games without it. Can you show me a few lines from the files where your roms are stored. Look in the plugin data folder for <emulatorname>.txt.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  3. #23
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,417
    By example:
    D:\tmp\FinalBurnAlpha\ROMs\cps1\sf2.zip;sf2.zip
    or
    C:\Program Files\Ride Runner\Skins\Carwings_Dynamic_pm\Emulators\Project64 1.6\Rom\007_GoldenEye_v64;007_GoldenEye_v64
    C:\Program Files\Ride Runner\Skins\Carwings_Dynamic_pm\Emulators\Project64 1.6\Rom\Bike_Race_98_(V1.2)_v64;Bike_Race_98_(V1.2 )_v64

  4. #24
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    8,046
    Blog Entries
    41
    why dont your project 64 roms have file extensions?
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  5. #25
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,417
    because you said me to rename it !
    In fact , if i add a \ for the rom path , i can see the art but when i do a scan , see also the .jpg :

    C:\Program Files\Ride Runner\Skins\Carwings_Dynamic_pm\Emulators\Project64 1.6\Rom\007_GoldenEye_v64;007_GoldenEye_v64
    C:\Program Files\Ride Runner\Skins\Carwings_Dynamic_pm\Emulators\Project64 1.6\Rom\007_GoldenEye_v64.jpg;007_GoldenEye_v64.jp g
    C:\Program Files\Ride Runner\Skins\Carwings_Dynamic_pm\Emulators\Project64 1.6\Rom\Bike_Race_98_(V1.2)_v64;Bike_Race_98_(V1.2 )_v64

  6. #26
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    8,046
    Blog Entries
    41
    ah ok i see the miscommunication. v64 is your file extension. So rename your rom to 007_GoldenEye.v64, rename your art image to 007_GoldenEye.jpg. Then go into settings, set your file extension to .v64 so that when you scan, only the roms show up.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  7. #27
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,417
    Ok , all is right now.

    ---------- Post added at 05:51 PM ---------- Previous post was at 05:36 PM ----------

    For a same emulator exist several extension file: !
    N64:
    *.v64 or *.z64

    A cool option should be to have several extensions options !

    <Extension>*.v64|*.z64</Extension>
    or
    <Extension>*.v64,*.z64</Extension>

    As you want !

  8. #28
    FLAC
    Join Date
    Jun 2003
    Location
    Memphis - TN
    Posts
    1,271
    I use these...

    VisualBoyAdvance
    PlayGuy
    Project64
    fceu
    gens
    snes9x
    2011 Nissan Frontier SL
    AMD X3 2.2 | M4-ATX | 16Gb SSD | 2GB DDR3-1333 | MSI GF615M-P33 MB
    OBDPROS USB | BU-303 GPS l LILLIPUT TS | Car2PC adapter | XM Direct | USB Dual band N with custom mag-mount antenna.

  9. #29
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    8,046
    Blog Entries
    41
    Quote Originally Posted by pierrotm777 View Post
    Ok , all is right now.

    ---------- Post added at 05:51 PM ---------- Previous post was at 05:36 PM ----------

    For a same emulator exist several extension file: !
    N64:
    *.v64 or *.z64

    A cool option should be to have several extensions options !

    <Extension>*.v64|*.z64</Extension>
    or
    <Extension>*.v64,*.z64</Extension>

    As you want !
    I will look into adding that.. shouldnt be much of a problem.

    Quote Originally Posted by Custommx3 View Post
    I use these...

    VisualBoyAdvance
    PlayGuy
    Project64
    fceu
    gens
    snes9x
    Will add the extra ones to post 1. Thanks man.

    Version 1.0.1 is now available. I added Pause Audio option to the settings screen and fixed the search command.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  10. #30
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    8,046
    Blog Entries
    41
    Version 1.0.2 available. This version fixes code that broke sliders for plugins.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

Page 3 of 8 FirstFirst 12345678 LastLast

Similar Threads

  1. Generic MP3 player emulator ( iPod, Zen etc )
    By jbors in forum Input Devices
    Replies: 24
    Last Post: 03-11-2010, 12:06 PM
  2. HUGE Seattle-area multi-brand/multi-forum meet!!
    By ChiefyMan in forum MP3Car Gatherings
    Replies: 0
    Last Post: 08-28-2006, 03:53 PM
  3. Replies: 0
    Last Post: 03-19-2006, 12:30 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •