tge-was-taken / Atlus-Script-Tools

A set of tools for working with scripts used in various game developed by Atlus.
GNU General Public License v3.0
65 stars 40 forks source link

Add P3P & P4G Simplified Chinese / Japanese / Korean charsets .tsv supports #84

Open EditorKos opened 3 months ago

EditorKos commented 3 months ago

Since there's no Simplified Chinese charset tsv files for P3P & P4G in the tool yet, using AtlusScriptCompiler to extract stuff from .bf files will result in errors. Thankfully P3P has the same font mapping table with P4G (only one word character different lol), so I decided to create both ones to help anyone have the same problem. Maybe @tge-was-taken can update the release with these.

Newest update: Also made ones for P3P & P4G Japanese / Korean charsets, since most of the current ones are so similar but not quite the same as P3P and P4G, so I decided to make them. Now the download link will contain all 3 languages charsets.

P3P+P4G_(CHS+JP+KR)_tsv.zip

For now if anyone wants to use it, put the tsv. files in "Charsets" folder, then use the codes below in cmd to decompile & compile.

P3P: AtlusScriptCompiler.exe (filename).bf -Decompile -Library P3P -Encoding P3P_CHS AtlusScriptCompiler.exe (filename).bf -Decompile -Library P3P -Encoding P3P_JP AtlusScriptCompiler.exe (filename).bf -Decompile -Library P3P -Encoding P3P_Korean Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P3P -Encoding P3P_CHS Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P3P -Encoding P3P_JP Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P3P -Encoding P3P_Korean

P4G: AtlusScriptCompiler.exe (filename).bf -Decompile -Library P4G -Encoding P4G_CHS AtlusScriptCompiler.exe (filename).bf -Decompile -Library P4G -Encoding P4G_JP AtlusScriptCompiler.exe (filename).bf -Decompile -Library P4G -Encoding P4G_Korean Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P4G -Encoding P4G_CHS Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P4G -Encoding P4G_JP Atlusscriptcompiler.exe (filename).bf.flow -Compile -OutFormat V1 -Library P4G -Encoding P4G_Korean

Also I noticed that P5_Korean.tsv in Here isn't included in latest release zip.