Skip to main content

A library to help remap the mods installed on a character onto the skins of the character

Project description

Anime Game Remap (AG Remap)

Previously Known as FixRaidenBoss2

PyPI PyPI - Version PyPI - Version

Pepy Total Downloads Pepy Total Downloads GitHub Downloads (all assets, all releases)

PyPI - Downloads PyPI - Downloads

Documentation Status GitHub Actions Workflow Status GitHub Actions Workflow Status


The Official library to help remap the mods installed on a character onto the skins of the character.


Contributors

Albert Gold (Active Maintainer)
NK (Original Author)

Special Thanks

  • Thank SilentNightSound#7430 for the logic rewrite
  • Thank HazrateGolabi#1364 for combine and make final script

Documentation

https://anime-game-remap.readthedocs.io/en/latest/


Requirements


Optional Requirements

[!NOTE] You do not need to install any of the below dependencies, but you can optionally install them, if you want, for some slightly better performance

C++ Distributables 14.0 or greater or some sort of C Compiler Used for better optimization of classifying what mod belongs to some .ini file



[!WARNING]
Remapping mods is overall a hacky process. Please see a mod's remap grading for the current limitations of remapping a particular mod before posting an issue


[!IMPORTANT] Usually, if the .ini files of your mod are generated by the standard scripts provided by GIMI, then you can skip the following link. The link to the file requirements below is dedicated to mods with custom made .ini files to ensure the library run smoothly on those mods.

File Requirements


VIDEO TUTORIAL AND EXAMPLES:

Quickstart

Individual Mod: https://www.youtube.com/watch?v=29FM0GywcWA
Merged Mods: https://www.youtube.com/watch?v=nEyMYIHdrQM
Mega Merged Mods: https://www.youtube.com/watch?v=08co5ct7zeg

More Features

More examples here


How to Run

  • Choose your pick of which way to run the script:

    • Choice A:   Quickstart! 🟢    (for beginners)
    • Choice B:   CMD WITHOUT a Script 🟡    (recommended if you run by CMD)
    • Choice C:   CMD with a Script 🟡    (the convention that other GIMI scripts follow)
    • Choice D:   API 🟠    (for expert coders)

Choice A: Let's Start ! 🟢

STEP 1:

  • Go to the Latest Release and click on the AGRemap.py link to download the script into your Mod's folder or GIMI's Mod folder.

STEP 2:

  • Double click on the script

STEP 3:

  • Open the game and enjoy it

Choice B: Run on CMD Without a Script 🟡

STEP 1:

  • Install the module onto your computer by opening cmd and type :
python -m pip install -U AnimeGameRemap

then enter

( you can now run the program anywhere without copying a script! )

STEP 2:

  • open cmd in your Mod folder or GIMI's Mod folder and type:
python -m AnimeGameRemap

then enter

STEP 3:

  • Open the game and enjoy it

Choice C: Run on CMD With a Script 🟡

STEP 1:

  • Go to the Latest Release and click on the AGRemap.py link to download the script into your Mod folder or GIMI's Mod folder.

STEP 2:

python AGRemap.py

then enter

STEP 3:

  • Open the game and enjoy it


Choice D: API Usage 🟠

Tool developpers can now include the fix within their code!

API Documentation

For more info about how to use the API, visit the documentation at https://anime-game-remap.readthedocs.io/en/latest/


API Setup


Make sure you first install the module by typing into cmd:

python -m pip install -U AnimeGameRemap

API Examples

See the documentation for more detailed examples on how to use the API.


Below is a preview that gives a feel of using the API


eg. Running the following code under this folder

import AnimeGameRemap as AGR

fixService = AGR.RemapService(keepBackups = False)
fixService.fix()

print("The Raiden Mod is fixed!")

Example Result
===== Types of Mods To Fix =====

- Amber
- AmberCN
- Arlecchino
- Barbara
- BarbaraSummertime
- Ganyu
- GanyuTwilight
- Jean
- JeanCN
- JeanSea
- Keqing
- KeqingOpulent
- Mona
- MonaCN
- Ningguang
- NingguangOrchid
- Raiden
- Rosaria
- RosariaCN
- Shenhe
- ShenheFrostFlower

