• Recent
  • Tags
  • Popular
  • Home
  • Docs
  • Register
  • Login
RetroPie forum home
  • Recent
  • Tags
  • Popular
  • Home
  • Docs
  • Register
  • Login
Please do not post a support request without first reading and following the advice in https://retropie.org.uk/forum/topic/3/read-this-first

DOSBox and IndyCar Racing 2

Scheduled Pinned Locked Moved Help and Support
dosboxdos
12 Posts 2 Posters 4.3k 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.
  • R
    retrofan
    last edited by 16 Oct 2016, 17:09

    Does anyone managed to run IndyCar Racing 2 with DOSBox, through emulationstation menu?
    All other games that I tried can be run in this way, only IndyCar Racing 2 will always bring me back into es menu, without any error message.
    If I start DOSBox first and manually start the game exe, then it works.
    All my games are in RetroPie/roms/pc I didnt cahnge anything in settings.
    Any hint?

    1 Reply Last reply Reply Quote 0
    • R
      retrofan
      last edited by 17 Oct 2016, 10:27

      In the meantime, I also tried the latest rpix86, but the same thing happens, game doesnt work at all.
      If someone is willing to try, the game can be found here on this abandonware website.
      http://www.myabandonware.com/game/indycar-racing-ii-29x

      M 1 Reply Last reply 19 Oct 2016, 07:45 Reply Quote 0
      • M
        mediamogul Global Moderator @retrofan
        last edited by mediamogul 19 Oct 2016, 07:45

        @retrofan

        You might have more luck looking at www.vogons.org. It's a user-driven forum that specializes in DOSBox issues.
        https://www.google.com/search?q=site%3Aicr2.net+IndyCar+Racing+2+DOSBox&ie=utf-8&oe=utf-8

        Edit: It would probably be a good idea to remove the link to the game in your post as well. "Abandonware" is really just a term invented by retro-gaming archive sites to make the practice of distributing copyrighted content seem more legitimate. It can be argued as being a grey area, but the same can be said for any run-of-the-mill rom site offering NES games with defunct publishers, like my personal favorite, 'Clash at Demonhead' by Vic Tokai.

        Clash at Demonhead

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

        1 Reply Last reply Reply Quote 0
        • R
          retrofan
          last edited by 19 Oct 2016, 13:06

          Ok, thanks for the advice.
          I just wanted to someone else try the game, then I'll know if the problem is just on me or not.
          Can you do that, its a few minutes job?
          Here is the official working demo, completely legal for download:
          http://image.dosgamesarchive.com/games/indycar2.zip

          M 1 Reply Last reply 19 Oct 2016, 14:46 Reply Quote 0
          • M
            mediamogul Global Moderator @retrofan
            last edited by 19 Oct 2016, 14:46

            @retrofan

            The demo launches fine for me. I didn't try the full version you have listed above, but I don't see why it would be any different.

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

            1 Reply Last reply Reply Quote 0
            • R
              retrofan
              last edited by 19 Oct 2016, 16:46

              Thanks, I would try clean install of latest Retropie version.
              Can you just tell me, does it work properly when you started indycar.exe from emulationstation menu or not?
              In my case, the game works, only when I first start DOSBox shell (+ Start DOSBox) mount path and then manually run the EXE file.
              All other games I have, work fine from es menu, so I cant figured out, why not just this game...

              M 1 Reply Last reply 19 Oct 2016, 16:55 Reply Quote 0
              • M
                mediamogul Global Moderator @retrofan
                last edited by mediamogul 19 Oct 2016, 16:55

                @retrofan said in DOSBox and IndyCar Racing 2:

                In my case, the game works, only when I first start DOSBox shell (+ Start DOSBox) mount path and then manually run the EXE file.

                Emulation Station allows for shell scripts to be seen as menu items in the PC system menu, so if you were to write one that duplicates your manual manual execution, it should boot right up. I usually name these scripts +Start XYZGame.sh to keep with the naming convention seen with the default+Start DOSBox.sh script.

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

                1 Reply Last reply Reply Quote 0
                • R
                  retrofan
                  last edited by 19 Oct 2016, 18:06

                  Yes I know that, but in this case change .sh script is not enough, becouse we also need to edit dosbox.conf config file to add few lines in autoexec section.
                  The problem is, when I do that, this change affects to all games in dosbox es menu, not only for this particular game.
                  So, I still find a working solution to start this game from es menu, same as all others...

                  M 1 Reply Last reply 19 Oct 2016, 18:27 Reply Quote 0
                  • M
                    mediamogul Global Moderator @retrofan
                    last edited by mediamogul 19 Oct 2016, 18:27

                    @retrofan said in DOSBox and IndyCar Racing 2:

                    becouse we also need to edit dosbox.conf config file to add few lines in autoexec section.

                    I really don't think you need to change the default 'dosbox.conf'. You can issue almost any overriding change directly from the shell script at launch. However, if for some reason you absolutely had to make use of a '.conf' file, you can create a completely separate one specifically for that game and set it to be used at launch in the script.

                    Edit: Below is an example script where I instruct that a different '.conf' file be used so that native joystick support is disabled for this particular game:

                    #!/bin/bash
                    /opt/retropie/emulators/dosbox/bin/dosbox -conf "/home/pi/RetroPie/roms/pc/mkt/mkt.conf" -c "mount c /home/pi/RetroPie/roms/pc/mkt/mkta/mktril" -c "imgmount d /home/pi/RetroPie/roms/pc/mkt/mktb/tracks.cue -t iso" -c "c:" -c "MKTRIL.EXE" -c "exit"

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

                    1 Reply Last reply Reply Quote 2
                    • R
                      retrofan
                      last edited by 19 Oct 2016, 18:42

                      Thank you, I didnt know how to use a separate conf file.
                      This is perfectly acceptable solution for me, at least until I find the reason, why this game cant be started directly from emulationstation.

                      M 1 Reply Last reply 19 Oct 2016, 18:43 Reply Quote 0
                      • M
                        mediamogul Global Moderator @retrofan
                        last edited by 19 Oct 2016, 18:43

                        @retrofan

                        Glad to help. I hope it works out for you.

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

                        1 Reply Last reply Reply Quote 0
                        • R
                          retrofan
                          last edited by 23 Oct 2016, 12:25

                          Just to confirm that example script you provided, worked well and that this problem is solved.
                          Thanks again for your help.

                          1 Reply Last reply Reply Quote 0
                          12 out of 12
                          • First post
                            12/12
                            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.

                            This community forum collects and processes your personal information.
                            consent.not_received