Annotation of telnetbbs/dosbox.conf.template, revision 1.2

1.2     ! nick        1: ##
        !             2: ## This is the dosbox configuration used by the telnetBBS service.
        !             3: ## Please refer to the README.txt for any telnetBBS dosbox related
        !             4: ## configuration and set up.
        !             5: ##
        !             6: 
1.1       nick        7: # This is the configurationfile for DOSBox 0.72.
                      8: # Lines starting with a # are commentlines.
                      9: # They are used to (briefly) document the effect of each option.
                     10: 
                     11: [sdl]
                     12: # fullscreen -- Start dosbox directly in fullscreen.
                     13: # fulldouble -- Use double buffering in fullscreen.
                     14: # fullresolution -- What resolution to use for fullscreen: original or fixed size (e.g. 1024x768).
                     15: # windowresolution -- Scale the window to this size IF the output device supports hardware scaling.
                     16: # output -- What to use for output: surface,overlay,opengl,openglnb.
                     17: # autolock -- Mouse will automatically lock, if you click on the screen.
                     18: # sensitiviy -- Mouse sensitivity.
                     19: # waitonerror -- Wait before closing the console if dosbox has an error.
                     20: # priority -- Priority levels for dosbox: lowest,lower,normal,higher,highest,pause (when not focussed).
                     21: #             Second entry behind the comma is for when dosbox is not focused/minimized.
                     22: # mapperfile -- File used to load/save the key/event mappings from.
                     23: # usescancodes -- Avoid usage of symkeys, might not work on all operating systems.
                     24: 
                     25: fullscreen=false
                     26: fulldouble=false
                     27: fullresolution=original
                     28: windowresolution=original
                     29: output=surface
                     30: autolock=true
                     31: sensitivity=100
                     32: waitonerror=true
                     33: priority=higher,normal
                     34: mapperfile=mapper.txt
                     35: usescancodes=true
                     36: 
                     37: [dosbox]
                     38: # language -- Select another language file.
                     39: # memsize -- Amount of memory DOSBox has in megabytes.
                     40: # machine -- The type of machine tries to emulate:hercules,cga,tandy,pcjr,vga.
                     41: # captures -- Directory where things like wave,midi,screenshot get captured.
                     42: 
                     43: language=
                     44: machine=vga
                     45: captures=capture
                     46: memsize=4
                     47: 
                     48: [render]
                     49: # frameskip -- How many frames DOSBox skips before drawing one.
                     50: # aspect -- Do aspect correction, if your output method doesn't support scaling this can slow things down!.
                     51: # scaler -- Scaler used to enlarge/enhance low resolution modes.
                     52: #           Supported are none,normal2x,normal3x,advmame2x,advmame3x,hq2x,hq3x,
                     53: #                         2xsai,super2xsai,supereagle,advinterp2x,advinterp3x,
                     54: #                         tv2x,tv3x,rgb2x,rgb3x,scan2x,scan3x.
                     55: #           If forced is appended (like scaler=hq2x forced), the scaler will be used
                     56: #           even if the result might not be desired.
                     57: 