================================


# Mods\Arlecchino -->
# Mods\Arlecchino --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods\Arlecchino -->
# Mods\Arlecchino --> KeyError: "The section by the name 'glitchedOutResource' does not exist"
# Mods\Arlecchino -->
# Mods\Arlecchino --> Traceback (most recent call last):
# Mods\Arlecchino -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\IniSectionGraph.py", line 248, in getSection
# Mods\Arlecchino -->     ifTemplate = self._allSections[sectionName]
# Mods\Arlecchino --> KeyError: 'glitchedOutResource'
# Mods\Arlecchino -->
# Mods\Arlecchino --> The above exception was the direct cause of the following exception:
# Mods\Arlecchino -->
# Mods\Arlecchino --> Traceback (most recent call last):
# Mods\Arlecchino -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\Mod.py", line 425, in removeFix
# Mods\Arlecchino -->     ini.parse()
# Mods\Arlecchino -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\IniFile.py", line 2264, in parse
# Mods\Arlecchino -->     parser.parse()
# Mods\Arlecchino -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\strategies\iniParsers\GIMIParser.py", line 176, in parse
# Mods\Arlecchino -->     self.resourceCommandsGraph.build(newTargetSections = resourceCommandLst, newAllSections = self._iniFile.sectionIfTemplates)
# Mods\Arlecchino -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\IniSectionGraph.py", line 218, in build
# Mods\Arlecchino -->     self.construct()
# Mods\Arlecchino -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\IniSectionGraph.py", line 307, in construct
# Mods\Arlecchino -->     ifTemplate = self.getSection(sectionName)
# Mods\Arlecchino -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\IniSectionGraph.py", line 251, in getSection
# Mods\Arlecchino -->     raise KeyError(f"The section by the name '{sectionName}' does not exist") from e
# Mods\Arlecchino --> KeyError: "The section by the name 'glitchedOutResource' does not exist"
# Mods\Arlecchino -->
# Mods\Arlecchino --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods\Arlecchino -->
# Mods\Arlecchino --> Removing any previous changes from this script in good_merged.ini
# Mods\Arlecchino -->
# Mods\Arlecchino --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Arlecchino\Arlecchino1\ArlecchinoBossRemapBlend.buf
# Mods\Arlecchino --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Arlecchino\Arlecchino2\ArlecchinoBossRemapBlend.buf
# Mods\Arlecchino -->
# Mods\Arlecchino --> the ini file, bad_merged.ini, has alreaedy encountered an error
# Mods\Arlecchino --> Parsing good_merged.ini...
# Mods\Arlecchino --> Fixing the Blend.buf files for good_merged.ini...
# Mods\Arlecchino --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Arlecchino\Arlecchino1\ArlecchinoBossRemapBlend.buf
# Mods\Arlecchino --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Arlecchino\Arlecchino2\ArlecchinoBossRemapBlend.buf
# Mods\Arlecchino --> Making the fixed ini file for good_merged.ini
# Mods\Arlecchino -->

# Mods\Arlecchino\Arlecchino1 --> Removing any previous changes from this script in DISABLED_arlecchino.ini
# Mods\Arlecchino\Arlecchino1 -->
# Mods\Arlecchino\Arlecchino1 --> Parsing DISABLED_arlecchino.ini...
# Mods\Arlecchino\Arlecchino1 --> Fixing the Blend.buf files for DISABLED_arlecchino.ini...
# Mods\Arlecchino\Arlecchino1 --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Arlecchino\Arlecchino1\ArlecchinoBossRemapBlend.buf
# Mods\Arlecchino\Arlecchino1 --> Making the fixed ini file for DISABLED_arlecchino.ini
# Mods\Arlecchino\Arlecchino1 -->

