mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2026-04-25 16:20:50 -05:00
146 lines
5.0 KiB
INI
146 lines
5.0 KiB
INI
; -----------------------------------------------------------------------------
|
|
; Path settings
|
|
; -----------------------------------------------------------------------------
|
|
|
|
[vfs]
|
|
; Make sure theses are full paths and not relative or you will have a bad time
|
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
|
amfs=
|
|
; Insert the path to the game Option directory here (contains Axxx directories)
|
|
option=
|
|
; Create an empty directory somewhere and insert the path here.
|
|
; This directory may be shared between multiple SEGA games.
|
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
|
appdata=
|
|
|
|
; -----------------------------------------------------------------------------
|
|
; Device settings
|
|
; -----------------------------------------------------------------------------
|
|
|
|
[aime]
|
|
; Aime reader emulation
|
|
enable=1
|
|
; CXB is stupid, so we have to make the paths go back two directories. This
|
|
; will load the file from "resource\DEVICE\aime.txt".
|
|
aimePath=../DEVICE/aime.txt
|
|
|
|
; Virtual-key code. If this button is **held** then the emulated IC card reader
|
|
; emulates an IC card in its proximity. A variety of different IC cards can be
|
|
; emulated; the exact choice of card that is emulated depends on the presence or
|
|
; absence of the configured card ID files. Default is the Return key.
|
|
scan=0x0D
|
|
|
|
[led]
|
|
; Emulation for the LED board. Currently it's just dummy responses,
|
|
; but if somebody wants to make their keyboard or whatever light
|
|
; up with the game they can
|
|
enable=1
|
|
|
|
; -----------------------------------------------------------------------------
|
|
; Network settings
|
|
; -----------------------------------------------------------------------------
|
|
|
|
[dns]
|
|
; Insert the hostname or IP address of the server you wish to use here.
|
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
|
default=127.0.0.1
|
|
|
|
; Set the title server hostname or IP address here, as the title server
|
|
; is hardcoded in the game.
|
|
title=https://127.0.0.1:9002
|
|
|
|
[netenv]
|
|
; Simulate an ideal LAN environment. This may interfere with head-to-head play.
|
|
; Crossbeats is extremely picky about its LAN environment, so leaving this
|
|
; setting enabled is strongly recommended.
|
|
enable=1
|
|
|
|
; -----------------------------------------------------------------------------
|
|
; Board settings
|
|
; -----------------------------------------------------------------------------
|
|
|
|
[keychip]
|
|
; Keychip serial number. Keychip serials observed in the wild follow this
|
|
; pattern: `A\d{2}(E|X)-(01|20)[ABCDU]\d{8}`.
|
|
id=A69E-01A88888888
|
|
|
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
|
; that subnet must start with 192.168.
|
|
subnet=192.168.150.0
|
|
billingCa=../DEVICE/ca.crt
|
|
billingPub=../DEVICE/billing.pub
|
|
billingType=0
|
|
|
|
[pcbid]
|
|
; Set the Windows host name. This should be an ALLS MAIN ID, without the
|
|
; hyphen (which is not a valid character in a Windows host name).
|
|
serialNo=ACAE01A99999999
|
|
|
|
[eeprom]
|
|
; See above
|
|
path=../DEVICE/eeprom.bin
|
|
|
|
[sram]
|
|
; See above
|
|
path=../DEVICE/sram.bin
|
|
|
|
; -----------------------------------------------------------------------------
|
|
; Misc. hooks settings
|
|
; -----------------------------------------------------------------------------
|
|
|
|
[gfx]
|
|
; Enables the graphics hook.
|
|
enable=1
|
|
; Force the game to run windowed.
|
|
windowed=1
|
|
; Add a frame to the game window if running windowed.
|
|
framed=1
|
|
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
|
monitor=0
|
|
; Enable DPI awareness for the game process, preventing Windows from stretching the game window if a DPI scaling higher than 100% is used
|
|
dpiAware=1
|
|
|
|
; -----------------------------------------------------------------------------
|
|
; Custom IO settings
|
|
; -----------------------------------------------------------------------------
|
|
|
|
[aimeio]
|
|
; To use a custom card reader IO DLL enter its path here.
|
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
|
path=
|
|
|
|
[cxbio]
|
|
; To use a custom crossbeats REV. DLL enter its path here.
|
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
|
path=
|
|
|
|
; -----------------------------------------------------------------------------
|
|
; Input settings
|
|
; -----------------------------------------------------------------------------
|
|
|
|
; Keyboard bindings are specified as hexadecimal (prefixed with 0x) or decimal
|
|
; (not prefixed with 0x) virtual-key codes, a list of which can be found here:
|
|
;
|
|
; https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
|
|
;
|
|
; This is, admittedly, not the most user-friendly configuration method in the
|
|
; world. An improved solution will be provided later.
|
|
|
|
[revio]
|
|
; Enable emulation of the rev IO board
|
|
enable=1
|
|
; Test button virtual-key code. Default is the F1 key.
|
|
test=0x70
|
|
; Service button virtual-key code. Default is the F2 key.
|
|
service=0x71
|
|
; Keyboard button to increment coin counter. Default is the F3 key.
|
|
coin=0x72
|
|
|
|
; Menu up key. Default is up arrow.
|
|
up=0x26
|
|
; Menu down key. Default is down arrow.
|
|
down=0x28
|
|
; Menu cancel key. Default is the 4 key.
|
|
cancel=0x34
|