├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── translation_error.yml └── workflows │ ├── build.yml │ └── codeql.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTROLS.md ├── CREDITS.md ├── INSTALL.md ├── LICENSE ├── README.md ├── cmake └── macos │ ├── MakeICNS.cmake │ └── SignBundle.cmake ├── create_sln.bat ├── ext ├── _ext.cmake ├── cli │ └── _cli.cmake ├── gui │ └── _gui.cmake └── shared │ └── _shared.cmake ├── install ├── _install.cmake ├── linux │ ├── desktop.in │ └── mime-type.xml.in ├── macos │ ├── DMGSetup.scpt │ └── MacOSXBundleInfo.plist.in └── win │ ├── InstallCommands.nsh.in │ ├── NSIS.InstallOptions.ini.in │ ├── NSIS.template.in │ └── UninstallCommands.nsh.in ├── res ├── brand │ ├── github.png │ ├── logo.png │ ├── logo.xcf │ ├── logo_128.png │ ├── logo_16.png │ ├── logo_16.xcf │ ├── logo_512.png │ ├── logo_alt.png │ ├── logo_alt_128.png │ ├── logo_alt_512.png │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ └── screenshot4.png ├── create_ico.sh ├── i18n │ ├── vpkedit_bs_BA.ts │ ├── vpkedit_de.ts │ ├── vpkedit_en.ts │ ├── vpkedit_es.ts │ ├── vpkedit_hr.ts │ ├── vpkedit_it.ts │ ├── vpkedit_ja.ts │ ├── vpkedit_ko.ts │ ├── vpkedit_nl.ts │ ├── vpkedit_pl.ts │ ├── vpkedit_pt_BR.ts │ ├── vpkedit_ru_RU.ts │ ├── vpkedit_sl.ts │ ├── vpkedit_sv.ts │ ├── vpkedit_vi.ts │ └── vpkedit_zh_CN.ts ├── icons │ ├── discord.png │ ├── down.png │ ├── error.png │ ├── home.png │ ├── kofi.png │ ├── left.png │ ├── missing.png │ ├── model_shaded_textured.png │ ├── model_shaded_untextured.png │ ├── model_shader_modes.pdn │ ├── model_unshaded_textured.png │ ├── model_wireframe.png │ ├── right.png │ ├── up.png │ └── warning.png ├── logo.ico ├── logo.qrc ├── logo.rc ├── logo_alt.ico ├── logo_alt.qrc ├── logo_alt.rc ├── program.manifest ├── res.qrc ├── shaders │ ├── mdl.vert │ ├── mdl_shaded_textured.frag │ ├── mdl_shaded_untextured.frag │ ├── mdl_unshaded_textured.frag │ └── mdl_wireframe.frag └── textures │ ├── checkerboard.png │ └── default_matcap.png └── src ├── cli ├── Main.cpp ├── Tree.cpp ├── Tree.h └── _cli.cmake ├── gui ├── EntryContextMenuData.cpp ├── EntryContextMenuData.h ├── EntryTree.cpp ├── EntryTree.h ├── FileViewer.cpp ├── FileViewer.h ├── Main.cpp ├── Window.cpp ├── Window.h ├── _gui.cmake ├── dialogs │ ├── ControlsDialog.cpp │ ├── ControlsDialog.h │ ├── CreditsDialog.cpp │ ├── CreditsDialog.h │ ├── EntryOptionsDialog.cpp │ ├── EntryOptionsDialog.h │ ├── NewUpdateDialog.cpp │ ├── NewUpdateDialog.h │ ├── PackFileOptionsDialog.cpp │ ├── PackFileOptionsDialog.h │ ├── VerifyChecksumsDialog.cpp │ ├── VerifyChecksumsDialog.h │ ├── VerifySignatureDialog.cpp │ └── VerifySignatureDialog.h ├── extensions │ ├── Folder.cpp │ ├── Folder.h │ ├── SingleFile.cpp │ └── SingleFile.h ├── plugins │ ├── IVPKEditWindowAccess.cpp │ ├── IVPKEditWindowAccess.h │ └── previews │ │ ├── IVPKEditPreviewPlugin.cmake │ │ ├── IVPKEditPreviewPlugin.cpp │ │ ├── IVPKEditPreviewPlugin.h │ │ ├── dmx │ │ ├── DMXPreview.cpp │ │ ├── DMXPreview.h │ │ └── DMXPreview.json │ │ ├── mdl │ │ ├── MDLPreview.cpp │ │ ├── MDLPreview.h │ │ └── MDLPreview.json │ │ └── vcrypt │ │ ├── VCryptPreview.cpp │ │ ├── VCryptPreview.h │ │ └── VCryptPreview.json ├── previews │ ├── DirPreview.cpp │ ├── DirPreview.h │ ├── EmptyPreview.cpp │ ├── EmptyPreview.h │ ├── InfoPreview.cpp │ ├── InfoPreview.h │ ├── TextPreview.cpp │ ├── TextPreview.h │ ├── TexturePreview.cpp │ └── TexturePreview.h └── utility │ ├── DiscordPresence.cpp │ ├── DiscordPresence.h │ ├── ImageLoader.cpp │ ├── ImageLoader.h │ ├── Options.cpp │ ├── Options.h │ ├── PluginFinder.cpp │ ├── PluginFinder.h │ ├── TempDir.cpp │ ├── TempDir.h │ └── ThemedIcon.h └── shared ├── .gitignore └── Config.h.in /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: craftablescience 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/translation_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.github/ISSUE_TEMPLATE/translation_error.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTROLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/CONTROLS.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/CREDITS.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/README.md -------------------------------------------------------------------------------- /cmake/macos/MakeICNS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/cmake/macos/MakeICNS.cmake -------------------------------------------------------------------------------- /cmake/macos/SignBundle.cmake: -------------------------------------------------------------------------------- 1 | execute_process(COMMAND codesign --deep -fs - ${CPACK_TEMPORARY_INSTALL_DIRECTORY}/vpkedit.app) 2 | -------------------------------------------------------------------------------- /create_sln.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/create_sln.bat -------------------------------------------------------------------------------- /ext/_ext.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/ext/_ext.cmake -------------------------------------------------------------------------------- /ext/cli/_cli.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/ext/cli/_cli.cmake -------------------------------------------------------------------------------- /ext/gui/_gui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/ext/gui/_gui.cmake -------------------------------------------------------------------------------- /ext/shared/_shared.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/ext/shared/_shared.cmake -------------------------------------------------------------------------------- /install/_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/_install.cmake -------------------------------------------------------------------------------- /install/linux/desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/linux/desktop.in -------------------------------------------------------------------------------- /install/linux/mime-type.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/linux/mime-type.xml.in -------------------------------------------------------------------------------- /install/macos/DMGSetup.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/macos/DMGSetup.scpt -------------------------------------------------------------------------------- /install/macos/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/macos/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /install/win/InstallCommands.nsh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/win/InstallCommands.nsh.in -------------------------------------------------------------------------------- /install/win/NSIS.InstallOptions.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/win/NSIS.InstallOptions.ini.in -------------------------------------------------------------------------------- /install/win/NSIS.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/win/NSIS.template.in -------------------------------------------------------------------------------- /install/win/UninstallCommands.nsh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/install/win/UninstallCommands.nsh.in -------------------------------------------------------------------------------- /res/brand/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/github.png -------------------------------------------------------------------------------- /res/brand/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo.png -------------------------------------------------------------------------------- /res/brand/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo.xcf -------------------------------------------------------------------------------- /res/brand/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo_128.png -------------------------------------------------------------------------------- /res/brand/logo_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo_16.png -------------------------------------------------------------------------------- /res/brand/logo_16.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo_16.xcf -------------------------------------------------------------------------------- /res/brand/logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo_512.png -------------------------------------------------------------------------------- /res/brand/logo_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo_alt.png -------------------------------------------------------------------------------- /res/brand/logo_alt_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo_alt_128.png -------------------------------------------------------------------------------- /res/brand/logo_alt_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/logo_alt_512.png -------------------------------------------------------------------------------- /res/brand/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/screenshot1.png -------------------------------------------------------------------------------- /res/brand/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/screenshot2.png -------------------------------------------------------------------------------- /res/brand/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/screenshot3.png -------------------------------------------------------------------------------- /res/brand/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/brand/screenshot4.png -------------------------------------------------------------------------------- /res/create_ico.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/create_ico.sh -------------------------------------------------------------------------------- /res/i18n/vpkedit_bs_BA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_bs_BA.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_de.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_en.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_es.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_hr.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_it.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_ja.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_ko.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_nl.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_pl.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_pt_BR.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_ru_RU.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_sl.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_sv.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_vi.ts -------------------------------------------------------------------------------- /res/i18n/vpkedit_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/i18n/vpkedit_zh_CN.ts -------------------------------------------------------------------------------- /res/icons/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/discord.png -------------------------------------------------------------------------------- /res/icons/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/down.png -------------------------------------------------------------------------------- /res/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/error.png -------------------------------------------------------------------------------- /res/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/home.png -------------------------------------------------------------------------------- /res/icons/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/kofi.png -------------------------------------------------------------------------------- /res/icons/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/left.png -------------------------------------------------------------------------------- /res/icons/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/missing.png -------------------------------------------------------------------------------- /res/icons/model_shaded_textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/model_shaded_textured.png -------------------------------------------------------------------------------- /res/icons/model_shaded_untextured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/model_shaded_untextured.png -------------------------------------------------------------------------------- /res/icons/model_shader_modes.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/model_shader_modes.pdn -------------------------------------------------------------------------------- /res/icons/model_unshaded_textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/model_unshaded_textured.png -------------------------------------------------------------------------------- /res/icons/model_wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/model_wireframe.png -------------------------------------------------------------------------------- /res/icons/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/right.png -------------------------------------------------------------------------------- /res/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/up.png -------------------------------------------------------------------------------- /res/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/icons/warning.png -------------------------------------------------------------------------------- /res/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/logo.ico -------------------------------------------------------------------------------- /res/logo.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/logo.qrc -------------------------------------------------------------------------------- /res/logo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/logo.rc -------------------------------------------------------------------------------- /res/logo_alt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/logo_alt.ico -------------------------------------------------------------------------------- /res/logo_alt.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/logo_alt.qrc -------------------------------------------------------------------------------- /res/logo_alt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/logo_alt.rc -------------------------------------------------------------------------------- /res/program.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/program.manifest -------------------------------------------------------------------------------- /res/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/res.qrc -------------------------------------------------------------------------------- /res/shaders/mdl.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/shaders/mdl.vert -------------------------------------------------------------------------------- /res/shaders/mdl_shaded_textured.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/shaders/mdl_shaded_textured.frag -------------------------------------------------------------------------------- /res/shaders/mdl_shaded_untextured.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/shaders/mdl_shaded_untextured.frag -------------------------------------------------------------------------------- /res/shaders/mdl_unshaded_textured.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/shaders/mdl_unshaded_textured.frag -------------------------------------------------------------------------------- /res/shaders/mdl_wireframe.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/shaders/mdl_wireframe.frag -------------------------------------------------------------------------------- /res/textures/checkerboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/textures/checkerboard.png -------------------------------------------------------------------------------- /res/textures/default_matcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/res/textures/default_matcap.png -------------------------------------------------------------------------------- /src/cli/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/cli/Main.cpp -------------------------------------------------------------------------------- /src/cli/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/cli/Tree.cpp -------------------------------------------------------------------------------- /src/cli/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/cli/Tree.h -------------------------------------------------------------------------------- /src/cli/_cli.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/cli/_cli.cmake -------------------------------------------------------------------------------- /src/gui/EntryContextMenuData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/EntryContextMenuData.cpp -------------------------------------------------------------------------------- /src/gui/EntryContextMenuData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/EntryContextMenuData.h -------------------------------------------------------------------------------- /src/gui/EntryTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/EntryTree.cpp -------------------------------------------------------------------------------- /src/gui/EntryTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/EntryTree.h -------------------------------------------------------------------------------- /src/gui/FileViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/FileViewer.cpp -------------------------------------------------------------------------------- /src/gui/FileViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/FileViewer.h -------------------------------------------------------------------------------- /src/gui/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/Main.cpp -------------------------------------------------------------------------------- /src/gui/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/Window.cpp -------------------------------------------------------------------------------- /src/gui/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/Window.h -------------------------------------------------------------------------------- /src/gui/_gui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/_gui.cmake -------------------------------------------------------------------------------- /src/gui/dialogs/ControlsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/ControlsDialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogs/ControlsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/ControlsDialog.h -------------------------------------------------------------------------------- /src/gui/dialogs/CreditsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/CreditsDialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogs/CreditsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/CreditsDialog.h -------------------------------------------------------------------------------- /src/gui/dialogs/EntryOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/EntryOptionsDialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogs/EntryOptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/EntryOptionsDialog.h -------------------------------------------------------------------------------- /src/gui/dialogs/NewUpdateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/NewUpdateDialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogs/NewUpdateDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/NewUpdateDialog.h -------------------------------------------------------------------------------- /src/gui/dialogs/PackFileOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/PackFileOptionsDialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogs/PackFileOptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/PackFileOptionsDialog.h -------------------------------------------------------------------------------- /src/gui/dialogs/VerifyChecksumsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/VerifyChecksumsDialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogs/VerifyChecksumsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/VerifyChecksumsDialog.h -------------------------------------------------------------------------------- /src/gui/dialogs/VerifySignatureDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/VerifySignatureDialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogs/VerifySignatureDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/dialogs/VerifySignatureDialog.h -------------------------------------------------------------------------------- /src/gui/extensions/Folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/extensions/Folder.cpp -------------------------------------------------------------------------------- /src/gui/extensions/Folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/extensions/Folder.h -------------------------------------------------------------------------------- /src/gui/extensions/SingleFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/extensions/SingleFile.cpp -------------------------------------------------------------------------------- /src/gui/extensions/SingleFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/extensions/SingleFile.h -------------------------------------------------------------------------------- /src/gui/plugins/IVPKEditWindowAccess.cpp: -------------------------------------------------------------------------------- 1 | #include "IVPKEditWindowAccess.h" 2 | -------------------------------------------------------------------------------- /src/gui/plugins/IVPKEditWindowAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/IVPKEditWindowAccess.h -------------------------------------------------------------------------------- /src/gui/plugins/previews/IVPKEditPreviewPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/IVPKEditPreviewPlugin.cmake -------------------------------------------------------------------------------- /src/gui/plugins/previews/IVPKEditPreviewPlugin.cpp: -------------------------------------------------------------------------------- 1 | #include "IVPKEditPreviewPlugin.h" 2 | -------------------------------------------------------------------------------- /src/gui/plugins/previews/IVPKEditPreviewPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/IVPKEditPreviewPlugin.h -------------------------------------------------------------------------------- /src/gui/plugins/previews/dmx/DMXPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/dmx/DMXPreview.cpp -------------------------------------------------------------------------------- /src/gui/plugins/previews/dmx/DMXPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/dmx/DMXPreview.h -------------------------------------------------------------------------------- /src/gui/plugins/previews/dmx/DMXPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/dmx/DMXPreview.json -------------------------------------------------------------------------------- /src/gui/plugins/previews/mdl/MDLPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/mdl/MDLPreview.cpp -------------------------------------------------------------------------------- /src/gui/plugins/previews/mdl/MDLPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/mdl/MDLPreview.h -------------------------------------------------------------------------------- /src/gui/plugins/previews/mdl/MDLPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/mdl/MDLPreview.json -------------------------------------------------------------------------------- /src/gui/plugins/previews/vcrypt/VCryptPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/vcrypt/VCryptPreview.cpp -------------------------------------------------------------------------------- /src/gui/plugins/previews/vcrypt/VCryptPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/vcrypt/VCryptPreview.h -------------------------------------------------------------------------------- /src/gui/plugins/previews/vcrypt/VCryptPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/plugins/previews/vcrypt/VCryptPreview.json -------------------------------------------------------------------------------- /src/gui/previews/DirPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/DirPreview.cpp -------------------------------------------------------------------------------- /src/gui/previews/DirPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/DirPreview.h -------------------------------------------------------------------------------- /src/gui/previews/EmptyPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/EmptyPreview.cpp -------------------------------------------------------------------------------- /src/gui/previews/EmptyPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/EmptyPreview.h -------------------------------------------------------------------------------- /src/gui/previews/InfoPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/InfoPreview.cpp -------------------------------------------------------------------------------- /src/gui/previews/InfoPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/InfoPreview.h -------------------------------------------------------------------------------- /src/gui/previews/TextPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/TextPreview.cpp -------------------------------------------------------------------------------- /src/gui/previews/TextPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/TextPreview.h -------------------------------------------------------------------------------- /src/gui/previews/TexturePreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/TexturePreview.cpp -------------------------------------------------------------------------------- /src/gui/previews/TexturePreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/previews/TexturePreview.h -------------------------------------------------------------------------------- /src/gui/utility/DiscordPresence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/DiscordPresence.cpp -------------------------------------------------------------------------------- /src/gui/utility/DiscordPresence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/DiscordPresence.h -------------------------------------------------------------------------------- /src/gui/utility/ImageLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/ImageLoader.cpp -------------------------------------------------------------------------------- /src/gui/utility/ImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/ImageLoader.h -------------------------------------------------------------------------------- /src/gui/utility/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/Options.cpp -------------------------------------------------------------------------------- /src/gui/utility/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/Options.h -------------------------------------------------------------------------------- /src/gui/utility/PluginFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/PluginFinder.cpp -------------------------------------------------------------------------------- /src/gui/utility/PluginFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/PluginFinder.h -------------------------------------------------------------------------------- /src/gui/utility/TempDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/TempDir.cpp -------------------------------------------------------------------------------- /src/gui/utility/TempDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/TempDir.h -------------------------------------------------------------------------------- /src/gui/utility/ThemedIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/gui/utility/ThemedIcon.h -------------------------------------------------------------------------------- /src/shared/.gitignore: -------------------------------------------------------------------------------- 1 | Config.h 2 | -------------------------------------------------------------------------------- /src/shared/Config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftablescience/VPKEdit/HEAD/src/shared/Config.h.in --------------------------------------------------------------------------------