# Mods\Arlecchino\Arlecchino2 --> Removing any previous changes from this script in DISABLED_arlecchino.ini
# Mods\Arlecchino\Arlecchino2 -->
# Mods\Arlecchino\Arlecchino2 --> Parsing DISABLED_arlecchino.ini...
# Mods\Arlecchino\Arlecchino2 --> Fixing the Blend.buf files for DISABLED_arlecchino.ini...
# Mods\Arlecchino\Arlecchino2 --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Arlecchino\Arlecchino2\ArlecchinoBossRemapBlend.buf
# Mods\Arlecchino\Arlecchino2 --> Making the fixed ini file for DISABLED_arlecchino.ini
# Mods\Arlecchino\Arlecchino2 -->

# Mods\Arlecchino\Ugly --> Removing any previous changes from this script in shawshank redemption.ini
# Mods\Arlecchino\Ugly -->
# Mods\Arlecchino\Ugly --> Parsing shawshank redemption.ini...
# Mods\Arlecchino\Ugly --> Fixing the Blend.buf files for shawshank redemption.ini...
# Mods\Arlecchino\Ugly --> Making the fixed ini file for shawshank redemption.ini
# Mods\Arlecchino\Ugly -->

# Mods\Ayaka\Arlecchino --> Removing any previous changes from this script in arlecchino.ini
# Mods\Ayaka\Arlecchino -->
# Mods\Ayaka\Arlecchino --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ayaka\Arlecchino\arlecchinoArlecchinoBossRemapBlend.buf
# Mods\Ayaka\Arlecchino -->
# Mods\Ayaka\Arlecchino --> Parsing arlecchino.ini...
# Mods\Ayaka\Arlecchino --> Fixing the Blend.buf files for arlecchino.ini...
# Mods\Ayaka\Arlecchino --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ayaka\Arlecchino\arlecchinoArlecchinoBossRemapBlend.buf
# Mods\Ayaka\Arlecchino --> Making the fixed ini file for arlecchino.ini
# Mods\Ayaka\Arlecchino -->

# Mods\Ayaka\Raiden --> Removing any previous changes from this script in raiden.ini
# Mods\Ayaka\Raiden -->
# Mods\Ayaka\Raiden --> Parsing raiden.ini...
# Mods\Ayaka\Raiden --> Fixing the Blend.buf files for raiden.ini...
# Mods\Ayaka\Raiden --> Making the fixed ini file for raiden.ini
# Mods\Ayaka\Raiden -->

# Mods\Ei\Raiden --> Removing any previous changes from this script in tri_merge_core.ini
# Mods\Ei\Raiden -->
# Mods\Ei\Raiden --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\BodyEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\LeftWingEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\RightWingEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden -->
# Mods\Ei\Raiden --> Parsing tri_merge_core.ini...
# Mods\Ei\Raiden --> Fixing the Blend.buf files for tri_merge_core.ini...
# Mods\Ei\Raiden --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\BodyEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\LeftWingEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\RightWingEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden --> Making the fixed ini file for tri_merge_core.ini
# Mods\Ei\Raiden -->

# Mods\Ei\Raiden\leftWing --> Removing any previous changes from this script in left_wing_merge.ini
# Mods\Ei\Raiden\leftWing -->
# Mods\Ei\Raiden\leftWing --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\listeners\heartListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\controllers\heartPumpControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\listeners\rightWingListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\controllers\rightWingControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing -->
# Mods\Ei\Raiden\leftWing --> Parsing left_wing_merge.ini...
# Mods\Ei\Raiden\leftWing --> Fixing the Blend.buf files for left_wing_merge.ini...
# Mods\Ei\Raiden\leftWing --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\listeners\heartListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\controllers\heartPumpControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\LeftWingEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\listeners\rightWingListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\controllers\rightWingControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\leftWing --> Making the fixed ini file for left_wing_merge.ini
# Mods\Ei\Raiden\leftWing -->

