This is a patch that integrates support for the Linux DOS emulator into the Synchronet BBS software written by Rob Swindell.
The purpose of such integration is to enable the sysop to install new DOS doors in a simple and straightforward manner, and to be able to easily work around the inevitable emulation-related problems that will occur.
Follow the instructions in sbbsunix.txt that can be found at the Synchronet homepage to get a fresh copy of the source code for the BBS using CVS. The support has been integrated but must be enabled at compile time; if you want to enable it, when you go to "make" the BBS, do the following:
$ gmake USE_DOSEMU=1
Next, complete the initial configuration according to the instructions in sbbsunix.txt.
A few requirements first off:
You probably want to also add the door's setup program as a standard I/O program (see below for details on standard I/O programs).
When you set up the door, point it to D:\ for the dropfile path. Also, generally it would be a good idea to tell the door to use a fossil driver, unless it doesn't work or produces strange results (like missing lines or dropped characters), in which case you can use the internal comm routines of the door.
The door's actual directory will be mounted on E:\ with the root of E: being the parent directory of the door. So if your door is in /usr/local/games/tw2002 on the Unix side, it will be in E:\tw2002 on the DOS side. Make sure the door's directory conforms to the DOS 8.3 file format! /usr/local/games/tw2002 would be okay, but /usr/local/games/TradeWars2002 would not. The symptom of a non-conforming directory is a "file not found" when Synchronet tries to change to the DOS door's directory inside DOSEMU.
Make SURE that if the door is started with a .bat batch file, that you explicitly name it as such in the "Program Name" field. For instance, LORD's "start.bat" command would be entered as "start.bat %#", not just "start %#". Failure to do this will cause the session to be hung inside DOSEMU when the user exits the door. (You can still exit by blindly typing exitemu when this happens.)
For the most part, setting up a non-door DOS program is done following the same procedure as a door. The key difference is that you set Redirect STDIO to Yes for a program that is not designed specifically to run as a BBS door.
You can also set up timed events (e.g. door daily maintenance programs) in this same manner. Just make sure Native Program is set to "No" and it will work fine.
It would probably be a good idea to set up command.com as an external, so that you can get access to a DOS shell through the board. From there, you can do things like the initial unzipping and setup of door software with ease.
File Search Precedence:
The following table describes in what order Synchronet will look for various files
needed for starting DOSEMU. If a file does not exist in one location or cannot be
read, the next location will be tried until there are no more possible locations.
dosemu.bin | emusetup.bat | dosemu.conf | |
---|---|---|---|
First | startup_dir | startup_dir | startup_dir |
Second | DOSemuPath | $SBBSCTRL | $SBBSCTRL |
Third | /etc/dosemu/dosemu.conf |
This is useful because you might want to customize the configuration in order to get a particular balky door working. You might want a custom dosemu binary, emusetup.bat, and/or dosemu config for that particular door, while maintaining a different set of configurations that works for mostly everything else.
make sure you are using a dosemu.conf from the DOSEMU distribution of the particular version you are using. (e.g. if using 1.1.4 release, don't use a dosemu.conf from 1.0.2)
The most up-to-date freedos distribution can be found here -- this is known to fix problems with Tradewars 2002. You might consider trying DR-DOS if you have problems with FreeDOS. However, be certain that you use the autoexec.bat from the FreeDOS distribution, as the Synchronet integration depends on it. Also remember to copy the DOSEMU support files into c:\dosemu in the DR-DOS hdimage.
emusetup.bat customization: This section is mostly TODO so ignore it for now
emusetup.bat -- changing drive letter mappings, and using variables that are passed into it
The default drive letters are:
Any necessary utils that should be loaded before the door starts (like fossil driver, ansi driver, etc) should be placed in the emusetup.bat with a PATH that points to them. The default location is in a \dosutils directory immediately preceding the door's directory. (For example, if your door is in /home/bbs/doors/lord, put the dosutils directory as /home/bbs/doors/dosutils.)
File locking is dysfunctional with the DOSEMU 1.0.2.x stable releases. File locking problems will manifest themselves as strange error messages related to file opens, long pauses and/or hangs, game data corruption, and other fun stuff. Note that you do not have to be running a multinode BBS to be prone to these issues; most programs detect DOSEMU as a multitasker and thus initiate their lock management regardless of whether or not multiple sessions of the game will be in use. DOSEMU development releases do not have this issue, so you might be better off just to compile and use that.
There is a fix from Bob Newell which is detailed in this document. Included is a kludge for slow screen draws due to incorrect idling that will occur in some games such as Planets TEOS.
There is a precompiled version here that may or may not work on your machine. (It was compiled from the Debian sources.) I also maintain builds of development versions that you can install that are likely to have fixed many more bugs.
There is another way to do this: use a script that launches dosemu. This is the more flexible but non-userfriendly way to use dosemu doors on Synchronet. Example stuff can be found in this tarball.
$Id$