├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── media └── banner.png ├── src ├── cleanup.bat └── sdhlt │ ├── Makefile │ ├── common │ ├── TimeCounter.h │ ├── anorms.h │ ├── blockmem.cpp │ ├── blockmem.h │ ├── boundingbox.h │ ├── bspfile.cpp │ ├── bspfile.h │ ├── cmdlib.cpp │ ├── cmdlib.h │ ├── cmdlinecfg.cpp │ ├── cmdlinecfg.h │ ├── filelib.cpp │ ├── filelib.h │ ├── hlassert.h │ ├── log.cpp │ ├── log.h │ ├── mathlib.cpp │ ├── mathlib.h │ ├── mathtypes.h │ ├── messages.cpp │ ├── messages.h │ ├── resourcelock.cpp │ ├── resourcelock.h │ ├── scriplib.cpp │ ├── scriplib.h │ ├── stringlib.h │ ├── studio.h │ ├── threads.cpp │ ├── threads.h │ ├── win32fix.h │ ├── winding.cpp │ └── winding.h │ ├── sdHLBSP │ ├── brink.cpp │ ├── bsp5.h │ ├── merge.cpp │ ├── outside.cpp │ ├── portals.cpp │ ├── qbsp.cpp │ ├── sdHLBSP.vcproj │ ├── sdHLBSP.vcxproj │ ├── sdHLBSP.vcxproj.filters │ ├── solidbsp.cpp │ ├── surfaces.cpp │ ├── tjunc.cpp │ └── writebsp.cpp │ ├── sdHLCSG │ ├── ansitoutf8.cpp │ ├── brush.cpp │ ├── brushunion.cpp │ ├── csg.h │ ├── hullfile.cpp │ ├── map.cpp │ ├── netvis_in_vis.cpp │ ├── properties.cpp │ ├── qcsg.cpp │ ├── sdHLCSG.vcproj │ ├── sdHLCSG.vcxproj │ ├── sdHLCSG.vcxproj.filters │ ├── textures.cpp │ ├── wadcfg.cpp │ ├── wadpath.cpp │ └── wadpath.h │ ├── sdHLRAD │ ├── compress.cpp │ ├── compress.h │ ├── lerp.cpp │ ├── lightmap.cpp │ ├── list.h │ ├── loadtextures.cpp │ ├── mathutil.cpp │ ├── meshdesc.cpp │ ├── meshdesc.h │ ├── meshtrace.cpp │ ├── meshtrace.h │ ├── nomatrix.cpp │ ├── progmesh.cpp │ ├── qrad.cpp │ ├── qrad.h │ ├── qradutil.cpp │ ├── sdHLRAD.vcproj │ ├── sdHLRAD.vcxproj │ ├── sdHLRAD.vcxproj.filters │ ├── sparse.cpp │ ├── stringlib.cpp │ ├── studio.cpp │ ├── trace.cpp │ ├── transfers.cpp │ ├── transparency.cpp │ ├── vismatrix.cpp │ └── vismatrixutil.cpp │ ├── sdHLVIS │ ├── flow.cpp │ ├── sdHLVIS.vcproj │ ├── sdHLVIS.vcxproj │ ├── sdHLVIS.vcxproj.filters │ ├── vis.cpp │ ├── vis.h │ ├── zones.cpp │ └── zones.h │ ├── sdRIPENT │ ├── ripent.cpp │ ├── ripent.h │ ├── sdRIPENT.vcproj │ ├── sdRIPENT.vcxproj │ └── sdRIPENT.vcxproj.filters │ ├── sdhlt.sln │ └── template │ ├── BaseMath.h │ ├── EndianMath.h │ ├── ReferenceArray.h │ ├── ReferenceCounter.h │ ├── ReferenceObject.h │ ├── ReferencePtr.h │ └── basictypes.h └── tools ├── lights.rad ├── sdhlt.fgd ├── sdhlt.wad ├── settings.txt └── wad.cfg /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/README.md -------------------------------------------------------------------------------- /media/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/media/banner.png -------------------------------------------------------------------------------- /src/cleanup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/cleanup.bat -------------------------------------------------------------------------------- /src/sdhlt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/Makefile -------------------------------------------------------------------------------- /src/sdhlt/common/TimeCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/TimeCounter.h -------------------------------------------------------------------------------- /src/sdhlt/common/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/anorms.h -------------------------------------------------------------------------------- /src/sdhlt/common/blockmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/blockmem.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/blockmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/blockmem.h -------------------------------------------------------------------------------- /src/sdhlt/common/boundingbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/boundingbox.h -------------------------------------------------------------------------------- /src/sdhlt/common/bspfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/bspfile.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/bspfile.h -------------------------------------------------------------------------------- /src/sdhlt/common/cmdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/cmdlib.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/cmdlib.h -------------------------------------------------------------------------------- /src/sdhlt/common/cmdlinecfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/cmdlinecfg.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/cmdlinecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/cmdlinecfg.h -------------------------------------------------------------------------------- /src/sdhlt/common/filelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/filelib.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/filelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/filelib.h -------------------------------------------------------------------------------- /src/sdhlt/common/hlassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/hlassert.h -------------------------------------------------------------------------------- /src/sdhlt/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/log.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/log.h -------------------------------------------------------------------------------- /src/sdhlt/common/mathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/mathlib.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/mathlib.h -------------------------------------------------------------------------------- /src/sdhlt/common/mathtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/mathtypes.h -------------------------------------------------------------------------------- /src/sdhlt/common/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/messages.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/messages.h -------------------------------------------------------------------------------- /src/sdhlt/common/resourcelock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/resourcelock.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/resourcelock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/resourcelock.h -------------------------------------------------------------------------------- /src/sdhlt/common/scriplib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/scriplib.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/scriplib.h -------------------------------------------------------------------------------- /src/sdhlt/common/stringlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/stringlib.h -------------------------------------------------------------------------------- /src/sdhlt/common/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/studio.h -------------------------------------------------------------------------------- /src/sdhlt/common/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/threads.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/threads.h -------------------------------------------------------------------------------- /src/sdhlt/common/win32fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/win32fix.h -------------------------------------------------------------------------------- /src/sdhlt/common/winding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/winding.cpp -------------------------------------------------------------------------------- /src/sdhlt/common/winding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/common/winding.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/brink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/brink.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/bsp5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/bsp5.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/merge.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/outside.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/outside.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/portals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/portals.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/qbsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/qbsp.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/sdHLBSP.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/sdHLBSP.vcproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/sdHLBSP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/sdHLBSP.vcxproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/sdHLBSP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/sdHLBSP.vcxproj.filters -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/solidbsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/solidbsp.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/surfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/surfaces.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/tjunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/tjunc.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLBSP/writebsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLBSP/writebsp.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/ansitoutf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/ansitoutf8.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/brush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/brush.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/brushunion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/brushunion.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/csg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/csg.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/hullfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/hullfile.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/map.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/netvis_in_vis.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/properties.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/qcsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/qcsg.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/sdHLCSG.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/sdHLCSG.vcproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/sdHLCSG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/sdHLCSG.vcxproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/sdHLCSG.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/sdHLCSG.vcxproj.filters -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/textures.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/wadcfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/wadcfg.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/wadpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/wadpath.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLCSG/wadpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLCSG/wadpath.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/compress.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/compress.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/lerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/lerp.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/lightmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/lightmap.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/list.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/loadtextures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/loadtextures.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/mathutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/mathutil.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/meshdesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/meshdesc.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/meshdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/meshdesc.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/meshtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/meshtrace.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/meshtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/meshtrace.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/nomatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/nomatrix.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/progmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/progmesh.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/qrad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/qrad.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/qrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/qrad.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/qradutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/qradutil.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/sdHLRAD.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/sdHLRAD.vcproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/sdHLRAD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/sdHLRAD.vcxproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/sdHLRAD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/sdHLRAD.vcxproj.filters -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/sparse.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/stringlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/stringlib.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/studio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/studio.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/trace.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/transfers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/transfers.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/transparency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/transparency.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/vismatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/vismatrix.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLRAD/vismatrixutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLRAD/vismatrixutil.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/flow.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/sdHLVIS.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/sdHLVIS.vcproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/sdHLVIS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/sdHLVIS.vcxproj -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/sdHLVIS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/sdHLVIS.vcxproj.filters -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/vis.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/vis.h -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/zones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/zones.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdHLVIS/zones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdHLVIS/zones.h -------------------------------------------------------------------------------- /src/sdhlt/sdRIPENT/ripent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdRIPENT/ripent.cpp -------------------------------------------------------------------------------- /src/sdhlt/sdRIPENT/ripent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdRIPENT/ripent.h -------------------------------------------------------------------------------- /src/sdhlt/sdRIPENT/sdRIPENT.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdRIPENT/sdRIPENT.vcproj -------------------------------------------------------------------------------- /src/sdhlt/sdRIPENT/sdRIPENT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdRIPENT/sdRIPENT.vcxproj -------------------------------------------------------------------------------- /src/sdhlt/sdRIPENT/sdRIPENT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdRIPENT/sdRIPENT.vcxproj.filters -------------------------------------------------------------------------------- /src/sdhlt/sdhlt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/sdhlt.sln -------------------------------------------------------------------------------- /src/sdhlt/template/BaseMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/template/BaseMath.h -------------------------------------------------------------------------------- /src/sdhlt/template/EndianMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/template/EndianMath.h -------------------------------------------------------------------------------- /src/sdhlt/template/ReferenceArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/template/ReferenceArray.h -------------------------------------------------------------------------------- /src/sdhlt/template/ReferenceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/template/ReferenceCounter.h -------------------------------------------------------------------------------- /src/sdhlt/template/ReferenceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/template/ReferenceObject.h -------------------------------------------------------------------------------- /src/sdhlt/template/ReferencePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/template/ReferencePtr.h -------------------------------------------------------------------------------- /src/sdhlt/template/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/src/sdhlt/template/basictypes.h -------------------------------------------------------------------------------- /tools/lights.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/tools/lights.rad -------------------------------------------------------------------------------- /tools/sdhlt.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/tools/sdhlt.fgd -------------------------------------------------------------------------------- /tools/sdhlt.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/tools/sdhlt.wad -------------------------------------------------------------------------------- /tools/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/tools/settings.txt -------------------------------------------------------------------------------- /tools/wad.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seedee/SDHLT/HEAD/tools/wad.cfg --------------------------------------------------------------------------------