# Mods\Ei\Raiden\rightWing --> Removing any previous changes from this script in right_wing_merge.ini
# Mods\Ei\Raiden\rightWing -->
# Mods\Ei\Raiden\rightWing --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\listeners\leftWingListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\rightWing --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\controllers\leftWingControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\rightWing -->
# Mods\Ei\Raiden\rightWing --> Parsing right_wing_merge.ini...
# Mods\Ei\Raiden\rightWing --> Fixing the Blend.buf files for right_wing_merge.ini...
# Mods\Ei\Raiden\rightWing --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\listeners\heartListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\rightWing --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\controllers\heartPumpControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\rightWing --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\listeners\leftWingListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\rightWing --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\controllers\leftWingControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\rightWing --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\RightWingEntityRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\rightWing --> Making the fixed ini file for right_wing_merge.ini
# Mods\Ei\Raiden\rightWing -->

# Mods\Ei\Raiden\Body\Center --> Removing any previous changes from this script in heart.ini
# Mods\Ei\Raiden\Body\Center -->
# Mods\Ei\Raiden\Body\Center --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\Body\whoopsIReferencedTheWrongThingRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\Body\Center --> No Previous RemapBlend.buf found at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Makoto\MakotoRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\Body\Center -->
# Mods\Ei\Raiden\Body\Center --> Parsing heart.ini...
# Mods\Ei\Raiden\Body\Center --> Fixing the Blend.buf files for heart.ini...
# Mods\Ei\Raiden\Body\Center -->
# Mods\Ei\Raiden\Body\Center --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods\Ei\Raiden\Body\Center -->
# Mods\Ei\Raiden\Body\Center --> FileNotFoundError: [Errno 2] No such file or directory: 'Anime-Game-Remap\\Testing\\Integration Tester\\IntegrationTester\\Tests\\MixedModsTests\\inputs\\Mods\\Ei\\Raiden\\Body\\whoopsIReferencedTheWrongThing.buf'
# Mods\Ei\Raiden\Body\Center -->
# Mods\Ei\Raiden\Body\Center --> Traceback (most recent call last):
# Mods\Ei\Raiden\Body\Center -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\Mod.py", line 604, in correctBlend
# Mods\Ei\Raiden\Body\Center -->     correctedBlendPath = self.blendCorrection(origFullPath, modType, modName, fixedBlendFile = fixedFullPath, version = self.version)
# Mods\Ei\Raiden\Body\Center -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\Mod.py", line 519, in blendCorrection
# Mods\Ei\Raiden\Body\Center -->     blend = BlendFile(blendFile)
# Mods\Ei\Raiden\Body\Center -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\BlendFile.py", line 63, in __init__
# Mods\Ei\Raiden\Body\Center -->     self._data = self.read()
# Mods\Ei\Raiden\Body\Center -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\BlendFile.py", line 75, in read
# Mods\Ei\Raiden\Body\Center -->     return self.readFile(self.src)
# Mods\Ei\Raiden\Body\Center -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\model\BlendFile.py", line 79, in readFile
# Mods\Ei\Raiden\Body\Center -->     result = FileService.readBinary(blendSrc)
# Mods\Ei\Raiden\Body\Center -->   File "path\to\windows\computer\user\AppData\Local\Programs\Python\Python39\lib\site-packages\FixRaidenBoss2\tools\files\FileService.py", line 511, in readBinary
# Mods\Ei\Raiden\Body\Center -->     with open(src, "rb") as f:
# Mods\Ei\Raiden\Body\Center --> FileNotFoundError: [Errno 2] No such file or directory: 'Anime-Game-Remap\\Testing\\Integration Tester\\IntegrationTester\\Tests\\MixedModsTests\\inputs\\Mods\\Ei\\Raiden\\Body\\whoopsIReferencedTheWrongThing.buf'
# Mods\Ei\Raiden\Body\Center -->
# Mods\Ei\Raiden\Body\Center --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods\Ei\Raiden\Body\Center -->
# Mods\Ei\Raiden\Body\Center --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\listeners\leftWingListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\Body\Center --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\leftWing\controllers\leftWingControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\Body\Center --> Blend file correction done at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Makoto\MakotoRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\Body\Center --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\listeners\rightWingListenerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\Body\Center --> Blend file has already been corrected at Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Ei\Raiden\rightWing\controllers\rightWingControllerRaidenBossRemapBlend.buf
# Mods\Ei\Raiden\Body\Center --> Making the fixed ini file for heart.ini
# Mods\Ei\Raiden\Body\Center -->