1.2     ! nick       58: frameskip=100
1.1       nick       59: aspect=false
                     60: scaler=none
                     61: 
                     62: [cpu]
                     63: # core -- CPU Core used in emulation: normal,simple,dynamic,auto.
                     64: #         auto switches from normal to dynamic if appropriate.
                     65: # cycles -- Amount of instructions DOSBox tries to emulate each millisecond.
                     66: #           Setting this value too high results in sound dropouts and lags.
                     67: #           You can also let DOSBox guess the correct value by setting it to max.
                     68: #           The default setting (auto) switches to max if appropriate.
                     69: # cycleup   -- Amount of cycles to increase/decrease with keycombo.
                     70: # cycledown    Setting it lower than 100 will be a percentage.
                     71: 
                     72: core=auto
                     73: cycles=auto
                     74: cycleup=500
                     75: cycledown=20
                     76: 
                     77: [mixer]
                     78: # nosound -- Enable silent mode, sound is still emulated though.
                     79: # rate -- Mixer sample rate, setting any devices higher than this will
                     80: #         probably lower their sound quality.
                     81: # blocksize -- Mixer block size, larger blocks might help sound stuttering
                     82: #              but sound will also be more lagged.
                     83: # prebuffer -- How many milliseconds of data to keep on top of the blocksize.
                     84: 
                     85: nosound=true
                     86: rate=22050
                     87: blocksize=2048
                     88: prebuffer=10
                     89: 
                     90: [midi]
                     91: # mpu401      -- Type of MPU-401 to emulate: none, uart or intelligent.
                     92: # device      -- Device that will receive the MIDI data from MPU-401.
                     93: #                This can be default,alsa,oss,win32,coreaudio,none.
                     94: # config      -- Special configuration options for the device. In Windows put
                     95: #                the id of the device you want to use. See README for details.
                     96: 
                     97: mpu401=intelligent
                     98: device=default
                     99: config=
                    100: 
                    101: [sblaster]
                    102: # sbtype -- Type of sblaster to emulate:none,sb1,sb2,sbpro1,sbpro2,sb16.
                    103: # sbbase,irq,dma,hdma -- The IO/IRQ/DMA/High DMA address of the soundblaster.
                    104: # mixer -- Allow the soundblaster mixer to modify the DOSBox mixer.
                    105: # oplmode -- Type of OPL emulation: auto,cms,opl2,dualopl2,opl3.
                    106: #            On auto the mode is determined by sblaster type.
                    107: #            All OPL modes are 'Adlib', except for CMS.
                    108: # oplrate -- Sample rate of OPL music emulation.
                    109: 
                    110: sbtype=false
                    111: sbbase=220
                    112: irq=7
                    113: dma=1
                    114: hdma=5
                    115: mixer=true
                    116: oplmode=auto
                    117: oplrate=22050
                    118: 
                    119: [gus]
                    120: # gus -- Enable the Gravis Ultrasound emulation.
                    121: # gusbase,irq1,irq2,dma1,dma2 -- The IO/IRQ/DMA addresses of the 
                    122: #            Gravis Ultrasound. (Same IRQ's and DMA's are OK.)
                    123: # gusrate -- Sample rate of Ultrasound emulation.
                    124: # ultradir -- Path to Ultrasound directory.  In this directory
                    125: #             there should be a MIDI directory that contains
                    126: #             the patch files for GUS playback.  Patch sets used
                    127: #             with Timidity should work fine.
                    128: 
                    129: gus=false
                    130: gusrate=22050
                    131: gusbase=240
                    132: irq1=5
                    133: irq2=5
                    134: dma1=3
                    135: dma2=3
                    136: ultradir=C:\ULTRASND
                    137: 
                    138: [speaker]
                    139: # pcspeaker -- Enable PC-Speaker emulation.
                    140: # pcrate -- Sample rate of the PC-Speaker sound generation.
                    141: # tandy -- Enable Tandy Sound System emulation (off,on,auto).
                    142: #          For auto Tandysound emulation is present only if machine is set to tandy.
                    143: # tandyrate -- Sample rate of the Tandy 3-Voice generation.
                    144: # disney -- Enable Disney Sound Source emulation. Covox Voice Master and Speech Thing compatible.
                    145: 
                    146: pcspeaker=true
                    147: pcrate=22050
                    148: tandy=auto
                    149: tandyrate=22050
                    150: disney=true
                    151: 
                    152: [joystick]
                    153: # joysticktype -- Type of joystick to emulate: auto (default), none,
                    154: #                 2axis (supports two joysticks,
                    155: #                 4axis (supports one joystick, first joystick used),
                    156: #                 4axis_2 (supports one joystick, second joystick used),
                    157: #                 fcs (Thrustmaster), ch (CH Flightstick).
                    158: #                 none disables joystick emulation.
                    159: #                 auto chooses emulation depending on real joystick(s).
                    160: # timed -- enable timed intervals for axis. (false is old style behaviour).
                    161: # autofire -- continuously fires as long as you keep the button pressed.
                    162: # swap34 -- swap the 3rd and the 4th axis. can be useful for certain joysticks.
                    163: # buttonwrap -- enable button wrapping at the number of emulated buttons.
                    164: 
                    165: joysticktype=auto
                    166: timed=true
                    167: autofire=false
                    168: swap34=false
                    169: buttonwrap=true
                    170: 
                    171: [serial]
                    172: # serial1-4 -- set type of device connected to com port.
                    173: #              Can be disabled, dummy, modem, nullmodem, directserial.
                    174: #              Additional parameters must be in the same line in the form of
                    175: #              parameter:value. Parameter for all types is irq.
                    176: #              for directserial: realport (required), rxdelay (optional).
                    177: #              for modem: listenport (optional).
                    178: #              for nullmodem: server, rxdelay, txdelay, telnet, usedtr,
                    179: #                             transparent, port, inhsocket (all optional).
                    180: #              Example: serial1=modem listenport:5000
                    181: 
1.2     ! nick      182: ##
        !           183: ## For details regarding this configuration with telnetBBS server please
        !           184: ## view the README.txt for more details.
        !           185: ##
1.1       nick      186: serial1=modem listenport:__LISTEN_PORT__
                    187: serial2=dummy
                    188: serial3=disabled
                    189: serial4=disabled
                    190: 
                    191: [dos]
                    192: # xms -- Enable XMS support.
                    193: # ems -- Enable EMS support.
                    194: # umb -- Enable UMB support.
                    195: # keyboardlayout -- Language code of the keyboard layout (or none).
                    196: 
                    197: xms=true
                    198: ems=true
                    199: umb=true
                    200: keyboardlayout=none
                    201: 
                    202: [ipx]
                    203: # ipx -- Enable ipx over UDP/IP emulation.
                    204: 
                    205: ipx=false
                    206: 
1.2     ! nick      207: ##
        !           208: ## Please view the README.txt to configuration this properly
        !           209: ## for your BBS.
        !           210: ##
1.1       nick      211: [autoexec]
                    212: # Lines in this section will be run at startup.
                    213: mount c: /home/nick/hdbbs
                    214: c:
                    215: PATH=c:\;c:\util
                    216: cd c:\foss
                    217: fci
                    218: cd c:\bbs
                    219: renegade /N__NODE__ -Q
                    220: #renegade /N1 -Q -B115200
                    221: exit

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>