RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    New Hypseus and lr-Daphne to add on Retropie-Setup

    Scheduled Pinned Locked Moved Ideas and Development
    daphnelaserdischypseusdaphne confighypseus config
    501 Posts 33 Posters 235.8k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • SuperFromNDS
      SuperFromND
      last edited by SuperFromND

      I don't plan on submitting a pull request for this script myself (due to the freezing issues described above), but if anyone wants to install the emulator without much hassle (or if the freezing bug gets fixed in the future), here's the scriptmodule I wrote for lr-daphne:

      #!/usr/bin/env bash
      
      # This file is part of The RetroPie Project
      #
      # The RetroPie Project is the legal property of its developers, whose names are
      # too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
      #
      # See the LICENSE.md file at the top-level directory of this distribution and
      # at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
      #
      
      rp_module_id="lr-daphne"
      rp_module_desc="Laserdisc emu - Daphne port for libretro"
      rp_module_help="ROM Extension: .daphne\n\nCopy your Daphne roms to $romdir/daphne"
      rp_module_section="exp"
      
      function sources_lr-daphne() {
          gitPullOrClone "$md_build" https://github.com/libretro/daphne.git
      }
      
      function build_lr-daphne() {
          make clean
          make
          md_ret_require="$md_build/daphne_libretro.so"
      }
      
      function install_lr-daphne() {
          md_ret_files=(
              'daphne_libretro.so'
          )
      }
      
      function configure_lr-daphne() {
          mkRomDir "daphne"
          ensureSystemretroconfig "daphne"
      
          addEmulator 1 "$md_id" "daphne" "$md_inst/daphne_libretro.so"
          addSystem "daphne"
      }
      

      And for those who can't quite figure out what goes where, here's my file heirarchy, rendered in glorious text characters.

      ▲▼▲▼▲▼▲▼▲▼
      IKEMEN Go
      SRB2Kart
      ▼▲▼▲▼▲▼▲▼▲

      S 1 Reply Last reply Reply Quote 4
      • V
        vikingrock @Stuart2773
        last edited by vikingrock

        @stuart2773 Hey Stuart. Now We have a compiled code, maybe you can make a new request on GitHub.

        1 Reply Last reply Reply Quote 0
        • G
          grant2258 Banned
          last edited by

          the code always compiled the freezing issue meeds addressed though.

          If this freeze doesnt happen in jessie. I would initially suspect it is tsx (Transactional Synchronization eXtensions) related if the arm processors support this would need to look into it more though.

          1 Reply Last reply Reply Quote 1
          • S
            skj @SuperFromND
            last edited by

            @supercatfooz said in Hypseus new Daphne fork to try on Retropie:

            I don't plan on submitting a pull request for this script myself (due to the freezing issues described above), but if anyone wants to install the emulator without much hassle (or if the freezing bug gets fixed in the future), here's the scriptmodule I wrote for lr-daphne:

            #!/usr/bin/env bash
            
            # This file is part of The RetroPie Project
            #
            # The RetroPie Project is the legal property of its developers, whose names are
            # too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
            #
            # See the LICENSE.md file at the top-level directory of this distribution and
            # at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
            #
            
            rp_module_id="lr-daphne"
            rp_module_desc="Laserdisc emu - Daphne port for libretro"
            rp_module_help="ROM Extension: .daphne\n\nCopy your Daphne roms to $romdir/daphne"
            rp_module_section="exp"
            
            function sources_lr-daphne() {
                gitPullOrClone "$md_build" https://github.com/libretro/daphne.git
            }
            
            function build_lr-daphne() {
                make clean
                make
                md_ret_require="$md_build/daphne_libretro.so"
            }
            
            function install_lr-daphne() {
                md_ret_files=(
                    'daphne_libretro.so'
                )
            }
            
            function configure_lr-daphne() {
                mkRomDir "daphne"
                ensureSystemretroconfig "daphne"
            
                addEmulator 1 "$md_id" "daphne" "$md_inst/daphne_libretro.so"
                addSystem "daphne"
            }
            

            And for those who can't quite figure out what goes where, here's my file heirarchy, rendered in glorious text characters.

            I how do I install this on my raspberry Pi?

            SuperFromNDS 1 Reply Last reply Reply Quote 0
            • SuperFromNDS
              SuperFromND @skj
              last edited by

              @skj Navigate to /home/pi/RetroPie-Setup/scriptmodules/libretrocores, then create a new file named lr-daphne.sh, and paste the above shell script. Save the file, and you're pretty much done.

              You'll want to install something like WinSCP before doing this; it makes the process a lot easier than trying to do it over PuTTY or on the Pi itself.

              ▲▼▲▼▲▼▲▼▲▼
              IKEMEN Go
              SRB2Kart
              ▼▲▼▲▼▲▼▲▼▲

              S 1 Reply Last reply Reply Quote 1
              • S
                skj @SuperFromND
                last edited by

                @supercatfooz

                Ok I did all of that but I don't see any option to run lr-daphne or select it as an emulator? Is there anything else I need to do? I'm a complete newbie with GitHub stuff and scripts any help would be much appreciated.

                SuperFromNDS 1 Reply Last reply Reply Quote 0
                • SuperFromNDS
                  SuperFromND @skj
                  last edited by

                  @skj You'll need to run the script from RetroPie Setup to install the emulator. It'll be in the "experimental" section.

                  ▲▼▲▼▲▼▲▼▲▼
                  IKEMEN Go
                  SRB2Kart
                  ▼▲▼▲▼▲▼▲▼▲

                  S 1 Reply Last reply Reply Quote 1
                  • S
                    skj @SuperFromND
                    last edited by

                    @supercatfooz

                    Can you explain step by step how to do this as i dont know how to install the lr-daphne.sh from the retropie setup menu. Thanks

                    SuperFromNDS 1 Reply Last reply Reply Quote 0
                    • SuperFromNDS
                      SuperFromND @skj
                      last edited by

                      @skj See here.

                      ▲▼▲▼▲▼▲▼▲▼
                      IKEMEN Go
                      SRB2Kart
                      ▼▲▼▲▼▲▼▲▼▲

                      S 1 Reply Last reply Reply Quote 0
                      • S
                        skj @SuperFromND
                        last edited by

                        @supercatfooz

                        The lr-daphne is not showing in the experimental section. That is where im getting confused i cant install the emulator as it does not appear in that section :s

                        mediamogulM 1 Reply Last reply Reply Quote 0
                        • mediamogulM
                          mediamogul Global Moderator @skj
                          last edited by

                          @skj

                          Did you update your RetroPie-Setup script first from the root menu?

                          RetroPie v4.5 • RPi3 Model B • 5.1V 2.5A PSU • 16GB SanDisk microSD • 512GB External Drive

                          S cyperghostC 2 Replies Last reply Reply Quote 0
                          • S
                            skj @mediamogul
                            last edited by

                            @mediamogul

                            Yes, I created the above mentioned lr-daphne.sh script, placed it in the above mention folder, then updated the retropie setup script and nothing for lr-daphne appears in the manage pacakages experimental section, that where I'm up to :s

                            1 Reply Last reply Reply Quote 0
                            • cyperghostC
                              cyperghost @mediamogul
                              last edited by cyperghost

                              @mediamogul @skj
                              I took file to my github
                              Please download with

                              1. Download Scriptmodule with: wget http://raw.githubusercontent.com/crcerror/RetroPie-Shares/master/daphne-dev.sh -O /home/pi/RetroPie-Setup/scriptmodules/ports/daphne-dev.sh
                              2. Go to ES and select Configuration (the RetroJoy), select RetroPie Setup or just type sudo ~/RetroPie-Setup/retropie_setup.sh
                              3. On blue dialog, navigate to P Manage packages
                              4. Select exp Manage experimental packages
                              5. Run down the list, there select xxx lr-daphne (Read bottom line it should say: Laserdisc emu - Daphne port for libretro)
                              6. Select S Install from source
                              S 1 Reply Last reply Reply Quote 4
                              • G
                                grant2258 Banned
                                last edited by

                                @skj said in Hypseus new Daphne fork to try on Retropie:

                                make

                                i would suggest you change make to
                                make platform=pi -j4

                                cyperghostC 1 Reply Last reply Reply Quote 0
                                • cyperghostC
                                  cyperghost @grant2258
                                  last edited by

                                  @grant2258 said in Hypseus new Daphne fork to try on Retropie:

                                  platform=pi -j4

                                  Added this

                                  1 Reply Last reply Reply Quote 1
                                  • S
                                    skj @cyperghost
                                    last edited by skj

                                    @cyperghost @grant2258 @mediamogul @SuperCatFooz

                                    Thank you so much for your clear instructions i was able to install it.

                                    do i have to create any config files or folders now because i dont see anything in the /opt/retropie/libretrocores for lr-daphne?

                                    reading above posts i dont see any config files created like this

                                    /opt/retropie/emulators/retroarch/bin/retroarch -L /home/pi/daphne/daphne_libretro.so --config

                                    sorry for asking all these questions but i really want to test this and im not sure on what to do next ?

                                    cyperghostC 1 Reply Last reply Reply Quote 0
                                    • cyperghostC
                                      cyperghost @skj
                                      last edited by

                                      @skj said in Hypseus new Daphne fork to try on Retropie:

                                      daphne_libretro.so

                                      Restart ES

                                      S 1 Reply Last reply Reply Quote 0
                                      • G
                                        grant2258 Banned
                                        last edited by

                                        ive only tested on a raspberry pi3 b+. I decided to use kodi and bbc iplayer kodi seems to be crashing randomly (when i say crashing i mean freezing) as well.

                                        Ill need to see if i can find my pi2 and test on that then test on an earlier retropie version as well.

                                        This freezing only happens on the pi ive only tested in stretch on a 3b+. Instead of jumping to conclusions ill test with a pi2 and a pi3 and various memory cards. Any feedback on the pi versions you guys are testing on if your getting the freezing would in lr daphne would he to debug this

                                        SuperFromNDS 1 Reply Last reply Reply Quote 0
                                        • SuperFromNDS
                                          SuperFromND @grant2258
                                          last edited by

                                          @grant2258 I'm using RetroPie 4.4 on a Raspberry Pi 3 Model B (not to be confused with the 3B+).

                                          ▲▼▲▼▲▼▲▼▲▼
                                          IKEMEN Go
                                          SRB2Kart
                                          ▼▲▼▲▼▲▼▲▼▲

                                          1 Reply Last reply Reply Quote 0
                                          • D
                                            dmmarti
                                            last edited by

                                            Testing on a Pi 3B (not a B+) .. I get that same strange freezing occurring.

                                            I also don't have any sound and the controls (Logitech F310 wired gamepad) does not work in-game. I can still press SELECT + X and get to the Retroarch GUI, so my controller is working. I just can't input any coins and start the game yet.

                                            I tested the M.A.C.H.3 rom.

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                            Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.