# Mods -->
# Mods --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods -->
# Mods --> WARNING: The following *.ini files were skipped due to warnings (see log above):
# Mods -->
# Mods --> - Anime-Game-Remap\Testing\Integration Tester\IntegrationTester\Tests\MixedModsTests\inputs\Mods\Arlecchino\bad_merged.ini:
# Mods -->      --- KeyError ---
# Mods -->      "The section by the name 'glitchedOutResource' does not exist"
# Mods -->
# Mods -->
# Mods --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods -->
# Mods -->
# Mods -->
# Mods --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods -->
# Mods --> WARNING: The following Blend.buf files were skipped due to warnings (see log above):
# Mods -->
# Mods --> ===== Mod: Mods\Ei\Raiden\Body\Center =====
# Mods -->
# Mods --> - Ei\Raiden\Body\whoopsIReferencedTheWrongThingRaidenBossRemapBlend.buf:
# Mods -->      --- FileNotFoundError ---
# Mods -->      [Errno 2] No such file or directory: 'Anime-Game-Remap\\Testing\\Integration Tester\\IntegrationTester\\Tests\\MixedModsTests\\inputs\\Mods\\Ei\\Raiden\\Body\\whoopsIReferencedTheWrongThing.buf'
# Mods -->
# Mods --> ===========================================
# Mods -->
# Mods --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Mods -->
# Mods -->
# Mods -->
# Mods --> ========== Summary ==========
# Mods -->
# Mods --> - Out of 10 found mods, fixed 10 mods and skipped 0 mods
# Mods --> - Out of the 11 *.ini files within the found mods, fixed 10 *.ini files and skipped 1 *.ini files
# Mods --> - Out of the 14 Blend.buf files within the found mods, fixed 13 Blend.buf files and skipped 1 Blend.buf files
# Mods --> - Removed fix from up to 10 *.ini files
# Mods -->
# Mods --> =============================
# Mods -->


Command Options

Options Description
-h, --help show this help message and exit
-s str, --src str The starting path to run this fix. If this option is not specified, then will run the fix from the current directory.
-v str, --version str The game version we want the fix to be compatible with. If this option is not specified, then will use the latest game version.
-d, --deleteBackup deletes backup copies of the original .ini files
-f, --fixOnly only fixes the mod without cleaning any previous runs of the script
-u, --undo Undo the previous runs of the script
-ho, --hideOriginal Show only the mod on the remapped character and do not show the mod on the original character
-l str, --log str The folder location to log the printed out text into a seperate .txt file. If this option is not specified, then will not log the printed out text.
-a, --all Parses all *.ini files that the program encounters. This option supersedes the --types option

For *.ini file where a mod cannot be identified, usually, you would also need to specify what particular mod the *.ini file defaults to using the --defaultType option.
Otherwise, you will be defaulted to fixing 'raiden' mods.
-dt str, --defaultType str The default mod type to use if the *.ini file belongs to some unknown mod.

- If --forceType is set to True, this option has not effect
- If the --all is set to True and no values are specified for this option, the default argument for this option is set to 'raiden'
- Otherwise, this option has not effect and any unknown mods will be skipped

See below for the different names/aliases of the supported types of mods.
-ft str, --forceType str Forcibly assumes the mod type for all *.ini file parsed.

This option supersedes the --types option and the --all option.

See below for the different names/aliases of the supported types of mods.
-t str, --types str Parses *.ini files that the program encounters for only specific types of mods. If the --all option has been specified, this option has no effect.
By default, if this option is not specified, will parse the *.ini files for all the supported types of mods.

Please specify the types of mods using the the mod type's name or alias, then seperate each name/alias with a comma(,)
      eg. raiden,arlecchino,ayaya
-rt str, --remappedTypes str From all the mods to fix, specified by the --types option, will specifically remap those mods to the mods specified by this option.
For a mod specified by the --types option, if none of its corresponding remapped mods are specified by this option, then the mod specified by the --types option will be remapped to all its corresponding mods.

