1
0
mirror of synced 2024-09-23 19:08:21 +02:00
Mods for Taiko no Tatsujin: The Drum Master
Go to file
2022-02-11 18:36:39 +11:00
TakoTako Moved TJAConvert and TakoTako.Common to their own folders at the root directory. Regenerated .idea files 2022-02-10 19:17:46 +11:00
TakoTako.Common Moved TJAConvert and TakoTako.Common to their own folders at the root directory. Regenerated .idea files 2022-02-10 19:17:46 +11:00
TJAConvert tja2bin doesn't like floats for it's BRANCHSTART command 2022-02-11 18:36:39 +11:00
.gitignore Move uniqueId from CustomSong to SongInstance 2022-02-08 13:28:34 +01:00
NuGet.Config New project setup, add solution, use bepinex nuget 2022-02-07 12:27:55 +01:00
readme-image-0.png Added TJA support + other things 2022-02-07 21:46:59 +11:00
readme-image-1.png Added TJA support + other things 2022-02-07 21:46:59 +11:00
readme-image-2.png Updated readme 2022-02-07 22:05:32 +11:00
README.md Updated readme 2022-02-07 22:05:32 +11:00
TakoTako.sln Moved TJAConvert and TakoTako.Common to their own folders at the root directory. Regenerated .idea files 2022-02-10 19:17:46 +11:00
TakoTako.sln.DotSettings Moved TJAConvert and TakoTako.Common to their own folders at the root directory. Regenerated .idea files 2022-02-10 19:17:46 +11:00

TakoTako

This is a mod for Taiko no Tatsujin: The Drum Master
Currently has the features:

  • Fixes sign in screen for version 1.1.0.0
  • Skips splash screen
  • Disable fullscreen on application focus (worked when in windowed mode)
  • Allows custom official tracks or TJAs to be loaded into the game
  • Override songs names to a certain language than the default one

Installation

To install mods is a bit tricky this time around as we have to take a few more steps to be able to inject files into the game. Swigs did a quick video on it here but if you want to follow along in text read on ahead.

  1. Become an Xbox Insider, to do this open the Xbox Insider Hub which you can get from the Microsoft Store if you don't already have it installed. Go to Previews > Windows Gaming, and join it. There should be an update ready for you for the Xbox app, so go ahead and update and relaunch it
  2. In the Xbox App go to Settings > General and enable Use advanced installation and management features. Feel free to change your installation directory
  3. If the game is already installed uninstall it, and reinstall it
  4. Download BepInEx BepInEx_x64_XXXXX.zip, as of writing the latest version is 5.4.18. This is a mod to patch Unity Games
  5. Go to where you installed your game, for example C:\XboxGames\T Tablet\Content
  6. Paste all of the files from the .zip from step 5 into this folder (It will look something like this)
  7. We now need to give special permissions to the BepInEx folder. To do this, right click it, click on Properties, go to the Security tab, Click on the Advanced button, Click Change at the top, Under Enter the object name to select field type in your username and click Check Names. If the text doesn't become underscored that means you have entered the incorrect username. Then press Ok on that window to dismiss it. Going back to the Advanced Security Settings Window tick Replace owner on subcontainers and objects then finally press Apply.
  8. Run Taiko no Tatusjin The Drum Master once, then close it. This will generate some files
  9. Look in your game's folder again, new files will have been generated under .\BepInEx\plugins
  10. Download my patch
  11. Extract the com.fluto.takotako folder from the download in step 10 and paste it into the .\BepInEx\plugins folder
  12. And you're done!

Configuration

After installing the mod, and running the game it will generate files in .\BepInEx\config. Open com.fluto.takotako.cfg to configure this mod Here you can enable each individual feature or redirect where custom songs will be loaded from

Custom Songs

With this feature you can inject custom songs into the game! To begin place custom songs in SongDirectory specified in your configuration file, by default this is %userprofile%/Documents/TakoTako/customSongs Each song must have it's own directory with a unique name. These songs can be nested within folders.

The folder must have this structure:

