- In Ghidra's Project Tool, Go to Tools -> Import Tool..., select
mistyCodeBrowser.tool - Dragging file onto the new
CodeBrowser_1in ToolChest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # SPDX-License-Identifier: MIT | |
| # FDK engine mdl format reversing. | |
| # Applicable games; | |
| # ED9_1, ED9_2, ED9_3 / Kuro no Kiseki 1 and 2; Kai no Kiseki / Trails into Daybreak 1 and 2 | |
| # Ys X | |
| # ED6 remake / Sora no Kiseki the 1st / Trails in the SKy First Chapter | |
| # For researching the file format structure. | |
| # Doesn't do anything useful for the end user right now. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Remap Ctrl&Meta to platform Ctrl key (i.e. Command on macOS, Ctrl on Win/Linux) | |
| #@author NyaMisty | |
| #@category UIHelper | |
| #@keybinding Alt-C | |
| #@menupath Edit.RemapCtrl | |
| #@toolbar RemapCtrl | |
| from javax.swing import KeyStroke | |
| from java.awt.event import InputEvent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: MIT | |
| # Falcom YamaNeko engine it3 format reversing. | |
| # For researching the file format structure. | |
| # Doesn't do anything useful for the end user right now. | |
| # For something useful for the end user, see https://github.com/TwnKey/YsVIII_model_dump or https://github.com/eArmada8/Ys8_IT3 | |
| # This script is a work in progress and does not output anything useful right now | |
| # See also: https://ghpages.uyjulian.pw/falcom-dumps/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: MIT | |
| # Falcom YamaNeko engine on PSP ISO format extraction. | |
| # Uses the information contained in PSP_GAME/USRDIR/data.lst | |
| # Also recursively unpacks cclm archive/group files | |
| # See also: https://github.com/Trails-Research-Group | |
| import struct | |
| import io |
OlderNewer