-------------------
eg.
If this program was ran with the following options:
--types kequeen,jean
--remappedTypes jeanSea

the program will do the following remap:
keqing --> keqingOpulent
Jean --> JeanSea

Note that Jean will not remap to JeanCN
-------------------

By default, if this option is not specified, will remap all the mods specified in --types to their corresponding remapped mods.

Please specify the types of mods using the the mod type's name or alias, then seperate each name/alias with a comma(,)
eg. raiden,arlecchino,ayaya

See below for the different names/aliases of the supported types of mods.
-dl str, --download str The download mode to handle file downloads need. By default, HardTexDriven Download mode is used. Please visit DownloadModes for details on the available download modes
-p str, --proxy str The link to the proxy server for those whose internet access must go through a proxy. The software will make all internet network requests through this proxy

Mod Types

Below are the supported types of mods

[!TIP] Before parsing the regexes below, the text is normalized by being converted to all lowercase


Name Aliases Description
Amber BaronBunny, ColleisBestie check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(amber)((?!cn).)*\]
AmberCN BaronBunnyCN, ColleisBestieCN check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(ambercn).*\]
Ayaka Ayaya, NewArchonOfEternity, Yandere check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(ayaka)((?!(springbloom)).)*\]
AyakaSpringBloom AyakaMusketeer, AyayaFontaine, AyayaMusketeer, FontaineAyaya, FontaineYandere, MusketeerAyaka, NewArchonOfEternityFontaine, NewFontaineArchonOfEternity, YandereFontaine check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(ayakaspringbloom).*\]
Arlecchino Father, Harlequin, Knave, Perrie, Peruere check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(arlecchino).*\]
Barbara Healer, Idol check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(barbara)((?!summertime).)*\]
BarabaraSummertime BarbaraBikini, HealerSummertime, IdolSummertime check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(barbarasummertime).*\]
CherryHuTao 77thDirectoroftheWangshengFuneralParlorCherry, 77thDirectoroftheWangshengFuneralParlorLanternRite, Cherry77thDirectoroftheWangshengFuneralParlor, CherryQiqiKidnapper, HutaoCherry, HutaoLanternRite, HutaoSnowLaden, LanternRite77thDirectoroftheWangshengFuneralParlor, LanternRiteHutao, LanternRiteQiqiKidnapper, QiqiKidnapperCherry, QiqiKidnapperLanternRite, SnowLadenHutao check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(cherryhutao|hutaocherry).*\]
Diluc AngelShareOwner, DarkNightBlaze, DawnWineryMaster, KaeyasBrother check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(diluc)((?!\flamme).)*\]
DilucFlamme DarkNightHero, RedDeadOfTheNight check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(dilucflamme).*\]
Fischl FischlvonLuftschlossNarfidort, 8thGraderSyndrome, Amy, Chunibyo, Delusional, MeinFraulein, OzsMiss, PrincessofCondemnation, PrinzessinderVerurteilung, TheCondemedPrincess check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(fischl)((?!highness).)*\]
FischlHighness ImmernachtreichPrincess, OzsPrincess, PrincessAmy, PrincessFischlvonLuftschlossNarfidort, PrincessoftheEverlastingNight, Prinzessin, PrinzessinFischlvonLuftschlossNarfidort, PrinzessinderImmernachtreich, RealPrinzessinderVerurteilung check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(fischlhighness).*\]
Ganyu Cocogoat check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(ganyu)((?!(twilight)).)*\]
GanyuTwilight CocogoatLanternRite, CocogoatTwilight, GanyuLanternRite, LanternRiteCocogoat, LanternRiteGanyu check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(ganyutwilight).*\]
HuTao 77thDirectoroftheWangshengFuneralParlor, QiqiKidnapper check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride((?!cherry).)*(hutao)((?!cherry).)*\]
Jean ActingGrandMaster, KleesBabySitter check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(jean)((?!(cn|sea)).)*\]
JeanCN ActingGrandMasterCN, KleesBabySitterCN check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(jeancn)((?!sea).)*\]
JeanSea ActingGrandMasterSea, KleesBabySitterSea check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(jeansea)((?!cn).)*\]
Keqing Kequeen, MoraxSimp, ZhongliSimp check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(keqing)((?!(opulent)).)*\]
Kaeya DilucsBrother, CavalryCaptain check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(kaeya)((?!(sailwind)).)*\]
KaeyaSailwind DilucsBrotherSailwind, CavalryCaptainSailwind, TheftKaeya, TheftDilucsBrother, TheftCavalryCaptain, KaeyaTheft, DilucsBrotherTheft, CavalryCaptainTheft check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(kaeyasailwind).*\]
KeqingOpulent CuterKeqing, CuterKequeen, KeqingLaternRite, KequeenLanternRite, KequeenOpulent, LanternRiteKeqing, LanternRiteKequeen, LaternRiteMoraxSimp, LaternRiteZhongliSimp, MoraxSimpLaternRite, MoraxSimpOpulent, ZhongliSimpLaternRite, ZhongliSimpOpulent check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(keqingopulent).*\]
Kirara CatBox, KonomiyaExpress, Nekomata check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(kirara)((?!boots).)*\]
KiraraBoots CatBoxWithBoots, KonomiyaExpressInBoots, NekomataInBoots, PussInBoots check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(kiraraboots).*\]
Klee DestroyerofWorlds, DodocoBuddy, SparkKnight check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(klee)((?!blossomingstarlight).)*\]
KleeBlossomingStarlight DodocoLittleWitchBuddy, FlandreScarlet, MagicDestroyerofWorlds, RedVelvetMage check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(kleeblossomingstarlight).*\]
Lisa CutieLibrarian check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(lisa)((?!student).)*\]
LisaStudent LisaSumeru, SumeruLisa, AkademiyaLisa, LisaAkademiya check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(lisastudent).*\]
Mona BigHat, NoMora check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(mona)((?!(cn)).)*\]
MonaCN BigHatCN, NoMoraCN check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(monacn).*\]
Nilou BloomGirl, Dancer, Morgiana check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(nilou)((?!(breeze)).)*\]
NilouBreeze BloomGirlBreeze, BloomGirlFairy, DancerBreeze, DancerFairy, FairyBloomGirl, FairyDancer, FairyMorgiana, FairyNilou, ForestFairy, MorgianaBreeze, MorgianaFairy, NilouFairy check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(niloubreeze).*\]
Ningguang GeoMommy, SugarMommy check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(ningguang)((?!(orchid)).)*\]
NingguangOrchid GeoMommyLaternRite, GeoMommyOrchid, LanternRiteNingguang, LanternRiteSugarMommy, LaternRiteGeoMommy, NingguangLanternRite, SugarMommyLanternRite, SugarMommyOrchid check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(ningguangorchid).*\]
Raiden Cryden, CrydenShogun, Ei, RaidenEi, RaidenShogun, RaidenShotgun, Shogun, Shotgun, SmolEi check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(raiden|shogun).*\]
Rosaria GothGirl check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(rosaria)((?!(cn)).)*\]
RosariaCN GothGirlCN check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(rosariacn).*\]
Shenhe RedRopes, YelansBestie check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(shenhe)((?!frostflower).)*\]
ShenheFrostFlower LanternRiteRedRopes, LanternRiteShenhe, LanternRiteYelansBestie, RedRopesFrostFlower, RedRopesLanternRite, ShenheLanternRite, YelansBestieFrostFlower, YelansBestieLanternRite check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(shenhefrostflower).*\]
Xiangling CookingFanatic, HeadChefoftheWanminRestaurant, ChefMaosDaughter, GuobasBuddy check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(xiangling)((?!cheer|newyear).)*\]
XianglingCheer XianglingLanternRite, LanternRiteXiangling, CookingFanaticLanternRite, HeadChefoftheWanminRestaurantLanternRite, ChefMaosDaughterLanternRite, GuobasBuddyLanternRite, LanternRiteCookingFanatic, LanternRiteHeadChefoftheWanminRestaurant, LanternRiteChefMaosDaughter, LanternRiteGuobasBuddy check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(xiangling(cheer|newyear)).*\]
Xingqiu Bookworm, ChongyunsBestie, GuhuaGeek, SecondSonofTheFeiyunCommerceGuild check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(xingqiu)((?!bamboo).)*\]
XingqiuBamboo BookwormBamboo, BookwormLanternRite, ChongyunsBestieBamboo, ChongyunsBestieLanternRite, GuhuaGeekBamboo, GuhuaGeekLanternRite, LanternRiteBookworm, LanternRiteChongyunsBestie, LanternRiteGuhuaGeek, LanternRiteSecondSonofTheFeiyunCommerceGuild, LanternRiteXingqiu, SecondSonofTheFeiyunCommerceGuildBamboo, SecondSonofTheFeiyunCommerceGuildLanternRite, XingqiuLanternRite check if the .ini file contains a section matching the regex, ^\s*\[\s*textureoverride.*(xingqiubamboo).*\]

