Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Dosbox Easy Navigator

                  
   
  1. #1
    DCEmu Rookie
    Join Date
    Mar 2007
    Posts
    116
    Rep Power
    63

    Default Dosbox Easy Navigator

    Download here: http://consoles.gdteam.net/download.php?view.11

    Information:
    This package allows you to autoboot the dos navigator, so you wont have to typ every command over and over to reach a game or something.
    It also contains 4 cool freeware dos games and keymapping files so you can play the games instead of using the virtual keyboard to move/shoot/ect.

    This package contains:
    A readme.txt(i recommend all people to read it first)
    Dosbox.(well, without this you could do nothing...)
    Dosbox editted configuration file.(for booting the navigator, cpu speed 333mhz, and more)
    Dosbox Navigator(for easy browsing through dosbox)
    4 cool dos freeware games(2 rare games you wont find on the internet that fast)
    Keymapping files for some games(read the readme for more info)

    Credit goes to Murdock, and me...

  2. #2
    DCEmu Pro dangee's Avatar
    Join Date
    Feb 2007
    Posts
    531
    Rep Power
    65

    Default

    Hmm, sounds good.
    Before I start messing with my current (stable) Dosbox tho, I'd
    want to be sure that this Navigator version isn't a SWP-Spawner.

  3. #3
    DCEmu Rookie
    Join Date
    Mar 2007
    Posts
    116
    Rep Power
    63

    Default

    a SWP-Spawner???
    lol, the newest release is included...
    Its very stable here, but im not using commands and stuff, only playing games with it.

  4. #4
    DCEmu Newbie
    Join Date
    Sep 2006
    Posts
    4
    Rep Power
    0

    Default

    THANK YOU! The only reason holding me back from a combo of DOSBox and www.abandonia.com is the crazy keyboard layout..

  5. #5
    DCEmu Rookie
    Join Date
    Mar 2006
    Posts
    131
    Rep Power
    66

    Default

    Quote Originally Posted by borgqueenx View Post

    Credit goes to Murdock, and me...

    LOOOOOOOOL :rofl:

    When I started to read this news I just thought "bah! Old news .. I did this ages ago ..."

    But then I saw "credit goes to Murdock" ... :thumbup: ... and thought "Coooooooooool!"

    But unfortunately, I wanted to have a look at it and check what u did, but "I don'T have the permission to download it" ...

    Anyway ... I'll just believe u did it well ... but u should hint to the fact that u needn'T have a *.bat Map-file for the keys every time ... bind the keys ONCE in the AUTOEXEC section of the dosbox.conf file and use the keycombo L-Trigger + R-Trigger + SELECT + DOWN-Arrow to switch between p-sprint method and the mapped keys

    Just a usefull hint!
    You can also read this in my Manual ... I hope u added it to your package!


    [EDIT] Oh, and I should add that this DosNavigator wasn't my idea .. I saw that s/o used it in a forum to make navigation through DOS easier, downloaded the latest version and added it ... so I just took up the idea ... Don't know if s/o cares ... ,aybe the one who inspired me ... whoever it was ...
    Last edited by Murdock; February 6th, 2008 at 21:19.

  6. #6
    DCEmu Pro dangee's Avatar
    Join Date
    Feb 2007
    Posts
    531
    Rep Power
    65

    Default

    "download error" ..
    yeah, what I mean is , does it generate loads of .swp files in the DN folder for no obvious reason.

  7. #7
    DCEmu Rookie
    Join Date
    Mar 2007
    Posts
    116
    Rep Power
    63

    Default

    still, i got this from you murdock and youre the one that made this application useful.
    without the autoexec and navigator and keys, it would have been a useless application.
    so thanks
    and the download will work once registered and logged in, sorry

  8. #8
    DCEmu Newbie
    Join Date
    Jan 2007
    Posts
    38
    Rep Power
    0

    Default

    I just use old fashioned IF, THEN code to allow me to choose from one of 6 programs (can be expanded to 12).

    Here's the code I use (this has to be changed for your programs):

    @ECHO OFF

    INPUTMAP right 6
    INPUTMAP left 5
    INPUTMAP triangle 4
    INPUTMAP square 3
    INPUTMAP cross 2
    INPUTMAP circle 1

    CLS #Empties the Screen

    ECHO _________________________________________________
    ECHO I I
    ECHO I Choose a Game: I
    ECHO I ---------------- I
    ECHO I I
    ECHO I (CROSS) Simpsons Arcade I
    ECHO I (CIRCLE) KEEN I
    ECHO I (SQUARE) Minesweeper I
    ECHO I (TRIANGLE) Wolf3d I
    ECHO I (LEFT) Wolf3d: Spear of Destiny I
    ECHO I (RIGHT) Windows 3.1 I
    ECHO I I
    ECHO I IMPORTANT: Press ... I
    ECHO I I
    ECHO I R-Shoulder + L-Shoulder + I
    ECHO I SELECT + DOWN-Arrow I
    ECHO I I
    ECHO I ... before you make a choice! I
    ECHO I_________________________________________________ I
    ECHO I I
    CHOICE /N /C:123456 I What is your Choice? I%1
    IF ERRORLEVEL ==6 GOTO WIN31
    IF ERRORLEVEL ==5 GOTO SPEAR
    IF ERRORLEVEL ==4 GOTO WOLF
    IF ERRORLEVEL ==3 GOTO MINES
    IF ERRORLEVEL ==2 GOTO SIMPSONS
    IF ERRORLEVEL ==1 GOTO KEEN

    :WIN31
    SYSOPT clock 333
    INPUTMAP up up
    INPUTMAP right right
    INPUTMAP down down
    INPUTMAP left left
    INPUTMAP cross enter
    INPUTMAP square alt
    INPUTMAP exec keen4e
    imgmount c ms0:/psp/dosbox/win311.iso -t iso
    mount e ms0:/psp/dosbox
    c:\
    cd windows
    win

    GOTO END

    :SPEAR
    mount c ms0:/psp/dosbox
    SYSOPT clock 333
    c:
    INPUTMAP up up
    INPUTMAP right right
    INPUTMAP down down
    INPUTMAP left left
    INPUTMAP triangle enter
    INPUTMAP square space
    INPUTMAP cross lctrl
    INPUTMAP circle lshift
    INPUTMAP start v
    INPUTMAP select esc
    INPUTMAP rtrigger lalt
    cd spear
    INPUTMAP exec wolf3d

    GOTO END

    :WOLF
    mount c ms0:/psp/dosbox
    SYSOPT clock 333
    c:
    INPUTMAP up up
    INPUTMAP right right
    INPUTMAP down down
    INPUTMAP left left
    INPUTMAP triangle enter
    INPUTMAP square space
    INPUTMAP cross lctrl
    INPUTMAP circle lshift
    INPUTMAP start v
    INPUTMAP select esc
    INPUTMAP rtrigger lalt
    cd wolf
    INPUTMAP exec wolf3d

    GOTO END

    :MINES
    mount c ms0:/psp/dosbox
    SYSOPT clock 333
    c:
    INPUTMAP up up
    INPUTMAP right right
    INPUTMAP down down
    INPUTMAP left left
    INPUTMAP triangle y
    INPUTMAP square 1
    INPUTMAP cross insert
    INPUTMAP circle del
    INPUTMAP start v
    INPUTMAP select esc
    cd mines
    INPUTMAP exec mines

    GOTO END

    :SIMPSONS
    mount c ms0:/psp/dosbox
    SYSOPT clock 333
    c:
    INPUTMAP up up
    INPUTMAP right right
    INPUTMAP down down
    INPUTMAP left left
    INPUTMAP triangle y
    INPUTMAP square 1
    INPUTMAP cross insert
    INPUTMAP circle del
    INPUTMAP start v
    INPUTMAP select esc
    cd simp
    cd prg
    INPUTMAP exec simpsons

    GOTO END

    :KEEN
    mount c ms0:/psp/dosbox
    SYSOPT clock 333
    c:
    INPUTMAP up up
    INPUTMAP right right
    INPUTMAP down down
    INPUTMAP left left
    INPUTMAP triangle lalt
    INPUTMAP square space
    INPUTMAP cross lctrl
    INPUTMAP circle enter
    INPUTMAP start v
    INPUTMAP select esc
    cd keen
    INPUTMAP exec keen4e

    GOTO END

    :END

  9. #9
    DCEmu Newbie
    Join Date
    Jun 2007
    Posts
    88
    Rep Power
    0

    Default

    Thanks, but can someone rehost this? It says I don't have the permissions to download and I don't want to register.

  10. #10
    DCEmu Rookie jvabbdac's Avatar
    Join Date
    Aug 2006
    Location
    Bauru-SP / BraSil
    Age
    41
    Posts
    141
    Rep Power
    65

    Default

    Anybody try Constructor game on the emulator !

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

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
  •