cordle/dosbox/dosbox_config_cordle.ini

118 lines
2.0 KiB
INI

# DOSBox Configuration File for Cordle
# =====================================
# This configuration is optimized for running and developing Cordle
#
# Usage: dosbox -conf dosbox-cordle.conf
[sdl]
# Display settings
fullscreen=false
fulldouble=false
fullresolution=original
windowresolution=original
output=opengl
autolock=true
[dosbox]
# DOSBox machine settings
machine=svga_s3
captures=capture
memsize=16
[render]
# Rendering and aspect ratio
frameskip=0
aspect=true
scaler=normal2x
[cpu]
# CPU settings - adjust if game runs too fast/slow
core=auto
cputype=auto
cycles=max
cycleup=10
cycledown=20
[mixer]
# Sound settings (not used by Cordle, but included for completeness)
nosound=false
rate=44100
blocksize=1024
prebuffer=25
[midi]
mpu401=intelligent
mididevice=default
midiconfig=
[sblaster]
sbtype=sb16
sbbase=220
irq=7
dma=1
hdma=5
sbmixer=true
oplmode=auto
oplemu=default
oplrate=44100
[gus]
gus=false
[speaker]
pcspeaker=true
pcrate=44100
tandy=auto
tandyrate=44100
disney=true
[joystick]
joysticktype=auto
[serial]
serial1=dummy
serial2=dummy
serial3=disabled
serial4=disabled
[dos]
# DOS settings
xms=true
ems=true
umb=true
keyboardlayout=auto
[ipx]
ipx=false
[autoexec]
# Auto-execute commands on DOSBox startup
@echo off
echo.
echo ===============================================
echo DOSBOX CONFIGURED FOR CORDLE DEVELOPMENT
echo ===============================================
echo.
# Mount the Cordle directory
# CHANGE THIS PATH TO YOUR ACTUAL CORDLE DIRECTORY
mount c: .
c:
# Set DJGPP environment if needed
# Uncomment and adjust paths if DJGPP is installed
# SET DJGPP=C:\DJGPP\DJGPP.ENV
# SET PATH=C:\DJGPP\BIN;%PATH%
echo Current directory mounted as C:
echo.
echo Available commands:
echo dir - List files
echo cd cordle - Change to cordle directory
echo make - Build the game
echo cordle --help - Show game help
echo cordle --easy - Play easy mode
echo exit - Exit DOSBox
echo.
echo ===============================================