├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci-cd.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.md ├── ProjectInfo.hpp.in ├── README.md ├── assets ├── 980px-Orange_lambda.svg.png ├── hlam_icon.xcf ├── hlam_icon2.png ├── hlam_icon2.xcf ├── hlam_icon2_finished.ico ├── hlam_icon2_finished.xcf ├── hlam_icon2_golden.png ├── hlam_icon2_golden.xcf ├── hlam_icon2_golden_finished.ico ├── hlam_icon2_golden_finished.png ├── hlam_icon2_golden_finished.xcf ├── hlam_icon2_grayscale.png ├── hlam_icon2_grayscale.xcf └── spinboxes.png ├── cmake └── UpdateProjectInfo.cmake ├── cpp.hint ├── distribution └── linux │ └── hlam.desktop ├── docs ├── CHANGELOG-V1.md ├── CHANGELOG-V2.md ├── CHANGELOG-V3.md ├── CHANGELOG.md ├── Doxyfile ├── manual │ ├── .gitignore │ ├── HalfLifeAssetManagerManual.md │ └── HalfLifeAssetManagerManual.pdf └── third-party-dependencies.md ├── installer ├── .gitignore ├── CreateOfflineInstaller.bat ├── CreatePortableInstaller.bat ├── config │ └── config.xml └── packages │ └── SamVanheer.HalfLifeAssetManager │ ├── data │ ├── README.md │ └── licenses │ │ └── license.html │ └── meta │ ├── InstallOptionsForm.ui │ ├── installscript.qs │ ├── license.html │ └── package.xml ├── licenses └── Qt │ └── LGPL3 ├── src └── hlam │ ├── Main.cpp │ ├── application │ ├── AssetIO.hpp │ ├── AssetList.cpp │ ├── AssetList.hpp │ ├── AssetManager.cpp │ ├── AssetManager.hpp │ ├── Assets.cpp │ ├── Assets.hpp │ ├── CMakeLists.txt │ ├── SingleInstance.cpp │ ├── SingleInstance.hpp │ ├── ToolApplication.cpp │ └── ToolApplication.hpp │ ├── entity │ ├── AnimEvent.hpp │ ├── AxesEntity.cpp │ ├── AxesEntity.hpp │ ├── BackgroundEntity.cpp │ ├── BackgroundEntity.hpp │ ├── BaseAnimating.hpp │ ├── BaseEntity.cpp │ ├── BaseEntity.hpp │ ├── BoundingBoxEntity.cpp │ ├── BoundingBoxEntity.hpp │ ├── CMakeLists.txt │ ├── ClippingBoxEntity.cpp │ ├── ClippingBoxEntity.hpp │ ├── CrosshairEntity.cpp │ ├── CrosshairEntity.hpp │ ├── EntityList.cpp │ ├── EntityList.hpp │ ├── Events.hpp │ ├── GroundEntity.cpp │ ├── GroundEntity.hpp │ ├── GuidelinesEntity.cpp │ ├── GuidelinesEntity.hpp │ ├── HLMVStudioModelEntity.cpp │ ├── HLMVStudioModelEntity.hpp │ ├── PlayerHitboxEntity.cpp │ ├── PlayerHitboxEntity.hpp │ ├── StudioModelEntity.cpp │ ├── StudioModelEntity.hpp │ ├── TextureEntity.cpp │ └── TextureEntity.hpp │ ├── filesystem │ ├── CMakeLists.txt │ ├── FileSystem.cpp │ ├── FileSystem.hpp │ ├── FileSystemConstants.cpp │ ├── FileSystemConstants.hpp │ └── IFileSystem.hpp │ ├── formats │ ├── CMakeLists.txt │ ├── DrawConstants.hpp │ ├── activity.hpp │ ├── liblist │ │ ├── LiblistReader.cpp │ │ └── LiblistReader.hpp │ └── studiomodel │ │ ├── BoneTransformer.cpp │ │ ├── BoneTransformer.hpp │ │ ├── CMakeLists.txt │ │ ├── DumpModelInfo.cpp │ │ ├── DumpModelInfo.hpp │ │ ├── EditableStudioModel.cpp │ │ ├── EditableStudioModel.hpp │ │ ├── ModelRenderInfo.hpp │ │ ├── StudioModel.hpp │ │ ├── StudioModelFileFormat.hpp │ │ ├── StudioModelIO.cpp │ │ ├── StudioModelIO.hpp │ │ ├── StudioModelRenderer.cpp │ │ ├── StudioModelRenderer.hpp │ │ ├── StudioModelUtils.cpp │ │ ├── StudioModelUtils.hpp │ │ ├── StudioSorting.cpp │ │ └── StudioSorting.hpp │ ├── graphics │ ├── CMakeLists.txt │ ├── Camera.cpp │ ├── Camera.hpp │ ├── GraphicsConstants.cpp │ ├── GraphicsConstants.hpp │ ├── GraphicsUtils.cpp │ ├── GraphicsUtils.hpp │ ├── IGraphicsContext.hpp │ ├── Image.hpp │ ├── Light.hpp │ ├── OpenGL.cpp │ ├── OpenGL.hpp │ ├── Palette.hpp │ ├── Scene.cpp │ ├── Scene.hpp │ ├── SceneContext.hpp │ ├── TextureLoader.cpp │ └── TextureLoader.hpp │ ├── hlam.ico │ ├── hlam.rc │ ├── plugins │ ├── CMakeLists.txt │ ├── IAssetManagerPlugin.hpp │ ├── forwarding │ │ ├── ForwardingAssetManagerPlugin.cpp │ │ └── ForwardingAssetManagerPlugin.hpp │ └── halflife │ │ ├── CMakeLists.txt │ │ ├── HalfLifeAssetManagerPlugin.cpp │ │ ├── HalfLifeAssetManagerPlugin.hpp │ │ └── studiomodel │ │ ├── CMakeLists.txt │ │ ├── StudioModelAsset.cpp │ │ ├── StudioModelAsset.hpp │ │ ├── StudioModelAssetProvider.cpp │ │ ├── StudioModelAssetProvider.hpp │ │ ├── StudioModelColors.hpp │ │ ├── StudioModelSettings.cpp │ │ ├── StudioModelSettings.hpp │ │ ├── options │ │ ├── CMakeLists.txt │ │ ├── OptionsPageStudioModel.cpp │ │ ├── OptionsPageStudioModel.hpp │ │ └── OptionsPageStudioModel.ui │ │ ├── settings │ │ ├── CMakeLists.txt │ │ ├── StudioModelSettings.cpp │ │ └── StudioModelSettings.hpp │ │ └── ui │ │ ├── CMakeLists.txt │ │ ├── DockHelpers.hpp │ │ ├── InfoBar.cpp │ │ ├── InfoBar.hpp │ │ ├── InfoBar.ui │ │ ├── StudioModelData.cpp │ │ ├── StudioModelData.hpp │ │ ├── StudioModelEditWidget.cpp │ │ ├── StudioModelEditWidget.hpp │ │ ├── StudioModelEditWidget.ui │ │ ├── StudioModelTextureUtilities.cpp │ │ ├── StudioModelTextureUtilities.hpp │ │ ├── StudioModelUndoCommands.cpp │ │ ├── StudioModelUndoCommands.hpp │ │ ├── StudioModelValidators.cpp │ │ ├── StudioModelValidators.hpp │ │ ├── StudioModelView.cpp │ │ ├── StudioModelView.hpp │ │ ├── StudioModelView.ui │ │ ├── Timeline.cpp │ │ ├── Timeline.hpp │ │ ├── Timeline.ui │ │ ├── dialogs │ │ ├── CMakeLists.txt │ │ ├── QCDataDialog.cpp │ │ ├── QCDataDialog.hpp │ │ └── QCDataDialog.ui │ │ └── dockpanels │ │ ├── AttachmentsPanel.cpp │ │ ├── AttachmentsPanel.hpp │ │ ├── AttachmentsPanel.ui │ │ ├── BodyPartsPanel.cpp │ │ ├── BodyPartsPanel.hpp │ │ ├── BodyPartsPanel.ui │ │ ├── BoneControllersPanel.cpp │ │ ├── BoneControllersPanel.hpp │ │ ├── BoneControllersPanel.ui │ │ ├── BonesPanel.cpp │ │ ├── BonesPanel.hpp │ │ ├── BonesPanel.ui │ │ ├── CMakeLists.txt │ │ ├── ExportUVMeshDialog.cpp │ │ ├── ExportUVMeshDialog.hpp │ │ ├── ExportUVMeshDialog.ui │ │ ├── HitboxesPanel.cpp │ │ ├── HitboxesPanel.hpp │ │ ├── HitboxesPanel.ui │ │ ├── LightingPanel.cpp │ │ ├── LightingPanel.hpp │ │ ├── LightingPanel.ui │ │ ├── ModelDataPanel.cpp │ │ ├── ModelDataPanel.hpp │ │ ├── ModelDataPanel.ui │ │ ├── ModelDisplayPanel.cpp │ │ ├── ModelDisplayPanel.hpp │ │ ├── ModelDisplayPanel.ui │ │ ├── ScenePanel.cpp │ │ ├── ScenePanel.hpp │ │ ├── ScenePanel.ui │ │ ├── SequencesPanel.cpp │ │ ├── SequencesPanel.hpp │ │ ├── SequencesPanel.ui │ │ ├── SkyLightPanel.cpp │ │ ├── SkyLightPanel.hpp │ │ ├── SkyLightPanel.ui │ │ ├── TexturesPanel.cpp │ │ ├── TexturesPanel.hpp │ │ ├── TexturesPanel.ui │ │ ├── TransformPanel.cpp │ │ ├── TransformPanel.hpp │ │ ├── TransformPanel.ui │ │ └── objects │ │ ├── BackgroundPanel.cpp │ │ ├── BackgroundPanel.hpp │ │ ├── BackgroundPanel.ui │ │ ├── CMakeLists.txt │ │ ├── GroundPanel.cpp │ │ ├── GroundPanel.hpp │ │ ├── GroundPanel.ui │ │ ├── ModelPanel.cpp │ │ ├── ModelPanel.hpp │ │ └── ModelPanel.ui │ ├── qt │ ├── ByteLengthValidator.hpp │ ├── CMakeLists.txt │ ├── HashFunctions.hpp │ ├── ObservableList.hpp │ ├── QtLogSink.hpp │ ├── QtLogging.hpp │ ├── QtUtilities.cpp │ ├── QtUtilities.hpp │ └── widgets │ │ ├── CMakeLists.txt │ │ ├── ShortDoubleSpinBox.cpp │ │ ├── ShortDoubleSpinBox.hpp │ │ ├── ShortVector3Edit.cpp │ │ ├── ShortVector3Edit.hpp │ │ ├── ShortVector3Edit.ui │ │ ├── SimpleVector3Edit.cpp │ │ ├── SimpleVector3Edit.hpp │ │ ├── Vector3Edit.cpp │ │ ├── Vector3Edit.hpp │ │ └── Vector3Edit.ui │ ├── resources.qrc │ ├── settings │ ├── ApplicationSettings.cpp │ ├── ApplicationSettings.hpp │ ├── BaseSettings.hpp │ ├── CMakeLists.txt │ ├── ColorSettings.hpp │ ├── ExternalProgramSettings.cpp │ ├── ExternalProgramSettings.hpp │ ├── GameConfigurationsSettings.cpp │ ├── GameConfigurationsSettings.hpp │ └── RecentFilesSettings.hpp │ ├── soundsystem │ ├── CMakeLists.txt │ ├── DummySoundSystem.hpp │ ├── ISoundSystem.hpp │ ├── SoundConstants.hpp │ ├── SoundSystem.cpp │ └── SoundSystem.hpp │ ├── ui │ ├── AboutDialog.cpp │ ├── AboutDialog.hpp │ ├── CMakeLists.txt │ ├── DockableWidget.hpp │ ├── DragNDropEventFilter.hpp │ ├── MainWindow.cpp │ ├── MainWindow.hpp │ ├── MainWindow.ui │ ├── OpenGLGraphicsContext.hpp │ ├── SceneWidget.cpp │ ├── SceneWidget.hpp │ ├── StateSnapshot.hpp │ ├── camera_operators │ │ ├── ArcBallCameraOperator.hpp │ │ ├── CMakeLists.txt │ │ ├── CameraOperator.hpp │ │ ├── CameraOperators.hpp │ │ ├── FirstPersonCameraOperator.hpp │ │ ├── FreeLookCameraOperator.hpp │ │ ├── TextureCameraOperator.cpp │ │ ├── TextureCameraOperator.hpp │ │ └── dockpanels │ │ │ ├── ArcBallSettingsPanel.cpp │ │ │ ├── ArcBallSettingsPanel.hpp │ │ │ ├── ArcBallSettingsPanel.ui │ │ │ ├── CMakeLists.txt │ │ │ ├── CamerasPanel.cpp │ │ │ ├── CamerasPanel.hpp │ │ │ ├── CamerasPanel.ui │ │ │ ├── FirstPersonSettingsPanel.cpp │ │ │ ├── FirstPersonSettingsPanel.hpp │ │ │ ├── FirstPersonSettingsPanel.ui │ │ │ ├── FreeLookSettingsPanel.cpp │ │ │ ├── FreeLookSettingsPanel.hpp │ │ │ └── FreeLookSettingsPanel.ui │ ├── dialogs │ │ ├── CMakeLists.txt │ │ ├── OpenInExternalProgramDialog.cpp │ │ ├── OpenInExternalProgramDialog.hpp │ │ ├── OpenInExternalProgramDialog.ui │ │ ├── SelectGameConfigurationDialog.cpp │ │ ├── SelectGameConfigurationDialog.hpp │ │ └── SelectGameConfigurationDialog.ui │ ├── dockpanels │ │ ├── CMakeLists.txt │ │ ├── FileBrowser.cpp │ │ ├── FileBrowser.hpp │ │ ├── FileBrowser.ui │ │ ├── MessagesPanel.cpp │ │ ├── MessagesPanel.hpp │ │ └── MessagesPanel.ui │ └── options │ │ ├── CMakeLists.txt │ │ ├── OptionsDialog.cpp │ │ ├── OptionsDialog.hpp │ │ ├── OptionsDialog.ui │ │ ├── OptionsPage.cpp │ │ ├── OptionsPage.hpp │ │ ├── OptionsPageColors.cpp │ │ ├── OptionsPageColors.hpp │ │ ├── OptionsPageColors.ui │ │ ├── OptionsPageExternalPrograms.cpp │ │ ├── OptionsPageExternalPrograms.hpp │ │ ├── OptionsPageExternalPrograms.ui │ │ ├── OptionsPageGeneral.cpp │ │ ├── OptionsPageGeneral.hpp │ │ ├── OptionsPageGeneral.ui │ │ ├── OptionsPageRegistry.cpp │ │ ├── OptionsPageRegistry.hpp │ │ ├── OptionsPageStyle.cpp │ │ ├── OptionsPageStyle.hpp │ │ ├── OptionsPageStyle.ui │ │ └── gameconfigurations │ │ ├── AutodetectConfigurePropertiesPage.cpp │ │ ├── AutodetectConfigurePropertiesPage.hpp │ │ ├── AutodetectConfigurePropertiesPage.ui │ │ ├── AutodetectGameConfigurationsWizard.cpp │ │ ├── AutodetectGameConfigurationsWizard.hpp │ │ ├── AutodetectScanResultsPage.cpp │ │ ├── AutodetectScanResultsPage.hpp │ │ ├── AutodetectScanResultsPage.ui │ │ ├── CMakeLists.txt │ │ ├── EditGameConfigurationsDialog.cpp │ │ ├── EditGameConfigurationsDialog.hpp │ │ ├── EditGameConfigurationsDialog.ui │ │ ├── GameConfigurationsOptions.hpp │ │ ├── OptionsPageFileSystem.cpp │ │ ├── OptionsPageFileSystem.hpp │ │ ├── OptionsPageFileSystem.ui │ │ ├── OptionsPageGameConfigurations.cpp │ │ ├── OptionsPageGameConfigurations.hpp │ │ └── OptionsPageGameConfigurations.ui │ ├── utility │ ├── BoundingBox.hpp │ ├── CMakeLists.txt │ ├── Class.hpp │ ├── Const.hpp │ ├── CoordinateSystem.hpp │ ├── IOUtils.cpp │ ├── IOUtils.hpp │ ├── Platform.hpp │ ├── StringUtils.hpp │ ├── Tokenizer.cpp │ ├── Tokenizer.hpp │ ├── Utility.hpp │ ├── WorldTime.cpp │ ├── WorldTime.hpp │ ├── mathlib.cpp │ └── mathlib.hpp │ ├── version.rc │ └── version.rc.in ├── vcpkg-configuration.json ├── vcpkg.json └── vcpkg_config ├── registry ├── ports │ └── libnyquist │ │ └── 0.1.0_0 │ │ ├── install-config.patch │ │ ├── libnyquistConfig.cmake.in │ │ ├── portfile.cmake │ │ ├── usage │ │ └── vcpkg.json └── versions │ ├── baseline.json │ └── l- │ └── libnyquist.json └── triplets ├── all-common.cmake ├── x64-linux.cmake ├── x86-linux.cmake └── x86-windows.cmake /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /ProjectInfo.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/ProjectInfo.hpp.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/README.md -------------------------------------------------------------------------------- /assets/980px-Orange_lambda.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/980px-Orange_lambda.svg.png -------------------------------------------------------------------------------- /assets/hlam_icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon.xcf -------------------------------------------------------------------------------- /assets/hlam_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2.png -------------------------------------------------------------------------------- /assets/hlam_icon2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2.xcf -------------------------------------------------------------------------------- /assets/hlam_icon2_finished.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_finished.ico -------------------------------------------------------------------------------- /assets/hlam_icon2_finished.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_finished.xcf -------------------------------------------------------------------------------- /assets/hlam_icon2_golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_golden.png -------------------------------------------------------------------------------- /assets/hlam_icon2_golden.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_golden.xcf -------------------------------------------------------------------------------- /assets/hlam_icon2_golden_finished.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_golden_finished.ico -------------------------------------------------------------------------------- /assets/hlam_icon2_golden_finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_golden_finished.png -------------------------------------------------------------------------------- /assets/hlam_icon2_golden_finished.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_golden_finished.xcf -------------------------------------------------------------------------------- /assets/hlam_icon2_grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_grayscale.png -------------------------------------------------------------------------------- /assets/hlam_icon2_grayscale.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/hlam_icon2_grayscale.xcf -------------------------------------------------------------------------------- /assets/spinboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/assets/spinboxes.png -------------------------------------------------------------------------------- /cmake/UpdateProjectInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/cmake/UpdateProjectInfo.cmake -------------------------------------------------------------------------------- /cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/cpp.hint -------------------------------------------------------------------------------- /distribution/linux/hlam.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/distribution/linux/hlam.desktop -------------------------------------------------------------------------------- /docs/CHANGELOG-V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/CHANGELOG-V1.md -------------------------------------------------------------------------------- /docs/CHANGELOG-V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/CHANGELOG-V2.md -------------------------------------------------------------------------------- /docs/CHANGELOG-V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/CHANGELOG-V3.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/manual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/manual/.gitignore -------------------------------------------------------------------------------- /docs/manual/HalfLifeAssetManagerManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/manual/HalfLifeAssetManagerManual.md -------------------------------------------------------------------------------- /docs/manual/HalfLifeAssetManagerManual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/manual/HalfLifeAssetManagerManual.pdf -------------------------------------------------------------------------------- /docs/third-party-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/docs/third-party-dependencies.md -------------------------------------------------------------------------------- /installer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/.gitignore -------------------------------------------------------------------------------- /installer/CreateOfflineInstaller.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/CreateOfflineInstaller.bat -------------------------------------------------------------------------------- /installer/CreatePortableInstaller.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/CreatePortableInstaller.bat -------------------------------------------------------------------------------- /installer/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/config/config.xml -------------------------------------------------------------------------------- /installer/packages/SamVanheer.HalfLifeAssetManager/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/packages/SamVanheer.HalfLifeAssetManager/data/README.md -------------------------------------------------------------------------------- /installer/packages/SamVanheer.HalfLifeAssetManager/data/licenses/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/packages/SamVanheer.HalfLifeAssetManager/data/licenses/license.html -------------------------------------------------------------------------------- /installer/packages/SamVanheer.HalfLifeAssetManager/meta/InstallOptionsForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/packages/SamVanheer.HalfLifeAssetManager/meta/InstallOptionsForm.ui -------------------------------------------------------------------------------- /installer/packages/SamVanheer.HalfLifeAssetManager/meta/installscript.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/packages/SamVanheer.HalfLifeAssetManager/meta/installscript.qs -------------------------------------------------------------------------------- /installer/packages/SamVanheer.HalfLifeAssetManager/meta/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/packages/SamVanheer.HalfLifeAssetManager/meta/license.html -------------------------------------------------------------------------------- /installer/packages/SamVanheer.HalfLifeAssetManager/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/installer/packages/SamVanheer.HalfLifeAssetManager/meta/package.xml -------------------------------------------------------------------------------- /licenses/Qt/LGPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/licenses/Qt/LGPL3 -------------------------------------------------------------------------------- /src/hlam/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/Main.cpp -------------------------------------------------------------------------------- /src/hlam/application/AssetIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/AssetIO.hpp -------------------------------------------------------------------------------- /src/hlam/application/AssetList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/AssetList.cpp -------------------------------------------------------------------------------- /src/hlam/application/AssetList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/AssetList.hpp -------------------------------------------------------------------------------- /src/hlam/application/AssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/AssetManager.cpp -------------------------------------------------------------------------------- /src/hlam/application/AssetManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/AssetManager.hpp -------------------------------------------------------------------------------- /src/hlam/application/Assets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/Assets.cpp -------------------------------------------------------------------------------- /src/hlam/application/Assets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/Assets.hpp -------------------------------------------------------------------------------- /src/hlam/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/application/SingleInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/SingleInstance.cpp -------------------------------------------------------------------------------- /src/hlam/application/SingleInstance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/SingleInstance.hpp -------------------------------------------------------------------------------- /src/hlam/application/ToolApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/ToolApplication.cpp -------------------------------------------------------------------------------- /src/hlam/application/ToolApplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/application/ToolApplication.hpp -------------------------------------------------------------------------------- /src/hlam/entity/AnimEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/AnimEvent.hpp -------------------------------------------------------------------------------- /src/hlam/entity/AxesEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/AxesEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/AxesEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/AxesEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/BackgroundEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/BackgroundEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/BackgroundEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/BackgroundEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/BaseAnimating.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/BaseAnimating.hpp -------------------------------------------------------------------------------- /src/hlam/entity/BaseEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/BaseEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/BaseEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/BaseEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/BoundingBoxEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/BoundingBoxEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/BoundingBoxEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/BoundingBoxEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/entity/ClippingBoxEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/ClippingBoxEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/ClippingBoxEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/ClippingBoxEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/CrosshairEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/CrosshairEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/CrosshairEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/CrosshairEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/EntityList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/EntityList.cpp -------------------------------------------------------------------------------- /src/hlam/entity/EntityList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/EntityList.hpp -------------------------------------------------------------------------------- /src/hlam/entity/Events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/Events.hpp -------------------------------------------------------------------------------- /src/hlam/entity/GroundEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/GroundEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/GroundEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/GroundEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/GuidelinesEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/GuidelinesEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/GuidelinesEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/GuidelinesEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/HLMVStudioModelEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/HLMVStudioModelEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/HLMVStudioModelEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/HLMVStudioModelEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/PlayerHitboxEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/PlayerHitboxEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/PlayerHitboxEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/PlayerHitboxEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/StudioModelEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/StudioModelEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/StudioModelEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/StudioModelEntity.hpp -------------------------------------------------------------------------------- /src/hlam/entity/TextureEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/TextureEntity.cpp -------------------------------------------------------------------------------- /src/hlam/entity/TextureEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/entity/TextureEntity.hpp -------------------------------------------------------------------------------- /src/hlam/filesystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/filesystem/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/filesystem/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/filesystem/FileSystem.cpp -------------------------------------------------------------------------------- /src/hlam/filesystem/FileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/filesystem/FileSystem.hpp -------------------------------------------------------------------------------- /src/hlam/filesystem/FileSystemConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/filesystem/FileSystemConstants.cpp -------------------------------------------------------------------------------- /src/hlam/filesystem/FileSystemConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/filesystem/FileSystemConstants.hpp -------------------------------------------------------------------------------- /src/hlam/filesystem/IFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/filesystem/IFileSystem.hpp -------------------------------------------------------------------------------- /src/hlam/formats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/formats/DrawConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/DrawConstants.hpp -------------------------------------------------------------------------------- /src/hlam/formats/activity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/activity.hpp -------------------------------------------------------------------------------- /src/hlam/formats/liblist/LiblistReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/liblist/LiblistReader.cpp -------------------------------------------------------------------------------- /src/hlam/formats/liblist/LiblistReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/liblist/LiblistReader.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/BoneTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/BoneTransformer.cpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/BoneTransformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/BoneTransformer.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/DumpModelInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/DumpModelInfo.cpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/DumpModelInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/DumpModelInfo.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/EditableStudioModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/EditableStudioModel.cpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/EditableStudioModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/EditableStudioModel.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/ModelRenderInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/ModelRenderInfo.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModel.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModelFileFormat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModelFileFormat.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModelIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModelIO.cpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModelIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModelIO.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModelRenderer.cpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModelRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModelRenderer.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModelUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModelUtils.cpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioModelUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioModelUtils.hpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioSorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioSorting.cpp -------------------------------------------------------------------------------- /src/hlam/formats/studiomodel/StudioSorting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/formats/studiomodel/StudioSorting.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/graphics/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/Camera.cpp -------------------------------------------------------------------------------- /src/hlam/graphics/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/Camera.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/GraphicsConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/GraphicsConstants.cpp -------------------------------------------------------------------------------- /src/hlam/graphics/GraphicsConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/GraphicsConstants.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/GraphicsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/GraphicsUtils.cpp -------------------------------------------------------------------------------- /src/hlam/graphics/GraphicsUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/GraphicsUtils.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/IGraphicsContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/IGraphicsContext.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/Image.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/Light.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/OpenGL.cpp -------------------------------------------------------------------------------- /src/hlam/graphics/OpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/OpenGL.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/Palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/Palette.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/Scene.cpp -------------------------------------------------------------------------------- /src/hlam/graphics/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/Scene.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/SceneContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/SceneContext.hpp -------------------------------------------------------------------------------- /src/hlam/graphics/TextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/TextureLoader.cpp -------------------------------------------------------------------------------- /src/hlam/graphics/TextureLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/graphics/TextureLoader.hpp -------------------------------------------------------------------------------- /src/hlam/hlam.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/hlam.ico -------------------------------------------------------------------------------- /src/hlam/hlam.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/hlam.rc -------------------------------------------------------------------------------- /src/hlam/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/IAssetManagerPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/IAssetManagerPlugin.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/forwarding/ForwardingAssetManagerPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/forwarding/ForwardingAssetManagerPlugin.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/forwarding/ForwardingAssetManagerPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/forwarding/ForwardingAssetManagerPlugin.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/HalfLifeAssetManagerPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/HalfLifeAssetManagerPlugin.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/HalfLifeAssetManagerPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/HalfLifeAssetManagerPlugin.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/StudioModelAsset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/StudioModelAsset.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/StudioModelAsset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/StudioModelAsset.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/StudioModelAssetProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/StudioModelAssetProvider.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/StudioModelAssetProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/StudioModelAssetProvider.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/StudioModelColors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/StudioModelColors.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/StudioModelSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/StudioModelSettings.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/StudioModelSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/StudioModelSettings.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/options/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/options/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/options/OptionsPageStudioModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/options/OptionsPageStudioModel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/options/OptionsPageStudioModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/options/OptionsPageStudioModel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/options/OptionsPageStudioModel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/options/OptionsPageStudioModel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/settings/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/settings/StudioModelSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/settings/StudioModelSettings.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/settings/StudioModelSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/settings/StudioModelSettings.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/DockHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/DockHelpers.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/InfoBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/InfoBar.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/InfoBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/InfoBar.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/InfoBar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/InfoBar.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelData.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelData.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelEditWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelEditWidget.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelEditWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelEditWidget.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelEditWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelEditWidget.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelTextureUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelTextureUtilities.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelTextureUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelTextureUtilities.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelUndoCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelUndoCommands.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelUndoCommands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelUndoCommands.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelValidators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelValidators.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelValidators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelValidators.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelView.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelView.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/StudioModelView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/StudioModelView.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/Timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/Timeline.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/Timeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/Timeline.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/Timeline.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/Timeline.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dialogs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dialogs/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dialogs/QCDataDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dialogs/QCDataDialog.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dialogs/QCDataDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dialogs/QCDataDialog.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dialogs/QCDataDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dialogs/QCDataDialog.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/AttachmentsPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/AttachmentsPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/AttachmentsPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/AttachmentsPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/AttachmentsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/AttachmentsPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BodyPartsPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BodyPartsPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BodyPartsPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BodyPartsPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BodyPartsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BodyPartsPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BoneControllersPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BoneControllersPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BoneControllersPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BoneControllersPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BoneControllersPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BoneControllersPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BonesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BonesPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BonesPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BonesPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BonesPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/BonesPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ExportUVMeshDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ExportUVMeshDialog.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ExportUVMeshDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ExportUVMeshDialog.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ExportUVMeshDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ExportUVMeshDialog.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/HitboxesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/HitboxesPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/HitboxesPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/HitboxesPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/HitboxesPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/HitboxesPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/LightingPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/LightingPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/LightingPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/LightingPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/LightingPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/LightingPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDataPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDataPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDataPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDataPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDataPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDataPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDisplayPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDisplayPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDisplayPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDisplayPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDisplayPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ModelDisplayPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ScenePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ScenePanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ScenePanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ScenePanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ScenePanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/ScenePanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SequencesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SequencesPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SequencesPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SequencesPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SequencesPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SequencesPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SkyLightPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SkyLightPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SkyLightPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SkyLightPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SkyLightPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/SkyLightPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TexturesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TexturesPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TexturesPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TexturesPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TexturesPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TexturesPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TransformPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TransformPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TransformPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TransformPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TransformPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/TransformPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/BackgroundPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/BackgroundPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/BackgroundPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/BackgroundPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/BackgroundPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/BackgroundPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/GroundPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/GroundPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/GroundPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/GroundPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/GroundPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/GroundPanel.ui -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/ModelPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/ModelPanel.cpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/ModelPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/ModelPanel.hpp -------------------------------------------------------------------------------- /src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/ModelPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/plugins/halflife/studiomodel/ui/dockpanels/objects/ModelPanel.ui -------------------------------------------------------------------------------- /src/hlam/qt/ByteLengthValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/ByteLengthValidator.hpp -------------------------------------------------------------------------------- /src/hlam/qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/qt/HashFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/HashFunctions.hpp -------------------------------------------------------------------------------- /src/hlam/qt/ObservableList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/ObservableList.hpp -------------------------------------------------------------------------------- /src/hlam/qt/QtLogSink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/QtLogSink.hpp -------------------------------------------------------------------------------- /src/hlam/qt/QtLogging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/QtLogging.hpp -------------------------------------------------------------------------------- /src/hlam/qt/QtUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/QtUtilities.cpp -------------------------------------------------------------------------------- /src/hlam/qt/QtUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/QtUtilities.hpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/qt/widgets/ShortDoubleSpinBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/ShortDoubleSpinBox.cpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/ShortDoubleSpinBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/ShortDoubleSpinBox.hpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/ShortVector3Edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/ShortVector3Edit.cpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/ShortVector3Edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/ShortVector3Edit.hpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/ShortVector3Edit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/ShortVector3Edit.ui -------------------------------------------------------------------------------- /src/hlam/qt/widgets/SimpleVector3Edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/SimpleVector3Edit.cpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/SimpleVector3Edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/SimpleVector3Edit.hpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/Vector3Edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/Vector3Edit.cpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/Vector3Edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/Vector3Edit.hpp -------------------------------------------------------------------------------- /src/hlam/qt/widgets/Vector3Edit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/qt/widgets/Vector3Edit.ui -------------------------------------------------------------------------------- /src/hlam/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/resources.qrc -------------------------------------------------------------------------------- /src/hlam/settings/ApplicationSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/ApplicationSettings.cpp -------------------------------------------------------------------------------- /src/hlam/settings/ApplicationSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/ApplicationSettings.hpp -------------------------------------------------------------------------------- /src/hlam/settings/BaseSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/BaseSettings.hpp -------------------------------------------------------------------------------- /src/hlam/settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/settings/ColorSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/ColorSettings.hpp -------------------------------------------------------------------------------- /src/hlam/settings/ExternalProgramSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/ExternalProgramSettings.cpp -------------------------------------------------------------------------------- /src/hlam/settings/ExternalProgramSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/ExternalProgramSettings.hpp -------------------------------------------------------------------------------- /src/hlam/settings/GameConfigurationsSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/GameConfigurationsSettings.cpp -------------------------------------------------------------------------------- /src/hlam/settings/GameConfigurationsSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/GameConfigurationsSettings.hpp -------------------------------------------------------------------------------- /src/hlam/settings/RecentFilesSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/settings/RecentFilesSettings.hpp -------------------------------------------------------------------------------- /src/hlam/soundsystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/soundsystem/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/soundsystem/DummySoundSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/soundsystem/DummySoundSystem.hpp -------------------------------------------------------------------------------- /src/hlam/soundsystem/ISoundSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/soundsystem/ISoundSystem.hpp -------------------------------------------------------------------------------- /src/hlam/soundsystem/SoundConstants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/soundsystem/SoundConstants.hpp -------------------------------------------------------------------------------- /src/hlam/soundsystem/SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/soundsystem/SoundSystem.cpp -------------------------------------------------------------------------------- /src/hlam/soundsystem/SoundSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/soundsystem/SoundSystem.hpp -------------------------------------------------------------------------------- /src/hlam/ui/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/AboutDialog.cpp -------------------------------------------------------------------------------- /src/hlam/ui/AboutDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/AboutDialog.hpp -------------------------------------------------------------------------------- /src/hlam/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/ui/DockableWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/DockableWidget.hpp -------------------------------------------------------------------------------- /src/hlam/ui/DragNDropEventFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/DragNDropEventFilter.hpp -------------------------------------------------------------------------------- /src/hlam/ui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/MainWindow.cpp -------------------------------------------------------------------------------- /src/hlam/ui/MainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/MainWindow.hpp -------------------------------------------------------------------------------- /src/hlam/ui/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/MainWindow.ui -------------------------------------------------------------------------------- /src/hlam/ui/OpenGLGraphicsContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/OpenGLGraphicsContext.hpp -------------------------------------------------------------------------------- /src/hlam/ui/SceneWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/SceneWidget.cpp -------------------------------------------------------------------------------- /src/hlam/ui/SceneWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/SceneWidget.hpp -------------------------------------------------------------------------------- /src/hlam/ui/StateSnapshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/StateSnapshot.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/ArcBallCameraOperator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/ArcBallCameraOperator.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/CameraOperator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/CameraOperator.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/CameraOperators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/CameraOperators.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/FirstPersonCameraOperator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/FirstPersonCameraOperator.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/FreeLookCameraOperator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/FreeLookCameraOperator.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/TextureCameraOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/TextureCameraOperator.cpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/TextureCameraOperator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/TextureCameraOperator.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/ArcBallSettingsPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/ArcBallSettingsPanel.cpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/ArcBallSettingsPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/ArcBallSettingsPanel.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/ArcBallSettingsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/ArcBallSettingsPanel.ui -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/CamerasPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/CamerasPanel.cpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/CamerasPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/CamerasPanel.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/CamerasPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/CamerasPanel.ui -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/FirstPersonSettingsPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/FirstPersonSettingsPanel.cpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/FirstPersonSettingsPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/FirstPersonSettingsPanel.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/FirstPersonSettingsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/FirstPersonSettingsPanel.ui -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/FreeLookSettingsPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/FreeLookSettingsPanel.cpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/FreeLookSettingsPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/FreeLookSettingsPanel.hpp -------------------------------------------------------------------------------- /src/hlam/ui/camera_operators/dockpanels/FreeLookSettingsPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/camera_operators/dockpanels/FreeLookSettingsPanel.ui -------------------------------------------------------------------------------- /src/hlam/ui/dialogs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dialogs/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/ui/dialogs/OpenInExternalProgramDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dialogs/OpenInExternalProgramDialog.cpp -------------------------------------------------------------------------------- /src/hlam/ui/dialogs/OpenInExternalProgramDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dialogs/OpenInExternalProgramDialog.hpp -------------------------------------------------------------------------------- /src/hlam/ui/dialogs/OpenInExternalProgramDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dialogs/OpenInExternalProgramDialog.ui -------------------------------------------------------------------------------- /src/hlam/ui/dialogs/SelectGameConfigurationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dialogs/SelectGameConfigurationDialog.cpp -------------------------------------------------------------------------------- /src/hlam/ui/dialogs/SelectGameConfigurationDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dialogs/SelectGameConfigurationDialog.hpp -------------------------------------------------------------------------------- /src/hlam/ui/dialogs/SelectGameConfigurationDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dialogs/SelectGameConfigurationDialog.ui -------------------------------------------------------------------------------- /src/hlam/ui/dockpanels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dockpanels/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/ui/dockpanels/FileBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dockpanels/FileBrowser.cpp -------------------------------------------------------------------------------- /src/hlam/ui/dockpanels/FileBrowser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dockpanels/FileBrowser.hpp -------------------------------------------------------------------------------- /src/hlam/ui/dockpanels/FileBrowser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dockpanels/FileBrowser.ui -------------------------------------------------------------------------------- /src/hlam/ui/dockpanels/MessagesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dockpanels/MessagesPanel.cpp -------------------------------------------------------------------------------- /src/hlam/ui/dockpanels/MessagesPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dockpanels/MessagesPanel.hpp -------------------------------------------------------------------------------- /src/hlam/ui/dockpanels/MessagesPanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/dockpanels/MessagesPanel.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsDialog.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsDialog.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsDialog.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPage.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPage.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageColors.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageColors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageColors.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageColors.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageColors.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageExternalPrograms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageExternalPrograms.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageExternalPrograms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageExternalPrograms.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageExternalPrograms.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageExternalPrograms.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageGeneral.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageGeneral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageGeneral.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageGeneral.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageGeneral.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageRegistry.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageRegistry.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageStyle.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageStyle.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/OptionsPageStyle.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/OptionsPageStyle.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectConfigurePropertiesPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectConfigurePropertiesPage.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectConfigurePropertiesPage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectConfigurePropertiesPage.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectConfigurePropertiesPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectConfigurePropertiesPage.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectGameConfigurationsWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectGameConfigurationsWizard.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectGameConfigurationsWizard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectGameConfigurationsWizard.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectScanResultsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectScanResultsPage.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectScanResultsPage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectScanResultsPage.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/AutodetectScanResultsPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/AutodetectScanResultsPage.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/EditGameConfigurationsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/EditGameConfigurationsDialog.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/EditGameConfigurationsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/EditGameConfigurationsDialog.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/EditGameConfigurationsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/EditGameConfigurationsDialog.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/GameConfigurationsOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/GameConfigurationsOptions.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/OptionsPageFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/OptionsPageFileSystem.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/OptionsPageFileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/OptionsPageFileSystem.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/OptionsPageFileSystem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/OptionsPageFileSystem.ui -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/OptionsPageGameConfigurations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/OptionsPageGameConfigurations.cpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/OptionsPageGameConfigurations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/OptionsPageGameConfigurations.hpp -------------------------------------------------------------------------------- /src/hlam/ui/options/gameconfigurations/OptionsPageGameConfigurations.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/ui/options/gameconfigurations/OptionsPageGameConfigurations.ui -------------------------------------------------------------------------------- /src/hlam/utility/BoundingBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/BoundingBox.hpp -------------------------------------------------------------------------------- /src/hlam/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/CMakeLists.txt -------------------------------------------------------------------------------- /src/hlam/utility/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/Class.hpp -------------------------------------------------------------------------------- /src/hlam/utility/Const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/Const.hpp -------------------------------------------------------------------------------- /src/hlam/utility/CoordinateSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/CoordinateSystem.hpp -------------------------------------------------------------------------------- /src/hlam/utility/IOUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/IOUtils.cpp -------------------------------------------------------------------------------- /src/hlam/utility/IOUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/IOUtils.hpp -------------------------------------------------------------------------------- /src/hlam/utility/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/Platform.hpp -------------------------------------------------------------------------------- /src/hlam/utility/StringUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/StringUtils.hpp -------------------------------------------------------------------------------- /src/hlam/utility/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/Tokenizer.cpp -------------------------------------------------------------------------------- /src/hlam/utility/Tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/Tokenizer.hpp -------------------------------------------------------------------------------- /src/hlam/utility/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/Utility.hpp -------------------------------------------------------------------------------- /src/hlam/utility/WorldTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/WorldTime.cpp -------------------------------------------------------------------------------- /src/hlam/utility/WorldTime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/WorldTime.hpp -------------------------------------------------------------------------------- /src/hlam/utility/mathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/mathlib.cpp -------------------------------------------------------------------------------- /src/hlam/utility/mathlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/utility/mathlib.hpp -------------------------------------------------------------------------------- /src/hlam/version.rc: -------------------------------------------------------------------------------- 1 | #include "version_generated.rc" 2 | -------------------------------------------------------------------------------- /src/hlam/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/src/hlam/version.rc.in -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg.json -------------------------------------------------------------------------------- /vcpkg_config/registry/ports/libnyquist/0.1.0_0/install-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/registry/ports/libnyquist/0.1.0_0/install-config.patch -------------------------------------------------------------------------------- /vcpkg_config/registry/ports/libnyquist/0.1.0_0/libnyquistConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/registry/ports/libnyquist/0.1.0_0/libnyquistConfig.cmake.in -------------------------------------------------------------------------------- /vcpkg_config/registry/ports/libnyquist/0.1.0_0/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/registry/ports/libnyquist/0.1.0_0/portfile.cmake -------------------------------------------------------------------------------- /vcpkg_config/registry/ports/libnyquist/0.1.0_0/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/registry/ports/libnyquist/0.1.0_0/usage -------------------------------------------------------------------------------- /vcpkg_config/registry/ports/libnyquist/0.1.0_0/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/registry/ports/libnyquist/0.1.0_0/vcpkg.json -------------------------------------------------------------------------------- /vcpkg_config/registry/versions/baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/registry/versions/baseline.json -------------------------------------------------------------------------------- /vcpkg_config/registry/versions/l-/libnyquist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/registry/versions/l-/libnyquist.json -------------------------------------------------------------------------------- /vcpkg_config/triplets/all-common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/triplets/all-common.cmake -------------------------------------------------------------------------------- /vcpkg_config/triplets/x64-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/triplets/x64-linux.cmake -------------------------------------------------------------------------------- /vcpkg_config/triplets/x86-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/triplets/x86-linux.cmake -------------------------------------------------------------------------------- /vcpkg_config/triplets/x86-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVanheer/HalfLifeAssetManager/HEAD/vcpkg_config/triplets/x86-windows.cmake --------------------------------------------------------------------------------