Download Modes

Below are the different download modes for the software. These modes are used when specifying the -dl option


Name Description
Disabled Will not perform any file downloads for any mods
Always Will always perform file downloads for every mod, if possible
AlwaysTex Only download textures or .ib files
AlwaysBuf Only download .buf files, if possible
Tex Only download textures or .ib files if there is a specified branch in the texture sections that does not reference the files
Buf Only download .buf files if there is a specified branch in the .vb sections that does not reference the files
HardTexDriven Will perform file downloads based off the following heuristics:

1. Download textures or .ib files if there is a specified branch in the texture sections that does not reference the files
2. If any texture/.ib downloads needed to be performed, then download .buf files at specified branches with missing resources
HardTexDrivenAll Will perform file downloads based off the following heuristics:

1. Download textures or .ib files if there is a specified branch in the texture sections that does not reference the files
2. If any texture/.ib downloads needed to be performed, then download model .buf files at specified/unspecified branch cases with missing resources
SoftTexDriven Will perform file downloads based off the following heuristics:

1. Download textures or .ib files if there is a specified branch in the texture sections_ that does not reference the files
2. Download .buf files if either texture/.ib downloads needed to be performed or there are specified branch cases with missing resources
SoftTexDrivenAll Will perform file downloads based off the following heuristics:

