mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-30 15:54:27 +01:00
cm: added printer support
This commit is contained in:
parent
fe14630b3d
commit
5abc593b46
@ -15,3 +15,59 @@ EXPORTS
|
|||||||
cm_io_get_opbtns
|
cm_io_get_opbtns
|
||||||
cm_io_init
|
cm_io_init
|
||||||
cm_io_poll
|
cm_io_poll
|
||||||
|
CFW_init
|
||||||
|
CFW_term
|
||||||
|
CFW_open
|
||||||
|
CFW_close
|
||||||
|
CFW_listupPrinter
|
||||||
|
CFW_listupPrinterSN
|
||||||
|
CFW_selectPrinter
|
||||||
|
CFW_selectPrinterSN
|
||||||
|
CFW_getPrinterInfo
|
||||||
|
CFW_status
|
||||||
|
CFW_statusAll
|
||||||
|
CFW_resetPrinter
|
||||||
|
CFW_updateFirmware
|
||||||
|
CFW_getFirmwareInfo
|
||||||
|
CHCUSB_init
|
||||||
|
CHCUSB_term
|
||||||
|
CHCUSB_MakeThread
|
||||||
|
CHCUSB_open
|
||||||
|
CHCUSB_close
|
||||||
|
CHCUSB_ReleaseThread
|
||||||
|
CHCUSB_listupPrinter
|
||||||
|
CHCUSB_listupPrinterSN
|
||||||
|
CHCUSB_selectPrinter
|
||||||
|
CHCUSB_selectPrinterSN
|
||||||
|
CHCUSB_getPrinterInfo
|
||||||
|
CHCUSB_imageformat
|
||||||
|
CHCUSB_setmtf
|
||||||
|
CHCUSB_makeGamma
|
||||||
|
CHCUSB_setIcctableProfile
|
||||||
|
CHCUSB_setIcctable
|
||||||
|
CHCUSB_copies
|
||||||
|
CHCUSB_status
|
||||||
|
CHCUSB_statusAll
|
||||||
|
CHCUSB_startpage
|
||||||
|
CHCUSB_endpage
|
||||||
|
CHCUSB_write
|
||||||
|
CHCUSB_writeLaminate
|
||||||
|
CHCUSB_writeHolo
|
||||||
|
CHCUSB_setPrinterInfo
|
||||||
|
CHCUSB_setPrinterToneCurve
|
||||||
|
CHCUSB_getGamma
|
||||||
|
CHCUSB_getMtf
|
||||||
|
CHCUSB_cancelCopies
|
||||||
|
CHCUSB_getPrinterToneCurve
|
||||||
|
CHCUSB_blinkLED
|
||||||
|
CHCUSB_resetPrinter
|
||||||
|
CHCUSB_AttachThreadCount
|
||||||
|
CHCUSB_getPrintIDStatus
|
||||||
|
CHCUSB_setPrintStandby
|
||||||
|
CHCUSB_testCardFeed
|
||||||
|
CHCUSB_exitCard
|
||||||
|
CHCUSB_getCardRfidTID
|
||||||
|
CHCUSB_commCardRfidReader
|
||||||
|
CHCUSB_updateCardRfidReader
|
||||||
|
CHCUSB_getErrorLog
|
||||||
|
CHCUSB_getErrorStatus
|
||||||
|
@ -39,6 +39,7 @@ void cm_hook_config_load(
|
|||||||
io4_config_load(&cfg->io4, filename);
|
io4_config_load(&cfg->io4, filename);
|
||||||
vfd_config_load(&cfg->vfd, filename);
|
vfd_config_load(&cfg->vfd, filename);
|
||||||
touch_screen_config_load(&cfg->touch, filename);
|
touch_screen_config_load(&cfg->touch, filename);
|
||||||
|
printer_config_load(&cfg->printer, filename);
|
||||||
cm_dll_config_load(&cfg->dll, filename);
|
cm_dll_config_load(&cfg->dll, filename);
|
||||||
unity_config_load(&cfg->unity, filename);
|
unity_config_load(&cfg->unity, filename);
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
#include "hooklib/dvd.h"
|
#include "hooklib/dvd.h"
|
||||||
#include "hooklib/touch.h"
|
#include "hooklib/touch.h"
|
||||||
|
#include "hooklib/printer.h"
|
||||||
|
|
||||||
#include "cmhook/cm-dll.h"
|
#include "cmhook/cm-dll.h"
|
||||||
|
|
||||||
@ -21,6 +22,7 @@ struct cm_hook_config {
|
|||||||
struct vfd_config vfd;
|
struct vfd_config vfd;
|
||||||
struct cm_dll_config dll;
|
struct cm_dll_config dll;
|
||||||
struct touch_screen_config touch;
|
struct touch_screen_config touch;
|
||||||
|
struct printer_config printer;
|
||||||
struct unity_config unity;
|
struct unity_config unity;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -56,6 +56,10 @@ static DWORD CALLBACK cm_pre_startup(void)
|
|||||||
touch_screen_hook_init(&cm_hook_cfg.touch, cm_hook_mod);
|
touch_screen_hook_init(&cm_hook_cfg.touch, cm_hook_mod);
|
||||||
serial_hook_init();
|
serial_hook_init();
|
||||||
|
|
||||||
|
/* Hook external DLL APIs */
|
||||||
|
|
||||||
|
printer_hook_init(&cm_hook_cfg.printer, 4, cm_hook_mod);
|
||||||
|
|
||||||
/* Initialize emulation hooks */
|
/* Initialize emulation hooks */
|
||||||
|
|
||||||
hr = platform_hook_init(
|
hr = platform_hook_init(
|
||||||
|
10
dist/cm/segatools.ini
vendored
10
dist/cm/segatools.ini
vendored
@ -50,7 +50,7 @@ enable=1
|
|||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; 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
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
; that subnet must start with 192.168.
|
; that subnet must start with 192.168.
|
||||||
subnet=192.168.100.0
|
subnet=192.168.165.0
|
||||||
|
|
||||||
[gpio]
|
[gpio]
|
||||||
; ALLS DIP switches.
|
; ALLS DIP switches.
|
||||||
@ -73,6 +73,14 @@ enable=0
|
|||||||
; modding frameworks such as BepInEx.
|
; modding frameworks such as BepInEx.
|
||||||
targetAssembly=
|
targetAssembly=
|
||||||
|
|
||||||
|
[printer]
|
||||||
|
; Sinfonia CHC-C330 printer emulation setting.
|
||||||
|
enable=1
|
||||||
|
; Change the printer serial number here.
|
||||||
|
serial_no="5A-A123"
|
||||||
|
; Insert the path to the image output directory here.
|
||||||
|
printerOutPath="DEVICE\print"
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Custom IO settings
|
; Custom IO settings
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
|
1602
hooklib/printer.c
1602
hooklib/printer.c
File diff suppressed because it is too large
Load Diff
@ -14,3 +14,4 @@ struct printer_config {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void printer_hook_init(const struct printer_config *cfg, int rfid_port_no, HINSTANCE self);
|
void printer_hook_init(const struct printer_config *cfg, int rfid_port_no, HINSTANCE self);
|
||||||
|
void printer_hook_insert_hooks(HMODULE target);
|
||||||
|
Loading…
Reference in New Issue
Block a user