First post, by iciz
I'm trying to get the 3D Gamestudio (ACKNEX 3) World Editor running in DOSBox. You can download application from here: http://server.conitec.net/down/a3p.zip
At the moment I've only been able to get it running inside a Windows 98 VM by execution of the included batch files in the sample project folders. However, performance in the VM feels sub-optimal and I can't seem to use any of the world editor's advanced display options (SVGA mode). But every effort to run it straight from DOS (through DOSBox, Windows 98/ XP) has failed.
Here is what page 4 of the manual says (included with the application download above):
WED is a DOS application, but runs under Windows 95 as well. Start the world editor with the following DOS command: […]
WED is a DOS application, but runs under Windows 95 as well. Start the world editor with the following DOS command:
WED [WED options] name[.WDL] [name.WMP] [ACKNEX options]
If you omit the WMP name, WED loads the WMP file which is declared in the WDL script. Should this file not exist, it will be created.
You can give the following WED command line options (the ACKNEX options are discussed in the next chapter):
-S SVGA resolution 800x600
-I SVGA resolution 1024x768
-VESA Use VESA BIOS for the graphic display (slower!). Start with this option if your video card has a nonsupported chipset and the SVGA display seems distorted (e.g. Matrox Mystique).
-VGA Start with this option if you don't have a SVGA card. Floor and wall textures, however, cannot be displayed in this mode.
Executing START.BAT inside the demo project folder on the Windows 98 VM will launch the editor, but it only works in VGA mode. The batch file code is this:
C:
if EXIST \GSTUDIO\WED.EXE \GSTUDIO\WED -VGA VRDEMO
Changing "-VGA" to "-S" or anything else here seems to crash the editor when trying to launch it from inside the VM.
I've tried just mounting the folder and loading the editor through DOSBox, but it always fails and usually returns an error message saying it can't load the file.
My custom dosbox.conf file is setup like this at the moment:
[autoexec] mount C "a3p" C:\ PROFI\WED.EXE -VGA \DEMO\VRDEMO exit […]
[autoexec]
mount C "a3p"
C:\
PROFI\WED.EXE -VGA \DEMO\VRDEMO
exit
Maybe I just have the paths setup wrong?