├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── com │ └── aneagle │ ├── SpecialTextArea.java │ └── SpecialTextField.java ├── kotlin └── com │ └── thane98 │ └── bcsarview │ ├── core │ ├── Configuration.kt │ ├── enums │ │ └── ConfigType.kt │ ├── interfaces │ │ ├── IBinaryReader.kt │ │ ├── IBinaryWriter.kt │ │ ├── IEntry.kt │ │ ├── IEntryVisitor.kt │ │ └── IFileRetriever.kt │ ├── io │ │ ├── AbstractBinaryReader.kt │ │ ├── AbstractBinaryWriter.kt │ │ ├── BinaryReader.kt │ │ ├── BinaryWriter.kt │ │ ├── ByteArrayBinaryReader.kt │ │ ├── ByteListWriter.kt │ │ ├── IOExtensions.kt │ │ └── retrievers │ │ │ ├── BasicFileRetriever.kt │ │ │ └── InMemoryFileRetriever.kt │ ├── structs │ │ ├── Csar.kt │ │ ├── Info.kt │ │ ├── Strg.kt │ │ ├── StrgTrie.kt │ │ ├── entries │ │ │ ├── AbstractNamedEntry.kt │ │ │ ├── Archive.kt │ │ │ ├── AudioConfig.kt │ │ │ ├── Bank.kt │ │ │ ├── BaseSet.kt │ │ │ ├── ExternalFileReference.kt │ │ │ ├── InternalFileReference.kt │ │ │ ├── Player.kt │ │ │ ├── SequenceSet.kt │ │ │ ├── SoundGroup.kt │ │ │ └── SoundSet.kt │ │ └── files │ │ │ ├── Cgrp.kt │ │ │ ├── Cwar.kt │ │ │ └── Cwsd.kt │ └── utils │ │ ├── ByteArrayExtensions.kt │ │ └── CwavUtils.kt │ └── ui │ ├── BCSARView.kt │ ├── Launcher.kt │ ├── MainWindowController.kt │ ├── forms │ ├── AbstractCreateController.kt │ ├── AbstractEntryController.kt │ ├── AbstractFormController.kt │ ├── AbstractImportController.kt │ ├── AbstractMassEditController.kt │ ├── ArchiveController.kt │ ├── BankController.kt │ ├── ConfigController.kt │ ├── CreateArchiveController.kt │ ├── CreateExternalSoundController.kt │ ├── CreatePlayerController.kt │ ├── CreateSoundSetController.kt │ ├── EditExternalSoundController.kt │ ├── ErrorDialogController.kt │ ├── GroupController.kt │ ├── ImportArchiveController.kt │ ├── ImportExternalSoundsController.kt │ ├── ImportSoundSetController.kt │ ├── MassEditExtendedConfigsController.kt │ ├── MassEditPlayersForSoundsController.kt │ ├── MassRenameController.kt │ ├── PlayerController.kt │ ├── PreferencesController.kt │ ├── SequenceSetController.kt │ ├── SoundSetController.kt │ └── SoundSetEditorController.kt │ ├── interfaces │ └── IUserAction.kt │ └── utils │ ├── ByteArrayHelpers.kt │ ├── ByteArrayTableCell.kt │ ├── DialogTableCell.kt │ ├── Dialogs.kt │ ├── HexAreaTableCell.kt │ ├── IntegerFilter.kt │ ├── SceneSetup.kt │ └── StrgEntryTableCell.kt └── resources └── com └── thane98 └── bcsarview └── ui ├── About.fxml ├── Archives.fxml ├── Bank.fxml ├── Config.fxml ├── CreateArchive.fxml ├── CreateExternalSound.fxml ├── CreatePlayer.fxml ├── CreateSoundSet.fxml ├── DejaVuSans.ttf ├── DejaVuSansMono.ttf ├── EditExternalSound.fxml ├── ErrorDialog.fxml ├── Group.fxml ├── Import.fxml ├── MainWindow.fxml ├── MassEdit.fxml ├── MassRename.fxml ├── Player.fxml ├── Preferences.fxml ├── SequenceSet.fxml ├── SoundSet.fxml ├── SoundSetEditor.fxml ├── WaitingIndicator.fxml ├── styles-common.css └── styles-dark.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/com/aneagle/SpecialTextArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/java/com/aneagle/SpecialTextArea.java -------------------------------------------------------------------------------- /src/main/java/com/aneagle/SpecialTextField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/java/com/aneagle/SpecialTextField.java -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/Configuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/Configuration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/enums/ConfigType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/enums/ConfigType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/interfaces/IBinaryReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/interfaces/IBinaryReader.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/interfaces/IBinaryWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/interfaces/IBinaryWriter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/interfaces/IEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/interfaces/IEntry.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/interfaces/IEntryVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/interfaces/IEntryVisitor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/interfaces/IFileRetriever.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/interfaces/IFileRetriever.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/AbstractBinaryReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/AbstractBinaryReader.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/AbstractBinaryWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/AbstractBinaryWriter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/BinaryReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/BinaryReader.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/BinaryWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/BinaryWriter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/ByteArrayBinaryReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/ByteArrayBinaryReader.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/ByteListWriter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/ByteListWriter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/IOExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/IOExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/retrievers/BasicFileRetriever.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/retrievers/BasicFileRetriever.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/io/retrievers/InMemoryFileRetriever.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/io/retrievers/InMemoryFileRetriever.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/Csar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/Csar.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/Info.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/Info.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/Strg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/Strg.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/StrgTrie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/StrgTrie.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/AbstractNamedEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/AbstractNamedEntry.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/Archive.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/Archive.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/AudioConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/AudioConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/Bank.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/Bank.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/BaseSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/BaseSet.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/ExternalFileReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/ExternalFileReference.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/InternalFileReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/InternalFileReference.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/Player.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/Player.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/SequenceSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/SequenceSet.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/SoundGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/SoundGroup.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/entries/SoundSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/entries/SoundSet.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/files/Cgrp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/files/Cgrp.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/files/Cwar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/files/Cwar.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/structs/files/Cwsd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/structs/files/Cwsd.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/utils/ByteArrayExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/utils/ByteArrayExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/core/utils/CwavUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/core/utils/CwavUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/BCSARView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/BCSARView.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/Launcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/Launcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/MainWindowController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/MainWindowController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractCreateController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractCreateController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractEntryController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractEntryController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractFormController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractFormController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractImportController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractImportController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractMassEditController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/AbstractMassEditController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/ArchiveController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/ArchiveController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/BankController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/BankController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/ConfigController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/ConfigController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/CreateArchiveController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/CreateArchiveController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/CreateExternalSoundController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/CreateExternalSoundController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/CreatePlayerController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/CreatePlayerController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/CreateSoundSetController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/CreateSoundSetController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/EditExternalSoundController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/EditExternalSoundController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/ErrorDialogController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/ErrorDialogController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/GroupController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/GroupController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/ImportArchiveController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/ImportArchiveController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/ImportExternalSoundsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/ImportExternalSoundsController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/ImportSoundSetController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/ImportSoundSetController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/MassEditExtendedConfigsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/MassEditExtendedConfigsController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/MassEditPlayersForSoundsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/MassEditPlayersForSoundsController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/MassRenameController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/MassRenameController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/PlayerController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/PlayerController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/PreferencesController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/PreferencesController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/SequenceSetController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/SequenceSetController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/SoundSetController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/SoundSetController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/forms/SoundSetEditorController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/forms/SoundSetEditorController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/interfaces/IUserAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/interfaces/IUserAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/ByteArrayHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/ByteArrayHelpers.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/ByteArrayTableCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/ByteArrayTableCell.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/DialogTableCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/DialogTableCell.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/Dialogs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/Dialogs.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/HexAreaTableCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/HexAreaTableCell.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/IntegerFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/IntegerFilter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/SceneSetup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/SceneSetup.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/thane98/bcsarview/ui/utils/StrgEntryTableCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/kotlin/com/thane98/bcsarview/ui/utils/StrgEntryTableCell.kt -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/About.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/About.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/Archives.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/Archives.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/Bank.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/Bank.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/Config.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/Config.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/CreateArchive.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/CreateArchive.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/CreateExternalSound.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/CreateExternalSound.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/CreatePlayer.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/CreatePlayer.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/CreateSoundSet.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/CreateSoundSet.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/DejaVuSans.ttf -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/EditExternalSound.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/EditExternalSound.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/ErrorDialog.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/ErrorDialog.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/Group.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/Group.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/Import.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/Import.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/MainWindow.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/MainWindow.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/MassEdit.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/MassEdit.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/MassRename.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/MassRename.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/Player.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/Player.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/Preferences.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/Preferences.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/SequenceSet.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/SequenceSet.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/SoundSet.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/SoundSet.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/SoundSetEditor.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/SoundSetEditor.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/WaitingIndicator.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/WaitingIndicator.fxml -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/styles-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/styles-common.css -------------------------------------------------------------------------------- /src/main/resources/com/thane98/bcsarview/ui/styles-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thane98/BCSAR-View/HEAD/src/main/resources/com/thane98/bcsarview/ui/styles-dark.css --------------------------------------------------------------------------------