Offical Songs
-- [MUSIC_ID]
---- data.json (this contains the metadata for the track)
---- song_[MUSIC_ID].bin (this is a raw .acb music file, this is a CRIWARE format)
---- [MUSIC_ID]_e.bin (all of these items below are unencrypted Fumens, which formats how the song is played)
---- [MUSIC_ID]_e_1.bin
---- [MUSIC_ID]_e_2.bin
---- [MUSIC_ID]_h.bin
---- [MUSIC_ID]_h_1.bin
---- [MUSIC_ID]_h_2.bin
---- [MUSIC_ID]_m.bin
---- [MUSIC_ID]_m_1.bin
---- [MUSIC_ID]_m_2.bin
---- [MUSIC_ID]_n.bin
---- [MUSIC_ID]_n_1.bin
---- [MUSIC_ID]_n_2.bin
---- [MUSIC_ID]_x.bin
---- [MUSIC_ID]_x_1.bin
---- [MUSIC_ID]_x_2.bin

TJA
-- [MUSIC_ID]
---- [MUSIC_ID].tja
---- song_[MUSIC_ID].ogg or .wav

Genre override
e.g. this will override the songs to pop
-- 01 Pop
---- [MUSIC_ID]
------ [MUSIC_ID].tja
------ song_[MUSIC_ID].ogg or .wav
data.json Format
{
  // Music Info
  int uniqueId; (This has to be a unique int, the mod will handle clashes, but it's best to generate a random int)
  string id; (This is the MUSIC_ID, this also has to be unique, because it's the same as the folder structure this file is in)
  int order; (default sorting order)
  int genreNo; (Genre enum [Pops 0, Anime 1, Vocalo 2, Variety 3, Children 4, Classic 5, Game 6, Namco 7])
  bool branchEasy; (does this difficulty have a branch?, this will need to align with the fumen files)
  bool branchNormal; (does this difficulty have a branch?, this will need to align with the fumen files)
  bool branchHard; (does this difficulty have a branch?, this will need to align with the fumen files)
  bool branchMania; (does this difficulty have a branch?, this will need to align with the fumen files)
  bool branchUra; (does this difficulty have a branch?, this will need to align with the fumen files)
  int starEasy; (star difficulty)
  int starNormal; (star difficulty)
  int starHard; (star difficulty)
  int starMania; (star difficulty)
  int starUra; (star difficulty, set to 0 for unused)
  int shinutiEasy; 
  int shinutiNormal;
  int shinutiHard;
  int shinutiMania;
  int shinutiUra;
  int shinutiEasyDuet;
  int shinutiNormalDuet;
  int shinutiHardDuet;
  int shinutiManiaDuet;
  int shinutiUraDuet;
  int scoreEasy; 
  int scoreNormal;
  int scoreHard;
  int scoreMania;
  int scoreUra;

  bool areFilesGZipped; (are the music and fumen files gzipped? this saves file space and is done automatically when converting TJAs)

  // Song Info
  int previewPos;
  int fumenOffsetPos;
  
  // Text Info
  TextEntry songName; (Song Title - e.g. A Cruel Angel's Thesis)
  
  TextEntry songSubtitle; (Origin of the song - e.g. From \" Neon Genesis EVANGELION \")
  
  TextEntry songDetail; (Extra details for the track, sometimes used to say it's Japanese name - e.g. 残酷な天使のテーゼ)
}

TextEntry {
  
    string text;
    int font; (0 == Japanese, 1 == English, 2 == Traditional Chinese, 3 == Simplified Chinese, 4 == Korean)

    // Langauge overrides
    string jpText; (langauge override for 日本語 text)
    int jpFont; (langauge override for 日本語 text)
    string enText; (langauge override for English text)
    int enFont; (langauge override for English text)
    string frText; (langauge override for Français text)
    int frFont; (langauge override for Français text)
    string itText; (langauge override for Italiano text)
    int itFont; (langauge override for Italiano text)
    string deText; (langauge override for Deutsch text)
    int deFont; (langauge override for Deutsch text)
    string esText; (langauge override for Español text)
    int esFont; (langauge override for Español text)
    string tcText; (langauge override for 繁體中文 text)
    int tcFont; (langauge override for 繁體中文 text)
    string scText; (langauge override for 简体中文 text)
    int scFont; (langauge override for 简体中文 text)
    string krText; (langauge override for 영어 text)
    int krFont; (langauge override for 영어 text)
}

Supported Versions

Supported Versions

- 1.1.0.0

- 1.2.2.0


Contributers

(to add!)


Credits

  • SuperSonicAudio
  • VGAudio
  • Pulsar#5356 for the TJA2BIN.exe