├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── ZeroUndub.sln ├── ZeroUndub ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── ZeroUndub.csproj ├── main.ico └── main.png ├── ZeroUndubProcess ├── GameText │ ├── IntroSplashScreen.cs │ ├── SubtitleFile.cs │ └── TextUtils.cs ├── InfoReporter.cs ├── Iso │ ├── ReaderIsoHandler.cs │ └── WriterIsoHandler.cs ├── Options.cs ├── Ps2Constants.cs ├── Pss │ ├── ArrayAsStream.cs │ ├── PssAudioHandler.cs │ ├── PssConstants.cs │ └── PssInfo.cs ├── SubtitleHandler.cs ├── ZeroFile.cs ├── ZeroFileImporter.cs ├── ZeroUndubProcess.csproj └── transcribe.json └── docs ├── background.png ├── introimage.png ├── models.gif └── splashscreen.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [wagrenier] 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/README.md -------------------------------------------------------------------------------- /ZeroUndub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub.sln -------------------------------------------------------------------------------- /ZeroUndub/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/App.xaml -------------------------------------------------------------------------------- /ZeroUndub/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/App.xaml.cs -------------------------------------------------------------------------------- /ZeroUndub/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/AssemblyInfo.cs -------------------------------------------------------------------------------- /ZeroUndub/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/MainWindow.xaml -------------------------------------------------------------------------------- /ZeroUndub/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ZeroUndub/ZeroUndub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/ZeroUndub.csproj -------------------------------------------------------------------------------- /ZeroUndub/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/main.ico -------------------------------------------------------------------------------- /ZeroUndub/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndub/main.png -------------------------------------------------------------------------------- /ZeroUndubProcess/GameText/IntroSplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/GameText/IntroSplashScreen.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/GameText/SubtitleFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/GameText/SubtitleFile.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/GameText/TextUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/GameText/TextUtils.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/InfoReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/InfoReporter.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Iso/ReaderIsoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Iso/ReaderIsoHandler.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Iso/WriterIsoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Iso/WriterIsoHandler.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Options.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Ps2Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Ps2Constants.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Pss/ArrayAsStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Pss/ArrayAsStream.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Pss/PssAudioHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Pss/PssAudioHandler.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Pss/PssConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Pss/PssConstants.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/Pss/PssInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/Pss/PssInfo.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/SubtitleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/SubtitleHandler.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/ZeroFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/ZeroFile.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/ZeroFileImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/ZeroFileImporter.cs -------------------------------------------------------------------------------- /ZeroUndubProcess/ZeroUndubProcess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/ZeroUndubProcess.csproj -------------------------------------------------------------------------------- /ZeroUndubProcess/transcribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/ZeroUndubProcess/transcribe.json -------------------------------------------------------------------------------- /docs/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/docs/background.png -------------------------------------------------------------------------------- /docs/introimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/docs/introimage.png -------------------------------------------------------------------------------- /docs/models.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/docs/models.gif -------------------------------------------------------------------------------- /docs/splashscreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wagrenier/ZeroUndub/HEAD/docs/splashscreen.gif --------------------------------------------------------------------------------