Allows you to use SmartCard readers (specifically the acr122u) with segatools
Go to file
KIT! 561d25fc1f partial : fixed some dumb mistakes from my previous commit
Forgot a few characters here and there.

Test fully working with FeliCa.
Mifare tags do get recognized too, just need to write the logic to read block 2 now !
2024-02-28 13:02:31 +01:00
src partial : fixed some dumb mistakes from my previous commit 2024-02-28 13:02:31 +01:00
.gitignore Added ACR122U support 2024-02-28 12:09:57 +01:00
build64.bat Added ability to insert cards from files 2024-02-28 12:09:57 +01:00
meson.build Added ability to insert cards from files 2024-02-28 12:09:57 +01:00
readme.md partial : Cleaned code a bit, prepping for reading Mifare tags 2024-02-28 12:31:50 +01:00

AimeIO CardReader

This allows you to a smartcard reader (specifically the acr122u) with segatools

Acknowledgments

This is a plugin destined to be used with Dniel97's segatools fork (but should work on others too).

SmartCard implementation taken from spicetools

Initial project made by nat

All the logic for reading cards from a file has been taken from CrazyRedMachine's RedBoard aimeio.

Usage

To use it with a game, copy aimeio.dll to your segatools folder and add the following to your segatools.ini:

[aimeio]
path=aimeio.dll    ;Path to aimeio.dll
scan=0x0D          ;Sets the key which will be used to insert a card in game. The default is 'Return'


;Everything below this line is optional.

;readerOptional=1  ;Make reader optional, so that you can still use the keyboard
;readerName=""     ;Force using a reader by setting it's name (in case multiple readers are detected)
;aimePath=""       ;Manually specify an aime.txt file
;felicaPath=""     ;Manually specify a felica.txt file
;debug=0           ;Display function calls

Scanning cards

If you scan a newer AIC-based Aime, its FeliCa IDm will be provided to the game. The game will not see the correct "access code," but the IDm should be unique to each card so that particular card can still track your plays.

Inserting cards

By pressing the key you have set in segatools.ini and holding it for a few moments, you will insert a card set in either aime.txt or felica.txt

You can have multiple cards in those files!
By holding a number from 0 to 9 on your keypad, and then holding enter, you can choose what card to insert.

For example...

aime.txt
---

1a7f3e925cb866d45a3b
a5d04d668bc529e35aaa

By only pressing the insert key, you will insert card0, "1a7f3e925cb866d45a3b".
If you hold 1 on your numpad and press the insert key, card1, "a5d04d668bc529e35aaa" will be inserted !

This works for up to 10 cards.

Build

To build this, you'll need two things :

Once you've edited your build64.bat file to point to your local installation of the VS2022 build tools, run build64.bat and the output will be located in bin/aime.dll.