├── .gitignore ├── readme.txt ├── src.zip ├── src ├── Terms of Use.txt └── zhlt-vluzacn │ ├── Backup │ └── zhlt_vc2005.sln │ ├── Makefile │ ├── UpgradeLog.htm │ ├── 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 │ ├── files.cpp │ ├── hlassert.h │ ├── log.cpp │ ├── log.h │ ├── mathlib.cpp │ ├── mathlib.h │ ├── mathtypes.h │ ├── messages.cpp │ ├── messages.h │ ├── resourcelock.cpp │ ├── resourcelock.h │ ├── scriplib.cpp │ ├── scriplib.h │ ├── threads.cpp │ ├── threads.h │ ├── win32fix.h │ ├── winding.cpp │ └── winding.h │ ├── hlbsp │ ├── brink.cpp │ ├── bsp5.h │ ├── hlbsp.vcproj │ ├── hlbsp.vcxproj │ ├── hlbsp.vcxproj.filters │ ├── merge.cpp │ ├── outside.cpp │ ├── portals.cpp │ ├── qbsp.cpp │ ├── solidbsp.cpp │ ├── surfaces.cpp │ ├── tjunc.cpp │ └── writebsp.cpp │ ├── hlcsg │ ├── ansitoutf8.cpp │ ├── autowad.cpp │ ├── brush.cpp │ ├── brushunion.cpp │ ├── csg.h │ ├── hlcsg.vcproj │ ├── hlcsg.vcxproj │ ├── hlcsg.vcxproj.filters │ ├── hullfile.cpp │ ├── map.cpp │ ├── netvis_in_vis.cpp │ ├── properties.cpp │ ├── qcsg.cpp │ ├── textures.cpp │ ├── wadcfg.cpp │ ├── wadinclude.cpp │ ├── wadpath.cpp │ └── wadpath.h │ ├── hlrad │ ├── compress.cpp │ ├── compress.h │ ├── hlrad.vcproj │ ├── hlrad.vcxproj │ ├── hlrad.vcxproj.filters │ ├── lerp.cpp │ ├── lightmap.cpp │ ├── loadtextures.cpp │ ├── mathutil.cpp │ ├── nomatrix.cpp │ ├── qrad.cpp │ ├── qrad.h │ ├── qradutil.cpp │ ├── sparse.cpp │ ├── trace.cpp │ ├── transfers.cpp │ ├── transparency.cpp │ ├── vismatrix.cpp │ └── vismatrixutil.cpp │ ├── hlvis │ ├── flow.cpp │ ├── hlvis.vcproj │ ├── hlvis.vcxproj │ ├── hlvis.vcxproj.filters │ ├── vis.cpp │ ├── vis.h │ ├── zones.cpp │ └── zones.h │ ├── ripent │ ├── ripent.cpp │ ├── ripent.h │ ├── ripent.vcproj │ ├── ripent.vcxproj │ └── ripent.vcxproj.filters │ ├── template │ ├── BaseMath.h │ ├── EndianMath.h │ ├── ReferenceArray.h │ ├── ReferenceCounter.h │ ├── ReferenceObject.h │ ├── ReferencePtr.h │ └── basictypes.h │ ├── zhlt.sln │ └── zhlt_vc2005.sln └── tools ├── lights.rad ├── settings.txt ├── wad.cfg ├── zhlt.fgd └── zhlt.wad /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/.gitignore -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/readme.txt -------------------------------------------------------------------------------- /src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src.zip -------------------------------------------------------------------------------- /src/Terms of Use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/Terms of Use.txt -------------------------------------------------------------------------------- /src/zhlt-vluzacn/Backup/zhlt_vc2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/Backup/zhlt_vc2005.sln -------------------------------------------------------------------------------- /src/zhlt-vluzacn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/Makefile -------------------------------------------------------------------------------- /src/zhlt-vluzacn/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/UpgradeLog.htm -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/TimeCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/TimeCounter.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/anorms.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/blockmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/blockmem.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/blockmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/blockmem.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/boundingbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/boundingbox.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/bspfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/bspfile.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/bspfile.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/cmdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/cmdlib.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/cmdlib.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/cmdlinecfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/cmdlinecfg.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/cmdlinecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/cmdlinecfg.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/filelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/filelib.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/filelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/filelib.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/files.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/hlassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/hlassert.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/log.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/log.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/mathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/mathlib.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/mathlib.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/mathtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/mathtypes.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/messages.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/messages.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/resourcelock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/resourcelock.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/resourcelock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/resourcelock.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/scriplib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/scriplib.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/scriplib.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/threads.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/threads.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/win32fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/win32fix.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/winding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/winding.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/common/winding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/common/winding.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/brink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/brink.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/bsp5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/bsp5.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/hlbsp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/hlbsp.vcproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/hlbsp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/hlbsp.vcxproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/hlbsp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/hlbsp.vcxproj.filters -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/merge.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/outside.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/outside.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/portals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/portals.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/qbsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/qbsp.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/solidbsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/solidbsp.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/surfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/surfaces.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/tjunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/tjunc.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlbsp/writebsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlbsp/writebsp.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/ansitoutf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/ansitoutf8.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/autowad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/autowad.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/brush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/brush.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/brushunion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/brushunion.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/csg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/csg.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/hlcsg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/hlcsg.vcproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/hlcsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/hlcsg.vcxproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/hlcsg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/hlcsg.vcxproj.filters -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/hullfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/hullfile.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/map.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/netvis_in_vis.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/properties.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/qcsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/qcsg.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/textures.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/wadcfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/wadcfg.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/wadinclude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/wadinclude.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/wadpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/wadpath.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlcsg/wadpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlcsg/wadpath.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/compress.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/compress.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/hlrad.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/hlrad.vcproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/hlrad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/hlrad.vcxproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/hlrad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/hlrad.vcxproj.filters -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/lerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/lerp.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/lightmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/lightmap.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/loadtextures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/loadtextures.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/mathutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/mathutil.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/nomatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/nomatrix.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/qrad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/qrad.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/qrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/qrad.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/qradutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/qradutil.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/sparse.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/trace.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/transfers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/transfers.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/transparency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/transparency.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/vismatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/vismatrix.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlrad/vismatrixutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlrad/vismatrixutil.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/flow.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/hlvis.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/hlvis.vcproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/hlvis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/hlvis.vcxproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/hlvis.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/hlvis.vcxproj.filters -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/vis.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/vis.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/zones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/zones.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/hlvis/zones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/hlvis/zones.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/ripent/ripent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/ripent/ripent.cpp -------------------------------------------------------------------------------- /src/zhlt-vluzacn/ripent/ripent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/ripent/ripent.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/ripent/ripent.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/ripent/ripent.vcproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/ripent/ripent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/ripent/ripent.vcxproj -------------------------------------------------------------------------------- /src/zhlt-vluzacn/ripent/ripent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/ripent/ripent.vcxproj.filters -------------------------------------------------------------------------------- /src/zhlt-vluzacn/template/BaseMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/template/BaseMath.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/template/EndianMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/template/EndianMath.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/template/ReferenceArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/template/ReferenceArray.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/template/ReferenceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/template/ReferenceCounter.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/template/ReferenceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/template/ReferenceObject.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/template/ReferencePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/template/ReferencePtr.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/template/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/template/basictypes.h -------------------------------------------------------------------------------- /src/zhlt-vluzacn/zhlt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/zhlt.sln -------------------------------------------------------------------------------- /src/zhlt-vluzacn/zhlt_vc2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/src/zhlt-vluzacn/zhlt_vc2005.sln -------------------------------------------------------------------------------- /tools/lights.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/tools/lights.rad -------------------------------------------------------------------------------- /tools/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/tools/settings.txt -------------------------------------------------------------------------------- /tools/wad.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/tools/wad.cfg -------------------------------------------------------------------------------- /tools/zhlt.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/tools/zhlt.fgd -------------------------------------------------------------------------------- /tools/zhlt.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twhl-community/VHLT-V34/HEAD/tools/zhlt.wad --------------------------------------------------------------------------------