mirror of
https://github.com/SapphireServer/FFXIVOpcodes.git
synced 2026-07-23 23:05:25 +02:00
A shared effort to maintain FFXIV opcode mappings
- Python 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
|
||
| jsonParser.py | ||
| opcodes.json | ||
| README.md | ||
| requirements.txt | ||
| schema-diff.py | ||
| xiv-opcode-parser.py | ||
FFXIV Opcodes
A shared effort to maintain FFXIV opcode mappings
Automated Opcode Correction
This repo contains some (wip) tooling to automate the opcode updating process. How it works and more detailed instructions can be found on the blog post.
Relevant files:
xiv-opcode-parser.py- IDA script to output a schema generated from the client exeschema-diff.py- Python script which takes 2 schemas and attempts to resolve opcode changes automagically.
Proposed Format for Opcode Lists
[
{
"clientChannelName":
[
{ "someName": { "opCode": 64, "version": 5110 } },
{ "someOtherName": { "opCode": 65, "version": 5110 } }
]
},
{
"serverChannelName":
[
{ "someName": { "opCode": 64, "version": 5110 } },
{ "someOtherName": { "opCode": 65, "version": 5110 } }
]
}
]