1. Download textures or .ib files if there is a specified branch in the texture sections_ that does not reference the files
2. Download .buf files if either texture/.ib downloads needed to be performed or there are specified/unspecified branch cases with missing resources

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fixraidenboss2-4.6.4.tar.gz (247.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fixraidenboss2-4.6.4-py3-none-any.whl (366.4 kB view details)

Uploaded Python 3

File details

Details for the file fixraidenboss2-4.6.4.tar.gz.

File metadata

  • Download URL: fixraidenboss2-4.6.4.tar.gz
  • Upload date:
  • Size: 247.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fixraidenboss2-4.6.4.tar.gz
Algorithm Hash digest
SHA256 04a4cf89ee36c05277d609f845d5ac0cc4ec448b79f347e73a833eb107339d6d
MD5 65fb1de95e0cbcb96f7488e8ef8554ba
BLAKE2b-256 c53a1cc1d0274b52cbc42a95d54f0a39a0dd84508d168d09c88c38bc035e3e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixraidenboss2-4.6.4.tar.gz:

Publisher: python-publish.yml on nhok0169/Anime-Game-Remap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fixraidenboss2-4.6.4-py3-none-any.whl.

File metadata

  • Download URL: fixraidenboss2-4.6.4-py3-none-any.whl
  • Upload date:
  • Size: 366.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fixraidenboss2-4.6.4-py3-none-any.whl
Algorithm Hash digest
SHA256 17459d994e545f176e8933c486fb0cc7ef9c93a8108fae36a22ac2939064a467
MD5 746db1f6bd5f799d12b1170132679bd2
BLAKE2b-256 3722c68cd7f86acd54b3c5c6b659d0502f138f3e467aa51121748b669be16670

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixraidenboss2-4.6.4-py3-none-any.whl:

Publisher: python-publish.yml on nhok0169/Anime-Game-Remap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page