├── .gitignore ├── GameConfig.txt ├── README.md ├── base.fgd ├── forgit └── logo.png ├── halflife2.fgd ├── include ├── BitmapFontFile.h ├── Color.h ├── Friends │ ├── AddOns │ │ ├── AddOnMessages.h │ │ ├── AddOnTypes.h │ │ └── ISteamAddOn.h │ ├── IFriendsNET.h │ └── IFriendsUser.h ├── IGameUIFuncs.h ├── IHammer.h ├── OfflineMode.h ├── PlayerState.h ├── ScratchPadUtils.cpp ├── ScratchPadUtils.h ├── SoundEmitterSystem │ └── isoundemittersystembase.h ├── SoundParametersInternal.cpp ├── UnicodeFileHelpers.cpp ├── UnicodeFileHelpers.h ├── UtlCachedFileData.h ├── VGuiMatSurface │ ├── IMatSystemSurface.h │ └── IMatSystemSurfaceV5.h ├── XUnzip.cpp ├── XZip.cpp ├── appframework │ ├── AppFramework.h │ ├── IAppSystem.h │ ├── IAppSystemGroup.h │ ├── VguiMatSysApp.h │ ├── tier2app.h │ └── tier3app.h ├── arraystack.h ├── avi │ ├── iavi.h │ └── ibik.h ├── basehandle.h ├── bitmap │ ├── bitmap.h │ ├── cubemap.h │ ├── float_bm.h │ ├── imageformat.h │ ├── psd.h │ ├── tgaloader.h │ └── tgawriter.h ├── bitvec.h ├── blockingudpsocket.cpp ├── blockingudpsocket.h ├── bone_accessor.cpp ├── bone_accessor.h ├── bone_setup.cpp ├── bone_setup.h ├── bspfile.h ├── bspflags.h ├── bsptreedata.cpp ├── bsptreedata.h ├── builddisp.cpp ├── builddisp.h ├── captioncompiler.h ├── cdll_int.h ├── chunkfile.cpp ├── chunkfile.h ├── client_class.cpp ├── client_class.h ├── client_render_handle.h ├── client_textmessage.h ├── clientstats.h ├── cmodel.h ├── collisionutils.cpp ├── collisionutils.h ├── con_nprint.h ├── const.h ├── coordsize.h ├── crtmemdebug.cpp ├── crtmemdebug.h ├── datacache │ ├── idatacache.h │ └── imdlcache.h ├── datamap.h ├── datamodel │ ├── attributeflags.h │ ├── dmattribute.h │ ├── dmattributetypes.h │ ├── dmattributevar.h │ ├── dmehandle.h │ ├── dmelement.h │ ├── dmelementfactoryhelper.h │ ├── dmelementhandle.h │ ├── dmvar.h │ └── idatamodel.h ├── demofile │ └── demoformat.h ├── disp_common.cpp ├── disp_common.h ├── disp_powerinfo.cpp ├── disp_powerinfo.h ├── disp_tesselate.h ├── disp_vertindex.h ├── dispcoll.cpp ├── dispcoll.h ├── dispcoll_common.cpp ├── dispcoll_common.h ├── dlight.h ├── dme_controls │ ├── AnimSetAttributeValue.h │ ├── AssetBuilder.h │ ├── AttributeBasePickerPanel.h │ ├── AttributeBoolChoicePanel.h │ ├── AttributeColorPickerPanel.h │ ├── AttributeElementPanel.h │ ├── AttributeElementPickerPanel.h │ ├── AttributeFilePickerPanel.h │ ├── AttributeIntChoicePanel.h │ ├── AttributeInterpolatorChoicePanel.h │ ├── AttributeMDLPickerPanel.h │ ├── AttributeSequencePickerPanel.h │ ├── AttributeSoundPickerPanel.h │ ├── AttributeStringChoicePanel.h │ ├── AttributeTextEntry.h │ ├── AttributeTextPanel.h │ ├── AttributeWidgetFactory.h │ ├── BaseAnimSetAttributeSliderPanel.h │ ├── BaseAnimSetControlGroupPanel.h │ ├── BaseAnimSetPresetFaderPanel.h │ ├── BaseAnimationSetEditor.h │ ├── BaseAttributeChoicePanel.h │ ├── BaseAttributeDoubleChoicePanel.h │ ├── BaseAttributePanel.h │ ├── ChannelGraphPanel.h │ ├── DmeSourceDCCFilePanel.h │ ├── DmeSourceSkinPanel.h │ ├── ElementPropertiesTree.h │ ├── FileListManager.h │ ├── LogPreview.h │ ├── RecordingState.h │ ├── attributeassetpickerpanel.h │ ├── attributedetailtypepickerpanel.h │ ├── attributeshaderpickerpanel.h │ ├── attributeslider.h │ ├── attributesurfacepropertypickerpanel.h │ ├── dmecombinationsystemeditorpanel.h │ ├── dmecontrols.h │ ├── dmecontrols_utils.h │ ├── dmedageditpanel.h │ ├── dmedagrenderpanel.h │ ├── dmelogeditpanel.h │ ├── dmepanel.h │ ├── dmepicker.h │ ├── dmepresetgroupeditorpanel.h │ ├── filtercombobox.h │ ├── inotifyui.h │ ├── manipulator.h │ ├── mdlpanel.h │ ├── mdlpicker.h │ ├── mdlsequencepicker.h │ ├── particlesystempanel.h │ ├── particlesystempropertiespanel.h │ ├── presetpicker.h │ ├── sequencepicker.h │ ├── simplepotterywheelpanel.h │ ├── soundpicker.h │ ├── soundrecordpanel.h │ └── vmtpanel.h ├── dmserializers │ └── idmserializers.h ├── dmxloader │ ├── dmxattribute.h │ ├── dmxelement.h │ └── dmxloader.h ├── dt_common.h ├── dt_recv.cpp ├── dt_recv.h ├── dt_send.cpp ├── dt_send.h ├── dt_shared.cpp ├── dt_shared.h ├── dt_utlvector_common.cpp ├── dt_utlvector_common.h ├── dt_utlvector_recv.cpp ├── dt_utlvector_recv.h ├── dt_utlvector_send.cpp ├── dt_utlvector_send.h ├── edict.h ├── editor_sendcommand.cpp ├── editor_sendcommand.h ├── eiface.h ├── eifaceV21.h ├── engine │ ├── IClientLeafSystem.h │ ├── ICollideable.h │ ├── IEngineSound.h │ ├── IEngineTrace.h │ ├── IStaticPropMgr.h │ ├── SndInfo.h │ ├── imatchmaking.h │ ├── iserverplugin.h │ ├── ishadowmgr.h │ ├── ivdebugoverlay.h │ ├── ivmodelinfo.h │ ├── ivmodelrender.h │ └── view_sharedv1.h ├── engine_hlds_api.h ├── event_flags.h ├── fgdlib │ ├── entitydefs.h │ ├── fgdlib.h │ ├── gamedata.h │ ├── gdclass.h │ ├── gdvar.h │ ├── helperinfo.h │ ├── ieditortexture.h │ ├── inputoutput.h │ └── wckeyvalues.h ├── filesystem.h ├── filesystem │ └── IQueuedLoader.h ├── filesystem_helpers.cpp ├── filesystem_helpers.h ├── filesystem_init.cpp ├── filesystem_init.h ├── filesystem_passthru.h ├── g15 │ └── ig15.h ├── game │ ├── client │ │ ├── IGameClientExports.h │ │ ├── iclientrendertargets.h │ │ └── iviewport.h │ └── server │ │ └── iplayerinfo.h ├── gamebspfile.h ├── gametrace.h ├── globalvars_base.h ├── iachievementmgr.h ├── ibsppack.h ├── iclient.h ├── icliententity.h ├── icliententitylist.h ├── iclientnetworkable.h ├── iclientrenderable.h ├── iclientthinkable.h ├── iclientunknown.h ├── icvar.h ├── idedicatedexports.h ├── iefx.h ├── ienginevgui.h ├── ifilelist.h ├── igameevents.h ├── igameresources.h ├── ihandleentity.h ├── ihltv.h ├── ihltvdirector.h ├── ilaunchabledll.h ├── imapoverview.h ├── inetchannel.h ├── inetchannelinfo.h ├── inetmessage.h ├── inetmsghandler.h ├── inetwork.h ├── inputsystem │ ├── AnalogCode.h │ ├── ButtonCode.h │ ├── InputEnums.h │ └── iinputsystem.h ├── interpolatortypes.cpp ├── interpolatortypes.h ├── iprediction.h ├── irecipientfilter.h ├── iregistry.h ├── isaverestore.h ├── iscratchpad3d.h ├── iserver.h ├── iserverentity.h ├── iservernetworkable.h ├── iserverunknown.h ├── ishadercompiledll.h ├── isoundcombiner.h ├── ispatialpartition.h ├── isqlwrapper.h ├── istudiorender.h ├── ivguicenterprint.h ├── ivoiceserver.h ├── ivoicetweak.h ├── ivraddll.h ├── ivrenderview.h ├── ivtex.h ├── ixboxsystem.h ├── jigglebones.cpp ├── jigglebones.h ├── jpeglib │ ├── jconfig.h │ ├── jmorecfg.h │ └── jpeglib.h ├── kevvaluescompiler.cpp ├── keyframe │ ├── keyframe.cpp │ └── keyframe.h ├── keyvaluescompiler.h ├── list.h ├── loadcmdline.cpp ├── loadcmdline.h ├── localflexcontroller.h ├── lumpfiles.cpp ├── lumpfiles.h ├── map_utils.cpp ├── map_utils.h ├── materialsystem │ ├── IColorCorrection.h │ ├── IShader.h │ ├── MaterialSystemUtil.cpp │ ├── MaterialSystemUtil.h │ ├── deformations.h │ ├── hardwareverts.h │ ├── idebugtextureinfo.h │ ├── imaterial.h │ ├── imaterialproxy.h │ ├── imaterialproxyfactory.h │ ├── imaterialsystem.h │ ├── imaterialsystemhardwareconfig.h │ ├── imaterialsystemstub.h │ ├── imaterialvar.h │ ├── imesh.h │ ├── imorph.h │ ├── ishaderapi.h │ ├── itexture.h │ ├── ivballoctracker.h │ ├── materialsystem_config.h │ ├── meshreader.h │ └── shader_vcs_version.h ├── mathlib │ ├── IceKey.H │ ├── amd3dx.h │ ├── anorms.h │ ├── bumpvects.h │ ├── compressed_3d_unitvec.h │ ├── compressed_light_cube.h │ ├── compressed_vector.h │ ├── halton.h │ ├── lightdesc.h │ ├── math_pfns.h │ ├── mathlib.h │ ├── noise.h │ ├── polyhedron.h │ ├── quantize.h │ ├── simdvectormatrix.h │ ├── ssemath.h │ ├── ssequaternion.h │ ├── vector.h │ ├── vector2d.h │ ├── vector4d.h │ ├── vmatrix.h │ └── vplane.h ├── matsys_controls │ ├── QCGenerator.h │ ├── assetpicker.h │ ├── baseassetpicker.h │ ├── colorpickerpanel.h │ ├── curveeditorpanel.h │ ├── gamefiletreeview.h │ ├── matsyscontrols.h │ ├── picker.h │ ├── proceduraltexturepanel.h │ ├── tgapreviewpanel.h │ ├── vmtpicker.h │ ├── vmtpreviewpanel.h │ ├── vtfpicker.h │ └── vtfpreviewpanel.h ├── maya │ ├── IMayaVGui.h │ ├── ValveMaya │ │ └── Undo.h │ ├── VsMayaDmx.h │ ├── VsMayaMPxFactory.h │ ├── VsVGuiWindow.h │ └── valveMaya.h ├── mdllib │ └── mdllib.h ├── measure_section.cpp ├── measure_section.h ├── minmax.h ├── model_types.h ├── modes.h ├── mouthinfo.h ├── movieobjects │ ├── dmeanimationlist.h │ ├── dmeanimationset.h │ ├── dmeattachment.h │ ├── dmebalancetostereocalculatoroperator.h │ ├── dmebookmark.h │ ├── dmecamera.h │ ├── dmechannel.h │ ├── dmeclip.h │ ├── dmecombinationoperator.h │ ├── dmedag.h │ ├── dmedccmakefile.h │ ├── dmedrawsettings.h │ ├── dmeeditortypedictionary.h │ ├── dmeexpressionoperator.h │ ├── dmeeyeball.h │ ├── dmeeyeposition.h │ ├── dmefaceset.h │ ├── dmegamemodel.h │ ├── dmegamemodelinput.h │ ├── dmeimage.h │ ├── dmeinput.h │ ├── dmejoint.h │ ├── dmekeyboardinput.h │ ├── dmelight.h │ ├── dmelog.h │ ├── dmemakefile.h │ ├── dmemakefileutils.h │ ├── dmematerial.h │ ├── dmematerialoverlayfxclip.h │ ├── dmemdl.h │ ├── dmemdlmakefile.h │ ├── dmemesh.h │ ├── dmemodel.h │ ├── dmemorphoperator.h │ ├── dmemouseinput.h │ ├── dmeoperator.h │ ├── dmepackoperators.h │ ├── dmeparticlesystemdefinition.h │ ├── dmephonememapping.h │ ├── dmeselection.h │ ├── dmeshader.h │ ├── dmeshape.h │ ├── dmesound.h │ ├── dmetestmesh.h │ ├── dmetexture.h │ ├── dmetimeframe.h │ ├── dmetimeselection.h │ ├── dmetimeselectiontimes.h │ ├── dmetrack.h │ ├── dmetrackgroup.h │ ├── dmetransform.h │ ├── dmetransforminput.h │ ├── dmetransformlist.h │ ├── dmetransformoperator.h │ ├── dmeunpackoperators.h │ ├── dmevertexdata.h │ ├── dmmeshcomp.h │ ├── dmmeshutils.h │ ├── dmobjserializer.h │ ├── dmx_to_vcd.h │ ├── idmemakefileutils.h │ ├── importintovcd.h │ ├── movieobjects.cpp │ ├── movieobjects.h │ ├── movieobjects_compiletools.cpp │ ├── proceduralpresets.h │ └── timeutils.h ├── mxtk │ ├── gl.h │ ├── mx.h │ ├── mxbmp.h │ ├── mxbutton.h │ ├── mxcheckbox.h │ ├── mxchoice.h │ ├── mxchoosecolor.h │ ├── mxevent.h │ ├── mxfiledialog.h │ ├── mxglwindow.h │ ├── mxgroupbox.h │ ├── mximage.h │ ├── mxinit.h │ ├── mxlabel.h │ ├── mxlineedit.h │ ├── mxlinkedlist.h │ ├── mxlistbox.h │ ├── mxlistview.h │ ├── mxmatsyswindow.h │ ├── mxmenu.h │ ├── mxmenubar.h │ ├── mxmessagebox.h │ ├── mxpath.h │ ├── mxpcx.h │ ├── mxpopupmenu.h │ ├── mxprogressbar.h │ ├── mxradiobutton.h │ ├── mxscrollbar.h │ ├── mxslider.h │ ├── mxstring.h │ ├── mxtab.h │ ├── mxtga.h │ ├── mxtogglebutton.h │ ├── mxtooltip.h │ ├── mxtreeview.h │ ├── mxwidget.h │ └── mxwindow.h ├── networkstringtabledefs.h ├── networkvar.cpp ├── networkvar.h ├── nmatrix.h ├── ntree.h ├── nvector.h ├── optimize.h ├── overlaytext.h ├── p4lib │ └── ip4.h ├── parsifal │ ├── bistream.h │ ├── isrcmem.h │ ├── lib │ │ ├── APIChanges │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── aclocal.m4 │ │ ├── conf │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ └── mkinstalldirs │ │ ├── configure │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── conformance.html │ │ │ ├── csrchtml │ │ │ │ ├── canonxml_c.html │ │ │ │ ├── datatype_c.html │ │ │ │ ├── dtddecl_c.html │ │ │ │ ├── elements_c.html │ │ │ │ ├── highlight.css │ │ │ │ ├── nsvalid_c.html │ │ │ │ ├── parsifal_h.html │ │ │ │ ├── test_iconv_c.html │ │ │ │ ├── test_pool_c.html │ │ │ │ ├── winurl_c.html │ │ │ │ ├── xmltest_c.html │ │ │ │ ├── zenstory_c.html │ │ │ │ ├── zenstory_h.html │ │ │ │ └── zenvalid_c.html │ │ │ ├── cvs.html │ │ │ ├── download.html │ │ │ ├── elsewhere.html │ │ │ ├── faq.html │ │ │ ├── index.html │ │ │ ├── links.html │ │ │ ├── manual.html │ │ │ ├── news.html │ │ │ ├── overview.html │ │ │ ├── parsifal_results.html │ │ │ ├── parsifal_results_valid.html │ │ │ ├── pics │ │ │ │ ├── backg.gif │ │ │ │ ├── semail.gif │ │ │ │ ├── testsuite.gif │ │ │ │ ├── uetool1.gif │ │ │ │ └── uevalid1.gif │ │ │ ├── style.css │ │ │ ├── toc.html │ │ │ ├── xmlconf_results.html │ │ │ ├── xmlconf_results_valid.html │ │ │ └── xmlplint.html │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── libparsifal │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bistream.h │ │ │ │ ├── dtdvalid.h │ │ │ │ ├── isrcmem.h │ │ │ │ ├── nametab.h │ │ │ │ ├── optcfg.h │ │ │ │ ├── parsifal.h │ │ │ │ ├── xmlcfg.h │ │ │ │ ├── xmldef.h │ │ │ │ ├── xmldtd.h │ │ │ │ ├── xmlhash.h │ │ │ │ ├── xmlpool.h │ │ │ │ ├── xmlsbuf.h │ │ │ │ └── xmlvect.h │ │ ├── samples │ │ │ ├── canonxml │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── canonxml.c │ │ │ ├── datatype │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── books.xml │ │ │ │ ├── build.bat │ │ │ │ └── datatype.c │ │ │ ├── dtddecl │ │ │ │ └── dtddecl.c │ │ │ ├── elements │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── elements.c │ │ │ ├── misc │ │ │ │ ├── helper.c │ │ │ │ ├── ill16be.xml │ │ │ │ ├── test_iconv.c │ │ │ │ └── test_pool.c │ │ │ ├── nsvalid │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── nsvalid.c │ │ │ ├── winurl │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── winurl.c │ │ │ ├── xmlplint │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── catalog.dtd │ │ │ │ ├── catalog_flat.dtd │ │ │ │ ├── catalogs.c │ │ │ │ ├── curlread.c │ │ │ │ ├── curlread.h │ │ │ │ ├── events.c │ │ │ │ ├── rtrip.c │ │ │ │ ├── stimer.c │ │ │ │ ├── stimer.h │ │ │ │ ├── vfilter.c │ │ │ │ ├── xmlplint.c │ │ │ │ ├── xmlplint.dsp │ │ │ │ ├── xmlplint.dsw │ │ │ │ └── xmlplint.h │ │ │ ├── xmltest │ │ │ │ ├── FCOMPARE.C │ │ │ │ ├── README │ │ │ │ ├── VERSION │ │ │ │ ├── parsifal_tests.xml-failed-0.8.3.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.0.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.1.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.2.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.3.txt │ │ │ │ ├── parsifal_tests.xml-valid-failed-0.9.1.txt │ │ │ │ ├── pxpout │ │ │ │ │ └── README │ │ │ │ ├── xmlconf.xml-failed-0.8.3.txt │ │ │ │ ├── xmlconf.xml-failed-0.9.0.txt │ │ │ │ ├── xmlconf.xml-failed-0.9.1.txt │ │ │ │ ├── xmlconf.xml-failed-0.9.3.txt │ │ │ │ ├── xmlconf.xml-valid-failed-0.9.1.txt │ │ │ │ ├── xmltest.c │ │ │ │ ├── xmltest.dsp │ │ │ │ └── xmltest.dsw │ │ │ ├── zenstory │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ ├── stories.xml │ │ │ │ ├── zenstory.c │ │ │ │ └── zenstory.h │ │ │ └── zenvalid │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ ├── stories.xml │ │ │ │ └── zenvalid.c │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bistream.c │ │ │ ├── dtdvalid.c │ │ │ ├── encoding.c │ │ │ ├── parsifal.c │ │ │ ├── xmlhash.c │ │ │ ├── xmlpool.c │ │ │ ├── xmlsbuf.c │ │ │ └── xmlvect.c │ │ └── win32 │ │ │ ├── bcc │ │ │ └── make │ │ │ │ └── static │ │ │ │ ├── makefile │ │ │ │ └── readme.txt │ │ │ ├── lib │ │ │ └── parsifal.lib │ │ │ ├── mingw │ │ │ └── dev-cpp │ │ │ │ └── static │ │ │ │ ├── Makefile.win │ │ │ │ ├── README │ │ │ │ ├── libparsifal.dev │ │ │ │ └── libparsifal.layout │ │ │ └── vc6 │ │ │ ├── dllmain.c │ │ │ ├── parsifal.def │ │ │ ├── parsifal.dsp │ │ │ └── parsifal.dsw │ ├── nametab.h │ ├── optcfg.h │ ├── parsifal.h │ ├── xmlcfg.h │ ├── xmldef.h │ ├── xmlhash.h │ ├── xmlpool.h │ ├── xmlsbuf.h │ └── xmlvect.h ├── particles │ └── particles.h ├── phonemeconverter.cpp ├── phonemeconverter.h ├── phonemeextractor │ └── phonemeextractor.h ├── phyfile.h ├── pixelwriter.h ├── posedebugger.cpp ├── posedebugger.h ├── r_efx.h ├── raytrace.h ├── registry.cpp ├── renderparm.h ├── rope_physics.cpp ├── rope_physics.h ├── rope_shared.h ├── savegame_version.h ├── saverestoretypes.h ├── scenefilecache │ ├── ISceneFileCache.h │ └── SceneImageFile.h ├── scratchpad3d.cpp ├── scratchpad3d.h ├── sentence.cpp ├── sentence.h ├── server_class.cpp ├── server_class.h ├── sfmobjects │ ├── exportfacialanimation.h │ ├── flexcontrolbuilder.h │ ├── sfmanimationsetutils.h │ ├── sfmphonemeextractor.h │ └── sfmsession.h ├── shaderapi │ ├── IShaderDevice.h │ ├── commandbuffer.h │ ├── ishaderapi.h │ ├── ishaderdynamic.h │ ├── ishadershadow.h │ ├── ishaderutil.h │ └── shareddefs.h ├── shaderlib │ ├── BaseShader.h │ ├── ShaderDLL.h │ └── cshader.h ├── shake.h ├── shattersurfacetypes.h ├── simple_physics.cpp ├── simple_physics.h ├── smooth_average.h ├── soundchars.h ├── soundcombiner.cpp ├── soundflags.h ├── soundinfo.h ├── soundsystem │ ├── isoundsystem.h │ ├── snd_audio_source.h │ └── snd_device.h ├── stdstring.h ├── steam │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamcontentserver.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_contentserver.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ └── steamtypes.h ├── string_t.h ├── stringregistry.cpp ├── stringregistry.h ├── studio.cpp ├── studio.h ├── studio_generic_io.cpp ├── studio_virtualmodel.cpp ├── surfinfo.h ├── texture_group_names.h ├── tier0 │ ├── EventMasks.h │ ├── EventModes.h │ ├── IOCTLCodes.h │ ├── K8PerformanceCounters.h │ ├── P4PerformanceCounters.h │ ├── P5P6PerformanceCounters.h │ ├── PMELib.h │ ├── afxmem_override.cpp │ ├── basetypes.h │ ├── commonmacros.h │ ├── dbg.h │ ├── dbgflag.h │ ├── fasttimer.h │ ├── ia32detect.h │ ├── icommandline.h │ ├── l2cache.h │ ├── mem.h │ ├── memalloc.h │ ├── memdbgoff.h │ ├── memdbgon.h │ ├── memoverride.cpp │ ├── minidump.h │ ├── platform.h │ ├── pmc360.h │ ├── progressbar.h │ ├── protected_things.h │ ├── systeminformation.h │ ├── testthread.h │ ├── threadtools.h │ ├── tslist.h │ ├── validator.h │ ├── valobject.h │ ├── valve_off.h │ ├── valve_on.h │ ├── vcr_shared.h │ ├── vcrmode.h │ ├── vprof.h │ ├── wchartypes.h │ └── xbox_codeline_defines.h ├── tier1 │ ├── CommandBuffer.h │ ├── KeyValues.h │ ├── UtlSortVector.h │ ├── UtlStringMap.h │ ├── bitbuf.h │ ├── byteswap.h │ ├── callqueue.h │ ├── characterset.h │ ├── checksum_crc.h │ ├── checksum_md5.h │ ├── convar.h │ ├── convar_serverbounded.h │ ├── datamanager.h │ ├── delegates.h │ ├── diff.h │ ├── fmtstr.h │ ├── functors.h │ ├── generichash.h │ ├── iconvar.h │ ├── interface.h │ ├── lzmaDecoder.h │ ├── lzss.h │ ├── mempool.h │ ├── memstack.h │ ├── netadr.h │ ├── processor_detect.h │ ├── rangecheckedvar.h │ ├── refcount.h │ ├── smartptr.h │ ├── stringpool.h │ ├── strtools.h │ ├── tier1.h │ ├── tokenreader.h │ ├── uniqueid.h │ ├── utlbidirectionalset.h │ ├── utlblockmemory.h │ ├── utlbuffer.h │ ├── utlbufferutil.h │ ├── utlcommon.h │ ├── utldict.h │ ├── utlenvelope.h │ ├── utlfixedmemory.h │ ├── utlflags.h │ ├── utlhandletable.h │ ├── utlhash.h │ ├── utlhashdict.h │ ├── utlhashtable.h │ ├── utlintrusivelist.h │ ├── utllinkedlist.h │ ├── utlmap.h │ ├── utlmemory.h │ ├── utlmultilist.h │ ├── utlntree.h │ ├── utlobjectreference.h │ ├── utlpriorityqueue.h │ ├── utlqueue.h │ ├── utlrbtree.h │ ├── utlstack.h │ ├── utlstring.h │ ├── utlsymbol.h │ └── utlvector.h ├── tier2 │ ├── beamsegdraw.h │ ├── fileutils.h │ ├── keybindings.h │ ├── meshutils.h │ ├── p4helpers.h │ ├── renderutils.h │ ├── riff.h │ ├── soundutils.h │ ├── tier2.h │ ├── tier2dm.h │ ├── utlstreambuffer.h │ └── vconfig.h ├── tier3 │ ├── choreoutils.h │ ├── scenetokenprocessor.h │ ├── tier3.h │ └── tier3dm.h ├── toolframework │ ├── iclientenginetools.h │ ├── ienginetool.h │ ├── iserverenginetools.h │ ├── itooldictionary.h │ ├── itoolentity.h │ ├── itoolframework.h │ ├── itoolsystem.h │ └── toolframework.cpp ├── tools │ ├── bonelist.cpp │ └── bonelist.h ├── toolutils │ ├── AttributeElementChoiceList.h │ ├── BaseToolSystem.h │ ├── ConsolePage.h │ ├── DmeMdlRenderable.h │ ├── DmeRenderable.h │ ├── ToolEditMenuButton.h │ ├── ToolFileMenuButton.h │ ├── ToolHelpMenuButton.h │ ├── ToolMenuButton.h │ ├── ToolSwitchMenuButton.h │ ├── basepropertiescontainer.h │ ├── basestatusbar.h │ ├── enginetools_int.h │ ├── miniviewport.h │ ├── recentfilelist.h │ ├── savewindowpositions.h │ ├── toolmenubar.h │ ├── toolwindowfactory.h │ └── vgui_tools.h ├── trace.h ├── unicode │ └── unicode.h ├── unitlib │ └── unitlib.h ├── vallocator.cpp ├── vallocator.h ├── vaudio │ ├── 2.h │ └── ivaudio.h ├── vcollide.h ├── vcollide_parse.h ├── vgui │ ├── Cursor.h │ ├── Dar.h │ ├── IBorder.h │ ├── IClientPanel.h │ ├── IHTML.h │ ├── IImage.h │ ├── IInput.h │ ├── IInputInternal.h │ ├── ILocalize.h │ ├── IPanel.h │ ├── IScheme.h │ ├── ISurface.h │ ├── ISurfaceV30.h │ ├── ISystem.h │ ├── IVGui.h │ ├── IVguiMatInfo.h │ ├── IVguiMatInfoVar.h │ ├── KeyCode.h │ ├── MouseCode.h │ ├── Point.h │ └── VGUI.h ├── vgui_controls │ ├── AnalogBar.h │ ├── AnimatingImagePanel.h │ ├── AnimationController.h │ ├── BitmapImagePanel.h │ ├── BuildGroup.h │ ├── BuildModeDialog.h │ ├── Button.h │ ├── CheckButton.h │ ├── CheckButtonList.h │ ├── CircularProgressBar.h │ ├── ComboBox.h │ ├── ControllerMap.h │ ├── Controls.h │ ├── DialogManager.h │ ├── DirectorySelectDialog.h │ ├── Divider.h │ ├── EditablePanel.h │ ├── ExpandButton.h │ ├── FileOpenDialog.h │ ├── FileOpenStateMachine.h │ ├── FocusNavGroup.h │ ├── Frame.h │ ├── GraphPanel.h │ ├── HTML.h │ ├── Image.h │ ├── ImageList.h │ ├── ImagePanel.h │ ├── InputDialog.h │ ├── KeyBindingHelpDialog.h │ ├── KeyBindingMap.h │ ├── KeyBoardEditorDialog.h │ ├── KeyRepeat.h │ ├── Label.h │ ├── ListPanel.h │ ├── ListViewPanel.h │ ├── Menu.h │ ├── MenuBar.h │ ├── MenuButton.h │ ├── MenuItem.h │ ├── MessageBox.h │ ├── MessageDialog.h │ ├── MessageMap.h │ ├── PHandle.h │ ├── Panel.h │ ├── PanelAnimationVar.h │ ├── PanelListPanel.h │ ├── PerforceFileExplorer.h │ ├── PerforceFileList.h │ ├── ProgressBar.h │ ├── ProgressBox.h │ ├── PropertyDialog.h │ ├── PropertyPage.h │ ├── PropertySheet.h │ ├── QueryBox.h │ ├── RadioButton.h │ ├── RichText.h │ ├── RotatingProgressBar.h │ ├── ScrollBar.h │ ├── ScrollBarSlider.h │ ├── ScrollableEditablePanel.h │ ├── SectionedListPanel.h │ ├── Slider.h │ ├── Splitter.h │ ├── TextEntry.h │ ├── TextImage.h │ ├── ToggleButton.h │ ├── ToolWindow.h │ ├── Tooltip.h │ ├── TreeView.h │ ├── TreeViewListControl.h │ ├── URLLabel.h │ ├── WizardPanel.h │ ├── WizardSubPanel.h │ ├── consoledialog.h │ ├── pch_vgui_controls.h │ ├── perforcefilelistframe.h │ ├── savedocumentquery.h │ ├── subrectimage.h │ └── vgui_controls.cpp ├── view_shared.h ├── vphysics │ ├── collision_set.h │ ├── constraints.h │ ├── friction.h │ ├── object_hash.h │ ├── performance.h │ ├── player_controller.h │ ├── stats.h │ ├── vehicles.h │ └── virtualmesh.h ├── vphysics_interface.h ├── vphysics_interfaceV30.h ├── vstdlib │ ├── IKeyValuesSystem.h │ ├── cvar.h │ ├── iprocessutils.h │ ├── jobthread.h │ ├── pch_vstdlib.h │ ├── random.h │ ├── vcover.h │ └── vstdlib.h ├── vtf │ └── vtf.h ├── wadtypes.h ├── winlite.h ├── worldsize.h ├── xsi │ └── 5.1 │ │ ├── IDccMain.h │ │ ├── IMayaVGui.h │ │ ├── VsMayaCommand.h │ │ ├── VsVGuiWindow.h │ │ └── valveMaya.h ├── xwvfile.h ├── xzp.cpp ├── zip │ ├── XUnzip.h │ └── XZip.h ├── zip_uncompressed.h ├── zip_utils.cpp └── zip_utils.h ├── sdk ├── include │ ├── ATI_Compress.h │ ├── dxsdk │ │ ├── D3DX10.h │ │ ├── D3DX10core.h │ │ ├── D3DX10math.h │ │ ├── D3DX10math.inl │ │ ├── D3DX10mesh.h │ │ ├── D3DX10tex.h │ │ ├── D3DX11.h │ │ ├── D3DX11async.h │ │ ├── D3DX11core.h │ │ ├── D3DX11tex.h │ │ ├── d3dx10async.h │ │ ├── d3dx9.h │ │ ├── d3dx9anim.h │ │ ├── d3dx9core.h │ │ ├── d3dx9effect.h │ │ ├── d3dx9math.h │ │ ├── d3dx9math.inl │ │ ├── d3dx9mesh.h │ │ ├── d3dx9shader.h │ │ ├── d3dx9shape.h │ │ ├── d3dx9tex.h │ │ └── d3dx9xof.h │ ├── foundation │ │ ├── Px.h │ │ ├── PxAllocatorCallback.h │ │ ├── PxBitAndData.h │ │ ├── PxBounds3.h │ │ ├── PxErrorCallback.h │ │ ├── PxErrors.h │ │ ├── PxFlags.h │ │ ├── PxIO.h │ │ ├── PxIntrinsics.h │ │ ├── PxMat33.h │ │ ├── PxMat44.h │ │ ├── PxMath.h │ │ ├── PxMemory.h │ │ ├── PxPlane.h │ │ ├── PxPreprocessor.h │ │ ├── PxProfiler.h │ │ ├── PxQuat.h │ │ ├── PxSharedAssert.h │ │ ├── PxSimpleTypes.h │ │ ├── PxStrideIterator.h │ │ ├── PxTransform.h │ │ ├── PxUnionCast.h │ │ ├── PxVec2.h │ │ ├── PxVec3.h │ │ ├── PxVec4.h │ │ ├── unix │ │ │ └── PxUnixIntrinsics.h │ │ └── windows │ │ │ └── PxWindowsIntrinsics.h │ ├── nvtc.h │ └── physx │ │ ├── PxActor.h │ │ ├── PxAggregate.h │ │ ├── PxArticulation.h │ │ ├── PxArticulationBase.h │ │ ├── PxArticulationJoint.h │ │ ├── PxArticulationJointReducedCoordinate.h │ │ ├── PxArticulationLink.h │ │ ├── PxArticulationReducedCoordinate.h │ │ ├── PxBatchQuery.h │ │ ├── PxBatchQueryDesc.h │ │ ├── PxBroadPhase.h │ │ ├── PxClient.h │ │ ├── PxConfig.h │ │ ├── PxConstraint.h │ │ ├── PxConstraintDesc.h │ │ ├── PxContact.h │ │ ├── PxContactModifyCallback.h │ │ ├── PxDeletionListener.h │ │ ├── PxFiltering.h │ │ ├── PxForceMode.h │ │ ├── PxFoundation.h │ │ ├── PxImmediateMode.h │ │ ├── PxLockedData.h │ │ ├── PxMaterial.h │ │ ├── PxPhysXConfig.h │ │ ├── PxPhysics.h │ │ ├── PxPhysicsAPI.h │ │ ├── PxPhysicsSerialization.h │ │ ├── PxPhysicsVersion.h │ │ ├── PxPruningStructure.h │ │ ├── PxQueryFiltering.h │ │ ├── PxQueryReport.h │ │ ├── PxRigidActor.h │ │ ├── PxRigidBody.h │ │ ├── PxRigidDynamic.h │ │ ├── PxRigidStatic.h │ │ ├── PxScene.h │ │ ├── PxSceneDesc.h │ │ ├── PxSceneLock.h │ │ ├── PxShape.h │ │ ├── PxSimulationEventCallback.h │ │ ├── PxSimulationStatistics.h │ │ ├── PxVisualizationParameter.h │ │ ├── characterkinematic │ │ ├── PxBoxController.h │ │ ├── PxCapsuleController.h │ │ ├── PxController.h │ │ ├── PxControllerBehavior.h │ │ ├── PxControllerManager.h │ │ ├── PxControllerObstacles.h │ │ └── PxExtended.h │ │ ├── collision │ │ └── PxCollisionDefs.h │ │ ├── common │ │ ├── PxBase.h │ │ ├── PxCollection.h │ │ ├── PxCoreUtilityTypes.h │ │ ├── PxMetaData.h │ │ ├── PxMetaDataFlags.h │ │ ├── PxPhysXCommonConfig.h │ │ ├── PxPhysicsInsertionCallback.h │ │ ├── PxProfileZone.h │ │ ├── PxRenderBuffer.h │ │ ├── PxSerialFramework.h │ │ ├── PxSerializer.h │ │ ├── PxStringTable.h │ │ ├── PxTolerancesScale.h │ │ ├── PxTypeInfo.h │ │ └── windows │ │ │ └── PxWindowsDelayLoadHook.h │ │ ├── cooking │ │ ├── PxBVH33MidphaseDesc.h │ │ ├── PxBVH34MidphaseDesc.h │ │ ├── PxBVHStructureDesc.h │ │ ├── PxConvexMeshDesc.h │ │ ├── PxCooking.h │ │ ├── PxMidphaseDesc.h │ │ ├── PxTriangleMeshDesc.h │ │ └── Pxc.h │ │ ├── cudamanager │ │ ├── PxCudaContextManager.h │ │ └── PxCudaMemoryManager.h │ │ ├── extensions │ │ ├── PxBinaryConverter.h │ │ ├── PxBroadPhaseExt.h │ │ ├── PxCollectionExt.h │ │ ├── PxConstraintExt.h │ │ ├── PxContactJoint.h │ │ ├── PxConvexMeshExt.h │ │ ├── PxD6Joint.h │ │ ├── PxD6JointCreate.h │ │ ├── PxDefaultAllocator.h │ │ ├── PxDefaultCpuDispatcher.h │ │ ├── PxDefaultErrorCallback.h │ │ ├── PxDefaultSimulationFilterShader.h │ │ ├── PxDefaultStreams.h │ │ ├── PxDistanceJoint.h │ │ ├── PxExtensionsAPI.h │ │ ├── PxFixedJoint.h │ │ ├── PxJoint.h │ │ ├── PxJointLimit.h │ │ ├── PxMassProperties.h │ │ ├── PxPrismaticJoint.h │ │ ├── PxRaycastCCD.h │ │ ├── PxRepXSerializer.h │ │ ├── PxRepXSimpleType.h │ │ ├── PxRevoluteJoint.h │ │ ├── PxRigidActorExt.h │ │ ├── PxRigidBodyExt.h │ │ ├── PxSceneQueryExt.h │ │ ├── PxSerialization.h │ │ ├── PxShapeExt.h │ │ ├── PxSimpleFactory.h │ │ ├── PxSmoothNormals.h │ │ ├── PxSphericalJoint.h │ │ ├── PxStringTableExt.h │ │ └── PxTriangleMeshExt.h │ │ ├── filebuf │ │ └── PxFileBuf.h │ │ ├── foundation │ │ ├── PxAssert.h │ │ ├── PxFoundationConfig.h │ │ └── PxMathUtils.h │ │ ├── geometry │ │ ├── PxBVHStructure.h │ │ ├── PxBoxGeometry.h │ │ ├── PxCapsuleGeometry.h │ │ ├── PxConvexMesh.h │ │ ├── PxConvexMeshGeometry.h │ │ ├── PxGeometry.h │ │ ├── PxGeometryHelpers.h │ │ ├── PxGeometryQuery.h │ │ ├── PxHeightField.h │ │ ├── PxHeightFieldDesc.h │ │ ├── PxHeightFieldFlag.h │ │ ├── PxHeightFieldGeometry.h │ │ ├── PxHeightFieldSample.h │ │ ├── PxMeshQuery.h │ │ ├── PxMeshScale.h │ │ ├── PxPlaneGeometry.h │ │ ├── PxSimpleTriangleMesh.h │ │ ├── PxSphereGeometry.h │ │ ├── PxTriangle.h │ │ ├── PxTriangleMesh.h │ │ └── PxTriangleMeshGeometry.h │ │ ├── geomutils │ │ ├── GuContactBuffer.h │ │ └── GuContactPoint.h │ │ ├── gpu │ │ └── PxGpu.h │ │ ├── pvd │ │ ├── PxPvd.h │ │ ├── PxPvdSceneClient.h │ │ └── PxPvdTransport.h │ │ ├── solver │ │ └── PxSolverDefs.h │ │ ├── task │ │ ├── PxCpuDispatcher.h │ │ ├── PxTask.h │ │ ├── PxTaskDefine.h │ │ └── PxTaskManager.h │ │ └── vehicle │ │ ├── PxVehicleComponents.h │ │ ├── PxVehicleDrive.h │ │ ├── PxVehicleDrive4W.h │ │ ├── PxVehicleDriveNW.h │ │ ├── PxVehicleDriveTank.h │ │ ├── PxVehicleNoDrive.h │ │ ├── PxVehicleSDK.h │ │ ├── PxVehicleShaders.h │ │ ├── PxVehicleTireFriction.h │ │ ├── PxVehicleUpdate.h │ │ ├── PxVehicleUtil.h │ │ ├── PxVehicleUtilControl.h │ │ ├── PxVehicleUtilSetup.h │ │ ├── PxVehicleUtilTelemetry.h │ │ └── PxVehicleWheels.h └── lib │ ├── Win32 │ ├── d3dx10.lib │ ├── d3dx10d.lib │ ├── d3dx11.lib │ ├── d3dx11d.lib │ ├── d3dx9.lib │ ├── d3dx9d.lib │ └── d3dxof.lib │ └── x64 │ ├── d3dx10.lib │ ├── d3dx10d.lib │ ├── d3dx11.lib │ ├── d3dx11d.lib │ ├── d3dx9.lib │ ├── d3dx9d.lib │ └── d3dxof.lib └── src ├── Appframework ├── AppSystemGroup.cpp ├── Appframework.vcxproj ├── Appframework.vcxproj.user ├── VguiMatSysApp.cpp ├── WinApp.cpp ├── appframework.vcxproj.filters └── linuxapp.cpp ├── Bitmap ├── Bitmap.vcxproj ├── Bitmap.vcxproj.filters ├── Bitmap.vcxproj.user ├── ImageByteSwap.cpp ├── colorconversion.cpp ├── float_bm.cpp ├── float_bm2.cpp ├── float_bm3.cpp ├── float_bm4.cpp ├── float_bm_bilateral_filter.cpp ├── float_cube.cpp ├── imageformat.cpp ├── psd.cpp ├── resample.cpp ├── tgaloader.cpp └── tgawriter.cpp ├── ChoreoObjects ├── ChoreoObjects.vcxproj ├── ChoreoObjects.vcxproj.user └── choreoobjects.vcxproj.filters ├── Datacache ├── Datacache.vcxproj ├── Datacache.vcxproj.user ├── datacache.cpp ├── datacache.h ├── datacache.vcxproj.filters ├── datacache_common.h └── mdlcache.cpp ├── Datamodel ├── Datamodel.vcxproj ├── Datamodel.vcxproj.user ├── DmElementFramework.cpp ├── DmElementFramework.h ├── clipboardmanager.cpp ├── clipboardmanager.h ├── datamodel.cpp ├── datamodel.h ├── datamodel.vcxproj.filters ├── dependencygraph.cpp ├── dependencygraph.h ├── dmattribute.cpp ├── dmattributeinternal.h ├── dmelement.cpp ├── dmelementdictionary.cpp ├── dmelementdictionary.h ├── dmelementfactoryhelper.cpp ├── dmserializerbinary.cpp ├── dmserializerbinary.h ├── dmserializerkeyvalues.cpp ├── dmserializerkeyvalues.h ├── dmserializerkeyvalues2.cpp ├── dmserializerkeyvalues2.h ├── dmserializerxml.cpp ├── dmserializerxml.h ├── undomanager.cpp └── undomanager.h ├── Dmserializers ├── Dmserializers.vcxproj ├── Dmserializers.vcxproj.user ├── dmebaseimporter.cpp ├── dmebaseimporter.h ├── dmserializers.cpp ├── dmserializers.h ├── dmserializers.vcxproj.filters ├── importactbusy.cpp ├── importkeyvaluebase.cpp ├── importkeyvaluebase.h ├── importsfmv1.cpp ├── importsfmv2.cpp ├── importsfmv3.cpp ├── importsfmv4.cpp ├── importsfmv5.cpp ├── importsfmv6.cpp ├── importsfmv7.cpp ├── importsfmv8.cpp ├── importsfmv9.cpp ├── importvmf.cpp └── importvmt.cpp ├── Dmxloader ├── Dmxloader.cpp ├── Dmxloader.vcxproj ├── Dmxloader.vcxproj.user ├── dmxattribute.cpp ├── dmxelement.cpp ├── dmxloader.vcxproj.filters ├── dmxloadertext.cpp ├── dmxserializationdictionary.cpp └── dmxserializationdictionary.h ├── Engine ├── DevShotGenerator.cpp ├── DevShotGenerator.h ├── DownloadListGenerator.cpp ├── DownloadListGenerator.h ├── Engine.vcxproj ├── Engine.vcxproj.filters ├── Engine.vcxproj.user ├── EngineSoundClient.cpp ├── EngineSoundInternal.h ├── EngineSoundServer.cpp ├── GameEventManager.cpp ├── GameEventManager.h ├── GameEventManagerOld.cpp ├── IOcclusionSystem.h ├── LoadScreenUpdate.cpp ├── LoadScreenUpdate.h ├── LocalNetworkBackdoor.cpp ├── LocalNetworkBackdoor.h ├── MapReslistGenerator.cpp ├── MapReslistGenerator.h ├── MaterialBuckets.h ├── ModelInfo.cpp ├── ModelInfo.h ├── NetworkStringTableItem.cpp ├── OcclusionSystem.cpp ├── Overlay.cpp ├── Overlay.h ├── SVConnectionlessHandler.h ├── Session.cpp ├── Session.h ├── UpgradeLog.htm ├── audio │ ├── audio_pch.cpp │ ├── audio_pch.h │ ├── private │ │ ├── MPAFile.cpp │ │ ├── MPAFile.h │ │ ├── MPAHeader.cpp │ │ ├── MPAHeader.h │ │ ├── VBRHeader.cpp │ │ ├── VBRHeader.h │ │ ├── circularbuffer.cpp │ │ ├── circularbuffer.h │ │ ├── eax.h │ │ ├── snd_channels.h │ │ ├── snd_convars.h │ │ ├── snd_dev_common.cpp │ │ ├── snd_dev_common.h │ │ ├── snd_dev_direct.cpp │ │ ├── snd_dev_direct.h │ │ ├── snd_dev_wave.cpp │ │ ├── snd_dev_wave.h │ │ ├── snd_dev_xaudio.cpp │ │ ├── snd_dev_xaudio.h │ │ ├── snd_dma.cpp │ │ ├── snd_dma.h │ │ ├── snd_dsp.cpp │ │ ├── snd_env_fx.h │ │ ├── snd_fixedint.h │ │ ├── snd_mix.cpp │ │ ├── snd_mix_buf.h │ │ ├── snd_mp3_source.cpp │ │ ├── snd_mp3_source.h │ │ ├── snd_sentence_mixer.cpp │ │ ├── snd_sfx.h │ │ ├── snd_wave_data.cpp │ │ ├── snd_wave_data.h │ │ ├── snd_wave_mixer.cpp │ │ ├── snd_wave_mixer.h │ │ ├── snd_wave_mixer_adpcm.cpp │ │ ├── snd_wave_mixer_adpcm.h │ │ ├── snd_wave_mixer_mp3.cpp │ │ ├── snd_wave_mixer_private.h │ │ ├── snd_wave_mixer_xma.cpp │ │ ├── snd_wave_mixer_xma.h │ │ ├── snd_wave_source.cpp │ │ ├── snd_wave_source.h │ │ ├── snd_wave_temp.cpp │ │ ├── snd_wave_temp.h │ │ ├── snd_win.cpp │ │ ├── sound_private.h │ │ ├── voice.cpp │ │ ├── voice_gain.cpp │ │ ├── voice_gain.h │ │ ├── voice_mixer_controls.cpp │ │ ├── voice_mixer_controls.h │ │ ├── voice_record_dsound.cpp │ │ ├── voice_sound_engine_interface.cpp │ │ ├── voice_sound_engine_interface.h │ │ ├── voice_wavefile.cpp │ │ ├── voice_wavefile.h │ │ ├── vox.cpp │ │ └── vox_private.h │ └── public │ │ ├── ivoicecodec.h │ │ ├── ivoicerecord.h │ │ ├── snd_audio_source.h │ │ ├── snd_device.h │ │ ├── snd_io.h │ │ ├── sound.h │ │ ├── soundservice.h │ │ ├── voice.h │ │ └── vox.h ├── baseautocompletefilelist.cpp ├── baseautocompletefilelist.h ├── baseclient.cpp ├── baseclient.h ├── baseclientstate.cpp ├── baseclientstate.h ├── baseserver.cpp ├── baseserver.h ├── bitbuf_errorhandler.cpp ├── bitbuf_errorhandler.h ├── bugreporter.cpp ├── buildcubemaps.cpp ├── buildnum.cpp ├── cbenchmark.cpp ├── cbenchmark.h ├── cdll_engine_int.cpp ├── cdll_engine_int.h ├── changeframelist.cpp ├── changeframelist.h ├── cheatcodes.cpp ├── cheatcodes.h ├── checksum_engine.cpp ├── checksum_engine.h ├── cl_bounded_cvars.cpp ├── cl_bounded_cvars.h ├── cl_demo.cpp ├── cl_demo.h ├── cl_demoaction.cpp ├── cl_demoaction.h ├── cl_demoaction_types.cpp ├── cl_demoaction_types.h ├── cl_demoactioneditors.cpp ├── cl_demoactioneditors.h ├── cl_demoactionmanager.cpp ├── cl_demoactionmanager.h ├── cl_demoeditorpanel.cpp ├── cl_demoeditorpanel.h ├── cl_demosmootherpanel.cpp ├── cl_demosmootherpanel.h ├── cl_demosmoothing.h ├── cl_demouipanel.cpp ├── cl_demouipanel.h ├── cl_entityreport.cpp ├── cl_entityreport.h ├── cl_ents_parse.cpp ├── cl_ents_parse.h ├── cl_localnetworkbackdoor.cpp ├── cl_localnetworkbackdoor.h ├── cl_main.cpp ├── cl_main.h ├── cl_null.cpp ├── cl_parse_event.cpp ├── cl_parse_event.h ├── cl_pluginhelpers.cpp ├── cl_pluginhelpers.h ├── cl_pred.cpp ├── cl_pred.h ├── cl_rcon.cpp ├── cl_rcon.h ├── cl_steamauth.cpp ├── cl_steamauth.h ├── cl_texturelistpanel.cpp ├── cl_texturelistpanel.h ├── cl_txviewpanel.cpp ├── cl_txviewpanel.h ├── client.cpp ├── client.h ├── client_pch.cpp ├── client_pch.h ├── clientframe.cpp ├── clientframe.h ├── clockdriftmgr.cpp ├── clockdriftmgr.h ├── cmd.cpp ├── cmd.h ├── cmodel.cpp ├── cmodel_bsp.cpp ├── cmodel_disp.cpp ├── cmodel_engine.h ├── cmodel_private.h ├── colorcorrectionpanel.cpp ├── common.cpp ├── common.h ├── conprint.h ├── console.cpp ├── console.h ├── cvar.cpp ├── cvar.h ├── debug_leafvis.cpp ├── debug_leafvis.h ├── debugoverlay.cpp ├── debugoverlay.h ├── decal.h ├── decal_clip.cpp ├── decal_clip.h ├── decal_private.h ├── decals.cpp ├── demo.h ├── demofile.cpp ├── demofile.h ├── disp.cpp ├── disp.h ├── disp_defs.cpp ├── disp_defs.h ├── disp_helpers.cpp ├── disp_helpers.h ├── disp_interface.cpp ├── disp_mapload.cpp ├── dispnode.h ├── download.cpp ├── download.h ├── download_internal.h ├── downloadthread.cpp ├── draw.h ├── dt.cpp ├── dt.h ├── dt_common_eng.cpp ├── dt_common_eng.h ├── dt_encode.cpp ├── dt_encode.h ├── dt_instrumentation.cpp ├── dt_instrumentation.h ├── dt_instrumentation_server.cpp ├── dt_instrumentation_server.h ├── dt_localtransfer.cpp ├── dt_localtransfer.h ├── dt_recv_decoder.cpp ├── dt_recv_decoder.h ├── dt_recv_eng.cpp ├── dt_recv_eng.h ├── dt_send_eng.cpp ├── dt_send_eng.h ├── dt_stack.cpp ├── dt_stack.h ├── dt_test.cpp ├── dt_test.h ├── engine.vpc ├── engine_old.vcxproj ├── enginebugreporter.h ├── engineperftools.h ├── enginesingleuserfilter.cpp ├── enginesingleuserfilter.h ├── enginestats.cpp ├── enginestats.h ├── enginethreads.cpp ├── enginethreads.h ├── enginetool.cpp ├── enginetrace.cpp ├── enginetrace.h ├── engsoundservice.cpp ├── ents_shared.h ├── event_system.h ├── filesystem_engine.cpp ├── filesystem_engine.h ├── filetransfermgr.cpp ├── filetransfermgr.h ├── filter.h ├── flat.mat ├── framesnapshot.h ├── gametrace_engine.cpp ├── getintersectingsurfaces_struct.h ├── gl_cvars.h ├── gl_draw.cpp ├── gl_drawlights.cpp ├── gl_drawlights.h ├── gl_lightmap.cpp ├── gl_lightmap.h ├── gl_matsysiface.cpp ├── gl_matsysiface.h ├── gl_model.h ├── gl_model_private.h ├── gl_rlight.cpp ├── gl_rmain.cpp ├── gl_rmain.h ├── gl_rmisc.cpp ├── gl_rsurf.cpp ├── gl_rsurf.h ├── gl_screen.cpp ├── gl_shader.cpp ├── gl_shader.h ├── gl_warp.cpp ├── gl_water.h ├── hltvclient.cpp ├── hltvclient.h ├── hltvclientstate.cpp ├── hltvclientstate.h ├── hltvdemo.cpp ├── hltvdemo.h ├── hltvserver.cpp ├── hltvserver.h ├── hltvtest.cpp ├── hltvtest.h ├── host.cpp ├── host.h ├── host_cmd.cpp ├── host_cmd.h ├── host_jmp.h ├── host_listmaps.cpp ├── host_phonehome.cpp ├── host_phonehome.h ├── host_saverestore.cpp ├── host_saverestore.h ├── host_state.cpp ├── host_state.h ├── icolorcorrectiontools.h ├── idispinfo.h ├── iengine.h ├── ienginetoolinternal.h ├── igame.h ├── initmathlib.cpp ├── ipooledvballocator.h ├── ispatialpartitioninternal.h ├── ithread.h ├── ivideomode.h ├── keys.cpp ├── keys.h ├── l_studio.cpp ├── l_studio.h ├── lightcache.cpp ├── lightcache.h ├── logofile_shared.cpp ├── logofile_shared.h ├── lowpassstream.h ├── master.h ├── matchmaking.h ├── matchmakingclient.cpp ├── matchmakinghost.cpp ├── matchmakingmigrate.cpp ├── matchmakingqos.cpp ├── matchmakingqos.h ├── matchmakingshared.cpp ├── materialproxyfactory.cpp ├── materialproxyfactory.h ├── matsys_interface.cpp ├── mem.cpp ├── mem.h ├── mem_fgets.cpp ├── mem_fgets.h ├── mod_vis.cpp ├── mod_vis.h ├── modelloader.cpp ├── modelloader.h ├── net.h ├── net_chan.cpp ├── net_chan.h ├── net_synctags.cpp ├── net_synctags.h ├── net_ws.cpp ├── net_ws_headers.h ├── net_ws_queued_packet_sender.cpp ├── net_ws_queued_packet_sender.h ├── networkstringtable.cpp ├── networkstringtable.h ├── networkstringtableclient.cpp ├── networkstringtableclient.h ├── networkstringtablecontainerclient.h ├── networkstringtablecontainerserver.h ├── networkstringtableitem.h ├── networkstringtableserver.cpp ├── networkstringtableserver.h ├── packed_entity.cpp ├── packed_entity.h ├── perfuipanel.cpp ├── pr_edict.cpp ├── pr_edict.h ├── precache.cpp ├── precache.h ├── profile.h ├── profiling.h ├── progs.h ├── pure_server.cpp ├── pure_server.h ├── quakeasm.h ├── quakedef.cpp ├── quakedef.h ├── r_areaportal.cpp ├── r_areaportal.h ├── r_decal.cpp ├── r_decal.h ├── r_efx.cpp ├── r_efxextern.h ├── r_linefile.cpp ├── r_local.h ├── randomnormals.h ├── randomstream.cpp ├── render.h ├── render_pch.cpp ├── render_pch.h ├── resource.h ├── rpt_engine.cpp ├── saverestore_filesystem.cpp ├── saverestore_filesystem.h ├── sbar.h ├── screen.h ├── server.h ├── server_pch.cpp ├── server_pch.h ├── servermsghandler.cpp ├── shadowmgr.cpp ├── shadowmgr.h ├── snd_io.cpp ├── socketcreator.cpp ├── socketcreator.h ├── sound_shared.cpp ├── spatialpartition.cpp ├── staticpropmgr.cpp ├── staticpropmgr.h ├── studio_internal.h ├── surfacehandle.h ├── sv_client.cpp ├── sv_client.h ├── sv_ents_write.cpp ├── sv_filter.cpp ├── sv_filter.h ├── sv_framesnapshot.cpp ├── sv_ipratelimit.cpp ├── sv_ipratelimit.h ├── sv_log.cpp ├── sv_log.h ├── sv_logofile.cpp ├── sv_logofile.h ├── sv_main.cpp ├── sv_main.h ├── sv_master.cpp ├── sv_master_legacy.cpp ├── sv_master_legacy.h ├── sv_packedentities.cpp ├── sv_packedentities.h ├── sv_plugin.cpp ├── sv_plugin.h ├── sv_precache.cpp ├── sv_precache.h ├── sv_rcon.cpp ├── sv_rcon.h ├── sv_redirect.cpp ├── sv_remoteaccess.cpp ├── sv_remoteaccess.h ├── sv_steamauth.cpp ├── sv_steamauth.h ├── sv_uploaddata.cpp ├── sv_uploaddata.h ├── sv_uploadgamestats.cpp ├── sv_uploadgamestats.h ├── sv_user.h ├── sys.h ├── sys_dll.cpp ├── sys_dll.h ├── sys_dll2.cpp ├── sys_engine.cpp ├── sys_getmodes.cpp ├── sys_linuxwind.cpp ├── sys_mainwind.cpp ├── sys_mainwind.h ├── sysexternal.h ├── testscriptmgr.cpp ├── testscriptmgr.h ├── tmessage.cpp ├── tmessage.h ├── toolframework.cpp ├── traceinit.cpp ├── traceinit.h ├── vengineserver_impl.cpp ├── vengineserver_impl.h ├── vgui_DebugSystemPanel.cpp ├── vgui_DebugSystemPanel.h ├── vgui_askconnectpanel.cpp ├── vgui_askconnectpanel.h ├── vgui_basepanel.cpp ├── vgui_basepanel.h ├── vgui_baseui_interface.cpp ├── vgui_baseui_interface.h ├── vgui_budgetfpspanel.cpp ├── vgui_budgetpanel.cpp ├── vgui_budgetpanel.h ├── vgui_drawtreepanel.cpp ├── vgui_drawtreepanel.h ├── vgui_helpers.cpp ├── vgui_helpers.h ├── vgui_texturebudgetpanel.cpp ├── vgui_texturebudgetpanel.h ├── vgui_vprofgraphpanel.cpp ├── vgui_vprofgraphpanel.h ├── vgui_vprofpanel.cpp ├── vgui_vprofpanel.h ├── view.cpp ├── view.h ├── vmodes.h ├── voice_codecs │ ├── frame_encoder │ │ ├── iframeencoder.h │ │ └── voice_codec_frame.cpp │ ├── miles │ │ ├── milesbase.cpp │ │ ├── milesbase.h │ │ ├── mp3_miles.cpp │ │ ├── vaudio_miles.vpc │ │ └── voice_codec_miles.cpp │ └── speex │ │ ├── VoiceEncoder_Speex.cpp │ │ ├── VoiceEncoder_Speex.h │ │ ├── source │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── Speex.spec │ │ ├── Speex.spec.in │ │ ├── TODO │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── manual.pdf │ │ ├── install-sh │ │ ├── libspeex │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bits.c │ │ │ ├── cb_search.c │ │ │ ├── cb_search.h │ │ │ ├── exc_10_16_table.c │ │ │ ├── exc_10_32_table.c │ │ │ ├── exc_20_32_table.c │ │ │ ├── exc_5_256_table.c │ │ │ ├── exc_5_64_table.c │ │ │ ├── exc_8_128_table.c │ │ │ ├── filters.c │ │ │ ├── filters.h │ │ │ ├── filters_sse.h │ │ │ ├── gain_table.c │ │ │ ├── gain_table_lbr.c │ │ │ ├── hexc_10_32_table.c │ │ │ ├── hexc_table.c │ │ │ ├── high_lsp_tables.c │ │ │ ├── libspeex.opt │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── lsp_tables_nb.c │ │ │ ├── ltp.c │ │ │ ├── ltp.h │ │ │ ├── ltp_sse.h │ │ │ ├── math_approx.c │ │ │ ├── math_approx.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── nb_celp.c │ │ │ ├── nb_celp.h │ │ │ ├── quant_lsp.c │ │ │ ├── quant_lsp.h │ │ │ ├── sb_celp.c │ │ │ ├── sb_celp.h │ │ │ ├── speex.h │ │ │ ├── speex_bits.h │ │ │ ├── speex_callbacks.c │ │ │ ├── speex_callbacks.h │ │ │ ├── speex_header.c │ │ │ ├── speex_header.h │ │ │ ├── speex_stereo.h │ │ │ ├── stack_alloc.h │ │ │ ├── stereo.c │ │ │ ├── testenc.c │ │ │ ├── testenc_uwb.c │ │ │ ├── testenc_wb.c │ │ │ ├── vbr.c │ │ │ ├── vbr.h │ │ │ ├── vq.c │ │ │ └── vq.h │ │ ├── ltmain.sh │ │ ├── missing │ │ └── mkinstalldirs │ │ └── speex.vcproj ├── voiceserver_impl.cpp ├── vprof_engine.cpp ├── vprof_engine.h ├── vprof_record.cpp ├── vprof_record.h ├── world.cpp ├── world.h ├── xbox │ └── xbox.def ├── xboxsystem.cpp ├── zone.cpp └── zone.h ├── Fgdlib ├── Fgdlib.vcxproj ├── Fgdlib.vcxproj.user ├── fgdlib.vcxproj.filters ├── gamedata.cpp ├── gdclass.cpp ├── gdvar.cpp ├── inputoutput.cpp └── wckeyvalues.cpp ├── FileSystem_Stdio ├── FileSystem_Stdio.vcxproj ├── FileSystem_Stdio.vcxproj.user ├── QueuedLoader.cpp ├── basefilesystem.cpp ├── basefilesystem.h ├── filesystem_async.cpp ├── filesystem_stdio.cpp ├── filesystem_stdio.vcxproj.filters ├── filesystem_stdio │ ├── FileTracker.cpp │ ├── FileTracker.h │ └── ThreadSafeRefCountedObject.h ├── filesystem_steam.cpp ├── filetracker.cpp ├── filetracker.h ├── linux_support.cpp ├── linux_support.h └── threadsaferefcountedobject.h ├── GameUI ├── BackgroundMenuButton.cpp ├── BackgroundMenuButton.h ├── BasePanel.cpp ├── BasePanel.h ├── BaseSaveGameDialog.cpp ├── BaseSaveGameDialog.h ├── BenchmarkDialog.cpp ├── BenchmarkDialog.h ├── BitmapImagePanel.cpp ├── BitmapImagePanel.h ├── BonusMapsDatabase.cpp ├── BonusMapsDatabase.h ├── BonusMapsDialog.cpp ├── BonusMapsDialog.h ├── CDKeyEntryDialog.cpp ├── CDKeyEntryDialog.h ├── ChangeGameDialog.cpp ├── ChangeGameDialog.h ├── CommandCheckButton.cpp ├── CommandCheckButton.h ├── CommentaryDialog.cpp ├── CommentaryDialog.h ├── CommentaryExplanationDialog.cpp ├── CommentaryExplanationDialog.h ├── ContentControlDialog.cpp ├── ContentControlDialog.h ├── ControllerDialog.cpp ├── ControllerDialog.h ├── CreateMultiplayerGameBotPage.cpp ├── CreateMultiplayerGameBotPage.h ├── CreateMultiplayerGameDialog.cpp ├── CreateMultiplayerGameDialog.h ├── CreateMultiplayerGameGameplayPage.cpp ├── CreateMultiplayerGameGameplayPage.h ├── CreateMultiplayerGameServerPage.cpp ├── CreateMultiplayerGameServerPage.h ├── CvarNegateCheckButton.cpp ├── CvarNegateCheckButton.h ├── CvarSlider.cpp ├── CvarSlider.h ├── CvarTextEntry.cpp ├── CvarTextEntry.h ├── CvarToggleCheckButton.cpp ├── CvarToggleCheckButton.h ├── EngineInterface.h ├── GameApp.cpp ├── GameApp.h ├── GameConsole.cpp ├── GameConsole.h ├── GameConsoleDialog.cpp ├── GameConsoleDialog.h ├── GameUI.h ├── GameUI.vcxproj ├── GameUI.vcxproj.filters ├── GameUI.vcxproj.user ├── GameUIPanel.h ├── GameUI_Interface.cpp ├── GameUI_Interface.h ├── KeyToggleCheckButton.cpp ├── KeyToggleCheckButton.h ├── LabeledCommandComboBox.cpp ├── LabeledCommandComboBox.h ├── LoadCommentaryDialog.cpp ├── LoadCommentaryDialog.h ├── LoadGameDialog.cpp ├── LoadGameDialog.h ├── LoadGameDialog_Xbox.cpp ├── LoadingDialog.cpp ├── LoadingDialog.h ├── LogoFile.cpp ├── ModInfo.cpp ├── ModInfo.h ├── MouseMessageForwardingPanel.cpp ├── MouseMessageForwardingPanel.h ├── MultiplayerAdvancedDialog.cpp ├── MultiplayerAdvancedDialog.h ├── NewGameDialog.cpp ├── NewGameDialog.h ├── OptionsDialog.cpp ├── OptionsDialog.h ├── OptionsDialog_Xbox.cpp ├── OptionsSubAudio.cpp ├── OptionsSubAudio.h ├── OptionsSubDifficulty.cpp ├── OptionsSubDifficulty.h ├── OptionsSubGame.cpp ├── OptionsSubGame.h ├── OptionsSubKeyboard.cpp ├── OptionsSubKeyboard.h ├── OptionsSubMouse.cpp ├── OptionsSubMouse.h ├── OptionsSubMultiplayer.cpp ├── OptionsSubMultiplayer.h ├── OptionsSubPortal.cpp ├── OptionsSubPortal.h ├── OptionsSubVideo.cpp ├── OptionsSubVideo.h ├── OptionsSubVoice.cpp ├── OptionsSubVoice.h ├── PanelListPanel.cpp ├── PanelListPanel.h ├── PlayerListDialog.cpp ├── PlayerListDialog.h ├── RunGameEngine.cpp ├── RunGameEngine.h ├── SaveGameBrowserDialog.cpp ├── SaveGameBrowserDialog.h ├── SaveGameDialog.cpp ├── SaveGameDialog.h ├── SaveGameDialog_Xbox.cpp ├── ScriptObject.cpp ├── ScriptObject.h ├── Sys_Utils.cpp ├── Sys_Utils.h ├── TGAImagePanel.cpp ├── TGAImagePanel.h ├── TextEntryBox.cpp ├── TextEntryBox.h ├── URLButton.cpp ├── URLButton.h ├── VGuiSystemModuleLoader.cpp ├── VGuiSystemModuleLoader.h ├── matchmaking │ ├── achievementsdialog.cpp │ ├── achievementsdialog.h │ ├── basedialog.cpp │ ├── basedialog.h │ ├── dialogmenu.cpp │ ├── dialogmenu.h │ ├── leaderboarddialog.cpp │ ├── leaderboarddialog.h │ ├── matchmakingbasepanel.cpp │ ├── matchmakingbasepanel.h │ ├── pausedialog.cpp │ ├── pausedialog.h │ ├── sessionbrowserdialog.cpp │ ├── sessionbrowserdialog.h │ ├── sessionlobbydialog.cpp │ ├── sessionlobbydialog.h │ ├── sessionoptionsdialog.cpp │ ├── sessionoptionsdialog.h │ ├── welcomedialog.cpp │ └── welcomedialog.h ├── vcontrolslistpanel.cpp └── vcontrolslistpanel.h ├── Hammer ├── Hammer.vcxproj ├── Hammer.vcxproj.filters ├── Hammer.vcxproj.user ├── hammer_launcher.ico ├── hammer_launcher.rc ├── main.cpp └── resource.h ├── IVP ├── havana │ └── havok │ │ ├── hk_base │ │ ├── array │ │ │ ├── array.cpp │ │ │ ├── array.h │ │ │ ├── array.inl │ │ │ └── pre_allocated_array.h │ │ ├── base.h │ │ ├── base_types.cpp │ │ ├── base_types.h │ │ ├── console.cpp │ │ ├── console.h │ │ ├── display.h │ │ ├── hash │ │ │ ├── hash.cpp │ │ │ ├── hash.h │ │ │ └── hash.inl │ │ ├── hk_base.vcxproj │ │ ├── hk_base.vcxproj.filters │ │ ├── hk_base.vcxproj.user │ │ ├── id_server │ │ │ ├── id_server.cpp │ │ │ ├── id_server.h │ │ │ └── id_server.inl │ │ ├── memory │ │ │ ├── memory.cpp │ │ │ ├── memory.h │ │ │ ├── memory.inl │ │ │ ├── memory_managed_virtual_class.h │ │ │ ├── memory_util.cpp │ │ │ └── memory_util.h │ │ ├── stopwatch │ │ │ ├── stopwatch.cpp │ │ │ ├── stopwatch.h │ │ │ └── stopwatch_qpt.inl │ │ ├── string │ │ │ ├── string.cpp │ │ │ └── string.h │ │ └── util.h │ │ ├── hk_math │ │ ├── dense_vector.cpp │ │ ├── dense_vector.h │ │ ├── dense_vector.inl │ │ ├── densematrix.cpp │ │ ├── densematrix.h │ │ ├── densematrix.inl │ │ ├── densematrix_util.cpp │ │ ├── densematrix_util.h │ │ ├── densematrix_util.inl │ │ ├── diagonal_matrix.h │ │ ├── eulerangles.cpp │ │ ├── eulerangles.h │ │ ├── gauss_elimination │ │ │ ├── gauss_elimination.cpp │ │ │ └── gauss_elimination.h │ │ ├── hk_math.vcxproj │ │ ├── hk_math.vcxproj.filters │ │ ├── hk_math.vcxproj.user │ │ ├── incr_lu │ │ │ ├── incr_lu.cpp │ │ │ └── incr_lu.h │ │ ├── interval.h │ │ ├── lcp │ │ │ ├── lcp_solver.cpp │ │ │ └── lcp_solver.h │ │ ├── math.cpp │ │ ├── math.h │ │ ├── math.inl │ │ ├── matrix │ │ │ └── matrix_inverter.h │ │ ├── matrix3.cpp │ │ ├── matrix3.h │ │ ├── matrix3.inl │ │ ├── odesolve.cpp │ │ ├── odesolve.h │ │ ├── plane.cpp │ │ ├── plane.h │ │ ├── plane.inl │ │ ├── qtransform.h │ │ ├── qtransform.inl │ │ ├── quaternion │ │ │ ├── quaternion.cpp │ │ │ ├── quaternion.h │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_util.cpp │ │ │ └── quaternion_util.h │ │ ├── ray.h │ │ ├── ray.inl │ │ ├── real_array_util.h │ │ ├── rotation.cpp │ │ ├── rotation.h │ │ ├── rotation.inl │ │ ├── spatial_matrix.cpp │ │ ├── spatial_matrix.h │ │ ├── spatial_matrix.inl │ │ ├── spatial_vector.cpp │ │ ├── spatial_vector.h │ │ ├── spatial_vector.inl │ │ ├── transform.cpp │ │ ├── transform.h │ │ ├── transform.inl │ │ ├── types.h │ │ ├── vecmath.cpp │ │ ├── vecmath.h │ │ ├── vector3 │ │ │ ├── vector3.cpp │ │ │ ├── vector3.h │ │ │ ├── vector3.inl │ │ │ ├── vector3_util.cpp │ │ │ ├── vector3_util.h │ │ │ └── vector3_util.inl │ │ ├── vector4.cpp │ │ ├── vector4.h │ │ ├── vector4.inl │ │ └── vector_fpu │ │ │ ├── vector_fpu.h │ │ │ └── vector_fpu.inl │ │ └── hk_physics │ │ ├── constraint │ │ ├── ball_socket │ │ │ ├── ball_socket_bp.h │ │ │ ├── ball_socket_constraint.cpp │ │ │ └── ball_socket_constraint.h │ │ ├── breakable_constraint │ │ │ ├── breakable_constraint.cpp │ │ │ ├── breakable_constraint.h │ │ │ └── breakable_constraint_bp.h │ │ ├── car_wheel │ │ │ ├── car_wheel_bp.h │ │ │ ├── car_wheel_constraint.cpp │ │ │ ├── car_wheel_constraint.h │ │ │ └── car_wheel_constraint.inl │ │ ├── constraint.cpp │ │ ├── constraint.h │ │ ├── constraint_bp.h │ │ ├── constraint_limit.h │ │ ├── fixed │ │ │ ├── fixed_bp.h │ │ │ ├── fixed_constraint.cpp │ │ │ └── fixed_constraint.h │ │ ├── hinge │ │ │ ├── hinge_bp.h │ │ │ ├── hinge_bp_builder.cpp │ │ │ ├── hinge_bp_builder.h │ │ │ ├── hinge_constraint.cpp │ │ │ └── hinge_constraint.h │ │ ├── limited_ball_socket │ │ │ ├── limited_ball_socket_bp.h │ │ │ ├── limited_ball_socket_constraint.cpp │ │ │ └── limited_ball_socket_constraint.h │ │ ├── local_constraint_system │ │ │ ├── local_constraint_system.cpp │ │ │ ├── local_constraint_system.h │ │ │ └── local_constraint_system_bp.h │ │ ├── prismatic │ │ │ ├── prismatic_bp.h │ │ │ ├── prismatic_constraint.cpp │ │ │ └── prismatic_constraint.h │ │ ├── pulley │ │ │ ├── pulley_bp.h │ │ │ ├── pulley_constraint.cpp │ │ │ └── pulley_constraint.h │ │ ├── ragdoll │ │ │ ├── ragdoll_constraint.cpp │ │ │ ├── ragdoll_constraint.h │ │ │ ├── ragdoll_constraint_bp.h │ │ │ ├── ragdoll_constraint_bp_builder.cpp │ │ │ └── ragdoll_constraint_bp_builder.h │ │ ├── stiff_spring │ │ │ ├── stiff_spring_bp.h │ │ │ ├── stiff_spring_constraint.cpp │ │ │ └── stiff_spring_constraint.h │ │ └── util │ │ │ └── constraint_limit_util.h │ │ ├── core │ │ ├── core.h │ │ ├── rigid_body_core.cpp │ │ ├── rigid_body_core.h │ │ ├── rigid_body_core.inl │ │ ├── vm_query.h │ │ └── vm_query_builder │ │ │ ├── mass_relative_vector3.h │ │ │ └── vm_query_builder.h │ │ └── types │ │ ├── blueprint.h │ │ ├── blueprint.inl │ │ ├── blueprint_types.h │ │ ├── manager.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── object.inl │ │ ├── sorted_set.cpp │ │ ├── sorted_set.h │ │ ├── types.cpp │ │ └── types.h ├── ivp_collision │ ├── ivp_3d_solver.cxx │ ├── ivp_3d_solver.hxx │ ├── ivp_cache_ledge_point.hxx │ ├── ivp_clustering_longrange.cxx │ ├── ivp_clustering_longrange.hxx │ ├── ivp_clustering_lrange_hash.cxx │ ├── ivp_clustering_lrange_hash.hxx │ ├── ivp_clustering_visual_hash.cxx │ ├── ivp_clustering_visual_hash.hxx │ ├── ivp_clustering_visualizer.cxx │ ├── ivp_clustering_visualizer.hxx │ ├── ivp_coll_del_root_mindist.cxx │ ├── ivp_collision.hxx │ ├── ivp_collision_filter.cxx │ ├── ivp_collision_filter.hxx │ ├── ivp_compact_ledge.cxx │ ├── ivp_compact_ledge.hxx │ ├── ivp_compact_ledge_solver.cxx │ ├── ivp_compact_ledge_solver.hxx │ ├── ivp_i_collision_vhash.cxx │ ├── ivp_i_collision_vhash.hxx │ ├── ivp_listener_collision.hxx │ ├── ivp_mindist.cxx │ ├── ivp_mindist.hxx │ ├── ivp_mindist_debug.cxx │ ├── ivp_mindist_event.cxx │ ├── ivp_mindist_event.hxx │ ├── ivp_mindist_intern.hxx │ ├── ivp_mindist_macros.hxx │ ├── ivp_mindist_mcases.cxx │ ├── ivp_mindist_minimize.cxx │ ├── ivp_mindist_minimize.hxx │ ├── ivp_mindist_recursive.cxx │ ├── ivp_oo_watcher.cxx │ ├── ivp_range_manager.cxx │ ├── ivp_range_manager.hxx │ ├── ivp_ray_solver.cxx │ ├── ivp_ray_solver.hxx │ ├── ivp_sphere_solver.cxx │ ├── ivp_sphere_solver.hxx │ └── ivp_universe_manager.hxx ├── ivp_compact_builder │ ├── 3dsimport_co.cxx │ ├── 3dsimport_load.cxx │ ├── 3dsimport_load.hxx │ ├── 3dsimport_out.cxx │ ├── geompack.hxx │ ├── geompack_cutfac.cxx │ ├── geompack_cvdec3.cxx │ ├── geompack_drdec3.cxx │ ├── geompack_dsphdc.cxx │ ├── geompack_edght.cxx │ ├── geompack_initcb.cxx │ ├── geompack_insed3.cxx │ ├── geompack_insfac.cxx │ ├── geompack_insvr3.cxx │ ├── geompack_prime.cxx │ ├── geompack_ptpolg.cxx │ ├── geompack_resedg.cxx │ ├── hk_mopp │ │ └── ivp_surbuild_mopp.hxx │ ├── ivp_compact_ledge_gen.cxx │ ├── ivp_compact_ledge_gen.hxx │ ├── ivp_compact_modify.cxx │ ├── ivp_compact_modify.hxx │ ├── ivp_compact_recursive.cxx │ ├── ivp_compact_recursive.hxx │ ├── ivp_convex_decompositor.cxx │ ├── ivp_convex_decompositor.hxx │ ├── ivp_halfspacesoup.cxx │ ├── ivp_halfspacesoup.hxx │ ├── ivp_i_fpoint_vhash.cxx │ ├── ivp_i_fpoint_vhash.hxx │ ├── ivp_i_point_vhash.cxx │ ├── ivp_i_point_vhash.hxx │ ├── ivp_object_polygon_tetra.cxx │ ├── ivp_object_polygon_tetra.hxx │ ├── ivp_rot_inertia_solver.cxx │ ├── ivp_rot_inertia_solver.hxx │ ├── ivp_surbuild_3ds.hxx │ ├── ivp_surbuild_halfspacesoup.cxx │ ├── ivp_surbuild_halfspacesoup.hxx │ ├── ivp_surbuild_ledge_soup.cxx │ ├── ivp_surbuild_ledge_soup.hxx │ ├── ivp_surbuild_pointsoup.cxx │ ├── ivp_surbuild_pointsoup.hxx │ ├── ivp_surbuild_polygon_convex.cxx │ ├── ivp_surbuild_polygon_convex.hxx │ ├── ivp_surbuild_polyhdrn_cncv.cxx │ ├── ivp_surbuild_polyhdrn_cncv.hxx │ ├── ivp_surbuild_q12.cxx │ ├── ivp_surbuild_q12.hxx │ ├── ivp_template_surbuild.hxx │ ├── ivp_templates_intern.cxx │ ├── ivp_templates_intern.hxx │ ├── ivp_tetra_intrude.cxx │ ├── ivp_tetra_intrude.hxx │ ├── ivp_triangle_gen.hxx │ ├── ivv_cluster_min_hash.cxx │ ├── ivv_cluster_min_hash.hxx │ ├── qhull.cxx │ ├── qhull.hxx │ ├── qhull_a.hxx │ ├── qhull_geom.cxx │ ├── qhull_geom.hxx │ ├── qhull_geom2.cxx │ ├── qhull_global.cxx │ ├── qhull_io.cxx │ ├── qhull_io.hxx │ ├── qhull_mem.cxx │ ├── qhull_mem.hxx │ ├── qhull_merge.cxx │ ├── qhull_merge.hxx │ ├── qhull_poly.cxx │ ├── qhull_poly.hxx │ ├── qhull_poly2.cxx │ ├── qhull_qset.cxx │ ├── qhull_qset.hxx │ ├── qhull_stat.cxx │ ├── qhull_stat.hxx │ ├── qhull_user.cxx │ └── qhull_user.hxx ├── ivp_controller │ ├── ivp_actuator.cxx │ ├── ivp_actuator.hxx │ ├── ivp_actuator_info.hxx │ ├── ivp_actuator_spring.cxx │ ├── ivp_actuator_spring.hxx │ ├── ivp_attacher_to_cores.hxx │ ├── ivp_buoyancy_solver.cxx │ ├── ivp_buoyancy_solver.hxx │ ├── ivp_car_system.cxx │ ├── ivp_car_system.hxx │ ├── ivp_constraint.cxx │ ├── ivp_constraint.hxx │ ├── ivp_constraint_car.cxx │ ├── ivp_constraint_car.hxx │ ├── ivp_constraint_fixed_keyed.cxx │ ├── ivp_constraint_fixed_keyed.hxx │ ├── ivp_constraint_local.cxx │ ├── ivp_constraint_local.hxx │ ├── ivp_constraint_types.hxx │ ├── ivp_controller.hxx │ ├── ivp_controller_airboat.cpp │ ├── ivp_controller_airboat.h │ ├── ivp_controller_buoyancy.cxx │ ├── ivp_controller_buoyancy.hxx │ ├── ivp_controller_fake_jetski.cpp │ ├── ivp_controller_fake_jetski.h │ ├── ivp_controller_floating.cxx │ ├── ivp_controller_floating.hxx │ ├── ivp_controller_golem.hxx │ ├── ivp_controller_motion.cxx │ ├── ivp_controller_motion.hxx │ ├── ivp_controller_raycast_car.cxx │ ├── ivp_controller_raycast_car.hxx │ ├── ivp_controller_stiff_spring.cxx │ ├── ivp_controller_stiff_spring.hxx │ ├── ivp_controller_world_frict.cxx │ ├── ivp_controller_world_frict.hxx │ ├── ivp_forcefield.cxx │ ├── ivp_forcefield.hxx │ ├── ivp_multidimensional_interp.cxx │ ├── ivp_multidimensional_interp.hxx │ ├── ivp_template_constraint.cxx │ └── ivp_template_constraint.hxx ├── ivp_docs │ ├── constraints user guide.pdf │ └── ivp_manual.rtf ├── ivp_intern │ ├── ivp_ball.cxx │ ├── ivp_calc_next_psi_solver.cxx │ ├── ivp_calc_next_psi_solver.hxx │ ├── ivp_controller_phantom.cxx │ ├── ivp_core.cxx │ ├── ivp_environment.cxx │ ├── ivp_friction.cxx │ ├── ivp_friction.hxx │ ├── ivp_friction_gaps.cxx │ ├── ivp_friction_solver.hxx │ ├── ivp_great_matrix.cxx │ ├── ivp_hull_manager.cxx │ ├── ivp_hull_manager_macros.hxx │ ├── ivp_i_controller_vhash.hxx │ ├── ivp_i_friction_hash.cxx │ ├── ivp_i_friction_hash.hxx │ ├── ivp_i_object_vhash.cxx │ ├── ivp_i_object_vhash.hxx │ ├── ivp_impact.cxx │ ├── ivp_impact.hxx │ ├── ivp_merge_core.cxx │ ├── ivp_merge_core.hxx │ ├── ivp_mindist_friction.cxx │ ├── ivp_object.cxx │ ├── ivp_object_attach.cxx │ ├── ivp_physic.cxx │ ├── ivp_physic_private.cxx │ ├── ivp_physic_private.hxx │ ├── ivp_polygon.cxx │ ├── ivp_sim_unit.cxx │ ├── ivp_sim_unit.hxx │ ├── ivp_solver_core_reaction.cxx │ └── ivp_time.cxx ├── ivp_physics │ ├── hk_physics │ │ ├── constraint │ │ │ └── local_constraint_system │ │ │ │ ├── local_constraint_system.cpp │ │ │ │ └── local_constraint_system.h │ │ ├── core │ │ │ └── rigid_body_core.cpp │ │ ├── effector │ │ │ └── rigid_body_binary_effector.cpp │ │ ├── physics.h │ │ └── simunit │ │ │ └── psi_info.h │ ├── ive_graphics.hxx │ ├── ivp_anomaly_manager.cxx │ ├── ivp_anomaly_manager.hxx │ ├── ivp_authenticity.hxx │ ├── ivp_ball.hxx │ ├── ivp_betterdebugmanager.cxx │ ├── ivp_betterdebugmanager.hxx │ ├── ivp_betterstatisticsmanager.cxx │ ├── ivp_betterstatisticsmanager.hxx │ ├── ivp_cache_object.cxx │ ├── ivp_cache_object.hxx │ ├── ivp_contact_situation.hxx │ ├── ivp_core.hxx │ ├── ivp_core_macros.hxx │ ├── ivp_debug.hxx │ ├── ivp_debug_manager.hxx │ ├── ivp_environment.hxx │ ├── ivp_great_matrix.hxx │ ├── ivp_hull_manager.hxx │ ├── ivp_liquid_surface_descript.cxx │ ├── ivp_liquid_surface_descript.hxx │ ├── ivp_listener_hull.hxx │ ├── ivp_listener_object.hxx │ ├── ivp_listener_psi.hxx │ ├── ivp_material.cxx │ ├── ivp_material.hxx │ ├── ivp_object.hxx │ ├── ivp_object_attach.hxx │ ├── ivp_performancecounter.cxx │ ├── ivp_performancecounter.hxx │ ├── ivp_phantom.hxx │ ├── ivp_physics.hxx │ ├── ivp_polygon.hxx │ ├── ivp_radar.hxx │ ├── ivp_radar_appl.hxx │ ├── ivp_real_object.hxx │ ├── ivp_solver_core_reaction.hxx │ ├── ivp_stat_manager_cback_con.cxx │ ├── ivp_stat_manager_cback_con.hxx │ ├── ivp_surface_manager.cxx │ ├── ivp_surface_manager.hxx │ ├── ivp_templates.cxx │ ├── ivp_templates.hxx │ ├── ivp_time.hxx │ └── ivp_time_event.hxx ├── ivp_surface_manager │ ├── hk_mopp │ │ ├── ivp_compact_mopp.hxx │ │ └── ivp_surman_mopp.hxx │ ├── ivp_compact_grid.hxx │ ├── ivp_compact_surface.cxx │ ├── ivp_compact_surface.hxx │ ├── ivp_gridbuild_array.cxx │ ├── ivp_gridbuild_array.hxx │ ├── ivp_surman_grid.cxx │ ├── ivp_surman_grid.hxx │ ├── ivp_surman_polygon.cxx │ └── ivp_surman_polygon.hxx ├── ivp_utility │ ├── ivu_active_value.cxx │ ├── ivu_active_value.hxx │ ├── ivu_active_value_hash.hxx │ ├── ivu_bigvector.cxx │ ├── ivu_bigvector.hxx │ ├── ivu_diff_hash.hxx │ ├── ivu_float.hxx │ ├── ivu_fvector.hxx │ ├── ivu_geometry.cxx │ ├── ivu_geometry.hxx │ ├── ivu_hash.cxx │ ├── ivu_hash.hxx │ ├── ivu_linear.cxx │ ├── ivu_linear.hxx │ ├── ivu_linear_double.hxx │ ├── ivu_linear_macros.hxx │ ├── ivu_linear_piii.hxx │ ├── ivu_linear_ps2.hxx │ ├── ivu_linear_software.hxx │ ├── ivu_linear_willamette.hxx │ ├── ivu_list.hxx │ ├── ivu_mapping.cxx │ ├── ivu_mapping.hxx │ ├── ivu_matrix_macros.hxx │ ├── ivu_memory.cxx │ ├── ivu_memory.hxx │ ├── ivu_min_hash.cxx │ ├── ivu_min_hash.hxx │ ├── ivu_min_list.cxx │ ├── ivu_min_list.hxx │ ├── ivu_os_dep.cxx │ ├── ivu_ps2.hxx │ ├── ivu_quat.cxx │ ├── ivu_quat.hxx │ ├── ivu_set.hxx │ ├── ivu_string.cxx │ ├── ivu_string.hxx │ ├── ivu_string_hash.hxx │ ├── ivu_types.cxx │ ├── ivu_types.hxx │ ├── ivu_vector.cxx │ ├── ivu_vector.hxx │ ├── ivu_vhash.cxx │ ├── ivu_vhash.hxx │ └── shortestdistanceutil.h └── ivp_workspaces_src │ ├── havana_constraints.vcxproj │ ├── havana_constraints.vcxproj.filters │ ├── havana_constraints.vcxproj.user │ ├── ipion_internal_workspace.sln │ ├── ivp_compactbuilder_lib.vcxproj │ ├── ivp_compactbuilder_lib.vcxproj.filters │ ├── ivp_compactbuilder_lib.vcxproj.user │ ├── ivp_physics_lib.vcxproj │ ├── ivp_physics_lib.vcxproj.filters │ └── ivp_physics_lib.vcxproj.user ├── Inputsystem ├── Inputsystem.vcxproj ├── Inputsystem.vcxproj.user ├── inputsystem.cpp ├── inputsystem.h ├── inputsystem.vcxproj.filters ├── joystick.cpp ├── key_translation.cpp ├── key_translation.h └── xcontroller.cpp ├── Launcher ├── Launcher.vcxproj ├── Launcher.vcxproj.user ├── ifilesystem.h ├── launcher.cpp ├── launcher.vcxproj.filters ├── reslistgenerator.cpp └── reslistgenerator.h ├── Materialsystem ├── CMaterialSubRect.cpp ├── IHardwareConfigInternal.h ├── IShaderSystem.h ├── Materialsystem.vcxproj ├── Materialsystem.vcxproj.user ├── Shaderapidx9 │ ├── ShaderShadowDx10.h │ ├── Shaderapidx10.vcxproj │ ├── Shaderapidx10.vcxproj.user │ ├── Shaderapidx9.vcxproj │ ├── Shaderapidx9.vcxproj.user │ ├── TransitionTable.cpp │ ├── TransitionTable.h │ ├── colorformatdx8.cpp │ ├── colorformatdx8.h │ ├── cvballoctracker.cpp │ ├── d3d_async.cpp │ ├── d3d_async.h │ ├── dynamicib.h │ ├── dynamicvb.h │ ├── hardwareconfig.cpp │ ├── hardwareconfig.h │ ├── imeshdx8.h │ ├── inputlayoutdx10.cpp │ ├── inputlayoutdx10.h │ ├── ivertexbufferdx8.h │ ├── locald3dtypes.h │ ├── meshbase.cpp │ ├── meshbase.h │ ├── meshdx10.cpp │ ├── meshdx10.h │ ├── meshdx8.cpp │ ├── recording.cpp │ ├── recording.h │ ├── shaderapi_global.h │ ├── shaderapibase.cpp │ ├── shaderapibase.h │ ├── shaderapidx10.cpp │ ├── shaderapidx10.h │ ├── shaderapidx10.vcxproj.filters │ ├── shaderapidx10_global.h │ ├── shaderapidx8.cpp │ ├── shaderapidx8.h │ ├── shaderapidx8_global.h │ ├── shaderapidx9.vcxproj.filters │ ├── shaderdevicebase.cpp │ ├── shaderdevicebase.h │ ├── shaderdevicedx10.cpp │ ├── shaderdevicedx10.h │ ├── shaderdevicedx8.cpp │ ├── shaderdevicedx8.h │ ├── shadershadowdx10.cpp │ ├── shadershadowdx8.cpp │ ├── shadershadowdx8.h │ ├── stubd3ddevice.h │ ├── texturedx8.cpp │ ├── texturedx8.h │ ├── textureheap.cpp │ ├── textureheap.h │ ├── vertexdecl.cpp │ ├── vertexdecl.h │ ├── vertexshaderdx8.cpp │ ├── vertexshaderdx8.h │ ├── wmi.cpp │ └── wmi.h ├── Shaderapiempty │ ├── Shaderapiempty.vcxproj │ ├── Shaderapiempty.vcxproj.user │ ├── shaderapiempty.cpp │ └── shaderapiempty.vcxproj.filters ├── Shaderlib │ ├── BaseShader.cpp │ ├── ShaderDLL.cpp │ ├── Shaderlib.vcxproj │ ├── Shaderlib.vcxproj.user │ ├── shaderDLL_Global.h │ ├── shaderlib.vcxproj.filters │ ├── shaderlib_cvar.cpp │ └── shaderlib_cvar.h ├── Stdshaders │ ├── AccumBuff4Sample.cpp │ ├── AccumBuff4Sample_ps2x.fxc │ ├── BaseVSShader.cpp │ ├── BaseVSShader.h │ ├── Bloom.cpp │ ├── Bloom_ps2x.fxc │ ├── BlurFilterX.cpp │ ├── BlurFilterX_dx80.cpp │ ├── BlurFilterY.cpp │ ├── BlurFilterY_dx80.cpp │ ├── BlurFilter_ps11.psh │ ├── BlurFilter_ps2x.fxc │ ├── BlurFilter_vs11.fxc │ ├── BlurFilter_vs20.fxc │ ├── BufferClearObeyStencil_dx6.cpp │ ├── BufferClearObeyStencil_dx8.cpp │ ├── BufferClearObeyStencil_dx9.cpp │ ├── BufferClearObeyStencil_ps11.psh │ ├── BufferClearObeyStencil_vs11.vsh │ ├── BumpmappedEnvmap.psh │ ├── BumpmappedEnvmap.vsh │ ├── BumpmappedLightmap.vsh │ ├── BumpmappedLightmap_LightingOnly_OverBright2.psh │ ├── BumpmappedLightmap_OverBright2.psh │ ├── Cable.psh │ ├── Cable.vsh │ ├── DebugDrawDepth_ps2x.fxc │ ├── DebugDrawDepth_vs20.fxc │ ├── DebugDrawEnvmapMask.cpp │ ├── DebugDrawEnvmapMask_ps2x.fxc │ ├── DebugDrawEnvmapMask_vs20.fxc │ ├── DebugTextureView.cpp │ ├── DebugTextureView_ps2x.fxc │ ├── DebugTextureView_vs20.fxc │ ├── DecalBaseTimesLightmapAlphaBlendSelfIllum1_ps11.psh │ ├── DecalBaseTimesLightmapAlphaBlendSelfIllum2_ps11.psh │ ├── DecalBaseTimesLightmapAlphaBlendSelfIllum_dx6.cpp │ ├── DecalBaseTimesLightmapAlphaBlendSelfIllum_dx8.cpp │ ├── DecalBaseTimesLightmapAlphaBlendSelfIllum_dx9.cpp │ ├── DecalModulate_dx9.cpp │ ├── Downsample.cpp │ ├── Downsample_nohdr_ps11.psh │ ├── Downsample_nohdr_ps2x.fxc │ ├── Downsample_ps2x.fxc │ ├── Downsample_vs11.fxc │ ├── Downsample_vs20.fxc │ ├── Engine_Post_dx9.cpp │ ├── Engine_Post_ps2x.fxc │ ├── Eyes.psh │ ├── Eyes_Overbright2.psh │ ├── Eyes_vs20.fxc │ ├── HDRCombineTo16Bit.cpp │ ├── HDRCombineTo16Bit_ps2x.fxc │ ├── HDRCombineTo16Bit_vs20.fxc │ ├── HDRSelectRange.cpp │ ├── HDRSelectRange_ps2x.fxc │ ├── HDRSelectRange_vs20.fxc │ ├── IntroScreenSpaceEffect_ps11.fxc │ ├── IntroScreenSpaceEffect_ps11_asm.psh │ ├── IntroScreenSpaceEffect_ps2x.fxc │ ├── JellyFish.psh │ ├── JellyFish.vsh │ ├── LightingOnly.vsh │ ├── LightmappedGeneric.psh │ ├── LightmappedGeneric_AddBaseAlphaMaskedEnvMap.psh │ ├── LightmappedGeneric_AddEnvMapMaskNoTexture.psh │ ├── LightmappedGeneric_AddEnvMapNoTexture.psh │ ├── LightmappedGeneric_BaseAlphaMaskedEnvMapV2.psh │ ├── LightmappedGeneric_BaseTexture.psh │ ├── LightmappedGeneric_BaseTexture.vsh │ ├── LightmappedGeneric_BaseTextureBlend.vsh │ ├── LightmappedGeneric_BumpmappedEnvmap.psh │ ├── LightmappedGeneric_BumpmappedEnvmap.vsh │ ├── LightmappedGeneric_BumpmappedEnvmap_ps14.psh │ ├── LightmappedGeneric_BumpmappedEnvmap_ps14.vsh │ ├── LightmappedGeneric_BumpmappedLightmap.psh │ ├── LightmappedGeneric_BumpmappedLightmap.vsh │ ├── LightmappedGeneric_BumpmappedLightmap_base_ps14.psh │ ├── LightmappedGeneric_BumpmappedLightmap_base_ps14.vsh │ ├── LightmappedGeneric_BumpmappedLightmap_blend_ps14.psh │ ├── LightmappedGeneric_BumpmappedLightmap_blend_ps14.vsh │ ├── LightmappedGeneric_Decal.psh │ ├── LightmappedGeneric_Decal.vsh │ ├── LightmappedGeneric_Detail.psh │ ├── LightmappedGeneric_DetailNoTexture.psh │ ├── LightmappedGeneric_DetailSelfIlluminated.psh │ ├── LightmappedGeneric_EnvMapNoTexture.psh │ ├── LightmappedGeneric_EnvMapV2.psh │ ├── LightmappedGeneric_LightingOnly.vsh │ ├── LightmappedGeneric_LightingOnly_Overbright2.psh │ ├── LightmappedGeneric_MaskedEnvMapNoTexture.psh │ ├── LightmappedGeneric_MaskedEnvMapV2.psh │ ├── LightmappedGeneric_MultiplyByLighting.psh │ ├── LightmappedGeneric_MultiplyByLightingNoTexture.psh │ ├── LightmappedGeneric_MultiplyByLightingSelfIllum.psh │ ├── LightmappedGeneric_NoTexture.psh │ ├── LightmappedGeneric_SSBumpmappedLightmap.psh │ ├── LightmappedGeneric_SelfIlluminated.psh │ ├── LightmappedGeneric_SelfIlluminatedEnvMapV2.psh │ ├── LightmappedGeneric_SelfIlluminatedMaskedEnvMapV2.psh │ ├── LightmappedGeneric_VertexColor.vsh │ ├── LightmappedTranslucentTexture.psh │ ├── LightmappedTranslucentTexture.vsh │ ├── Modulate_ps11.psh │ ├── MonitorScreen.psh │ ├── MonitorScreen_dx8.cpp │ ├── MonitorScreen_dx9.cpp │ ├── NIL │ ├── ParticleSphere.vsh │ ├── Refract_model_vs11.vsh │ ├── Refract_ps11.psh │ ├── Refract_vs20.fxc │ ├── Refract_world_vs11.vsh │ ├── Release_dbg │ │ └── stdshader_dbg.lib │ ├── Release_dx6 │ │ └── stdshader_dx6.lib │ ├── Release_dx7 │ │ └── stdshader_dx7.lib │ ├── Release_dx8 │ │ └── stdshader_dx8.lib │ ├── Release_dx9 │ │ └── stdshader_dx9.lib │ ├── ScreenSpaceEffect.vsh │ ├── SetZ.cpp │ ├── Shadow.psh │ ├── ShadowBuildTexture.psh │ ├── ShadowModel.psh │ ├── ShadowModel.vsh │ ├── ShatteredGlass.psh │ ├── ShatteredGlass.vsh │ ├── ShatteredGlass_EnvMap.psh │ ├── ShatteredGlass_EnvMap.vsh │ ├── ShatteredGlass_EnvMapSphere.vsh │ ├── ShatteredGlass_inc.vsh │ ├── ShatteredGlass_ps2x.fxc │ ├── ShatteredGlass_vs20.fxc │ ├── SpriteRenderNormal.psh │ ├── SpriteRenderTransAdd.psh │ ├── SpriteRenderTransColor.psh │ ├── StdShader_DX6.vcxproj │ ├── StdShader_DX6.vcxproj.user │ ├── StdShader_DX7.vcxproj │ ├── StdShader_DX8.vcxproj │ ├── StdShader_DX9.vcxproj │ ├── StdShader_DX9.vcxproj.user │ ├── StdShader_dbg.vcxproj │ ├── StdShader_dbg.vcxproj.user │ ├── Teeth.vsh │ ├── TreeLeaf.cpp │ ├── TreeLeaf_ps2x.fxc │ ├── TreeLeaf_vs20.fxc │ ├── UPDB_X360 │ │ └── dummy.txt │ ├── UnlitGeneric.psh │ ├── UnlitGeneric_BaseAlphaMaskedEnvMap.psh │ ├── UnlitGeneric_Detail.psh │ ├── UnlitGeneric_DetailBaseAlphaMaskedEnvMap.psh │ ├── UnlitGeneric_DetailEnvMap.psh │ ├── UnlitGeneric_DetailEnvMapMask.psh │ ├── UnlitGeneric_DetailEnvMapMaskNoTexture.psh │ ├── UnlitGeneric_DetailEnvMapNoTexture.psh │ ├── UnlitGeneric_DetailNoTexture.psh │ ├── UnlitGeneric_EnvMap.psh │ ├── UnlitGeneric_EnvMapMask.psh │ ├── UnlitGeneric_EnvMapMaskNoTexture.psh │ ├── UnlitGeneric_EnvMapNoTexture.psh │ ├── UnlitGeneric_LightingOnly.vsh │ ├── UnlitGeneric_MaskBaseByDetailAlpha_ps11.fxc │ ├── UnlitGeneric_NoTexture.psh │ ├── UnlitTwoTexture.psh │ ├── UnlitTwoTexture.vsh │ ├── VertexLitGeneric.psh │ ├── VertexLitGeneric_BaseAlphaMaskedEnvMapV2.psh │ ├── VertexLitGeneric_Detail.psh │ ├── VertexLitGeneric_DetailBaseAlphaMaskedEnvMapV2.psh │ ├── VertexLitGeneric_DetailEnvMapV2.psh │ ├── VertexLitGeneric_DetailMaskedEnvMapV2.psh │ ├── VertexLitGeneric_DetailNoTexture.psh │ ├── VertexLitGeneric_DetailSelfIlluminated.psh │ ├── VertexLitGeneric_DetailSelfIlluminatedEnvMapV2.psh │ ├── VertexLitGeneric_DetailSelfIlluminatedMaskedEnvMapV2.psh │ ├── VertexLitGeneric_Detail_LerpBase.psh │ ├── VertexLitGeneric_Detail_additive.psh │ ├── VertexLitGeneric_Detail_additive_selfillum.psh │ ├── VertexLitGeneric_EnvMapNoTexture.psh │ ├── VertexLitGeneric_EnvMapV2.psh │ ├── VertexLitGeneric_EnvmappedBumpmapV2.psh │ ├── VertexLitGeneric_EnvmappedBumpmapV2_MultByAlpha.psh │ ├── VertexLitGeneric_EnvmappedBumpmapV2_MultByAlpha_ps14.psh │ ├── VertexLitGeneric_EnvmappedBumpmapV2_ps14.psh │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting.vsh │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting_ps14.vsh │ ├── VertexLitGeneric_MaskedEnvMapNoTexture.psh │ ├── VertexLitGeneric_MaskedEnvMapV2.psh │ ├── VertexLitGeneric_NoTexture.psh │ ├── VertexLitGeneric_SelfIllumOnly.psh │ ├── VertexLitGeneric_SelfIllumOnly.vsh │ ├── VertexLitGeneric_SelfIlluminated.psh │ ├── VertexLitGeneric_SelfIlluminatedEnvMapV2.psh │ ├── VertexLitGeneric_SelfIlluminatedMaskedEnvMapV2.psh │ ├── VertexLitTexture.psh │ ├── VertexLitTexture_Overbright2.psh │ ├── VertexTextureTest.cpp │ ├── WaterCheapFresnelOpaque_ps14.psh │ ├── WaterCheapFresnel_ps14.psh │ ├── WaterCheapNoFresnelOpaque_ps11.psh │ ├── WaterCheapNoFresnel_ps11.psh │ ├── WaterCheapOpaque_ps11.psh │ ├── WaterCheapOpaque_ps14.psh │ ├── WaterCheapPerVertexFresnel_vs11.vsh │ ├── WaterCheap_ps11.psh │ ├── WaterCheap_ps14.psh │ ├── WaterCheap_ps2x.fxc │ ├── WaterCheap_vs11.vsh │ ├── WaterCheap_vs14.vsh │ ├── WaterCheap_vs20.fxc │ ├── WaterReflect_ps11.psh │ ├── WaterRefractFresnel_ps11.psh │ ├── WaterRefract_ps11.psh │ ├── Water_ps14.psh │ ├── Water_ps14.vsh │ ├── Water_vs11.vsh │ ├── Water_vs20.fxc │ ├── WorldTexture.psh │ ├── WorldTwoTextureBlend.psh │ ├── WorldTwoTextureBlend_DetailAlpha.psh │ ├── WorldTwoTextureBlend_SelfIlluminated.psh │ ├── WorldVertexAlpha.psh │ ├── WorldVertexAlpha.vsh │ ├── WorldVertexAlpha_ps2x.fxc │ ├── WorldVertexTransition.psh │ ├── WorldVertexTransition.vsh │ ├── WorldVertexTransition_BlendBase2.psh │ ├── WorldVertexTransition_Editor.psh │ ├── WorldVertexTransition_Seamless.psh │ ├── WorldVertexTransition_Seamless.vsh │ ├── WorldVertexTransition_dx8.cpp │ ├── WorldVertexTransition_ps14.psh │ ├── WorldVertexTransition_ps2x.fxc │ ├── WorldVertexTransition_vs14.vsh │ ├── WorldVertexTransition_vs20.fxc │ ├── accumbuff5sample.cpp │ ├── accumbuff5sample_ps2x.fxc │ ├── aftershock.cpp │ ├── aftershock_helper.cpp │ ├── aftershock_helper.h │ ├── aftershock_ps2x.fxc │ ├── aftershock_vs20.fxc │ ├── alphadist_ps11.fxc │ ├── appchooser360movie_ps2x.fxc │ ├── bik_dx80.cpp │ ├── bik_dx81.cpp │ ├── bik_dx90.cpp │ ├── bik_ps11.psh │ ├── bik_ps14.psh │ ├── bik_ps2x.fxc │ ├── bik_vs11.vsh │ ├── bik_vs20.fxc │ ├── bloomadd_ps11.fxc │ ├── bloomadd_ps2x.fxc │ ├── bufferclearobeystencil_ps2x.fxc │ ├── bufferclearobeystencil_vs20.fxc │ ├── buildallshaders.bat │ ├── buildshaders.bat │ ├── bumpmappedlightmap_vs11.fxc │ ├── cable_dx6.cpp │ ├── cable_dx8.cpp │ ├── cable_dx9.cpp │ ├── cable_ps2x.fxc │ ├── cable_vs20.fxc │ ├── clean.bat │ ├── cleantemps.bat │ ├── cloak.cpp │ ├── cloak_blended_pass_dx8_helper.cpp │ ├── cloak_blended_pass_dx8_ps11.psh │ ├── cloak_blended_pass_dx8_vs11.vsh │ ├── cloak_blended_pass_helper.cpp │ ├── cloak_blended_pass_helper.h │ ├── cloak_blended_pass_ps2x.fxc │ ├── cloak_blended_pass_vs20.fxc │ ├── cloak_dx9_helper.cpp │ ├── cloak_dx9_helper.h │ ├── cloak_ps2x.fxc │ ├── cloak_vs20.fxc │ ├── cloud.cpp │ ├── cloud_dx8.cpp │ ├── cloud_ps11.psh │ ├── cloud_vs11.vsh │ ├── colorcorrection.cpp │ ├── colorcorrection_ps2x.fxc │ ├── commandbuilder.h │ ├── common_flashlight_fxc.h │ ├── common_fxc.h │ ├── common_hlsl_cpp_consts.h │ ├── common_lightmappedgeneric_fxc.h │ ├── common_pragmas.h │ ├── common_ps_fxc.h │ ├── common_vertexlitgeneric_dx9.h │ ├── common_vertexlitgeneric_vs20.fxc │ ├── common_vs_fxc.h │ ├── constant_color_ps2x.fxc │ ├── copy_fp_rt_ps2x.fxc │ ├── core_dx7.cpp │ ├── core_dx8.cpp │ ├── core_dx9.cpp │ ├── core_ps11.psh │ ├── core_ps2x.fxc │ ├── core_vs11.fxc │ ├── core_vs20.fxc │ ├── cpp_shader_constant_register_map.h │ ├── d3dx.h │ ├── d3dxcore.h │ ├── d3dxerr.h │ ├── d3dxmath.h │ ├── d3dxmath.inl │ ├── d3dxshapes.h │ ├── d3dxsprite.h │ ├── debugdepth.cpp │ ├── debugluxel.cpp │ ├── debugmodifyvertex.cpp │ ├── debugmorphaccumulator_dx9.cpp │ ├── debugmorphaccumulator_ps30.fxc │ ├── debugmorphaccumulator_vs30.fxc │ ├── debugmrttexture.cpp │ ├── debugmrttexture_ps2x.fxc │ ├── debugmrttexture_vs20.fxc │ ├── debugnormalmap.cpp │ ├── debugsoftwarevertexshader.cpp │ ├── debugtangentspace.cpp │ ├── debugtangentspace.vsh │ ├── debugtangentspace_vs11.fxc │ ├── debugtangentspace_vs20.fxc │ ├── decal.cpp │ ├── decalbasetimeslightmapalphablendselfillum2_ps2x.fxc │ ├── decalmodulate.cpp │ ├── decalmodulate_dx8.cpp │ ├── decalmodulate_ps11.psh │ ├── decalmodulate_ps2x.fxc │ ├── decalmodulate_vs11.vsh │ ├── depthtodestalpha_ps20b.fxc │ ├── depthtodestalpha_vs20.fxc │ ├── depthwrite.cpp │ ├── depthwrite_ps2x.fxc │ ├── depthwrite_vs20.fxc │ ├── detail.cpp │ ├── detail_ps11.psh │ ├── detail_vs11.vsh │ ├── downsample_nohdr.cpp │ ├── downsample_nohdr_dx80.cpp │ ├── dx8fallbacks.cpp │ ├── emissive_scroll_blended_pass_dx8_helper.cpp │ ├── emissive_scroll_blended_pass_dx8_ps11.psh │ ├── emissive_scroll_blended_pass_dx8_vs11.vsh │ ├── emissive_scroll_blended_pass_helper.cpp │ ├── emissive_scroll_blended_pass_helper.h │ ├── emissive_scroll_blended_pass_ps2x.fxc │ ├── emissive_scroll_blended_pass_vs20.fxc │ ├── eye_refract.cpp │ ├── eye_refract_helper.cpp │ ├── eye_refract_helper.h │ ├── eye_refract_ps2x.fxc │ ├── eye_refract_vs20.fxc │ ├── eyeball.cpp │ ├── eyeglint_dx9.cpp │ ├── eyeglint_ps2x.fxc │ ├── eyeglint_vs20.fxc │ ├── eyes.cpp │ ├── eyes.vsh │ ├── eyes_dx6.cpp │ ├── eyes_dx8_dx9_helper.cpp │ ├── eyes_dx8_dx9_helper.h │ ├── eyes_dx9.cpp │ ├── eyes_flashlight2_ps11.psh │ ├── eyes_flashlight_inc.fxc │ ├── eyes_flashlight_ps11.fxc │ ├── eyes_flashlight_ps2x.fxc │ ├── eyes_flashlight_vs11.vsh │ ├── eyes_flashlight_vs20.fxc │ ├── eyes_ps2x.fxc │ ├── filelist.txt │ ├── filelistgen.txt │ ├── filestocopy.txt │ ├── fillrate.cpp │ ├── fillrate.psh │ ├── fillrate.vsh │ ├── fillrate_dx6.cpp │ ├── fillrate_ps11.fxc │ ├── fillrate_ps2x.fxc │ ├── fillrate_vs11.fxc │ ├── fillrate_vs20.fxc │ ├── filmdust.cpp │ ├── filmdust_dx7.cpp │ ├── filmdust_ps11.fxc │ ├── filmgrain.cpp │ ├── filmgrain_dx7.cpp │ ├── filmgrain_ps11.fxc │ ├── filmgrain_vs20.fxc │ ├── flashlight_ps11.fxc │ ├── flashlight_ps2x.fxc │ ├── flesh_interior_blended_pass_dx8_helper.cpp │ ├── flesh_interior_blended_pass_dx8_ps11.psh │ ├── flesh_interior_blended_pass_dx8_vs11.vsh │ ├── flesh_interior_blended_pass_helper.cpp │ ├── flesh_interior_blended_pass_helper.h │ ├── flesh_interior_blended_pass_ps2x.fxc │ ├── flesh_interior_blended_pass_vs20.fxc │ ├── floatcombine.cpp │ ├── floatcombine_autoexpose.cpp │ ├── floatcombine_autoexpose_ps2x.fxc │ ├── floatcombine_ps2x.fxc │ ├── floattoscreen.cpp │ ├── floattoscreen_notonemap_ps2x.fxc │ ├── floattoscreen_ps2x.fxc │ ├── floattoscreen_vanilla.cpp │ ├── floattoscreen_vanilla_ps2x.fxc │ ├── fxctmp9 │ │ ├── Bloom_ps20.inc │ │ ├── Bloom_ps20b.inc │ │ ├── BlurFilter_ps20.inc │ │ ├── BlurFilter_ps20b.inc │ │ ├── BlurFilter_vs11.inc │ │ ├── BlurFilter_vs20.inc │ │ ├── Downsample_nohdr_ps20.inc │ │ ├── Downsample_nohdr_ps20b.inc │ │ ├── Downsample_ps20.inc │ │ ├── Downsample_ps20b.inc │ │ ├── Downsample_vs11.inc │ │ ├── Downsample_vs20.inc │ │ ├── HDRCombineTo16Bit_ps20.inc │ │ ├── HDRCombineTo16Bit_ps20b.inc │ │ ├── HDRCombineTo16Bit_vs20.inc │ │ ├── HDRSelectRange_ps20.inc │ │ ├── HDRSelectRange_ps20b.inc │ │ ├── HDRSelectRange_vs20.inc │ │ ├── IntroScreenSpaceEffect_ps20.inc │ │ ├── IntroScreenSpaceEffect_ps20b.inc │ │ ├── ParticleSphere_ps11.inc │ │ ├── ParticleSphere_vs11.inc │ │ ├── Refract_ps20.inc │ │ ├── Refract_ps20b.inc │ │ ├── Refract_vs20.inc │ │ ├── ShatteredGlass_ps20.inc │ │ ├── ShatteredGlass_ps20b.inc │ │ ├── ShatteredGlass_vs20.inc │ │ ├── VertexLit_and_unlit_Generic_bump_vs20.inc │ │ ├── VertexLit_and_unlit_Generic_vs20.inc │ │ ├── WaterCheap_ps20.inc │ │ ├── WaterCheap_ps20b.inc │ │ ├── WaterCheap_vs20.inc │ │ ├── Water_ps20.inc │ │ ├── Water_vs20.inc │ │ ├── WorldTwoTextureBlend_ps20.inc │ │ ├── WorldTwoTextureBlend_ps20b.inc │ │ ├── accumbuff4sample_ps20.inc │ │ ├── accumbuff4sample_ps20b.inc │ │ ├── accumbuff5sample_ps20.inc │ │ ├── accumbuff5sample_ps20b.inc │ │ ├── aftershock_ps20.inc │ │ ├── aftershock_ps20b.inc │ │ ├── aftershock_vs20.inc │ │ ├── alphadist_ps11.inc │ │ ├── appchooser360movie_ps20.inc │ │ ├── appchooser360movie_ps20b.inc │ │ ├── bik_ps20.inc │ │ ├── bik_ps20b.inc │ │ ├── bik_vs20.inc │ │ ├── bloomadd_ps11.inc │ │ ├── bloomadd_ps20.inc │ │ ├── bloomadd_ps20b.inc │ │ ├── bufferclearobeystencil_ps20.inc │ │ ├── bufferclearobeystencil_ps20b.inc │ │ ├── bufferclearobeystencil_vs20.inc │ │ ├── bumpmappedlightmap_vs11.inc │ │ ├── cable_ps20.inc │ │ ├── cable_ps20b.inc │ │ ├── cable_vs20.inc │ │ ├── cloak_blended_pass_ps20.inc │ │ ├── cloak_blended_pass_ps20b.inc │ │ ├── cloak_blended_pass_ps30.inc │ │ ├── cloak_blended_pass_vs20.inc │ │ ├── cloak_blended_pass_vs30.inc │ │ ├── cloak_ps20.inc │ │ ├── cloak_ps20b.inc │ │ ├── cloak_ps30.inc │ │ ├── cloak_vs20.inc │ │ ├── cloak_vs30.inc │ │ ├── colorcorrection_ps20.inc │ │ ├── colorcorrection_ps20b.inc │ │ ├── constant_color_ps20.inc │ │ ├── constant_color_ps20b.inc │ │ ├── copy_fp_rt_ps20.inc │ │ ├── copy_fp_rt_ps20b.inc │ │ ├── core_ps20.inc │ │ ├── core_ps20b.inc │ │ ├── core_vs11.inc │ │ ├── core_vs20.inc │ │ ├── debugbumpmappedlightmap_ps11.inc │ │ ├── debugbumpmappedlightmap_ps20.inc │ │ ├── debugbumpmappedlightmap_ps20b.inc │ │ ├── debugdrawdepth_ps20.inc │ │ ├── debugdrawdepth_ps20b.inc │ │ ├── debugdrawdepth_vs20.inc │ │ ├── debugdrawenvmapmask_ps20.inc │ │ ├── debugdrawenvmapmask_ps20b.inc │ │ ├── debugdrawenvmapmask_vs20.inc │ │ ├── debugmorphaccumulator_ps30.inc │ │ ├── debugmorphaccumulator_vs30.inc │ │ ├── debugmrttexture_ps20.inc │ │ ├── debugmrttexture_ps20b.inc │ │ ├── debugmrttexture_vs20.inc │ │ ├── debugtangentspace_vs11.inc │ │ ├── debugtangentspace_vs20.inc │ │ ├── debugtextureview_ps20.inc │ │ ├── debugtextureview_ps20b.inc │ │ ├── debugtextureview_vs20.inc │ │ ├── decalbasetimeslightmapalphablendselfillum2_ps20.inc │ │ ├── decalbasetimeslightmapalphablendselfillum2_ps20b.inc │ │ ├── decalmodulate_ps20.inc │ │ ├── decalmodulate_ps20b.inc │ │ ├── decalmodulate_ps30.inc │ │ ├── depthtodestalpha_ps20b.inc │ │ ├── depthtodestalpha_vs20.inc │ │ ├── depthwrite_ps20.inc │ │ ├── depthwrite_ps20b.inc │ │ ├── depthwrite_ps30.inc │ │ ├── depthwrite_vs20.inc │ │ ├── depthwrite_vs30.inc │ │ ├── emissive_scroll_blended_pass_ps20.inc │ │ ├── emissive_scroll_blended_pass_ps20b.inc │ │ ├── emissive_scroll_blended_pass_ps30.inc │ │ ├── emissive_scroll_blended_pass_vs20.inc │ │ ├── emissive_scroll_blended_pass_vs30.inc │ │ ├── engine_post_ps20.inc │ │ ├── engine_post_ps20b.inc │ │ ├── eye_refract_ps20.inc │ │ ├── eye_refract_ps20b.inc │ │ ├── eye_refract_ps30.inc │ │ ├── eye_refract_vs20.inc │ │ ├── eye_refract_vs30.inc │ │ ├── eyeglint_ps20.inc │ │ ├── eyeglint_ps20b.inc │ │ ├── eyeglint_vs20.inc │ │ ├── eyes_cloak_ps20b.inc │ │ ├── eyes_cloak_vs20b.inc │ │ ├── eyes_flashlight_ps11.inc │ │ ├── eyes_flashlight_ps20.inc │ │ ├── eyes_flashlight_ps20b.inc │ │ ├── eyes_flashlight_ps30.inc │ │ ├── eyes_flashlight_vs20.inc │ │ ├── eyes_flashlight_vs30.inc │ │ ├── eyes_ps20.inc │ │ ├── eyes_ps20b.inc │ │ ├── eyes_ps30.inc │ │ ├── eyes_vs20.inc │ │ ├── eyes_vs30.inc │ │ ├── fillrate_ps11.inc │ │ ├── fillrate_ps20.inc │ │ ├── fillrate_ps20b.inc │ │ ├── fillrate_vs11.inc │ │ ├── fillrate_vs20.inc │ │ ├── filmdust_ps11.inc │ │ ├── filmgrain_ps11.inc │ │ ├── filmgrain_vs20.inc │ │ ├── flashlight_ps11.inc │ │ ├── flashlight_ps20.inc │ │ ├── flashlight_ps20b.inc │ │ ├── flesh_interior_blended_pass_ps20.inc │ │ ├── flesh_interior_blended_pass_ps20b.inc │ │ ├── flesh_interior_blended_pass_vs20.inc │ │ ├── floatcombine_autoexpose_ps20.inc │ │ ├── floatcombine_autoexpose_ps20b.inc │ │ ├── floatcombine_ps20.inc │ │ ├── floatcombine_ps20b.inc │ │ ├── floattoscreen_notonemap_ps20.inc │ │ ├── floattoscreen_notonemap_ps20b.inc │ │ ├── floattoscreen_ps20.inc │ │ ├── floattoscreen_ps20b.inc │ │ ├── floattoscreen_vanilla_ps20.inc │ │ ├── floattoscreen_vanilla_ps20b.inc │ │ ├── hsl_filmgrain_pass1_ps20.inc │ │ ├── hsl_filmgrain_pass1_ps20b.inc │ │ ├── hsl_filmgrain_pass2_ps20.inc │ │ ├── hsl_filmgrain_pass2_ps20b.inc │ │ ├── hsv_ps20.inc │ │ ├── hsv_ps20b.inc │ │ ├── introscreenspaceeffect_ps11.inc │ │ ├── lightingonly_vs20.inc │ │ ├── lightmappedgeneric_decal_ps20.inc │ │ ├── lightmappedgeneric_decal_ps20b.inc │ │ ├── lightmappedgeneric_decal_vs20.inc │ │ ├── lightmappedgeneric_flashlight_vs11.inc │ │ ├── lightmappedgeneric_flashlight_vs20.inc │ │ ├── lightmappedgeneric_lightingonly_overbright2_ps11.inc │ │ ├── lightmappedgeneric_lightingonly_vs11.inc │ │ ├── lightmappedgeneric_ps20.inc │ │ ├── lightmappedgeneric_ps20b.inc │ │ ├── lightmappedgeneric_vs20.inc │ │ ├── lightmappedreflective_ps20.inc │ │ ├── lightmappedreflective_ps20b.inc │ │ ├── lightmappedreflective_vs20.inc │ │ ├── lpreview1_ps20.inc │ │ ├── lpreview1_ps20b.inc │ │ ├── lpreview_output_ps20.inc │ │ ├── lpreview_output_ps20b.inc │ │ ├── luminance_compare_ps20.inc │ │ ├── luminance_compare_ps20b.inc │ │ ├── modulate_ps20.inc │ │ ├── modulate_ps20b.inc │ │ ├── monitorscreen_ps20.inc │ │ ├── monitorscreen_ps20b.inc │ │ ├── morphaccumulate_ps30.inc │ │ ├── morphaccumulate_vs30.inc │ │ ├── morphweight_ps30.inc │ │ ├── morphweight_vs30.inc │ │ ├── motion_blur_ps20.inc │ │ ├── motion_blur_ps20b.inc │ │ ├── motion_blur_vs20.inc │ │ ├── particlelit_generic_ps30.inc │ │ ├── particlelit_generic_vs30.inc │ │ ├── particlesphere_ps20.inc │ │ ├── particlesphere_ps20b.inc │ │ ├── particlesphere_vs20.inc │ │ ├── portal_ps11.inc │ │ ├── portal_ps20.inc │ │ ├── portal_ps20b.inc │ │ ├── portal_refract_ps11.inc │ │ ├── portal_refract_ps20.inc │ │ ├── portal_refract_ps20b.inc │ │ ├── portal_refract_vs11.inc │ │ ├── portal_refract_vs20.inc │ │ ├── portal_vs11.inc │ │ ├── portal_vs20.inc │ │ ├── portalstaticoverlay_ps11.inc │ │ ├── portalstaticoverlay_ps20.inc │ │ ├── portalstaticoverlay_ps20b.inc │ │ ├── portalstaticoverlay_vs11.inc │ │ ├── portalstaticoverlay_vs20.inc │ │ ├── rendertargetblit_ps20.inc │ │ ├── rendertargetblit_ps20b.inc │ │ ├── rendertargetblit_vs20.inc │ │ ├── sample4x4_blend_ps20.inc │ │ ├── sample4x4_blend_ps20b.inc │ │ ├── sample4x4_ps20.inc │ │ ├── sample4x4_ps20b.inc │ │ ├── sample4x4delog_ps20.inc │ │ ├── sample4x4delog_ps20b.inc │ │ ├── sample4x4log_ps20.inc │ │ ├── sample4x4log_ps20b.inc │ │ ├── sample4x4maxmin_ps20.inc │ │ ├── sample4x4maxmin_ps20b.inc │ │ ├── screenspaceeffect_vs11.inc │ │ ├── screenspaceeffect_vs20.inc │ │ ├── sfm_combine_vs20.inc │ │ ├── sfm_integercombine_ps20.inc │ │ ├── sfm_integercombine_ps20b.inc │ │ ├── shadow_ps20.inc │ │ ├── shadow_ps20b.inc │ │ ├── shadow_vs20.inc │ │ ├── shadowbuildtexture_ps20.inc │ │ ├── shadowbuildtexture_ps20b.inc │ │ ├── showz_ps20.inc │ │ ├── showz_ps20b.inc │ │ ├── showz_vs11.inc │ │ ├── skin_ps20.inc │ │ ├── skin_ps20b.inc │ │ ├── skin_ps30.inc │ │ ├── skin_ps30b.inc │ │ ├── skin_vs20.inc │ │ ├── skin_vs30.inc │ │ ├── sky_hdr_compressed_ps20.inc │ │ ├── sky_hdr_compressed_ps20b.inc │ │ ├── sky_hdr_compressed_rgbs_ps20.inc │ │ ├── sky_hdr_compressed_rgbs_ps20b.inc │ │ ├── sky_ps20.inc │ │ ├── sky_ps20b.inc │ │ ├── sky_vs20.inc │ │ ├── splinecard_vs11.inc │ │ ├── splinecard_vs20.inc │ │ ├── sprite_ps20.inc │ │ ├── sprite_ps20b.inc │ │ ├── sprite_vs20.inc │ │ ├── spritecard_ps11.inc │ │ ├── spritecard_ps20.inc │ │ ├── spritecard_ps20b.inc │ │ ├── spritecard_vs11.inc │ │ ├── spritecard_vs20.inc │ │ ├── teeth_bump_ps20.inc │ │ ├── teeth_bump_ps20b.inc │ │ ├── teeth_bump_ps30.inc │ │ ├── teeth_bump_vs20.inc │ │ ├── teeth_bump_vs30.inc │ │ ├── teeth_flashlight_ps20.inc │ │ ├── teeth_flashlight_ps20b.inc │ │ ├── teeth_flashlight_ps30.inc │ │ ├── teeth_flashlight_vs20.inc │ │ ├── teeth_flashlight_vs30.inc │ │ ├── teeth_ps20.inc │ │ ├── teeth_ps20b.inc │ │ ├── teeth_ps30.inc │ │ ├── teeth_vs20.inc │ │ ├── teeth_vs30.inc │ │ ├── treeleaf_ps20.inc │ │ ├── treeleaf_ps20b.inc │ │ ├── treeleaf_vs20.inc │ │ ├── unlitgeneric_lightingonly_vs11.inc │ │ ├── unlitgeneric_maskbasebydetailalpha_ps11.inc │ │ ├── unlitgeneric_notexture_ps11.inc │ │ ├── unlitgeneric_notexture_ps20.inc │ │ ├── unlitgeneric_notexture_ps20b.inc │ │ ├── unlitgeneric_ps11.inc │ │ ├── unlitgeneric_ps20.inc │ │ ├── unlitgeneric_ps20b.inc │ │ ├── unlitgeneric_vs20.inc │ │ ├── unlittwotexture_ps20.inc │ │ ├── unlittwotexture_ps20b.inc │ │ ├── unlittwotexture_vs20.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps20.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps20b.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps30.inc │ │ ├── vertexlit_and_unlit_generic_bump_vs30.inc │ │ ├── vertexlit_and_unlit_generic_ps20.inc │ │ ├── vertexlit_and_unlit_generic_ps20b.inc │ │ ├── vertexlit_and_unlit_generic_ps30.inc │ │ ├── vertexlit_and_unlit_generic_vs30.inc │ │ ├── vertexlit_lighting_only_ps20.inc │ │ ├── vertexlit_lighting_only_ps20b.inc │ │ ├── vertexlitgeneric_lightingonly_overbright2_ps11.inc │ │ ├── volume_clouds_ps20.inc │ │ ├── volume_clouds_ps20b.inc │ │ ├── volume_clouds_vs20.inc │ │ ├── vortwarp_ps20.inc │ │ ├── vortwarp_ps20b.inc │ │ ├── vortwarp_ps30.inc │ │ ├── vortwarp_vs20.inc │ │ ├── vortwarp_vs30.inc │ │ ├── water_ps20b.inc │ │ ├── white_ps20.inc │ │ ├── white_ps20b.inc │ │ ├── windowimposter_ps11.inc │ │ ├── windowimposter_ps20.inc │ │ ├── windowimposter_ps20b.inc │ │ ├── windowimposter_vs11.inc │ │ ├── windowimposter_vs20.inc │ │ ├── worldvertexalpha_ps20.inc │ │ ├── worldvertexalpha_ps20b.inc │ │ ├── writevertexalphatodestalpha_ps11.inc │ │ ├── writevertexalphatodestalpha_vs11.inc │ │ └── writez_vs20.inc │ ├── fxctmp9_360 │ │ ├── Bloom_ps20.inc │ │ ├── Bloom_ps20b.inc │ │ ├── BlurFilter_ps20.inc │ │ ├── BlurFilter_ps20b.inc │ │ ├── BlurFilter_vs11.inc │ │ ├── BlurFilter_vs20.inc │ │ ├── Downsample_nohdr_ps20.inc │ │ ├── Downsample_nohdr_ps20b.inc │ │ ├── Downsample_ps20.inc │ │ ├── Downsample_ps20b.inc │ │ ├── Downsample_vs11.inc │ │ ├── Downsample_vs20.inc │ │ ├── HDRCombineTo16Bit_ps20.inc │ │ ├── HDRCombineTo16Bit_ps20b.inc │ │ ├── HDRCombineTo16Bit_vs20.inc │ │ ├── HDRSelectRange_ps20.inc │ │ ├── HDRSelectRange_ps20b.inc │ │ ├── HDRSelectRange_vs20.inc │ │ ├── IntroScreenSpaceEffect_ps20.inc │ │ ├── IntroScreenSpaceEffect_ps20b.inc │ │ ├── ParticleSphere_ps11.inc │ │ ├── ParticleSphere_vs11.inc │ │ ├── Refract_ps20.inc │ │ ├── Refract_vs20.inc │ │ ├── ShatteredGlass_ps20.inc │ │ ├── ShatteredGlass_ps20b.inc │ │ ├── ShatteredGlass_vs20.inc │ │ ├── VertexLit_and_unlit_Generic_bump_vs20.inc │ │ ├── VertexLit_and_unlit_Generic_vs20.inc │ │ ├── WaterCheap_ps20.inc │ │ ├── WaterCheap_ps20b.inc │ │ ├── WaterCheap_vs20.inc │ │ ├── Water_ps20.inc │ │ ├── Water_vs20.inc │ │ ├── WorldTwoTextureBlend_ps20.inc │ │ ├── WorldTwoTextureBlend_ps20b.inc │ │ ├── accumbuff4sample_ps20.inc │ │ ├── accumbuff4sample_ps20b.inc │ │ ├── accumbuff5sample_ps20.inc │ │ ├── accumbuff5sample_ps20b.inc │ │ ├── aftershock_ps20.inc │ │ ├── aftershock_ps20b.inc │ │ ├── aftershock_vs20.inc │ │ ├── alphadist_ps11.inc │ │ ├── appchooser360movie_ps20.inc │ │ ├── appchooser360movie_ps20b.inc │ │ ├── bik_ps20.inc │ │ ├── bik_ps20b.inc │ │ ├── bik_vs20.inc │ │ ├── bloomadd_ps11.inc │ │ ├── bloomadd_ps20.inc │ │ ├── bloomadd_ps20b.inc │ │ ├── bufferclearobeystencil_ps20.inc │ │ ├── bufferclearobeystencil_ps20b.inc │ │ ├── bufferclearobeystencil_vs20.inc │ │ ├── bumpmappedlightmap_vs11.inc │ │ ├── cable_ps20.inc │ │ ├── cable_ps20b.inc │ │ ├── cable_vs20.inc │ │ ├── cloak_blended_pass_ps20.inc │ │ ├── cloak_blended_pass_ps20b.inc │ │ ├── cloak_blended_pass_vs20.inc │ │ ├── cloak_ps20.inc │ │ ├── cloak_ps20b.inc │ │ ├── cloak_vs20.inc │ │ ├── colorcorrection_ps20.inc │ │ ├── colorcorrection_ps20b.inc │ │ ├── constant_color_ps20.inc │ │ ├── constant_color_ps20b.inc │ │ ├── copy_fp_rt_ps20.inc │ │ ├── copy_fp_rt_ps20b.inc │ │ ├── core_ps20.inc │ │ ├── core_ps20b.inc │ │ ├── core_vs11.inc │ │ ├── core_vs20.inc │ │ ├── debugdrawdepth_ps20.inc │ │ ├── debugdrawdepth_ps20b.inc │ │ ├── debugdrawdepth_vs20.inc │ │ ├── debugdrawenvmapmask_ps20.inc │ │ ├── debugdrawenvmapmask_ps20b.inc │ │ ├── debugdrawenvmapmask_vs20.inc │ │ ├── debugmrttexture_ps20.inc │ │ ├── debugmrttexture_ps20b.inc │ │ ├── debugmrttexture_vs20.inc │ │ ├── debugtangentspace_vs11.inc │ │ ├── debugtangentspace_vs20.inc │ │ ├── debugtextureview_ps20.inc │ │ ├── debugtextureview_ps20b.inc │ │ ├── debugtextureview_vs20.inc │ │ ├── decalbasetimeslightmapalphablendselfillum2_ps20.inc │ │ ├── decalbasetimeslightmapalphablendselfillum2_ps20b.inc │ │ ├── decalmodulate_ps20.inc │ │ ├── decalmodulate_ps20b.inc │ │ ├── depthtodestalpha_ps20b.inc │ │ ├── depthtodestalpha_vs20.inc │ │ ├── depthwrite_ps20.inc │ │ ├── depthwrite_ps20b.inc │ │ ├── depthwrite_vs20.inc │ │ ├── emissive_scroll_blended_pass_ps20.inc │ │ ├── emissive_scroll_blended_pass_ps20b.inc │ │ ├── emissive_scroll_blended_pass_vs20.inc │ │ ├── engine_post_ps20.inc │ │ ├── engine_post_ps20b.inc │ │ ├── eye_refract_ps20.inc │ │ ├── eye_refract_ps20b.inc │ │ ├── eye_refract_vs20.inc │ │ ├── eyeglint_ps20.inc │ │ ├── eyeglint_ps20b.inc │ │ ├── eyeglint_vs20.inc │ │ ├── eyes_flashlight_ps11.inc │ │ ├── eyes_flashlight_ps20.inc │ │ ├── eyes_flashlight_ps20b.inc │ │ ├── eyes_flashlight_vs20.inc │ │ ├── eyes_ps20.inc │ │ ├── eyes_ps20b.inc │ │ ├── eyes_vs20.inc │ │ ├── fillrate_ps11.inc │ │ ├── fillrate_ps20.inc │ │ ├── fillrate_ps20b.inc │ │ ├── fillrate_vs11.inc │ │ ├── fillrate_vs20.inc │ │ ├── filmdust_ps11.inc │ │ ├── filmgrain_ps11.inc │ │ ├── filmgrain_vs20.inc │ │ ├── flashlight_ps11.inc │ │ ├── flashlight_ps20.inc │ │ ├── flashlight_ps20b.inc │ │ ├── flesh_interior_blended_pass_ps20.inc │ │ ├── flesh_interior_blended_pass_ps20b.inc │ │ ├── flesh_interior_blended_pass_vs20.inc │ │ ├── floatcombine_autoexpose_ps20.inc │ │ ├── floatcombine_autoexpose_ps20b.inc │ │ ├── floatcombine_ps20.inc │ │ ├── floatcombine_ps20b.inc │ │ ├── floattoscreen_notonemap_ps20.inc │ │ ├── floattoscreen_notonemap_ps20b.inc │ │ ├── floattoscreen_ps20.inc │ │ ├── floattoscreen_ps20b.inc │ │ ├── floattoscreen_vanilla_ps20.inc │ │ ├── floattoscreen_vanilla_ps20b.inc │ │ ├── hsl_filmgrain_pass1_ps20.inc │ │ ├── hsl_filmgrain_pass1_ps20b.inc │ │ ├── hsl_filmgrain_pass2_ps20.inc │ │ ├── hsl_filmgrain_pass2_ps20b.inc │ │ ├── hsv_ps20.inc │ │ ├── hsv_ps20b.inc │ │ ├── introscreenspaceeffect_ps11.inc │ │ ├── lightmappedgeneric_decal_ps20.inc │ │ ├── lightmappedgeneric_decal_ps20b.inc │ │ ├── lightmappedgeneric_decal_vs20.inc │ │ ├── lightmappedgeneric_flashlight_vs11.inc │ │ ├── lightmappedgeneric_flashlight_vs20.inc │ │ ├── lightmappedgeneric_lightingonly_overbright2_ps11.inc │ │ ├── lightmappedgeneric_lightingonly_vs11.inc │ │ ├── lightmappedgeneric_ps20.inc │ │ ├── lightmappedgeneric_ps20b.inc │ │ ├── lightmappedgeneric_vs20.inc │ │ ├── lightmappedreflective_ps20.inc │ │ ├── lightmappedreflective_ps20b.inc │ │ ├── lightmappedreflective_vs20.inc │ │ ├── lpreview1_ps20.inc │ │ ├── lpreview1_ps20b.inc │ │ ├── lpreview_output_ps20.inc │ │ ├── lpreview_output_ps20b.inc │ │ ├── luminance_compare_ps20.inc │ │ ├── luminance_compare_ps20b.inc │ │ ├── modulate_ps20.inc │ │ ├── modulate_ps20b.inc │ │ ├── monitorscreen_ps20.inc │ │ ├── monitorscreen_ps20b.inc │ │ ├── motion_blur_ps20.inc │ │ ├── motion_blur_ps20b.inc │ │ ├── motion_blur_vs20.inc │ │ ├── particlesphere_ps20.inc │ │ ├── particlesphere_ps20b.inc │ │ ├── particlesphere_vs20.inc │ │ ├── portal_ps11.inc │ │ ├── portal_ps20.inc │ │ ├── portal_ps20b.inc │ │ ├── portal_refract_ps11.inc │ │ ├── portal_refract_ps20.inc │ │ ├── portal_refract_ps20b.inc │ │ ├── portal_refract_vs11.inc │ │ ├── portal_refract_vs20.inc │ │ ├── portal_vs11.inc │ │ ├── portal_vs20.inc │ │ ├── portalstaticoverlay_ps11.inc │ │ ├── portalstaticoverlay_ps20.inc │ │ ├── portalstaticoverlay_ps20b.inc │ │ ├── portalstaticoverlay_vs11.inc │ │ ├── portalstaticoverlay_vs20.inc │ │ ├── refract_ps20b.inc │ │ ├── rendertargetblit_ps20.inc │ │ ├── rendertargetblit_ps20b.inc │ │ ├── rendertargetblit_vs20.inc │ │ ├── sample4x4_blend_ps20.inc │ │ ├── sample4x4_blend_ps20b.inc │ │ ├── sample4x4_ps20.inc │ │ ├── sample4x4_ps20b.inc │ │ ├── sample4x4delog_ps20.inc │ │ ├── sample4x4delog_ps20b.inc │ │ ├── sample4x4log_ps20.inc │ │ ├── sample4x4log_ps20b.inc │ │ ├── sample4x4maxmin_ps20.inc │ │ ├── sample4x4maxmin_ps20b.inc │ │ ├── screenspaceeffect_vs11.inc │ │ ├── screenspaceeffect_vs20.inc │ │ ├── sfm_combine_vs20.inc │ │ ├── sfm_integercombine_ps20.inc │ │ ├── sfm_integercombine_ps20b.inc │ │ ├── shadow_ps20.inc │ │ ├── shadow_ps20b.inc │ │ ├── shadow_vs20.inc │ │ ├── shadowbuildtexture_ps20.inc │ │ ├── shadowbuildtexture_ps20b.inc │ │ ├── showz_ps20.inc │ │ ├── showz_ps20b.inc │ │ ├── showz_vs11.inc │ │ ├── skin_ps20b.inc │ │ ├── skin_vs20.inc │ │ ├── sky_hdr_compressed_ps20.inc │ │ ├── sky_hdr_compressed_ps20b.inc │ │ ├── sky_hdr_compressed_rgbs_ps20.inc │ │ ├── sky_hdr_compressed_rgbs_ps20b.inc │ │ ├── sky_ps20.inc │ │ ├── sky_ps20b.inc │ │ ├── sky_vs20.inc │ │ ├── splinecard_vs11.inc │ │ ├── splinecard_vs20.inc │ │ ├── sprite_ps20.inc │ │ ├── sprite_ps20b.inc │ │ ├── sprite_vs20.inc │ │ ├── spritecard_ps11.inc │ │ ├── spritecard_ps20.inc │ │ ├── spritecard_ps20b.inc │ │ ├── spritecard_vs11.inc │ │ ├── spritecard_vs20.inc │ │ ├── teeth_bump_ps20.inc │ │ ├── teeth_bump_ps20b.inc │ │ ├── teeth_bump_vs20.inc │ │ ├── teeth_flashlight_ps20.inc │ │ ├── teeth_flashlight_ps20b.inc │ │ ├── teeth_flashlight_vs20.inc │ │ ├── teeth_ps20.inc │ │ ├── teeth_ps20b.inc │ │ ├── teeth_vs20.inc │ │ ├── treeleaf_ps20.inc │ │ ├── treeleaf_ps20b.inc │ │ ├── treeleaf_vs20.inc │ │ ├── unlitgeneric_maskbasebydetailalpha_ps11.inc │ │ ├── unlitgeneric_notexture_ps11.inc │ │ ├── unlitgeneric_notexture_ps20.inc │ │ ├── unlitgeneric_notexture_ps20b.inc │ │ ├── unlitgeneric_ps20.inc │ │ ├── unlitgeneric_ps20b.inc │ │ ├── unlitgeneric_vs20.inc │ │ ├── unlittwotexture_ps20.inc │ │ ├── unlittwotexture_ps20b.inc │ │ ├── unlittwotexture_vs20.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps20.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps20b.inc │ │ ├── vertexlit_and_unlit_generic_ps20.inc │ │ ├── vertexlit_and_unlit_generic_ps20b.inc │ │ ├── vertexlitgeneric_lightingonly_overbright2_ps11.inc │ │ ├── volume_clouds_ps20.inc │ │ ├── volume_clouds_ps20b.inc │ │ ├── volume_clouds_vs20.inc │ │ ├── vortwarp_ps20.inc │ │ ├── vortwarp_ps20b.inc │ │ ├── vortwarp_vs20.inc │ │ ├── water_ps20b.inc │ │ ├── white_ps20.inc │ │ ├── white_ps20b.inc │ │ ├── windowimposter_ps11.inc │ │ ├── windowimposter_ps20.inc │ │ ├── windowimposter_ps20b.inc │ │ ├── windowimposter_vs11.inc │ │ ├── windowimposter_vs20.inc │ │ ├── worldvertexalpha_ps20.inc │ │ ├── worldvertexalpha_ps20b.inc │ │ ├── writevertexalphatodestalpha_ps11.inc │ │ ├── writevertexalphatodestalpha_vs11.inc │ │ └── writez_vs20.inc │ ├── fxctmp9_tmp │ │ ├── Bloom_ps20.inc │ │ ├── Bloom_ps20b.inc │ │ ├── BlurFilter_ps20.inc │ │ ├── BlurFilter_ps20b.inc │ │ ├── BlurFilter_vs11.inc │ │ ├── BlurFilter_vs20.inc │ │ ├── DebugTextureView_ps20.inc │ │ ├── DebugTextureView_ps20b.inc │ │ ├── DebugTextureView_vs20.inc │ │ ├── Downsample_nohdr_ps20.inc │ │ ├── Downsample_nohdr_ps20b.inc │ │ ├── Downsample_ps20.inc │ │ ├── Downsample_ps20b.inc │ │ ├── Downsample_vs11.inc │ │ ├── Downsample_vs20.inc │ │ ├── Engine_Post_ps20.inc │ │ ├── Engine_Post_ps20b.inc │ │ ├── HDRCombineTo16Bit_ps20.inc │ │ ├── HDRCombineTo16Bit_ps20b.inc │ │ ├── HDRCombineTo16Bit_vs20.inc │ │ ├── HDRSelectRange_ps20.inc │ │ ├── HDRSelectRange_ps20b.inc │ │ ├── HDRSelectRange_vs20.inc │ │ ├── IntroScreenSpaceEffect_ps20.inc │ │ ├── IntroScreenSpaceEffect_ps20b.inc │ │ ├── ParticleSphere_ps11.inc │ │ ├── ParticleSphere_vs11.inc │ │ ├── Refract_ps20.inc │ │ ├── Refract_ps20b.inc │ │ ├── Refract_vs20.inc │ │ ├── ShatteredGlass_ps20.inc │ │ ├── ShatteredGlass_ps20b.inc │ │ ├── ShatteredGlass_vs20.inc │ │ ├── UnlitGeneric_MaskBaseByDetailAlpha_ps11.inc │ │ ├── WaterCheap_ps20.inc │ │ ├── WaterCheap_ps20b.inc │ │ ├── WaterCheap_vs20.inc │ │ ├── Water_ps20.inc │ │ ├── Water_ps20b.inc │ │ ├── Water_vs20.inc │ │ ├── WorldTwoTextureBlend_ps20.inc │ │ ├── WorldTwoTextureBlend_ps20b.inc │ │ ├── accumbuff4sample_ps20.inc │ │ ├── accumbuff4sample_ps20b.inc │ │ ├── accumbuff5sample_ps20.inc │ │ ├── accumbuff5sample_ps20b.inc │ │ ├── aftershock_ps20.inc │ │ ├── aftershock_ps20b.inc │ │ ├── aftershock_vs20.inc │ │ ├── alphadist_ps11.inc │ │ ├── appchooser360movie_ps20.inc │ │ ├── appchooser360movie_ps20b.inc │ │ ├── bik_ps20.inc │ │ ├── bik_ps20b.inc │ │ ├── bik_vs20.inc │ │ ├── bloomadd_ps11.inc │ │ ├── bloomadd_ps20.inc │ │ ├── bloomadd_ps20b.inc │ │ ├── bufferclearobeystencil_ps20.inc │ │ ├── bufferclearobeystencil_ps20b.inc │ │ ├── bufferclearobeystencil_vs20.inc │ │ ├── bumpmappedlightmap_vs11.inc │ │ ├── cable_ps20.inc │ │ ├── cable_ps20b.inc │ │ ├── cable_vs20.inc │ │ ├── cloak_blended_pass_ps20.inc │ │ ├── cloak_blended_pass_ps20b.inc │ │ ├── cloak_blended_pass_ps30.inc │ │ ├── cloak_blended_pass_vs20.inc │ │ ├── cloak_blended_pass_vs30.inc │ │ ├── cloak_ps20.inc │ │ ├── cloak_ps20b.inc │ │ ├── cloak_ps30.inc │ │ ├── cloak_vs20.inc │ │ ├── cloak_vs30.inc │ │ ├── colorcorrection_ps20.inc │ │ ├── colorcorrection_ps20b.inc │ │ ├── constant_color_ps20.inc │ │ ├── constant_color_ps20b.inc │ │ ├── copy_fp_rt_ps20.inc │ │ ├── copy_fp_rt_ps20b.inc │ │ ├── core_ps20.inc │ │ ├── core_ps20b.inc │ │ ├── core_vs11.inc │ │ ├── core_vs20.inc │ │ ├── debugdrawdepth_ps20.inc │ │ ├── debugdrawdepth_ps20b.inc │ │ ├── debugdrawdepth_vs20.inc │ │ ├── debugdrawenvmapmask_ps20.inc │ │ ├── debugdrawenvmapmask_ps20b.inc │ │ ├── debugdrawenvmapmask_vs20.inc │ │ ├── debugmorphaccumulator_ps30.inc │ │ ├── debugmorphaccumulator_vs30.inc │ │ ├── debugmrttexture_ps20.inc │ │ ├── debugmrttexture_ps20b.inc │ │ ├── debugmrttexture_vs20.inc │ │ ├── debugtangentspace_vs11.inc │ │ ├── debugtangentspace_vs20.inc │ │ ├── decalbasetimeslightmapalphablendselfillum2_ps20.inc │ │ ├── decalbasetimeslightmapalphablendselfillum2_ps20b.inc │ │ ├── decalmodulate_ps20.inc │ │ ├── decalmodulate_ps20b.inc │ │ ├── decalmodulate_ps30.inc │ │ ├── depthtodestalpha_ps20b.inc │ │ ├── depthtodestalpha_vs20.inc │ │ ├── depthwrite_ps20.inc │ │ ├── depthwrite_ps20b.inc │ │ ├── depthwrite_ps30.inc │ │ ├── depthwrite_vs20.inc │ │ ├── depthwrite_vs30.inc │ │ ├── emissive_scroll_blended_pass_ps20.inc │ │ ├── emissive_scroll_blended_pass_ps20b.inc │ │ ├── emissive_scroll_blended_pass_ps30.inc │ │ ├── emissive_scroll_blended_pass_vs20.inc │ │ ├── emissive_scroll_blended_pass_vs30.inc │ │ ├── eye_refract_ps20.inc │ │ ├── eye_refract_ps20b.inc │ │ ├── eye_refract_ps30.inc │ │ ├── eye_refract_vs20.inc │ │ ├── eye_refract_vs30.inc │ │ ├── eyeglint_ps20.inc │ │ ├── eyeglint_ps20b.inc │ │ ├── eyeglint_vs20.inc │ │ ├── eyes_flashlight_ps11.inc │ │ ├── eyes_flashlight_ps20.inc │ │ ├── eyes_flashlight_ps20b.inc │ │ ├── eyes_flashlight_ps30.inc │ │ ├── eyes_flashlight_vs20.inc │ │ ├── eyes_flashlight_vs30.inc │ │ ├── eyes_ps20.inc │ │ ├── eyes_ps20b.inc │ │ ├── eyes_ps30.inc │ │ ├── eyes_vs20.inc │ │ ├── eyes_vs30.inc │ │ ├── fillrate_ps11.inc │ │ ├── fillrate_ps20.inc │ │ ├── fillrate_ps20b.inc │ │ ├── fillrate_vs11.inc │ │ ├── fillrate_vs20.inc │ │ ├── filmdust_ps11.inc │ │ ├── filmgrain_ps11.inc │ │ ├── filmgrain_vs20.inc │ │ ├── flashlight_ps11.inc │ │ ├── flashlight_ps20.inc │ │ ├── flashlight_ps20b.inc │ │ ├── flesh_interior_blended_pass_ps20.inc │ │ ├── flesh_interior_blended_pass_ps20b.inc │ │ ├── flesh_interior_blended_pass_vs20.inc │ │ ├── floatcombine_autoexpose_ps20.inc │ │ ├── floatcombine_autoexpose_ps20b.inc │ │ ├── floatcombine_ps20.inc │ │ ├── floatcombine_ps20b.inc │ │ ├── floattoscreen_notonemap_ps20.inc │ │ ├── floattoscreen_notonemap_ps20b.inc │ │ ├── floattoscreen_ps20.inc │ │ ├── floattoscreen_ps20b.inc │ │ ├── floattoscreen_vanilla_ps20.inc │ │ ├── floattoscreen_vanilla_ps20b.inc │ │ ├── hsl_filmgrain_pass1_ps20.inc │ │ ├── hsl_filmgrain_pass1_ps20b.inc │ │ ├── hsl_filmgrain_pass2_ps20.inc │ │ ├── hsl_filmgrain_pass2_ps20b.inc │ │ ├── hsv_ps20.inc │ │ ├── hsv_ps20b.inc │ │ ├── introscreenspaceeffect_ps11.inc │ │ ├── lightmappedgeneric_decal_ps20.inc │ │ ├── lightmappedgeneric_decal_ps20b.inc │ │ ├── lightmappedgeneric_decal_vs20.inc │ │ ├── lightmappedgeneric_flashlight_vs11.inc │ │ ├── lightmappedgeneric_flashlight_vs20.inc │ │ ├── lightmappedgeneric_lightingonly_overbright2_ps11.inc │ │ ├── lightmappedgeneric_lightingonly_vs11.inc │ │ ├── lightmappedgeneric_ps20.inc │ │ ├── lightmappedgeneric_ps20b.inc │ │ ├── lightmappedgeneric_vs20.inc │ │ ├── lightmappedreflective_ps20.inc │ │ ├── lightmappedreflective_ps20b.inc │ │ ├── lightmappedreflective_vs20.inc │ │ ├── lpreview1_ps20.inc │ │ ├── lpreview1_ps20b.inc │ │ ├── lpreview_output_ps20.inc │ │ ├── lpreview_output_ps20b.inc │ │ ├── luminance_compare_ps20.inc │ │ ├── luminance_compare_ps20b.inc │ │ ├── modulate_ps20.inc │ │ ├── modulate_ps20b.inc │ │ ├── monitorscreen_ps20.inc │ │ ├── monitorscreen_ps20b.inc │ │ ├── morphaccumulate_ps30.inc │ │ ├── morphaccumulate_vs30.inc │ │ ├── morphweight_ps30.inc │ │ ├── morphweight_vs30.inc │ │ ├── motion_blur_ps20.inc │ │ ├── motion_blur_ps20b.inc │ │ ├── motion_blur_vs20.inc │ │ ├── particlesphere_ps20.inc │ │ ├── particlesphere_ps20b.inc │ │ ├── particlesphere_vs20.inc │ │ ├── portal_ps11.inc │ │ ├── portal_ps20.inc │ │ ├── portal_ps20b.inc │ │ ├── portal_refract_ps11.inc │ │ ├── portal_refract_ps20.inc │ │ ├── portal_refract_ps20b.inc │ │ ├── portal_refract_vs11.inc │ │ ├── portal_refract_vs20.inc │ │ ├── portal_vs11.inc │ │ ├── portal_vs20.inc │ │ ├── portalstaticoverlay_ps11.inc │ │ ├── portalstaticoverlay_ps20.inc │ │ ├── portalstaticoverlay_ps20b.inc │ │ ├── portalstaticoverlay_vs11.inc │ │ ├── portalstaticoverlay_vs20.inc │ │ ├── rendertargetblit_ps20.inc │ │ ├── rendertargetblit_ps20b.inc │ │ ├── rendertargetblit_vs20.inc │ │ ├── sample4x4_blend_ps20.inc │ │ ├── sample4x4_blend_ps20b.inc │ │ ├── sample4x4_ps20.inc │ │ ├── sample4x4_ps20b.inc │ │ ├── sample4x4delog_ps20.inc │ │ ├── sample4x4delog_ps20b.inc │ │ ├── sample4x4log_ps20.inc │ │ ├── sample4x4log_ps20b.inc │ │ ├── sample4x4maxmin_ps20.inc │ │ ├── sample4x4maxmin_ps20b.inc │ │ ├── screenspaceeffect_vs11.inc │ │ ├── screenspaceeffect_vs20.inc │ │ ├── sfm_combine_vs20.inc │ │ ├── sfm_integercombine_ps20.inc │ │ ├── sfm_integercombine_ps20b.inc │ │ ├── shadow_ps20.inc │ │ ├── shadow_ps20b.inc │ │ ├── shadow_vs20.inc │ │ ├── shadowbuildtexture_ps20.inc │ │ ├── shadowbuildtexture_ps20b.inc │ │ ├── showz_ps20.inc │ │ ├── showz_ps20b.inc │ │ ├── showz_vs11.inc │ │ ├── skin_ps20b.inc │ │ ├── skin_ps30.inc │ │ ├── skin_vs20.inc │ │ ├── skin_vs30.inc │ │ ├── sky_hdr_compressed_ps20.inc │ │ ├── sky_hdr_compressed_ps20b.inc │ │ ├── sky_hdr_compressed_rgbs_ps20.inc │ │ ├── sky_hdr_compressed_rgbs_ps20b.inc │ │ ├── sky_ps20.inc │ │ ├── sky_ps20b.inc │ │ ├── sky_vs20.inc │ │ ├── splinecard_vs11.inc │ │ ├── splinecard_vs20.inc │ │ ├── sprite_ps20.inc │ │ ├── sprite_ps20b.inc │ │ ├── sprite_vs20.inc │ │ ├── spritecard_ps11.inc │ │ ├── spritecard_ps20.inc │ │ ├── spritecard_ps20b.inc │ │ ├── spritecard_vs11.inc │ │ ├── spritecard_vs20.inc │ │ ├── teeth_bump_ps20.inc │ │ ├── teeth_bump_ps20b.inc │ │ ├── teeth_bump_ps30.inc │ │ ├── teeth_bump_vs20.inc │ │ ├── teeth_bump_vs30.inc │ │ ├── teeth_flashlight_ps20.inc │ │ ├── teeth_flashlight_ps20b.inc │ │ ├── teeth_flashlight_ps30.inc │ │ ├── teeth_flashlight_vs20.inc │ │ ├── teeth_flashlight_vs30.inc │ │ ├── teeth_ps20.inc │ │ ├── teeth_ps20b.inc │ │ ├── teeth_ps30.inc │ │ ├── teeth_vs20.inc │ │ ├── teeth_vs30.inc │ │ ├── treeleaf_ps20.inc │ │ ├── treeleaf_ps20b.inc │ │ ├── treeleaf_vs20.inc │ │ ├── unlitgeneric_notexture_ps11.inc │ │ ├── unlitgeneric_notexture_ps20.inc │ │ ├── unlitgeneric_notexture_ps20b.inc │ │ ├── unlitgeneric_ps20.inc │ │ ├── unlitgeneric_ps20b.inc │ │ ├── unlitgeneric_vs20.inc │ │ ├── unlittwotexture_ps20.inc │ │ ├── unlittwotexture_ps20b.inc │ │ ├── unlittwotexture_vs20.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps20.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps20b.inc │ │ ├── vertexlit_and_unlit_generic_bump_ps30.inc │ │ ├── vertexlit_and_unlit_generic_bump_vs20.inc │ │ ├── vertexlit_and_unlit_generic_bump_vs30.inc │ │ ├── vertexlit_and_unlit_generic_ps20.inc │ │ ├── vertexlit_and_unlit_generic_ps20b.inc │ │ ├── vertexlit_and_unlit_generic_ps30.inc │ │ ├── vertexlit_and_unlit_generic_vs20.inc │ │ ├── vertexlit_and_unlit_generic_vs30.inc │ │ ├── vertexlitgeneric_lightingonly_overbright2_ps11.inc │ │ ├── volume_clouds_ps20.inc │ │ ├── volume_clouds_ps20b.inc │ │ ├── volume_clouds_vs20.inc │ │ ├── vortwarp_ps20.inc │ │ ├── vortwarp_ps20b.inc │ │ ├── vortwarp_ps30.inc │ │ ├── vortwarp_vs20.inc │ │ ├── vortwarp_vs30.inc │ │ ├── white_ps20.inc │ │ ├── white_ps20b.inc │ │ ├── windowimposter_ps11.inc │ │ ├── windowimposter_ps20.inc │ │ ├── windowimposter_ps20b.inc │ │ ├── windowimposter_vs11.inc │ │ ├── windowimposter_vs20.inc │ │ ├── worldvertexalpha_ps20.inc │ │ ├── worldvertexalpha_ps20b.inc │ │ ├── writevertexalphatodestalpha_ps11.inc │ │ ├── writevertexalphatodestalpha_vs11.inc │ │ └── writez_vs20.inc │ ├── genwaterloop.pl │ ├── glowwarp.psh │ ├── gooinglass.cpp │ ├── hsl_filmgrain_pass1.cpp │ ├── hsl_filmgrain_pass1_ps2x.fxc │ ├── hsl_filmgrain_pass2.cpp │ ├── hsl_filmgrain_pass2_ps2x.fxc │ ├── hsv.cpp │ ├── hsv_ps2x.fxc │ ├── inclist.txt │ ├── introscreenspaceeffect.cpp │ ├── introscreenspaceeffect_dx60.cpp │ ├── introscreenspaceeffect_dx80.cpp │ ├── jellyfish.cpp │ ├── lightingonly_vs20.fxc │ ├── lightmappedenvmappedbumpmappedtexture.psh │ ├── lightmappedgeneric_basealphamaskedenvmap.psh │ ├── lightmappedgeneric_basetextureblend.psh │ ├── lightmappedgeneric_decal.cpp │ ├── lightmappedgeneric_decal_ps2x.fxc │ ├── lightmappedgeneric_decal_vs20.fxc │ ├── lightmappedgeneric_dx6.cpp │ ├── lightmappedgeneric_dx8.cpp │ ├── lightmappedgeneric_dx9.cpp │ ├── lightmappedgeneric_dx9_helper.cpp │ ├── lightmappedgeneric_dx9_helper.h │ ├── lightmappedgeneric_envmap.psh │ ├── lightmappedgeneric_flashlight_vs11.fxc │ ├── lightmappedgeneric_flashlight_vs20.fxc │ ├── lightmappedgeneric_inc.vsh │ ├── lightmappedgeneric_lightingonly_overbright2_ps11.fxc │ ├── lightmappedgeneric_lightingonly_vs11.fxc │ ├── lightmappedgeneric_maskedenvmap.psh │ ├── lightmappedgeneric_multiplybylightingbasealphamaskedselfillum.psh │ ├── lightmappedgeneric_multiplybylightingbasenotexture.psh │ ├── lightmappedgeneric_ps11.fxc │ ├── lightmappedgeneric_ps2_3_x.h │ ├── lightmappedgeneric_ps2x.fxc │ ├── lightmappedgeneric_selfilluminatedenvmap.psh │ ├── lightmappedgeneric_selfilluminatedmaskedenvmap.psh │ ├── lightmappedgeneric_vs11.vsh │ ├── lightmappedgeneric_vs20.fxc │ ├── lightmappedreflective.cpp │ ├── lightmappedreflective_ps2x.fxc │ ├── lightmappedreflective_vs20.fxc │ ├── lightmappedtexture.psh │ ├── lightmappedtwotexture.cpp │ ├── lpreview1_ps2x.fxc │ ├── lpreview_output_ps2x.fxc │ ├── luminance_compare_ps2x.fxc │ ├── macros.vsh │ ├── makefile.stdshader_dx9_20b │ ├── makefile.stdshader_dx9_20b.copy │ ├── makefile.stdshader_dx9_20b_new │ ├── makefile.stdshader_dx9_30 │ ├── makefile.stdshader_dx9_30.copy │ ├── modeldiffusebump.psh │ ├── modeldiffusebump2.psh │ ├── modelenvmappedbumpmapv2.psh │ ├── modelenvmappedbumpmapv2_multbyalpha.psh │ ├── modulate_dx6.cpp │ ├── modulate_dx8.cpp │ ├── modulate_dx9.cpp │ ├── modulate_ps2x.fxc │ ├── modulate_vs11.vsh │ ├── monitorscreen_ps2x.fxc │ ├── morphaccumulate_dx9.cpp │ ├── morphaccumulate_ps30.fxc │ ├── morphaccumulate_vs30.fxc │ ├── morphweight_dx9.cpp │ ├── morphweight_ps30.fxc │ ├── morphweight_vs30.fxc │ ├── motion_blur_dx9.cpp │ ├── motion_blur_ps2x.fxc │ ├── motion_blur_vs20.fxc │ ├── occlusion_dx8.cpp │ ├── occlusion_dx9.cpp │ ├── overlay_fit.cpp │ ├── overlay_fit_ps11.psh │ ├── overlay_fit_vs11.vsh │ ├── particlelitgeneric_dx9.cpp │ ├── particlelitgeneric_dx9_helper.cpp │ ├── particlelitgeneric_dx9_helper.h │ ├── particlesphere.psh │ ├── particlesphere_dx8.cpp │ ├── particlesphere_dx9.cpp │ ├── particlesphere_ps11.fxc │ ├── particlesphere_ps2x.fxc │ ├── particlesphere_vs11.fxc │ ├── particlesphere_vs20.fxc │ ├── portal.cpp │ ├── portal_dx60.cpp │ ├── portal_dx80.cpp │ ├── portal_ps11.fxc │ ├── portal_ps2x.fxc │ ├── portal_refract.cpp │ ├── portal_refract_dx8.cpp │ ├── portal_refract_dx8_helper.cpp │ ├── portal_refract_dx8_helper.h │ ├── portal_refract_helper.cpp │ ├── portal_refract_helper.h │ ├── portal_refract_ps11.fxc │ ├── portal_refract_ps2x.fxc │ ├── portal_refract_vs11.fxc │ ├── portal_refract_vs20.fxc │ ├── portal_vs11.fxc │ ├── portal_vs20.fxc │ ├── portalstaticoverlay.cpp │ ├── portalstaticoverlay_dx60.cpp │ ├── portalstaticoverlay_dx80.cpp │ ├── portalstaticoverlay_ps11.fxc │ ├── portalstaticoverlay_ps2x.fxc │ ├── portalstaticoverlay_vs11.fxc │ ├── portalstaticoverlay_vs20.fxc │ ├── predator.cpp │ ├── predator.psh │ ├── predator.vsh │ ├── predator_envmap.psh │ ├── refract.cpp │ ├── refract_dx60.cpp │ ├── refract_dx80.cpp │ ├── refract_dx9_helper.cpp │ ├── refract_dx9_helper.h │ ├── refract_ps2x.fxc │ ├── rendertargetblit_ps2x.fxc │ ├── rendertargetblit_vs20.fxc │ ├── rendertargetblit_x360.cpp │ ├── rift_dx6.cpp │ ├── rift_dx8.cpp │ ├── rift_ps11.psh │ ├── rift_vs11.vsh │ ├── sample4x4.cpp │ ├── sample4x4_blend.cpp │ ├── sample4x4_blend_ps2x.fxc │ ├── sample4x4_ps2x.fxc │ ├── sample4x4delog_ps2x.fxc │ ├── sample4x4log_ps2x.fxc │ ├── sample4x4maxmin_ps2x.fxc │ ├── screenspace_general.cpp │ ├── screenspace_general_dx8.cpp │ ├── screenspaceeffect_vs11.fxc │ ├── screenspaceeffect_vs20.fxc │ ├── sfm_blurfilterx.cpp │ ├── sfm_blurfiltery.cpp │ ├── sfm_combine_vs20.fxc │ ├── sfm_downsample.cpp │ ├── sfm_integercombine.cpp │ ├── sfm_integercombine_ps2x.fxc │ ├── shader_constant_register_map.h │ ├── shaders │ │ ├── psh │ │ │ ├── BlurFilter_ps11.vcs │ │ │ ├── BufferClearObeyStencil_ps11.vcs │ │ │ ├── BumpmappedEnvmap.vcs │ │ │ ├── BumpmappedLightmap_OverBright2.vcs │ │ │ ├── Cable.vcs │ │ │ ├── DecalBaseTimesLightmapAlphaBlendSelfIllum1_ps11.vcs │ │ │ ├── DecalBaseTimesLightmapAlphaBlendSelfIllum2_ps11.vcs │ │ │ ├── Downsample_nohdr_ps11.vcs │ │ │ ├── Eyes.vcs │ │ │ ├── Eyes_Overbright2.vcs │ │ │ ├── JellyFish.vcs │ │ │ ├── LightmappedGeneric.vcs │ │ │ ├── LightmappedGeneric_AddBaseAlphaMaskedEnvMap.vcs │ │ │ ├── LightmappedGeneric_AddEnvMapMaskNoTexture.vcs │ │ │ ├── LightmappedGeneric_AddEnvMapNoTexture.vcs │ │ │ ├── LightmappedGeneric_BaseAlphaMaskedEnvMapV2.vcs │ │ │ ├── LightmappedGeneric_BaseTexture.vcs │ │ │ ├── LightmappedGeneric_BumpmappedEnvmap.vcs │ │ │ ├── LightmappedGeneric_BumpmappedEnvmap_ps14.vcs │ │ │ ├── LightmappedGeneric_BumpmappedLightmap.vcs │ │ │ ├── LightmappedGeneric_BumpmappedLightmap_Base_ps14.vcs │ │ │ ├── LightmappedGeneric_BumpmappedLightmap_Blend_ps14.vcs │ │ │ ├── LightmappedGeneric_Decal.vcs │ │ │ ├── LightmappedGeneric_Detail.vcs │ │ │ ├── LightmappedGeneric_DetailNoTexture.vcs │ │ │ ├── LightmappedGeneric_DetailSelfIlluminated.vcs │ │ │ ├── LightmappedGeneric_EnvMapNoTexture.vcs │ │ │ ├── LightmappedGeneric_EnvMapV2.vcs │ │ │ ├── LightmappedGeneric_LightingOnly_Overbright2.vcs │ │ │ ├── LightmappedGeneric_MaskedEnvMapNoTexture.vcs │ │ │ ├── LightmappedGeneric_MaskedEnvMapV2.vcs │ │ │ ├── LightmappedGeneric_MultiplyByLighting.vcs │ │ │ ├── LightmappedGeneric_MultiplyByLightingNoTexture.vcs │ │ │ ├── LightmappedGeneric_MultiplyByLightingSelfIllum.vcs │ │ │ ├── LightmappedGeneric_NoTexture.vcs │ │ │ ├── LightmappedGeneric_SSBumpmappedLightmap.vcs │ │ │ ├── LightmappedGeneric_SelfIlluminated.vcs │ │ │ ├── LightmappedGeneric_SelfIlluminatedEnvMapV2.vcs │ │ │ ├── LightmappedGeneric_SelfIlluminatedMaskedEnvMapV2.vcs │ │ │ ├── LightmappedTranslucentTexture.vcs │ │ │ ├── Modulate_ps11.vcs │ │ │ ├── MonitorScreen.vcs │ │ │ ├── Refract_ps11.vcs │ │ │ ├── Shadow.vcs │ │ │ ├── ShadowBuildTexture.vcs │ │ │ ├── ShadowModel.vcs │ │ │ ├── ShatteredGlass.vcs │ │ │ ├── ShatteredGlass_EnvMap.vcs │ │ │ ├── SpriteRenderNormal.vcs │ │ │ ├── SpriteRenderTransAdd.vcs │ │ │ ├── SpriteRenderTransColor.vcs │ │ │ ├── UnlitGeneric_BaseAlphaMaskedEnvMap.vcs │ │ │ ├── UnlitGeneric_BaseTimesDetail.vcs │ │ │ ├── UnlitGeneric_Detail.vcs │ │ │ ├── UnlitGeneric_DetailBaseAlphaMaskedEnvMap.vcs │ │ │ ├── UnlitGeneric_DetailEnvMap.vcs │ │ │ ├── UnlitGeneric_DetailEnvMapMask.vcs │ │ │ ├── UnlitGeneric_DetailEnvMapMaskNoTexture.vcs │ │ │ ├── UnlitGeneric_DetailEnvMapNoTexture.vcs │ │ │ ├── UnlitGeneric_DetailNoTexture.vcs │ │ │ ├── UnlitGeneric_EnvMap.vcs │ │ │ ├── UnlitGeneric_EnvMapMask.vcs │ │ │ ├── UnlitGeneric_EnvMapMaskNoTexture.vcs │ │ │ ├── UnlitGeneric_EnvMapNoTexture.vcs │ │ │ ├── UnlitGeneric_NoTexture.vcs │ │ │ ├── UnlitTwoTexture.vcs │ │ │ ├── VertexLitGeneric.vcs │ │ │ ├── VertexLitGeneric_BaseAlphaMaskedEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_Detail.vcs │ │ │ ├── VertexLitGeneric_DetailBaseAlphaMaskedEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_DetailEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_DetailMaskedEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_DetailNoTexture.vcs │ │ │ ├── VertexLitGeneric_DetailSelfIlluminated.vcs │ │ │ ├── VertexLitGeneric_DetailSelfIlluminatedEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_DetailSelfIlluminatedMaskedEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_Detail_LerpBase.vcs │ │ │ ├── VertexLitGeneric_Detail_additive.vcs │ │ │ ├── VertexLitGeneric_Detail_additive_selfillum.vcs │ │ │ ├── VertexLitGeneric_EnvMapNoTexture.vcs │ │ │ ├── VertexLitGeneric_EnvMapV2.vcs │ │ │ ├── VertexLitGeneric_EnvmappedBumpmapV2.vcs │ │ │ ├── VertexLitGeneric_EnvmappedBumpmapV2_MultByAlpha.vcs │ │ │ ├── VertexLitGeneric_EnvmappedBumpmapV2_MultByAlpha_ps14.vcs │ │ │ ├── VertexLitGeneric_EnvmappedBumpmapV2_ps14.vcs │ │ │ ├── VertexLitGeneric_MaskedEnvMapNoTexture.vcs │ │ │ ├── VertexLitGeneric_MaskedEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_NoTexture.vcs │ │ │ ├── VertexLitGeneric_SelfIlluminated.vcs │ │ │ ├── VertexLitGeneric_SelfIlluminatedEnvMapV2.vcs │ │ │ ├── VertexLitGeneric_SelfIlluminatedMaskedEnvMapV2.vcs │ │ │ ├── VertexLitTexture.vcs │ │ │ ├── VertexLitTexture_Overbright2.vcs │ │ │ ├── WaterCheapFresnelOpaque_ps14.vcs │ │ │ ├── WaterCheapFresnel_ps14.vcs │ │ │ ├── WaterCheapNoFresnelOpaque_ps11.vcs │ │ │ ├── WaterCheapNoFresnel_ps11.vcs │ │ │ ├── WaterCheapOpaque_ps11.vcs │ │ │ ├── WaterCheapOpaque_ps14.vcs │ │ │ ├── WaterCheap_ps11.vcs │ │ │ ├── WaterCheap_ps14.vcs │ │ │ ├── WaterReflect_ps11.vcs │ │ │ ├── WaterRefractFresnel_ps11.vcs │ │ │ ├── WaterRefract_ps11.vcs │ │ │ ├── Water_ps14.vcs │ │ │ ├── WorldTexture.vcs │ │ │ ├── WorldTwoTextureBlend.vcs │ │ │ ├── WorldTwoTextureBlend_DetailAlpha.vcs │ │ │ ├── WorldTwoTextureBlend_SelfIlluminated.vcs │ │ │ ├── WorldVertexAlpha.vcs │ │ │ ├── WorldVertexTransition.vcs │ │ │ ├── WorldVertexTransition_BlendBase2.vcs │ │ │ ├── WorldVertexTransition_Editor.vcs │ │ │ ├── WorldVertexTransition_Seamless.vcs │ │ │ ├── WorldVertexTransition_ps14.vcs │ │ │ ├── bik_ps11.vcs │ │ │ ├── bik_ps14.vcs │ │ │ ├── cloak_blended_pass_dx8_ps11.vcs │ │ │ ├── core_ps11.vcs │ │ │ ├── emissive_scroll_blended_pass_dx8_ps11.vcs │ │ │ ├── fillrate.vcs │ │ │ ├── flesh_interior_blended_pass_dx8_ps11.vcs │ │ │ ├── lightmappedgeneric_basetextureblend.vcs │ │ │ ├── overlay_fit_ps11.vcs │ │ │ ├── predator.vcs │ │ │ ├── shadow_ps14.vcs │ │ │ ├── sprite_ps11.vcs │ │ │ ├── unlitgeneric.vcs │ │ │ ├── vertexlitgeneric_lightingonly_overbright2.vcs │ │ │ ├── vortwarp_ps11.vcs │ │ │ ├── white.vcs │ │ │ └── yuv.vcs │ │ └── vsh │ │ │ ├── BufferClearObeyStencil_vs11.vcs │ │ │ ├── BumpmappedEnvmap.vcs │ │ │ ├── BumpmappedLightmap.vcs │ │ │ ├── Cable.vcs │ │ │ ├── DebugTangentSpace.vcs │ │ │ ├── Eyes.vcs │ │ │ ├── JellyFish.vcs │ │ │ ├── LightingOnly.vcs │ │ │ ├── LightmappedGeneric_BaseTexture.vcs │ │ │ ├── LightmappedGeneric_BumpmappedLightmap_Base_ps14.vcs │ │ │ ├── LightmappedGeneric_BumpmappedLightmap_Blend_ps14.vcs │ │ │ ├── LightmappedGeneric_Decal.vcs │ │ │ ├── LightmappedGeneric_LightingOnly.vcs │ │ │ ├── Refract_model_vs11.vcs │ │ │ ├── Refract_world_vs11.vcs │ │ │ ├── ScreenSpaceEffect.vcs │ │ │ ├── ShadowModel.vcs │ │ │ ├── ShatteredGlass.vcs │ │ │ ├── ShatteredGlass_EnvMap.vcs │ │ │ ├── ShatteredGlass_EnvMapSphere.vcs │ │ │ ├── Teeth.vcs │ │ │ ├── UnlitGeneric_LightingOnly.vcs │ │ │ ├── UnlitGeneric_vs11.vcs │ │ │ ├── UnlitTwoTexture.vcs │ │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting.vcs │ │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting_ps14.vcs │ │ │ ├── VertexLitGeneric_SelfIllumOnly.vcs │ │ │ ├── VertexLitGeneric_vs11.vcs │ │ │ ├── WaterCheapPerVertexFresnel_vs11.vcs │ │ │ ├── WaterCheap_vs11.vcs │ │ │ ├── WaterCheap_vs14.vcs │ │ │ ├── Water_ps14.vcs │ │ │ ├── Water_vs11.vcs │ │ │ ├── WorldVertexAlpha.vcs │ │ │ ├── WorldVertexTransition.vcs │ │ │ ├── WorldVertexTransition_Seamless.vcs │ │ │ ├── WorldVertexTransition_vs14.vcs │ │ │ ├── bik_vs11.vcs │ │ │ ├── cloak_blended_pass_dx8_vs11.vcs │ │ │ ├── emissive_scroll_blended_pass_dx8_vs11.vcs │ │ │ ├── eyes_flashlight_vs11.vcs │ │ │ ├── fillrate.vcs │ │ │ ├── flesh_interior_blended_pass_dx8_vs11.vcs │ │ │ ├── lightmappedgeneric_basetextureblend.vcs │ │ │ ├── lightmappedgeneric_bumpmappedenvmap.vcs │ │ │ ├── lightmappedgeneric_bumpmappedenvmap_ps14.vcs │ │ │ ├── lightmappedgeneric_bumpmappedlightmap.vcs │ │ │ ├── lightmappedgeneric_vs11.vcs │ │ │ ├── overlay_fit_vs11.vcs │ │ │ ├── predator.vcs │ │ │ ├── shadow_vs14.vcs │ │ │ ├── sprite_vs11.vcs │ │ │ ├── vertexlitgeneric_flashlight_vs11.vcs │ │ │ ├── vortwarp_vs11.vcs │ │ │ └── writez.vcs │ ├── shadow.cpp │ ├── shadow_dx6.cpp │ ├── shadow_dx8.cpp │ ├── shadow_ps14.psh │ ├── shadow_ps2x.fxc │ ├── shadow_vs14.vsh │ ├── shadow_vs20.fxc │ ├── shadowbuild_dx6.cpp │ ├── shadowbuild_dx8.cpp │ ├── shadowbuild_dx9.cpp │ ├── shadowbuildtexture_ps2x.fxc │ ├── shadowmodel_dx8.cpp │ ├── shadowmodel_dx9.cpp │ ├── shatteredglass.cpp │ ├── shatteredglass_dx7.cpp │ ├── shatteredglass_dx8.cpp │ ├── showz.cpp │ ├── showz_ps2x.fxc │ ├── showz_vs11.fxc │ ├── skin_dx9_helper.cpp │ ├── skin_dx9_helper.h │ ├── skin_ps20b.fxc │ ├── skin_vs20.fxc │ ├── sky_dx6.cpp │ ├── sky_dx9.cpp │ ├── sky_hdr_compressed_ps2x.fxc │ ├── sky_hdr_compressed_rgbs_ps2x.fxc │ ├── sky_hdr_dx9.cpp │ ├── sky_ps2x.fxc │ ├── sky_vs20.fxc │ ├── splinecard_vsxx.fxc │ ├── sprite.cpp │ ├── sprite_dx6.cpp │ ├── sprite_dx9.cpp │ ├── sprite_ps11.psh │ ├── sprite_ps2x.fxc │ ├── sprite_vs11.vsh │ ├── sprite_vs20.fxc │ ├── spritecard.cpp │ ├── spritecard_ps11.fxc │ ├── spritecard_ps2x.fxc │ ├── spritecard_vsxx.fxc │ ├── stdshader_dbg.vcproj │ ├── stdshader_dbg.vcxproj.filters │ ├── stdshader_dbg.vpc │ ├── stdshader_dx10.txt │ ├── stdshader_dx6.vcproj │ ├── stdshader_dx6.vcxproj.filters │ ├── stdshader_dx6.vpc │ ├── stdshader_dx7.vcproj │ ├── stdshader_dx7.vpc │ ├── stdshader_dx8.vcproj │ ├── stdshader_dx8.vpc │ ├── stdshader_dx9.vcproj │ ├── stdshader_dx9.vcxproj.filters │ ├── stdshader_dx9.vpc │ ├── stdshader_dx9_20b.txt │ ├── stdshader_dx9_20b_new.txt │ ├── stdshader_dx9_30.txt │ ├── teeth.cpp │ ├── teeth_bump_ps2x.fxc │ ├── teeth_bump_vs20.fxc │ ├── teeth_dx6.cpp │ ├── teeth_dx8.cpp │ ├── teeth_flashlight_ps2x.fxc │ ├── teeth_flashlight_vs20.fxc │ ├── teeth_ps2x.fxc │ ├── teeth_vs20.fxc │ ├── uniquefilestocopy.txt │ ├── unlitgeneric_basetimesdetail.psh │ ├── unlitgeneric_dx6.cpp │ ├── unlitgeneric_dx8.cpp │ ├── unlitgeneric_dx9.cpp │ ├── unlitgeneric_inc.vsh │ ├── unlitgeneric_lightingonly_vs11.fxc │ ├── unlitgeneric_notexture_ps11.fxc │ ├── unlitgeneric_notexture_ps2x.fxc │ ├── unlitgeneric_ps11.fxc │ ├── unlitgeneric_ps2x.fxc │ ├── unlitgeneric_vs11.vsh │ ├── unlitgeneric_vs20.fxc │ ├── unlittwotexture_dx6.cpp │ ├── unlittwotexture_dx8.cpp │ ├── unlittwotexture_dx9.cpp │ ├── unlittwotexture_inc.vsh │ ├── unlittwotexture_ps2x.fxc │ ├── unlittwotexture_vs20.fxc │ ├── vcslist.txt │ ├── vertexlit_and_unlit_generic_bump_ps2x.fxc │ ├── vertexlit_and_unlit_generic_bump_vs20.fxc │ ├── vertexlit_and_unlit_generic_ps2x.fxc │ ├── vertexlit_and_unlit_generic_vs20.fxc │ ├── vertexlit_lighting_only_ps2x.fxc │ ├── vertexlit_notexture.psh │ ├── vertexlitgeneric_basealphamaskedenvmap.psh │ ├── vertexlitgeneric_detailbasealphamaskedenvmap.psh │ ├── vertexlitgeneric_detailenvmap.psh │ ├── vertexlitgeneric_detailmaskedenvmap.psh │ ├── vertexlitgeneric_detailselfilluminatedenvmap.psh │ ├── vertexlitgeneric_detailselfilluminatedmaskedenvmap.psh │ ├── vertexlitgeneric_dx6.cpp │ ├── vertexlitgeneric_dx7.cpp │ ├── vertexlitgeneric_dx8.cpp │ ├── vertexlitgeneric_dx9.cpp │ ├── vertexlitgeneric_dx95_helper.h │ ├── vertexlitgeneric_dx9_helper.cpp │ ├── vertexlitgeneric_dx9_helper.h │ ├── vertexlitgeneric_envmap.psh │ ├── vertexlitgeneric_flashlight_vs11.vsh │ ├── vertexlitgeneric_inc.vsh │ ├── vertexlitgeneric_lightingonly_overbright2.psh │ ├── vertexlitgeneric_lightingonly_overbright2_ps11.fxc │ ├── vertexlitgeneric_maskedenvmap.psh │ ├── vertexlitgeneric_selfilluminatedenvmap.psh │ ├── vertexlitgeneric_selfilluminatedmaskedenvmap.psh │ ├── vertexlitgeneric_vs11.vsh │ ├── viewalpha.cpp │ ├── volume_clouds.cpp │ ├── volume_clouds_helper.cpp │ ├── volume_clouds_helper.h │ ├── volume_clouds_ps2x.fxc │ ├── volume_clouds_vs20.fxc │ ├── volumetricfog.cpp │ ├── vortwarp_dx7.cpp │ ├── vortwarp_dx8.cpp │ ├── vortwarp_dx9.cpp │ ├── vortwarp_ps11.psh │ ├── vortwarp_ps2x.fxc │ ├── vortwarp_vs11.vsh │ ├── vortwarp_vs20.fxc │ ├── vortwarp_vs20_helper.h │ ├── vshtmp9 │ │ ├── BufferClearObeyStencil_vs11.inc │ │ ├── BumpmappedEnvmap.inc │ │ ├── BumpmappedLightmap.inc │ │ ├── Cable.inc │ │ ├── DebugTangentSpace.inc │ │ ├── Eyes.inc │ │ ├── JellyFish.inc │ │ ├── Jojirium.inc │ │ ├── LightingOnly.inc │ │ ├── LightmappedGeneric_BaseTexture.inc │ │ ├── LightmappedGeneric_BumpmappedLightmap_Base_ps14.inc │ │ ├── LightmappedGeneric_BumpmappedLightmap_Blend_ps14.inc │ │ ├── LightmappedGeneric_Decal.inc │ │ ├── LightmappedGeneric_LightingOnly.inc │ │ ├── Refract_model_vs11.inc │ │ ├── Refract_world_vs11.inc │ │ ├── ScreenSpaceEffect.inc │ │ ├── ShadowModel.inc │ │ ├── ShatteredGlass.inc │ │ ├── ShatteredGlass_EnvMap.inc │ │ ├── ShatteredGlass_EnvMapSphere.inc │ │ ├── Teeth.inc │ │ ├── UnlitGeneric_LightingOnly.inc │ │ ├── UnlitTwoTexture.inc │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting.inc │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting_ps14.inc │ │ ├── VertexLitGeneric_SelfIllumOnly.inc │ │ ├── VertexLitGeneric_vs11.inc │ │ ├── WaterCheapPerVertexFresnel_vs11.inc │ │ ├── WaterCheap_vs11.inc │ │ ├── WaterCheap_vs14.inc │ │ ├── Water_ps14.inc │ │ ├── Water_vs11.inc │ │ ├── WorldVertexAlpha.inc │ │ ├── WorldVertexTransition.inc │ │ ├── bik_vs11.inc │ │ ├── cloak_blended_pass_dx8_vs11.inc │ │ ├── emissive_scroll_blended_pass_dx8_vs11.inc │ │ ├── eyes_flashlight_vs11.inc │ │ ├── fillrate.inc │ │ ├── flesh_interior_blended_pass_dx8_vs11.inc │ │ ├── lightmappedgeneric_basetextureblend.inc │ │ ├── lightmappedgeneric_bumpmappedenvmap.inc │ │ ├── lightmappedgeneric_bumpmappedenvmap_ps14.inc │ │ ├── lightmappedgeneric_bumpmappedlightmap.inc │ │ ├── lightmappedgeneric_vs11.inc │ │ ├── overlay_fit_vs11.inc │ │ ├── predator.inc │ │ ├── rendertargetblit_vs11.inc │ │ ├── shadow_vs14.inc │ │ ├── sprite_vs11.inc │ │ ├── unlitgeneric_vs11.inc │ │ ├── vertexlitgeneric_flashlight_vs11.inc │ │ ├── vortwarp_vs11.inc │ │ ├── worldvertextransition_seamless.inc │ │ ├── worldvertextransition_vs14.inc │ │ └── writez.inc │ ├── vshtmp9_360 │ │ ├── BufferClearObeyStencil_vs11.inc │ │ ├── BumpmappedEnvmap.inc │ │ ├── BumpmappedLightmap.inc │ │ ├── Cable.inc │ │ ├── DebugTangentSpace.inc │ │ ├── Eyes.inc │ │ ├── JellyFish.inc │ │ ├── LightingOnly.inc │ │ ├── LightmappedGeneric_BaseTexture.inc │ │ ├── LightmappedGeneric_BumpmappedLightmap_Base_ps14.inc │ │ ├── LightmappedGeneric_BumpmappedLightmap_Blend_ps14.inc │ │ ├── LightmappedGeneric_Decal.inc │ │ ├── LightmappedGeneric_LightingOnly.inc │ │ ├── Refract_model_vs11.inc │ │ ├── Refract_world_vs11.inc │ │ ├── ScreenSpaceEffect.inc │ │ ├── ShadowModel.inc │ │ ├── ShatteredGlass.inc │ │ ├── ShatteredGlass_EnvMap.inc │ │ ├── ShatteredGlass_EnvMapSphere.inc │ │ ├── Teeth.inc │ │ ├── UnlitGeneric_LightingOnly.inc │ │ ├── UnlitTwoTexture.inc │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting.inc │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting_ps14.inc │ │ ├── VertexLitGeneric_SelfIllumOnly.inc │ │ ├── VertexLitGeneric_vs11.inc │ │ ├── WaterCheapPerVertexFresnel_vs11.inc │ │ ├── WaterCheap_vs11.inc │ │ ├── WaterCheap_vs14.inc │ │ ├── Water_ps14.inc │ │ ├── Water_vs11.inc │ │ ├── WorldVertexAlpha.inc │ │ ├── WorldVertexTransition.inc │ │ ├── bik_vs11.inc │ │ ├── cloak_blended_pass_dx8_vs11.inc │ │ ├── emissive_scroll_blended_pass_dx8_vs11.inc │ │ ├── eyes_flashlight_vs11.inc │ │ ├── fillrate.inc │ │ ├── flesh_interior_blended_pass_dx8_vs11.inc │ │ ├── lightmappedgeneric_basetextureblend.inc │ │ ├── lightmappedgeneric_bumpmappedenvmap.inc │ │ ├── lightmappedgeneric_bumpmappedenvmap_ps14.inc │ │ ├── lightmappedgeneric_bumpmappedlightmap.inc │ │ ├── lightmappedgeneric_vs11.inc │ │ ├── overlay_fit_vs11.inc │ │ ├── predator.inc │ │ ├── shadow_vs14.inc │ │ ├── sprite_vs11.inc │ │ ├── unlitgeneric_vs11.inc │ │ ├── vertexlitgeneric_flashlight_vs11.inc │ │ ├── vortwarp_vs11.inc │ │ ├── worldvertextransition_seamless.inc │ │ └── writez.inc │ ├── vshtmp9_tmp │ │ ├── BufferClearObeyStencil_vs11.inc │ │ ├── BufferClearObeyStencil_vs11.pl │ │ ├── BumpmappedEnvmap.inc │ │ ├── BumpmappedEnvmap.pl │ │ ├── BumpmappedLightmap.inc │ │ ├── BumpmappedLightmap.pl │ │ ├── Cable.inc │ │ ├── Cable.pl │ │ ├── DebugTangentSpace.inc │ │ ├── DebugTangentSpace.pl │ │ ├── Eyes.inc │ │ ├── Eyes.pl │ │ ├── JellyFish.inc │ │ ├── JellyFish.pl │ │ ├── LightingOnly.inc │ │ ├── LightingOnly.pl │ │ ├── LightmappedGeneric_BaseTexture.inc │ │ ├── LightmappedGeneric_BaseTexture.pl │ │ ├── LightmappedGeneric_BumpmappedLightmap_Base_ps14.inc │ │ ├── LightmappedGeneric_BumpmappedLightmap_Base_ps14.pl │ │ ├── LightmappedGeneric_BumpmappedLightmap_Blend_ps14.inc │ │ ├── LightmappedGeneric_BumpmappedLightmap_Blend_ps14.pl │ │ ├── LightmappedGeneric_Decal.inc │ │ ├── LightmappedGeneric_Decal.pl │ │ ├── LightmappedGeneric_LightingOnly.inc │ │ ├── LightmappedGeneric_LightingOnly.pl │ │ ├── Refract_model_vs11.inc │ │ ├── Refract_model_vs11.pl │ │ ├── Refract_world_vs11.inc │ │ ├── Refract_world_vs11.pl │ │ ├── ScreenSpaceEffect.inc │ │ ├── ScreenSpaceEffect.pl │ │ ├── ShadowModel.inc │ │ ├── ShadowModel.pl │ │ ├── ShatteredGlass.inc │ │ ├── ShatteredGlass.pl │ │ ├── ShatteredGlass_EnvMap.inc │ │ ├── ShatteredGlass_EnvMap.pl │ │ ├── ShatteredGlass_EnvMapSphere.inc │ │ ├── ShatteredGlass_EnvMapSphere.pl │ │ ├── Teeth.inc │ │ ├── Teeth.pl │ │ ├── UnlitGeneric_LightingOnly.inc │ │ ├── UnlitGeneric_LightingOnly.pl │ │ ├── UnlitGeneric_vs11.inc │ │ ├── UnlitGeneric_vs11.pl │ │ ├── UnlitTwoTexture.inc │ │ ├── UnlitTwoTexture.pl │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting.inc │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting.pl │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting_ps14.inc │ │ ├── VertexLitGeneric_EnvmappedBumpmap_NoLighting_ps14.pl │ │ ├── VertexLitGeneric_SelfIllumOnly.inc │ │ ├── VertexLitGeneric_SelfIllumOnly.pl │ │ ├── VertexLitGeneric_vs11.inc │ │ ├── VertexLitGeneric_vs11.pl │ │ ├── WaterCheapPerVertexFresnel_vs11.inc │ │ ├── WaterCheapPerVertexFresnel_vs11.pl │ │ ├── WaterCheap_vs11.inc │ │ ├── WaterCheap_vs11.pl │ │ ├── WaterCheap_vs14.inc │ │ ├── WaterCheap_vs14.pl │ │ ├── Water_ps14.inc │ │ ├── Water_ps14.pl │ │ ├── Water_vs11.inc │ │ ├── Water_vs11.pl │ │ ├── WorldVertexAlpha.inc │ │ ├── WorldVertexAlpha.pl │ │ ├── WorldVertexTransition.inc │ │ ├── WorldVertexTransition.pl │ │ ├── WorldVertexTransition_Seamless.inc │ │ ├── WorldVertexTransition_Seamless.pl │ │ ├── WorldVertexTransition_vs14.inc │ │ ├── WorldVertexTransition_vs14.pl │ │ ├── bik_vs11.inc │ │ ├── bik_vs11.pl │ │ ├── cloak_blended_pass_dx8_vs11.inc │ │ ├── cloak_blended_pass_dx8_vs11.pl │ │ ├── emissive_scroll_blended_pass_dx8_vs11.inc │ │ ├── emissive_scroll_blended_pass_dx8_vs11.pl │ │ ├── eyes_flashlight_vs11.inc │ │ ├── eyes_flashlight_vs11.pl │ │ ├── fillrate.inc │ │ ├── fillrate.pl │ │ ├── flesh_interior_blended_pass_dx8_vs11.inc │ │ ├── flesh_interior_blended_pass_dx8_vs11.pl │ │ ├── lightmappedgeneric_basetextureblend.inc │ │ ├── lightmappedgeneric_basetextureblend.pl │ │ ├── lightmappedgeneric_bumpmappedenvmap.inc │ │ ├── lightmappedgeneric_bumpmappedenvmap.pl │ │ ├── lightmappedgeneric_bumpmappedenvmap_ps14.inc │ │ ├── lightmappedgeneric_bumpmappedenvmap_ps14.pl │ │ ├── lightmappedgeneric_bumpmappedlightmap.inc │ │ ├── lightmappedgeneric_bumpmappedlightmap.pl │ │ ├── lightmappedgeneric_vs11.inc │ │ ├── lightmappedgeneric_vs11.pl │ │ ├── overlay_fit_vs11.inc │ │ ├── overlay_fit_vs11.pl │ │ ├── predator.inc │ │ ├── predator.pl │ │ ├── shadow_vs14.inc │ │ ├── shadow_vs14.pl │ │ ├── sprite_vs11.inc │ │ ├── sprite_vs11.pl │ │ ├── vertexlitgeneric_flashlight_vs11.inc │ │ ├── vertexlitgeneric_flashlight_vs11.pl │ │ ├── vortwarp_vs11.inc │ │ ├── vortwarp_vs11.pl │ │ ├── writez.inc │ │ └── writez.pl │ ├── water.cpp │ ├── water_dudv.cpp │ ├── water_dx60.cpp │ ├── water_dx80.cpp │ ├── water_dx81.cpp │ ├── water_ps2x.fxc │ ├── water_ps2x_helper.h │ ├── waterreflect_ps14.psh │ ├── waterrefract_ps14.psh │ ├── white.psh │ ├── white_ps2x.fxc │ ├── windowimposter_dx80.cpp │ ├── windowimposter_dx90.cpp │ ├── windowimposter_ps11.fxc │ ├── windowimposter_ps2x.fxc │ ├── windowimposter_vs11.fxc │ ├── windowimposter_vs20.fxc │ ├── wireframe_dx8.cpp │ ├── wireframe_dx9.cpp │ ├── worldtwotextureblend.cpp │ ├── worldtwotextureblend_dx6.cpp │ ├── worldtwotextureblend_dx8.cpp │ ├── worldtwotextureblend_ps2x.fxc │ ├── worldvertexalpha.cpp │ ├── worldvertexalpha_dx8.cpp │ ├── worldvertextransition.cpp │ ├── worldvertextransition_dx6.cpp │ ├── worldvertextransition_dx6_helper.cpp │ ├── worldvertextransition_dx6_helper.h │ ├── worldvertextransition_dx8_helper.cpp │ ├── worldvertextransition_dx8_helper.h │ ├── writestencil_dx8.cpp │ ├── writestencil_dx9.cpp │ ├── writevertexalphatodestalpha_ps11.fxc │ ├── writevertexalphatodestalpha_vs11.fxc │ ├── writez.vsh │ ├── writez_dx6.cpp │ ├── writez_dx8.cpp │ ├── writez_dx9.cpp │ ├── writez_vs20.fxc │ ├── xbox │ │ ├── xbox_dbg.def │ │ ├── xbox_dx8.def │ │ └── xbox_dx9.def │ ├── yuv.cpp │ └── yuv.psh ├── ccolorcorrection.cpp ├── checkmaterials.cpp ├── cmaterial.cpp ├── cmaterial_queuefriendly.cpp ├── cmaterial_queuefriendly.h ├── cmaterialdict.cpp ├── cmaterialdict.h ├── cmaterialsystem.cpp ├── cmaterialsystem.h ├── cmaterialvar.cpp ├── cmatlightmaps.cpp ├── cmatlightmaps.h ├── cmatnullrendercontext.cpp ├── cmatnullrendercontext.h ├── cmatqueuedrendercontext.cpp ├── cmatqueuedrendercontext.h ├── cmatrendercontext.cpp ├── cmatrendercontext.h ├── colorspace.cpp ├── colorspace.h ├── ctexture.cpp ├── imagepacker.cpp ├── imagepacker.h ├── imaterialinternal.h ├── imaterialsysteminternal.h ├── imatrendercontextinternal.h ├── imorphinternal.h ├── itextureinternal.h ├── mat_stub.cpp ├── materialsystem.vcxproj.filters ├── materialsystem_global.cpp ├── materialsystem_global.h ├── morph.cpp ├── occlusionquerymgr.cpp ├── occlusionquerymgr.h ├── pch_materialsystem.cpp ├── pch_materialsystem.h ├── resource.h ├── shader_dll_verify.cpp ├── shader_dll_verify.h ├── shadersystem.cpp ├── shadersystem.h ├── texturemanager.cpp ├── texturemanager.h └── wireframe.cpp ├── Mathlib ├── 3dnow.cpp ├── 3dnow.h ├── IceKey.cpp ├── Mathlib.vcxproj ├── Mathlib.vcxproj.user ├── anorms.cpp ├── bumpvects.cpp ├── color_conversion.cpp ├── datagen.pl ├── halton.cpp ├── imagequant.cpp ├── lightdesc.cpp ├── mathlib.vcxproj.filters ├── mathlib.vpc ├── mathlib_base.cpp ├── noisedata.h ├── polyhedron.cpp ├── powsse.cpp ├── quantize.cpp ├── randsse.cpp ├── simdvectormatrix.cpp ├── sparse_convolution_noise.cpp ├── sse.cpp ├── sse.h ├── sseconst.cpp ├── ssenoise.cpp ├── vector.cpp └── vmatrix.cpp ├── Movieobjects ├── Movieobjects.vcxproj ├── Movieobjects.vcxproj.user ├── dmeanimationlist.cpp ├── dmeanimationset.cpp ├── dmeattachment.cpp ├── dmebalancetostereocalculatoroperator.cpp ├── dmebookmark.cpp ├── dmecamera.cpp ├── dmechannel.cpp ├── dmeclip.cpp ├── dmecombinationoperator.cpp ├── dmedag.cpp ├── dmedccmakefile.cpp ├── dmedrawsettings.cpp ├── dmeeditortypedictionary.cpp ├── dmeexpressionoperator.cpp ├── dmeeyeball.cpp ├── dmeeyeposition.cpp ├── dmefaceset.cpp ├── dmegamemodel.cpp ├── dmegamemodelinput.cpp ├── dmeimage.cpp ├── dmeinput.cpp ├── dmejoint.cpp ├── dmekeyboardinput.cpp ├── dmelight.cpp ├── dmelog.cpp ├── dmemakefile.cpp ├── dmemakefileutils.cpp ├── dmematerial.cpp ├── dmematerialoverlayfxclip.cpp ├── dmemdl.cpp ├── dmemdlmakefile.cpp ├── dmemesh.cpp ├── dmemodel.cpp ├── dmemorphoperator.cpp ├── dmemouseinput.cpp ├── dmeoperator.cpp ├── dmepackoperators.cpp ├── dmeparticlesystemdefinition.cpp ├── dmephonememapping.cpp ├── dmeselection.cpp ├── dmeshader.cpp ├── dmeshape.cpp ├── dmesound.cpp ├── dmetestmesh.cpp ├── dmetexture.cpp ├── dmetimeframe.cpp ├── dmetimeselection.cpp ├── dmetrack.cpp ├── dmetrackgroup.cpp ├── dmetransform.cpp ├── dmetransforminput.cpp ├── dmetransformlist.cpp ├── dmetransformoperator.cpp ├── dmeunpackoperators.cpp ├── dmevertexdata.cpp ├── dmmeshcomp.cpp ├── dmmeshutils.cpp ├── dmobjserializer.cpp ├── dmx_to_vcd.cpp ├── importintovcd.cpp ├── movieobjects.vcxproj.filters ├── movieobjects_interfaces.cpp ├── movieobjects_interfaces.h └── timeutils.cpp ├── Particles ├── Particles.vcxproj ├── Particles.vcxproj.filters ├── Particles.vcxproj.user ├── addbuiltin_ops.cpp ├── builtin_constraints.cpp ├── builtin_initializers.cpp ├── builtin_particle_emitters.cpp ├── builtin_particle_forces.cpp ├── builtin_particle_ops.cpp ├── builtin_particle_render_ops.cpp ├── particle_sort.cpp ├── particles.cpp ├── particles_internal.h ├── psheet.cpp ├── psheet.h └── random_floats.h ├── RayTrace ├── RayTrace.vcxproj ├── RayTrace.vcxproj.user ├── raytrace.cpp ├── raytrace.vcxproj.filters ├── trace2.cpp └── trace3.cpp ├── SceneFileCache ├── SceneFileCache.cpp ├── SceneFileCache.vcxproj ├── SceneFileCache.vcxproj.user └── scenefilecache.vcxproj.filters ├── ServerBrowser ├── BaseGamesPage.cpp ├── BaseGamesPage.h ├── CustomGames.cpp ├── CustomGames.h ├── DialogAddServer.cpp ├── DialogAddServer.h ├── DialogGameInfo.cpp ├── DialogGameInfo.h ├── DialogServerPassword.cpp ├── DialogServerPassword.h ├── FavoriteGames.cpp ├── FavoriteGames.h ├── FriendsGames.cpp ├── FriendsGames.h ├── HistoryGames.cpp ├── HistoryGames.h ├── InternetGames.cpp ├── InternetGames.h ├── LanGames.cpp ├── LanGames.h ├── ModList.cpp ├── ModList.h ├── ServerBrowser.cpp ├── ServerBrowser.h ├── ServerBrowser.vcxproj ├── ServerBrowser.vcxproj.filters ├── ServerBrowser.vcxproj.user ├── ServerBrowserDialog.cpp ├── ServerBrowserDialog.h ├── ServerContextMenu.cpp ├── ServerContextMenu.h ├── ServerListCompare.cpp ├── ServerListCompare.h ├── SpectateGames.cpp ├── SpectateGames.h ├── VACBannedConnRefusedDialog.cpp ├── VACBannedConnRefusedDialog.h ├── igamelist.h ├── pch_serverbrowser.cpp └── pch_serverbrowser.h ├── SoundEmitterSystem ├── SoundEmitterSystem.vcxproj ├── SoundEmitterSystem.vcxproj.user ├── cbase.h ├── soundemittersystem.vcxproj.filters ├── soundemittersystembase.cpp └── soundemittersystembase.h ├── SourceEngine.props ├── SourceEngine.sln ├── SourceEngine ├── RCa19596 ├── SourceEngine.vcxproj ├── SourceEngine.vcxproj.filters ├── SourceEngine.vcxproj.user ├── launcher_main.rc ├── main.cpp ├── res │ └── launcher.ico └── resource.h ├── SourceEngine_SDK.sln ├── StudioRender ├── StudioRender.vcxproj ├── StudioRender.vcxproj.user ├── flexrenderdata.cpp ├── flexrenderdata.h ├── r_studio.cpp ├── r_studiodecal.cpp ├── r_studiodraw.cpp ├── r_studioflex.cpp ├── r_studiogettriangles.cpp ├── r_studiolight.cpp ├── r_studiolight.h ├── studiorender.cpp ├── studiorender.h ├── studiorender.vcxproj.filters ├── studiorendercontext.cpp └── studiorendercontext.h ├── Tier0 ├── PMELib.cpp ├── Tier0.vcxproj ├── Tier0.vcxproj.filters ├── Tier0.vcxproj.user ├── assert_dialog.cpp ├── commandline.cpp ├── cpu.cpp ├── cpu_linux.cpp ├── dbg.cpp ├── extendedtrace.cpp ├── extendedtrace.h ├── fasttimer.cpp ├── mem.cpp ├── mem_helpers.cpp ├── mem_helpers.h ├── memdbg.cpp ├── meminit.cpp ├── memstd.cpp ├── memstd.h ├── memvalidate.cpp ├── minidump.cpp ├── pch_tier0.cpp ├── pch_tier0.h ├── platform.cpp ├── platform_linux.cpp ├── pmc360.cpp ├── pme.cpp ├── pme_linux.cpp ├── progressbar.cpp ├── resource.h ├── security.cpp ├── security_linux.cpp ├── systeminformation.cpp ├── thread.cpp ├── threadtools.cpp ├── tslist.cpp ├── validator.cpp ├── valobject.cpp ├── vcrmode.cpp ├── vcrmode_linux.cpp ├── vcrmode_xbox.cpp ├── vprof.cpp └── win32consoleio.cpp ├── Tier1 ├── KeyValues.cpp ├── NetAdr.cpp ├── Tier1.vcxproj ├── Tier1.vcxproj.filters ├── Tier1.vcxproj.user ├── bitbuf.cpp ├── byteswap.cpp ├── characterset.cpp ├── checksum_crc.cpp ├── checksum_md5.cpp ├── commandbuffer.cpp ├── convar.cpp ├── datamanager.cpp ├── diff.cpp ├── generichash.cpp ├── interface.cpp ├── lzmaDecoder.cpp ├── lzss.cpp ├── mempool.cpp ├── memstack.cpp ├── newbitbuf.cpp ├── processor_detect.cpp ├── processor_detect_linux.cpp ├── rangecheckedvar.cpp ├── stringpool.cpp ├── strtools.cpp ├── tier1.cpp ├── tokenreader.cpp ├── undiff.cpp ├── uniqueid.cpp ├── utlbuffer.cpp ├── utlbufferutil.cpp ├── utlstring.cpp └── utlsymbol.cpp ├── Tier2 ├── Tier2.vcxproj ├── Tier2.vcxproj.filters ├── Tier2.vcxproj.user ├── beamsegdraw.cpp ├── defaultfilesystem.cpp ├── dmconnect.cpp ├── fileutils.cpp ├── keybindings.cpp ├── meshutils.cpp ├── p4helpers.cpp ├── renderutils.cpp ├── riff.cpp ├── soundutils.cpp ├── tier2.cpp ├── util_init.cpp ├── utlstreambuffer.cpp └── vconfig.cpp ├── Tier3 ├── Tier3.vcxproj ├── Tier3.vcxproj.filters ├── Tier3.vcxproj.user ├── choreoutils.cpp ├── scenetokenprocessor.cpp ├── studiohdrstub.cpp └── tier3.cpp ├── Tracker ├── AdminServer │ ├── AdminServer.cpp │ ├── AdminServer.h │ ├── AdminServer.vcproj │ ├── BanContextMenu.cpp │ ├── BanContextMenu.h │ ├── BanPanel.cpp │ ├── BanPanel.h │ ├── BaseGamesPage.cpp │ ├── BaseGamesPage.h │ ├── BudgetPanelContainer.cpp │ ├── BudgetPanelContainer.h │ ├── ChatContextMenu.h │ ├── ChatPanel.cpp │ ├── ChatPanel.h │ ├── ClickableTabbedPanel.cpp │ ├── ClickableTabbedPanel.h │ ├── ConfigPanel.cpp │ ├── ConfigPanel.h │ ├── DialogAddBan.cpp │ ├── DialogAddBan.h │ ├── DialogAddServer.cpp │ ├── DialogAddServer.h │ ├── DialogCvarChange.cpp │ ├── DialogCvarChange.h │ ├── DialogGameInfo.cpp │ ├── DialogGameInfo.h │ ├── DialogKickPlayer.cpp │ ├── DialogKickPlayer.h │ ├── DialogServerPassword.cpp │ ├── DialogServerPassword.h │ ├── FavoriteGames.cpp │ ├── FavoriteGames.h │ ├── GamePanelInfo.cpp │ ├── GamePanelInfo.h │ ├── GraphPanel.cpp │ ├── GraphPanel.h │ ├── HelpText.cpp │ ├── HelpText.h │ ├── IManageServer.h │ ├── Iresponse.h │ ├── MOTDPanel.cpp │ ├── MOTDPanel.h │ ├── MapCycleEditDialog.cpp │ ├── MapCycleEditDialog.h │ ├── MasterMsgHandler.cpp │ ├── Player.h │ ├── PlayerContextMenu.cpp │ ├── PlayerContextMenu.h │ ├── PlayerListCompare.cpp │ ├── PlayerListCompare.h │ ├── PlayerPanel.cpp │ ├── PlayerPanel.h │ ├── RawLogPanel.cpp │ ├── RawLogPanel.h │ ├── RemoteServer.cpp │ ├── RemoteServer.h │ ├── RulesContextMenu.cpp │ ├── RulesContextMenu.h │ ├── ServerConfigPanel.cpp │ ├── ServerConfigPanel.h │ ├── ServerContextMenu.cpp │ ├── ServerContextMenu.h │ ├── ServerList.cpp │ ├── ServerList.h │ ├── ServerListCompare.cpp │ ├── ServerListCompare.h │ ├── TokenLine.cpp │ ├── TokenLine.h │ ├── VarEditDialog.cpp │ ├── VarEditDialog.h │ ├── VarListPropertyPage.cpp │ ├── VarListPropertyPage.h │ ├── ban.h │ ├── banlist.cpp │ ├── banlist.h │ ├── cmdlist.cpp │ ├── cmdlist.h │ ├── logmsghandler.cpp │ ├── logmsghandler.h │ ├── maps.h │ ├── mapslist.cpp │ ├── mapslist.h │ ├── playerlist.cpp │ ├── playerlist.h │ ├── playermsghandler.cpp │ ├── playermsghandler.h │ ├── point.h │ ├── rcon.cpp │ ├── rcon.h │ ├── rconmsghandler.cpp │ ├── rconmsghandler.h │ ├── rulesinfo.cpp │ ├── rulesinfo.h │ ├── rulesinfomsghandler.cpp │ ├── rulesinfomsghandler.h │ ├── serverinfo.cpp │ ├── serverinfo.h │ ├── serverinfomsghandler.cpp │ ├── serverinfomsghandler.h │ ├── serverinfopanel.cpp │ ├── serverinfopanel.h │ ├── serverpage.cpp │ ├── serverpage.h │ ├── serverping.cpp │ ├── serverping.h │ ├── serverpingmsghandler.cpp │ └── serverpingmsghandler.h └── common │ ├── CompletionEvent.cpp │ ├── CompletionEvent.h │ ├── DebugConsole_Interface.h │ ├── DebugTimer.h │ ├── IGameList.h │ ├── IServerRefreshResponse.h │ ├── IceKey.H │ ├── IceKey.cpp │ ├── MasterMsgHandler.h │ ├── Socket.cpp │ ├── Socket.h │ ├── TrackerMessageFlags.h │ ├── TrackerProtocol.h │ ├── UtlMsgBuffer.cpp │ ├── UtlMsgBuffer.h │ ├── inetapi.h │ ├── msgbuffer.cpp │ ├── msgbuffer.h │ ├── netapi.cpp │ ├── server.h │ ├── util.cpp │ └── util.h ├── Unicode ├── Unicode.vcxproj ├── Unicode.vcxproj.user ├── unicode.cpp └── unicode.vcxproj.filters ├── Utils ├── Bullet │ ├── license.txt │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── BulletCollision │ │ │ ├── BulletCollision.vcxproj │ │ │ ├── BulletCollision.vcxproj.filters │ │ │ └── BulletCollision.vcxproj.user │ │ ├── BulletDynamics │ │ │ ├── BulletDynamics.vcxproj │ │ │ ├── BulletDynamics.vcxproj.filters │ │ │ └── BulletDynamics.vcxproj.user │ │ ├── BulletMultiThreaded │ │ │ ├── BulletMultiThreaded.vcxproj │ │ │ ├── BulletMultiThreaded.vcxproj.filters │ │ │ ├── BulletMultiThreaded.vcxproj.user │ │ │ ├── ThreadPool.cpp │ │ │ └── ThreadPool.h │ │ ├── BulletSoftBody │ │ │ ├── BulletSoftBody.vcxproj │ │ │ ├── BulletSoftBody.vcxproj.filters │ │ │ └── BulletSoftBody.vcxproj.user │ │ └── LinearMath │ │ │ ├── LinearMath.vcxproj │ │ │ ├── LinearMath.vcxproj.filters │ │ │ └── LinearMath.vcxproj.user │ ├── proj │ │ ├── premake4 │ │ └── premake4.lua │ └── src │ │ ├── Bullet-C-Api.h │ │ ├── BulletCollision │ │ ├── BroadphaseCollision │ │ │ ├── btAxisSweep3.cpp │ │ │ ├── btAxisSweep3.h │ │ │ ├── btBroadphaseInterface.h │ │ │ ├── btBroadphaseProxy.cpp │ │ │ ├── btBroadphaseProxy.h │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ ├── btCollisionAlgorithm.h │ │ │ ├── btDbvt.cpp │ │ │ ├── btDbvt.h │ │ │ ├── btDbvtBroadphase.cpp │ │ │ ├── btDbvtBroadphase.h │ │ │ ├── btDispatcher.cpp │ │ │ ├── btDispatcher.h │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ ├── btMultiSapBroadphase.h │ │ │ ├── btOverlappingPairCache.cpp │ │ │ ├── btOverlappingPairCache.h │ │ │ ├── btOverlappingPairCallback.h │ │ │ ├── btQuantizedBvh.cpp │ │ │ ├── btQuantizedBvh.h │ │ │ ├── btSimpleBroadphase.cpp │ │ │ └── btSimpleBroadphase.h │ │ ├── CollisionDispatch │ │ │ ├── SphereTriangleDetector.cpp │ │ │ ├── SphereTriangleDetector.h │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ ├── btBoxBoxDetector.cpp │ │ │ ├── btBoxBoxDetector.h │ │ │ ├── btCollisionConfiguration.h │ │ │ ├── btCollisionCreateFunc.h │ │ │ ├── btCollisionDispatcher.cpp │ │ │ ├── btCollisionDispatcher.h │ │ │ ├── btCollisionObject.cpp │ │ │ ├── btCollisionObject.h │ │ │ ├── btCollisionObjectWrapper.h │ │ │ ├── btCollisionWorld.cpp │ │ │ ├── btCollisionWorld.h │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ ├── btCompoundCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCompoundCollisionAlgorithm.h │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ ├── btGhostObject.cpp │ │ │ ├── btGhostObject.h │ │ │ ├── btHashedSimplePairCache.cpp │ │ │ ├── btHashedSimplePairCache.h │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ ├── btInternalEdgeUtility.h │ │ │ ├── btManifoldResult.cpp │ │ │ ├── btManifoldResult.h │ │ │ ├── btSimulationIslandManager.cpp │ │ │ ├── btSimulationIslandManager.h │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ ├── btUnionFind.cpp │ │ │ └── btUnionFind.h │ │ ├── CollisionShapes │ │ │ ├── btBox2dShape.cpp │ │ │ ├── btBox2dShape.h │ │ │ ├── btBoxShape.cpp │ │ │ ├── btBoxShape.h │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ ├── btCapsuleShape.cpp │ │ │ ├── btCapsuleShape.h │ │ │ ├── btCollisionMargin.h │ │ │ ├── btCollisionShape.cpp │ │ │ ├── btCollisionShape.h │ │ │ ├── btCompoundShape.cpp │ │ │ ├── btCompoundShape.h │ │ │ ├── btConcaveShape.cpp │ │ │ ├── btConcaveShape.h │ │ │ ├── btConeShape.cpp │ │ │ ├── btConeShape.h │ │ │ ├── btConvex2dShape.cpp │ │ │ ├── btConvex2dShape.h │ │ │ ├── btConvexHullShape.cpp │ │ │ ├── btConvexHullShape.h │ │ │ ├── btConvexInternalShape.cpp │ │ │ ├── btConvexInternalShape.h │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ ├── btConvexPointCloudShape.h │ │ │ ├── btConvexPolyhedron.cpp │ │ │ ├── btConvexPolyhedron.h │ │ │ ├── btConvexShape.cpp │ │ │ ├── btConvexShape.h │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ ├── btCylinderShape.cpp │ │ │ ├── btCylinderShape.h │ │ │ ├── btEmptyShape.cpp │ │ │ ├── btEmptyShape.h │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ ├── btMaterial.h │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ ├── btMinkowskiSumShape.h │ │ │ ├── btMultiSphereShape.cpp │ │ │ ├── btMultiSphereShape.h │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ ├── btOptimizedBvh.cpp │ │ │ ├── btOptimizedBvh.h │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ ├── btPolyhedralConvexShape.h │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ ├── btShapeHull.cpp │ │ │ ├── btShapeHull.h │ │ │ ├── btSphereShape.cpp │ │ │ ├── btSphereShape.h │ │ │ ├── btStaticPlaneShape.cpp │ │ │ ├── btStaticPlaneShape.h │ │ │ ├── btStridingMeshInterface.cpp │ │ │ ├── btStridingMeshInterface.h │ │ │ ├── btTetrahedronShape.cpp │ │ │ ├── btTetrahedronShape.h │ │ │ ├── btTriangleBuffer.cpp │ │ │ ├── btTriangleBuffer.h │ │ │ ├── btTriangleCallback.cpp │ │ │ ├── btTriangleCallback.h │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ ├── btTriangleInfoMap.h │ │ │ ├── btTriangleMesh.cpp │ │ │ ├── btTriangleMesh.h │ │ │ ├── btTriangleMeshShape.cpp │ │ │ ├── btTriangleMeshShape.h │ │ │ ├── btTriangleShape.h │ │ │ ├── btUniformScalingShape.cpp │ │ │ └── btUniformScalingShape.h │ │ ├── Gimpact │ │ │ ├── btBoxCollision.h │ │ │ ├── btClipPolygon.h │ │ │ ├── btCompoundFromGimpact.h │ │ │ ├── btContactProcessing.cpp │ │ │ ├── btContactProcessing.h │ │ │ ├── btGImpactBvh.cpp │ │ │ ├── btGImpactBvh.h │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ ├── btGImpactMassUtil.h │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ ├── btGImpactShape.cpp │ │ │ ├── btGImpactShape.h │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ ├── btGenericPoolAllocator.h │ │ │ ├── btGeometryOperations.h │ │ │ ├── btQuantization.h │ │ │ ├── btTriangleShapeEx.cpp │ │ │ ├── btTriangleShapeEx.h │ │ │ ├── gim_array.h │ │ │ ├── gim_basic_geometry_operations.h │ │ │ ├── gim_bitset.h │ │ │ ├── gim_box_collision.h │ │ │ ├── gim_box_set.cpp │ │ │ ├── gim_box_set.h │ │ │ ├── gim_clip_polygon.h │ │ │ ├── gim_contact.cpp │ │ │ ├── gim_contact.h │ │ │ ├── gim_geom_types.h │ │ │ ├── gim_geometry.h │ │ │ ├── gim_hash_table.h │ │ │ ├── gim_linear_math.h │ │ │ ├── gim_math.h │ │ │ ├── gim_memory.cpp │ │ │ ├── gim_memory.h │ │ │ ├── gim_radixsort.h │ │ │ ├── gim_tri_collision.cpp │ │ │ └── gim_tri_collision.h │ │ ├── NarrowPhaseCollision │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ ├── btContinuousConvexCollision.h │ │ │ ├── btConvexCast.cpp │ │ │ ├── btConvexCast.h │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ ├── btGjkConvexCast.cpp │ │ │ ├── btGjkConvexCast.h │ │ │ ├── btGjkEpa2.cpp │ │ │ ├── btGjkEpa2.h │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ ├── btGjkPairDetector.cpp │ │ │ ├── btGjkPairDetector.h │ │ │ ├── btManifoldPoint.h │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ ├── btPersistentManifold.cpp │ │ │ ├── btPersistentManifold.h │ │ │ ├── btPointCollector.h │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ ├── btPolyhedralContactClipping.h │ │ │ ├── btRaycastCallback.cpp │ │ │ ├── btRaycastCallback.h │ │ │ ├── btSimplexSolverInterface.h │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ ├── btSubSimplexConvexCast.h │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ └── btVoronoiSimplexSolver.h │ │ └── premake4.lua │ │ ├── BulletDynamics │ │ ├── Character │ │ │ ├── btCharacterControllerInterface.h │ │ │ ├── btKinematicCharacterController.cpp │ │ │ └── btKinematicCharacterController.h │ │ ├── ConstraintSolver │ │ │ ├── btConeTwistConstraint.cpp │ │ │ ├── btConeTwistConstraint.h │ │ │ ├── btConstraintSolver.h │ │ │ ├── btContactConstraint.cpp │ │ │ ├── btContactConstraint.h │ │ │ ├── btContactSolverInfo.h │ │ │ ├── btFixedConstraint.cpp │ │ │ ├── btFixedConstraint.h │ │ │ ├── btGearConstraint.cpp │ │ │ ├── btGearConstraint.h │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ ├── btGeneric6DofConstraint.h │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ ├── btHinge2Constraint.cpp │ │ │ ├── btHinge2Constraint.h │ │ │ ├── btHingeConstraint.cpp │ │ │ ├── btHingeConstraint.h │ │ │ ├── btJacobianEntry.h │ │ │ ├── btNNCGConstraintSolver.cpp │ │ │ ├── btNNCGConstraintSolver.h │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ ├── btPoint2PointConstraint.h │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ ├── btSliderConstraint.cpp │ │ │ ├── btSliderConstraint.h │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ ├── btSolve2LinearConstraint.h │ │ │ ├── btSolverBody.h │ │ │ ├── btSolverConstraint.h │ │ │ ├── btTypedConstraint.cpp │ │ │ ├── btTypedConstraint.h │ │ │ ├── btUniversalConstraint.cpp │ │ │ └── btUniversalConstraint.h │ │ ├── Dynamics │ │ │ ├── Bullet-C-API.cpp │ │ │ ├── btActionInterface.h │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ ├── btDynamicsWorld.h │ │ │ ├── btRigidBody.cpp │ │ │ ├── btRigidBody.h │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ └── btSimpleDynamicsWorld.h │ │ ├── Featherstone │ │ │ ├── btMultiBody.cpp │ │ │ ├── btMultiBody.h │ │ │ ├── btMultiBodyConstraint.cpp │ │ │ ├── btMultiBodyConstraint.h │ │ │ ├── btMultiBodyConstraintSolver.cpp │ │ │ ├── btMultiBodyConstraintSolver.h │ │ │ ├── btMultiBodyDynamicsWorld.cpp │ │ │ ├── btMultiBodyDynamicsWorld.h │ │ │ ├── btMultiBodyJointLimitConstraint.cpp │ │ │ ├── btMultiBodyJointLimitConstraint.h │ │ │ ├── btMultiBodyJointMotor.cpp │ │ │ ├── btMultiBodyJointMotor.h │ │ │ ├── btMultiBodyLink.h │ │ │ ├── btMultiBodyLinkCollider.h │ │ │ ├── btMultiBodyPoint2Point.cpp │ │ │ ├── btMultiBodyPoint2Point.h │ │ │ └── btMultiBodySolverConstraint.h │ │ ├── MLCPSolvers │ │ │ ├── btDantzigLCP.cpp │ │ │ ├── btDantzigLCP.h │ │ │ ├── btDantzigSolver.h │ │ │ ├── btLemkeAlgorithm.cpp │ │ │ ├── btLemkeAlgorithm.h │ │ │ ├── btLemkeSolver.h │ │ │ ├── btMLCPSolver.cpp │ │ │ ├── btMLCPSolver.h │ │ │ ├── btMLCPSolverInterface.h │ │ │ ├── btPATHSolver.h │ │ │ └── btSolveProjectedGaussSeidel.h │ │ ├── Vehicle │ │ │ ├── btRaycastVehicle.cpp │ │ │ ├── btRaycastVehicle.h │ │ │ ├── btVehicleRaycaster.h │ │ │ ├── btWheelInfo.cpp │ │ │ ├── btWheelInfo.h │ │ │ ├── btWheeledVehicle.cpp │ │ │ └── btWheeledVehicle.h │ │ └── premake4.lua │ │ ├── BulletMultiThreaded │ │ ├── GpuSoftBodySolvers │ │ │ ├── DX11 │ │ │ │ ├── HLSL │ │ │ │ │ ├── ApplyForces.hlsl │ │ │ │ │ ├── ComputeBounds.hlsl │ │ │ │ │ ├── Integrate.hlsl │ │ │ │ │ ├── OutputToVertexArray.hlsl │ │ │ │ │ ├── PrepareLinks.hlsl │ │ │ │ │ ├── SolvePositions.hlsl │ │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl │ │ │ │ │ ├── UpdateConstants.hlsl │ │ │ │ │ ├── UpdateNodes.hlsl │ │ │ │ │ ├── UpdateNormals.hlsl │ │ │ │ │ ├── UpdatePositions.hlsl │ │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl │ │ │ │ │ ├── VSolveLinks.hlsl │ │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl │ │ │ │ │ └── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl │ │ │ │ ├── btSoftBodySolverBuffer_DX11.h │ │ │ │ ├── btSoftBodySolverLinkData_DX11.h │ │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h │ │ │ │ ├── btSoftBodySolverTriangleData_DX11.h │ │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h │ │ │ │ ├── btSoftBodySolverVertexData_DX11.h │ │ │ │ ├── btSoftBodySolver_DX11.cpp │ │ │ │ ├── btSoftBodySolver_DX11.h │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp │ │ │ │ └── btSoftBodySolver_DX11SIMDAware.h │ │ │ ├── OpenCL │ │ │ │ ├── MiniCL │ │ │ │ │ └── MiniCLTaskWrap.cpp │ │ │ │ ├── OpenCLC10 │ │ │ │ │ ├── ApplyForces.cl │ │ │ │ │ ├── ComputeBounds.cl │ │ │ │ │ ├── Integrate.cl │ │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ │ ├── PrepareLinks.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ │ ├── SolvePositions.cl │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ │ ├── UpdateConstants.cl │ │ │ │ │ ├── UpdateFixedVertexPositions.cl │ │ │ │ │ ├── UpdateNodes.cl │ │ │ │ │ ├── UpdateNormals.cl │ │ │ │ │ ├── UpdatePositions.cl │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ │ └── VSolveLinks.cl │ │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h │ │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h │ │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.h │ │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h │ │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h │ │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h │ │ │ │ ├── btSoftBodySolver_OpenCL.cpp │ │ │ │ ├── btSoftBodySolver_OpenCL.h │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp │ │ │ │ └── btSoftBodySolver_OpenCLSIMDAware.h │ │ │ └── Shared │ │ │ │ └── btSoftBodySolverData.h │ │ ├── HeapManager.h │ │ ├── PlatformDefinitions.h │ │ ├── PosixThreading.cpp │ │ ├── PpuAddressSpace.h │ │ ├── TrbDynBody.h │ │ ├── TrbStateVec.h │ │ ├── Win32Threading.cpp │ │ ├── btGpu3DGridBroadphase.cpp │ │ ├── btGpu3DGridBroadphase.h │ │ ├── btGpu3DGridBroadphaseSharedCode.h │ │ ├── btGpu3DGridBroadphaseSharedDefs.h │ │ ├── btGpu3DGridBroadphaseSharedTypes.h │ │ ├── btGpuDefines.h │ │ ├── btGpuUtilsSharedCode.h │ │ ├── btGpuUtilsSharedDefs.h │ │ ├── btParallelCollisionDispatcher.cpp │ │ ├── btParallelCollisionDispatcher.h │ │ ├── btParallelConstraintSolver.cpp │ │ ├── btParallelConstraintSolver.h │ │ ├── btThreadPool.cpp │ │ ├── btThreadPool.h │ │ ├── btThreading.h │ │ ├── premake4.lua │ │ └── vectormath2bullet.h │ │ ├── BulletSoftBody │ │ ├── btDefaultSoftBodySolver.cpp │ │ ├── btDefaultSoftBodySolver.h │ │ ├── btSoftBody.cpp │ │ ├── btSoftBody.h │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ ├── btSoftBodyData.h │ │ ├── btSoftBodyHelpers.cpp │ │ ├── btSoftBodyHelpers.h │ │ ├── btSoftBodyInternals.h │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ ├── btSoftBodySolverVertexBuffer.h │ │ ├── btSoftBodySolvers.h │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ ├── btSoftRigidDynamicsWorld.h │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ ├── btSparseSDF.h │ │ └── premake4.lua │ │ ├── LinearMath │ │ ├── btAabbUtil2.h │ │ ├── btAlignedAllocator.cpp │ │ ├── btAlignedAllocator.h │ │ ├── btAlignedObjectArray.h │ │ ├── btConvexHull.cpp │ │ ├── btConvexHull.h │ │ ├── btConvexHullComputer.cpp │ │ ├── btConvexHullComputer.h │ │ ├── btDebug.cpp │ │ ├── btDebug.h │ │ ├── btDefaultMotionState.h │ │ ├── btDefines.h │ │ ├── btGeometryUtil.cpp │ │ ├── btGeometryUtil.h │ │ ├── btGrahamScan2dConvexHull.h │ │ ├── btHashMap.h │ │ ├── btIDebugDraw.h │ │ ├── btList.h │ │ ├── btMatrix3x3.h │ │ ├── btMatrixX.h │ │ ├── btMinMax.h │ │ ├── btMotionState.h │ │ ├── btPolarDecomposition.cpp │ │ ├── btPolarDecomposition.h │ │ ├── btPoolAllocator.h │ │ ├── btQuadWord.h │ │ ├── btQuaternion.h │ │ ├── btQuickprof.cpp │ │ ├── btQuickprof.h │ │ ├── btRandom.h │ │ ├── btScalar.h │ │ ├── btSerializer.cpp │ │ ├── btSerializer.h │ │ ├── btStackAlloc.h │ │ ├── btTransform.h │ │ ├── btTransformUtil.h │ │ ├── btVector3.cpp │ │ ├── btVector3.h │ │ └── premake4.lua │ │ ├── Makefile.am │ │ ├── MiniCL │ │ ├── MiniCL.cpp │ │ ├── MiniCLTask │ │ │ ├── MiniCLTask.cpp │ │ │ └── MiniCLTask.h │ │ ├── MiniCLTaskScheduler.cpp │ │ ├── MiniCLTaskScheduler.h │ │ ├── cl.h │ │ ├── cl_MiniCL_Defs.h │ │ ├── cl_gl.h │ │ └── cl_platform.h │ │ ├── btBulletCollisionCommon.h │ │ ├── btBulletDynamicsCommon.h │ │ ├── premake4.lua │ │ └── vectormath │ │ ├── neon │ │ ├── boolInVec.h │ │ ├── floatInVec.h │ │ ├── mat_aos.h │ │ ├── quat_aos.h │ │ ├── vec_aos.h │ │ └── vectormath_aos.h │ │ ├── scalar │ │ ├── boolInVec.h │ │ ├── floatInVec.h │ │ ├── mat_aos.h │ │ ├── quat_aos.h │ │ ├── vec_aos.h │ │ └── vectormath_aos.h │ │ ├── sse │ │ ├── boolInVec.h │ │ ├── floatInVec.h │ │ ├── mat_aos.h │ │ ├── quat_aos.h │ │ ├── vec_aos.h │ │ ├── vecidx_aos.h │ │ └── vectormath_aos.h │ │ └── vmInclude.h ├── Bzip2 │ ├── Bzip2.vcxproj │ ├── Bzip2.vcxproj.user │ ├── blocksort.c │ ├── bzip2.c │ ├── bzip2.vcxproj.filters │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── huffman.c │ └── randtable.c ├── FileSystemOpenDialog │ ├── FileDialogApp.cpp │ ├── FileDialogApp.h │ ├── FileSystemOpenDialog.rc │ ├── FileSystemOpenDialog.vcxproj │ ├── FileSystemOpenDialog.vcxproj.filters │ ├── FileSystemOpenDialog.vcxproj.user │ ├── FileSystemOpenDlg.cpp │ ├── FileSystemOpenDlg.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── res │ │ ├── SteamFileDialog.rc2 │ │ ├── label_file.bmp │ │ ├── label_fo.bmp │ │ └── label_mdl.bmp │ └── resource.h ├── Jpeglib │ ├── Jpeglib.vcxproj │ ├── Jpeglib.vcxproj.user │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemmgr.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jpegint.h │ ├── jpeglib.vcxproj.filters │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ └── jversion.h ├── Parsifal │ ├── Parsifal.vcxproj │ ├── Parsifal.vcxproj.filters │ ├── Parsifal.vcxproj.user │ ├── bistream.c │ ├── dtdvalid.c │ ├── encoding.c │ ├── include │ │ ├── bistream.h │ │ ├── dtdvalid.h │ │ ├── isrcmem.h │ │ ├── nametab.h │ │ ├── optcfg.h │ │ ├── parsifal.h │ │ ├── xmlcfg.h │ │ ├── xmldef.h │ │ ├── xmldtd.h │ │ ├── xmlhash.h │ │ ├── xmlpool.h │ │ ├── xmlsbuf.h │ │ └── xmlvect.h │ ├── parsifal.c │ ├── xmlhash.c │ ├── xmlpool.c │ ├── xmlsbuf.c │ └── xmlvect.c ├── Parsifal2 │ ├── bistream.c │ ├── dtdvalid.c │ ├── encoding.c │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── libparsifal │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bistream.h │ │ │ ├── dtdvalid.h │ │ │ ├── isrcmem.h │ │ │ ├── nametab.h │ │ │ ├── optcfg.h │ │ │ ├── parsifal.h │ │ │ ├── xmlcfg.h │ │ │ ├── xmldef.h │ │ │ ├── xmldtd.h │ │ │ ├── xmlhash.h │ │ │ ├── xmlpool.h │ │ │ ├── xmlsbuf.h │ │ │ └── xmlvect.h │ ├── lib │ │ ├── APIChanges │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── aclocal.m4 │ │ ├── conf │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── missing │ │ │ └── mkinstalldirs │ │ ├── configure │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── conformance.html │ │ │ ├── csrchtml │ │ │ │ ├── canonxml_c.html │ │ │ │ ├── datatype_c.html │ │ │ │ ├── dtddecl_c.html │ │ │ │ ├── elements_c.html │ │ │ │ ├── highlight.css │ │ │ │ ├── nsvalid_c.html │ │ │ │ ├── parsifal_h.html │ │ │ │ ├── test_iconv_c.html │ │ │ │ ├── test_pool_c.html │ │ │ │ ├── winurl_c.html │ │ │ │ ├── xmltest_c.html │ │ │ │ ├── zenstory_c.html │ │ │ │ ├── zenstory_h.html │ │ │ │ └── zenvalid_c.html │ │ │ ├── cvs.html │ │ │ ├── download.html │ │ │ ├── elsewhere.html │ │ │ ├── faq.html │ │ │ ├── index.html │ │ │ ├── links.html │ │ │ ├── manual.html │ │ │ ├── news.html │ │ │ ├── overview.html │ │ │ ├── parsifal_results.html │ │ │ ├── parsifal_results_valid.html │ │ │ ├── pics │ │ │ │ ├── backg.gif │ │ │ │ ├── semail.gif │ │ │ │ ├── testsuite.gif │ │ │ │ ├── uetool1.gif │ │ │ │ └── uevalid1.gif │ │ │ ├── style.css │ │ │ ├── toc.html │ │ │ ├── xmlconf_results.html │ │ │ ├── xmlconf_results_valid.html │ │ │ └── xmlplint.html │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── libparsifal │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bistream.h │ │ │ │ ├── dtdvalid.h │ │ │ │ ├── isrcmem.h │ │ │ │ ├── nametab.h │ │ │ │ ├── optcfg.h │ │ │ │ ├── parsifal.h │ │ │ │ ├── xmlcfg.h │ │ │ │ ├── xmldef.h │ │ │ │ ├── xmldtd.h │ │ │ │ ├── xmlhash.h │ │ │ │ ├── xmlpool.h │ │ │ │ ├── xmlsbuf.h │ │ │ │ └── xmlvect.h │ │ ├── samples │ │ │ ├── canonxml │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── canonxml.c │ │ │ ├── datatype │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── books.xml │ │ │ │ ├── build.bat │ │ │ │ └── datatype.c │ │ │ ├── dtddecl │ │ │ │ └── dtddecl.c │ │ │ ├── elements │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── elements.c │ │ │ ├── misc │ │ │ │ ├── helper.c │ │ │ │ ├── ill16be.xml │ │ │ │ ├── test_iconv.c │ │ │ │ └── test_pool.c │ │ │ ├── nsvalid │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── nsvalid.c │ │ │ ├── winurl │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ └── winurl.c │ │ │ ├── xmlplint │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── catalog.dtd │ │ │ │ ├── catalog_flat.dtd │ │ │ │ ├── catalogs.c │ │ │ │ ├── curlread.c │ │ │ │ ├── curlread.h │ │ │ │ ├── events.c │ │ │ │ ├── rtrip.c │ │ │ │ ├── stimer.c │ │ │ │ ├── stimer.h │ │ │ │ ├── vfilter.c │ │ │ │ ├── xmlplint.c │ │ │ │ ├── xmlplint.dsp │ │ │ │ ├── xmlplint.dsw │ │ │ │ └── xmlplint.h │ │ │ ├── xmltest │ │ │ │ ├── FCOMPARE.C │ │ │ │ ├── README │ │ │ │ ├── VERSION │ │ │ │ ├── parsifal_tests.xml-failed-0.8.3.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.0.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.1.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.2.txt │ │ │ │ ├── parsifal_tests.xml-failed-0.9.3.txt │ │ │ │ ├── parsifal_tests.xml-valid-failed-0.9.1.txt │ │ │ │ ├── pxpout │ │ │ │ │ └── README │ │ │ │ ├── xmlconf.xml-failed-0.8.3.txt │ │ │ │ ├── xmlconf.xml-failed-0.9.0.txt │ │ │ │ ├── xmlconf.xml-failed-0.9.1.txt │ │ │ │ ├── xmlconf.xml-failed-0.9.3.txt │ │ │ │ ├── xmlconf.xml-valid-failed-0.9.1.txt │ │ │ │ ├── xmltest.c │ │ │ │ ├── xmltest.dsp │ │ │ │ └── xmltest.dsw │ │ │ ├── zenstory │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ ├── stories.xml │ │ │ │ ├── zenstory.c │ │ │ │ └── zenstory.h │ │ │ └── zenvalid │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.bat │ │ │ │ ├── stories.xml │ │ │ │ └── zenvalid.c │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bistream.c │ │ │ ├── dtdvalid.c │ │ │ ├── encoding.c │ │ │ ├── parsifal.c │ │ │ ├── xmlhash.c │ │ │ ├── xmlpool.c │ │ │ ├── xmlsbuf.c │ │ │ └── xmlvect.c │ │ └── win32 │ │ │ ├── bcc │ │ │ └── make │ │ │ │ └── static │ │ │ │ ├── makefile │ │ │ │ └── readme.txt │ │ │ ├── lib │ │ │ └── parsifal.lib │ │ │ ├── mingw │ │ │ └── dev-cpp │ │ │ │ └── static │ │ │ │ ├── Makefile.win │ │ │ │ ├── README │ │ │ │ ├── libparsifal.dev │ │ │ │ └── libparsifal.layout │ │ │ └── vc6 │ │ │ ├── UpgradeLog.htm │ │ │ ├── dllmain.c │ │ │ ├── parsifal.def │ │ │ ├── parsifal.dsp │ │ │ ├── parsifal.dsw │ │ │ ├── parsifal.sln │ │ │ ├── parsifal.vcxproj │ │ │ ├── parsifal.vcxproj.filters │ │ │ └── parsifal.vcxproj.user │ ├── parsifal.c │ ├── xmlhash.c │ ├── xmlpool.c │ ├── xmlsbuf.c │ └── xmlvect.c ├── Vbsp │ ├── Vbsp.vcxproj │ ├── Vbsp.vcxproj.user │ ├── brushbsp.cpp │ ├── csg.cpp │ ├── csg.h │ ├── cubemap.cpp │ ├── detail.cpp │ ├── detail.h │ ├── detailobjects.cpp │ ├── disp_ivp.cpp │ ├── disp_ivp.h │ ├── disp_vbsp.cpp │ ├── disp_vbsp.h │ ├── faces.cpp │ ├── faces.h │ ├── glfile.cpp │ ├── ivp.cpp │ ├── ivp.h │ ├── leakfile.cpp │ ├── map.cpp │ ├── map.h │ ├── materialpatch.cpp │ ├── materialpatch.h │ ├── materialsub.cpp │ ├── materialsub.h │ ├── nodraw.cpp │ ├── normals.cpp │ ├── overlay.cpp │ ├── portals.cpp │ ├── portals.h │ ├── prtfile.cpp │ ├── staticprop.cpp │ ├── textures.cpp │ ├── tree.cpp │ ├── vbsp.cpp │ ├── vbsp.h │ ├── vbsp.vcxproj.filters │ ├── worldvertextransitionfixup.cpp │ ├── worldvertextransitionfixup.h │ ├── writebsp.cpp │ └── writebsp.h ├── Vmpi │ ├── IThreadedTCPSocket.h │ ├── ThreadedTCPSocket.cpp │ ├── ThreadedTCPSocketEmu.cpp │ ├── ThreadedTCPSocketEmu.h │ ├── Vmpi.vcxproj │ ├── Vmpi.vcxproj.user │ ├── ichannel.h │ ├── idle_dialog.cpp │ ├── idle_dialog.h │ ├── imysqlwrapper.h │ ├── iphelpers.cpp │ ├── iphelpers.h │ ├── loopback_channel.cpp │ ├── loopback_channel.h │ ├── messagemgr.cpp │ ├── messagemgr.h │ ├── messbuf.cpp │ ├── messbuf.h │ ├── mysql_async.cpp │ ├── mysql_async.h │ ├── mysql_wrapper.h │ ├── net_view_thread.cpp │ ├── net_view_thread.h │ ├── tcpsocket.cpp │ ├── tcpsocket.h │ ├── tcpsocket_helpers.cpp │ ├── tcpsocket_helpers.h │ ├── threadhelpers.cpp │ ├── threadhelpers.h │ ├── vmpi.cpp │ ├── vmpi.h │ ├── vmpi.vcxproj.filters │ ├── vmpi_browser_helpers.cpp │ ├── vmpi_browser_helpers.h │ ├── vmpi_defs.h │ ├── vmpi_dispatch.cpp │ ├── vmpi_dispatch.h │ ├── vmpi_distribute_tracker.cpp │ ├── vmpi_distribute_tracker.h │ ├── vmpi_distribute_work.cpp │ ├── vmpi_distribute_work.h │ ├── vmpi_distribute_work_default.cpp │ ├── vmpi_distribute_work_internal.h │ ├── vmpi_distribute_work_sdk.cpp │ ├── vmpi_filesystem.cpp │ ├── vmpi_filesystem.h │ ├── vmpi_filesystem_internal.h │ ├── vmpi_filesystem_master.cpp │ ├── vmpi_filesystem_worker.cpp │ ├── vmpi_parameters.h │ ├── win_idle.cpp │ ├── win_idle.h │ ├── window_anchor_mgr.cpp │ └── window_anchor_mgr.h ├── Vrad │ ├── Vrad.vcxproj │ ├── Vrad.vcxproj.filters │ ├── Vrad.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── vrad_launcher.cpp ├── Vrad_dll │ ├── Vrad_dll.vcxproj │ ├── Vrad_dll.vcxproj.user │ ├── disp_vrad.cpp │ ├── disp_vrad.h │ ├── iincremental.h │ ├── imagepacker.cpp │ ├── imagepacker.h │ ├── incremental.cpp │ ├── incremental.h │ ├── leaf_ambient_lighting.cpp │ ├── leaf_ambient_lighting.h │ ├── lightmap.cpp │ ├── lightmap.h │ ├── macro_texture.cpp │ ├── macro_texture.h │ ├── mpivrad.cpp │ ├── mpivrad.h │ ├── origface.cpp │ ├── radial.cpp │ ├── radial.h │ ├── samplehash.cpp │ ├── trace.cpp │ ├── vismat.cpp │ ├── vismat.h │ ├── vrad.cpp │ ├── vrad.h │ ├── vrad_dispcoll.cpp │ ├── vrad_dispcoll.h │ ├── vrad_dll.vcxproj.filters │ ├── vraddetailprops.cpp │ ├── vraddetailprops.h │ ├── vraddisps.cpp │ ├── vraddll.cpp │ ├── vraddll.h │ └── vradstaticprops.cpp ├── Vvis │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── Vvis.vcxproj │ ├── Vvis.vcxproj.filters │ ├── Vvis.vcxproj.user │ └── vvis_launcher.cpp ├── Vvis_dll │ ├── Vvis_dll.vcxproj │ ├── Vvis_dll.vcxproj.user │ ├── WaterDist.cpp │ ├── flow.cpp │ ├── mpivis.cpp │ ├── mpivis.h │ ├── vis.h │ ├── vvis.cpp │ └── vvis_dll.vcxproj.filters ├── ZLib │ ├── ZLib.vcxproj │ ├── ZLib.vcxproj.filters │ ├── ZLib.vcxproj.user │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── deflate.c │ ├── gzio.c │ ├── infback.c │ ├── inffast.c │ ├── inflate.c │ ├── inftrees.c │ ├── ioapi.c │ ├── iowin32.c │ ├── mztools.c │ ├── trees.c │ ├── uncompr.c │ ├── unzip.c │ ├── zip.c │ └── zutil.c └── common │ ├── ISQLDBReplyTarget.h │ ├── MySqlDatabase.cpp │ ├── MySqlDatabase.h │ ├── bsplib.cpp │ ├── bsplib.h │ ├── cmdlib.cpp │ ├── cmdlib.h │ ├── consolewnd.cpp │ ├── consolewnd.h │ ├── filesystem_tools.cpp │ ├── filesystem_tools.h │ ├── map_shared.cpp │ ├── map_shared.h │ ├── movie.h │ ├── mpi_stats.cpp │ ├── mpi_stats.h │ ├── mstristrip.cpp │ ├── mstristrip.h │ ├── pacifier.cpp │ ├── pacifier.h │ ├── physdll.cpp │ ├── physdll.h │ ├── polylib.cpp │ ├── polylib.h │ ├── qfiles.h │ ├── scratchpad_helpers.cpp │ ├── scratchpad_helpers.h │ ├── scriplib.cpp │ ├── scriplib.h │ ├── threads.cpp │ ├── threads.h │ ├── tools_minidump.cpp │ ├── tools_minidump.h │ ├── utilmatlib.cpp │ ├── utilmatlib.h │ ├── vmpi_tools_shared.cpp │ ├── vmpi_tools_shared.h │ ├── wadlib.c │ ├── wadlib.h │ └── zlib │ ├── crc32.h │ ├── crypt.h │ ├── deflate.h │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.h │ ├── inftrees.h │ ├── ioapi.h │ ├── iowin32.h │ ├── mztools.h │ ├── trees.h │ ├── unzip.h │ ├── zconf.h │ ├── zconf.in.h │ ├── zip.h │ ├── zlib.h │ └── zutil.h ├── Vgui2 ├── Dme_controls │ ├── AssetBuilder.cpp │ ├── AttributeBasePickerPanel.cpp │ ├── AttributeBoolChoicePanel.cpp │ ├── AttributeColorPickerPanel.cpp │ ├── AttributeElementPanel.cpp │ ├── AttributeElementPickerPanel.cpp │ ├── AttributeFilePickerPanel.cpp │ ├── AttributeIntChoicePanel.cpp │ ├── AttributeInterpolatorChoicePanel.cpp │ ├── AttributeMDLPickerPanel.cpp │ ├── AttributeSequencePickerPanel.cpp │ ├── AttributeSoundPickerPanel.cpp │ ├── AttributeStringChoicePanel.cpp │ ├── AttributeTextEntry.cpp │ ├── AttributeTextPanel.cpp │ ├── AttributeWidgetFactory.cpp │ ├── BaseAnimSetAttributeSliderPanel.cpp │ ├── BaseAnimSetControlGroupPanel.cpp │ ├── BaseAnimSetPresetFaderPanel.cpp │ ├── BaseAnimationSetEditor.cpp │ ├── BaseAttributeChoicePanel.cpp │ ├── BaseAttributeDoubleChoicePanel.cpp │ ├── BaseAttributePanel.cpp │ ├── ChannelGraphPanel.cpp │ ├── DmeSourceDCCFilePanel.cpp │ ├── DmeSourceSkinPanel.cpp │ ├── Dme_controls.vcxproj │ ├── Dme_controls.vcxproj.user │ ├── ElementPropertiesTree.cpp │ ├── FactoryOverloads.cpp │ ├── FactoryOverloads.h │ ├── FileListManager.cpp │ ├── attributeassetpickerpanel.cpp │ ├── attributedetailtypepickerpanel.cpp │ ├── attributeshaderpickerpanel.cpp │ ├── attributeslider.cpp │ ├── attributesurfacepropertypickerpanel.cpp │ ├── dme_controls.vcxproj.filters │ ├── dmecombinationsystemeditorpanel.cpp │ ├── dmecontrols.cpp │ ├── dmedageditpanel.cpp │ ├── dmedagrenderpanel.cpp │ ├── dmelogeditpanel.cpp │ ├── dmepanel.cpp │ ├── dmepicker.cpp │ ├── dmepresetgroupeditorpanel.cpp │ ├── filtercombobox.cpp │ ├── manipulator.cpp │ ├── mdlpanel.cpp │ ├── mdlpicker.cpp │ ├── mdlsequencepicker.cpp │ ├── particlesystempanel.cpp │ ├── particlesystempropertiespanel.cpp │ ├── presetpicker.cpp │ ├── sequencepicker.cpp │ ├── simplepotterywheelpanel.cpp │ ├── soundpicker.cpp │ ├── soundrecordpanel.cpp │ └── vmtpanel.cpp ├── Matsys_controls │ ├── Matsys_controls.vcxproj │ ├── QCGenerator.cpp │ ├── assetpicker.cpp │ ├── baseassetpicker.cpp │ ├── colorpickerpanel.cpp │ ├── curveeditorpanel.cpp │ ├── gamefiletreeview.cpp │ ├── matsys_controls.vcxproj.filters │ ├── matsys_controls.vcxproj.user │ ├── matsyscontrols.cpp │ ├── picker.cpp │ ├── proceduraltexturepanel.cpp │ ├── tgapreviewpanel.cpp │ ├── vmtpicker.cpp │ ├── vmtpreviewpanel.cpp │ ├── vtfpicker.cpp │ └── vtfpreviewpanel.cpp ├── Vgui2 │ ├── Bitmap.cpp │ ├── Border.cpp │ ├── IMessageListener.h │ ├── InputWin32.cpp │ ├── LocalizedStringTable.cpp │ ├── MemoryBitmap.cpp │ ├── Memorybitmap.h │ ├── MessageListener.cpp │ ├── Scheme.cpp │ ├── Surface.cpp │ ├── System.cpp │ ├── VGUI_Border.h │ ├── VPanel.cpp │ ├── VPanel.h │ ├── VPanelWrapper.cpp │ ├── Vgui2.vcxproj │ ├── Vgui2.vcxproj.filters │ ├── Vgui2.vcxproj.user │ ├── bitmap.h │ ├── fileimage.cpp │ ├── fileimage.h │ ├── htmlwindow.cpp │ ├── vgui.cpp │ ├── vgui_internal.cpp │ ├── vgui_internal.h │ ├── vgui_key_translation.cpp │ ├── vgui_key_translation.h │ └── xbox │ │ └── xbox.def ├── Vgui_controls │ ├── AnalogBar.cpp │ ├── AnimatingImagePanel.cpp │ ├── AnimationController.cpp │ ├── BitmapImagePanel.cpp │ ├── BuildFactoryHelper.cpp │ ├── BuildGroup.cpp │ ├── BuildModeDialog.cpp │ ├── Button.cpp │ ├── CheckButton.cpp │ ├── CheckButtonList.cpp │ ├── CircularProgressBar.cpp │ ├── ComboBox.cpp │ ├── ControllerMap.cpp │ ├── DirectorySelectDialog.cpp │ ├── Divider.cpp │ ├── EditablePanel.cpp │ ├── ExpandButton.cpp │ ├── FileOpenDialog.cpp │ ├── FileOpenStateMachine.cpp │ ├── FocusNavGroup.cpp │ ├── Frame.cpp │ ├── GraphPanel.cpp │ ├── HTML.cpp │ ├── Image.cpp │ ├── ImageList.cpp │ ├── ImagePanel.cpp │ ├── InputDialog.cpp │ ├── KeyBindingHelpDialog.cpp │ ├── KeyBoardEditorDialog.cpp │ ├── KeyRepeat.cpp │ ├── Label.cpp │ ├── ListPanel.cpp │ ├── ListViewPanel.cpp │ ├── Menu.cpp │ ├── MenuBar.cpp │ ├── MenuButton.cpp │ ├── MenuItem.cpp │ ├── MessageBox.cpp │ ├── MessageDialog.cpp │ ├── Panel.cpp │ ├── PanelListPanel.cpp │ ├── PerforceFileExplorer.cpp │ ├── PerforceFileList.cpp │ ├── ProgressBar.cpp │ ├── ProgressBox.cpp │ ├── PropertyDialog.cpp │ ├── PropertyPage.cpp │ ├── PropertySheet.cpp │ ├── QueryBox.cpp │ ├── RadioButton.cpp │ ├── RichText.cpp │ ├── RotatingProgressBar.cpp │ ├── ScrollBar.cpp │ ├── ScrollBarSlider.cpp │ ├── ScrollableEditablePanel.cpp │ ├── SectionedListPanel.cpp │ ├── Slider.cpp │ ├── Splitter.cpp │ ├── TextEntry.cpp │ ├── TextImage.cpp │ ├── ToggleButton.cpp │ ├── ToolWindow.cpp │ ├── Tooltip.cpp │ ├── TreeView.cpp │ ├── TreeViewListControl.cpp │ ├── URLLabel.cpp │ ├── Vgui_controls.vcxproj │ ├── Vgui_controls.vcxproj.user │ ├── WizardPanel.cpp │ ├── WizardSubPanel.cpp │ ├── consoledialog.cpp │ ├── controls.cpp │ ├── perforcefilelistframe.cpp │ ├── savedocumentquery.cpp │ ├── subrectimage.cpp │ └── vgui_controls.vcxproj.filters └── Vgui_surfacelib │ ├── BitmapFont.cpp │ ├── FontAmalgam.cpp │ ├── FontEffects.cpp │ ├── FontEffects.h │ ├── FontManager.cpp │ ├── Vgui_surfacelib.vcxproj │ ├── Vgui_surfacelib.vcxproj.user │ ├── Win32Font.cpp │ ├── Win32Font_x360.cpp │ └── vgui_surfacelib.vcxproj.filters ├── Vguimatsurface ├── Clip2D.cpp ├── Clip2D.h ├── Cursor.cpp ├── Cursor.h ├── FontTextureCache.cpp ├── FontTextureCache.h ├── Input.cpp ├── Input.h ├── MatSystemSurface.cpp ├── MatSystemSurface.h ├── TextureDictionary.cpp ├── TextureDictionary.h ├── Vguimatsurface.vcxproj ├── Vguimatsurface.vcxproj.user ├── memorybitmap.cpp ├── memorybitmap.h ├── vguimatsurface.h └── vguimatsurface.vcxproj.filters ├── VphysicsBullet ├── DebugDrawer.cpp ├── DebugDrawer.h ├── IController.h ├── Physics.cpp ├── Physics.h ├── Physics_Collision.cpp ├── Physics_Collision.h ├── Physics_CollisionSet.cpp ├── Physics_CollisionSet.h ├── Physics_Constraint.cpp ├── Physics_Constraint.h ├── Physics_DragController.cpp ├── Physics_DragController.h ├── Physics_Environment.cpp ├── Physics_Environment.h ├── Physics_FluidController.cpp ├── Physics_FluidController.h ├── Physics_FrictionSnapshot.cpp ├── Physics_FrictionSnapshot.h ├── Physics_KeyParser.cpp ├── Physics_KeyParser.h ├── Physics_MotionController.cpp ├── Physics_MotionController.h ├── Physics_Object.cpp ├── Physics_Object.h ├── Physics_ObjectPairHash.cpp ├── Physics_ObjectPairHash.h ├── Physics_PlayerController.cpp ├── Physics_PlayerController.h ├── Physics_ShadowController.cpp ├── Physics_ShadowController.h ├── Physics_SoftBody.cpp ├── Physics_SoftBody.h ├── Physics_SurfaceProps.cpp ├── Physics_SurfaceProps.h ├── Physics_VehicleAirboat.cpp ├── Physics_VehicleAirboat.h ├── Physics_VehicleController.cpp ├── Physics_VehicleController.h ├── Physics_VehicleControllerCustom.cpp ├── Physics_VehicleControllerCustom.h ├── StdAfx.cpp ├── StdAfx.h ├── VphysicsBullet.vcxproj ├── VphysicsBullet.vcxproj.filters ├── VphysicsBullet.vcxproj.user ├── convert.h ├── miscmath.cpp ├── miscmath.h ├── phydata.h ├── resource.h ├── vphysics │ ├── constraintsV32.h │ ├── softbodyV32.h │ └── vehiclesV32.h └── vphysics_interfaceV32.h ├── VphysicsIVP ├── VphysicsIVP.vcxproj ├── VphysicsIVP.vcxproj.filters ├── VphysicsIVP.vcxproj.user ├── cbase.h ├── convert.cpp ├── convert.h ├── ledgewriter.cpp ├── ledgewriter.h ├── linear_solver.cpp ├── linear_solver.h ├── main.cpp ├── physics_airboat.cpp ├── physics_airboat.h ├── physics_collide.cpp ├── physics_constraint.cpp ├── physics_constraint.h ├── physics_controller_raycast_vehicle.cpp ├── physics_controller_raycast_vehicle.h ├── physics_environment.cpp ├── physics_environment.h ├── physics_fluid.cpp ├── physics_fluid.h ├── physics_friction.cpp ├── physics_friction.h ├── physics_material.cpp ├── physics_material.h ├── physics_motioncontroller.cpp ├── physics_motioncontroller.h ├── physics_object.cpp ├── physics_object.h ├── physics_shadow.cpp ├── physics_shadow.h ├── physics_spring.cpp ├── physics_spring.h ├── physics_trace.h ├── physics_vehicle.cpp ├── physics_vehicle.h ├── physics_virtualmesh.cpp ├── physics_virtualmesh.h ├── stdafx.cpp ├── trace.cpp ├── vcollide_parse.cpp ├── vcollide_parse_private.h ├── vphysics_internal.h ├── vphysics_saverestore.cpp └── vphysics_saverestore.h ├── Vstdlib ├── KeyValuesSystem.cpp ├── Vstdlib.vcxproj ├── Vstdlib.vcxproj.user ├── cvar.cpp ├── jobthread.cpp ├── processutils.cpp ├── random.cpp ├── vcover.cpp ├── vstdlib.vcxproj.filters └── xbox │ └── ___FirstModule.cpp ├── Vtf ├── Vtf.vcxproj ├── Vtf.vcxproj.user ├── convert_x360.cpp ├── cvtf.h ├── s3tc_decode.cpp ├── s3tc_decode.h ├── vtf.cpp ├── vtf.vcxproj.filters └── vtf_x360.cpp ├── common ├── ClientNetMessage.cpp ├── ClientNetMessage.h ├── ConfigManager.cpp ├── ConfigManager.h ├── FindSteamServers.h ├── GameUI │ ├── IGameConsole.h │ ├── IGameUI.h │ ├── ObjectList.cpp │ ├── ObjectList.h │ ├── Random.cpp │ └── Random.h ├── IAdminServer.h ├── IFileSystemOpenDialog.h ├── IManageServer.h ├── IObjectContainer.h ├── IRunGameEngine.h ├── IVGuiModuleLoader.h ├── IVguiModule.h ├── Miles │ └── MSS.H ├── ServerBrowser │ └── IServerBrowser.h ├── SourceAppInfo.cpp ├── SourceAppInfo.h ├── Steam.h ├── SteamAppStartup.cpp ├── SteamAppStartup.h ├── SteamBootStrapper.h ├── SteamCommon.h ├── SteamInterface.h ├── SteamUserIDValidation.h ├── SteamWriteMiniDump.h ├── Steamlib.h ├── Steamlib_null.h ├── ValidateNewValveCDKeyClient.h ├── ValveCDKeyGameAndTerritoryCodes.h ├── bink │ ├── bink.h │ └── radbase.h ├── bink_x360 │ ├── bink.h │ └── radbase.h ├── bugreporter │ └── bugreporter.h ├── compiledcaptionswap.cpp ├── cserserverprotocol_engine.h ├── cstringhash.h ├── dx_proxy │ └── dx_proxy.h ├── engine_launcher_api.h ├── hl2orange.spa ├── hl2orange.spa.h ├── hl2orange.xlast ├── hl2orange.xml ├── iappinformation.h ├── igameserverdata.h ├── info_key.cpp ├── info_key.h ├── ivprofexport.h ├── language.cpp ├── language.h ├── lauxlib.h ├── lua.h ├── luaconf.h ├── lualib.h ├── lzma │ └── lzma.h ├── maya │ ├── 7.0 │ │ └── maya │ │ │ ├── M3dView.h │ │ │ ├── MAngle.h │ │ │ ├── MAnimControl.h │ │ │ ├── MAnimCurveChange.h │ │ │ ├── MAnimCurveClipboard.h │ │ │ ├── MAnimCurveClipboardItem.h │ │ │ ├── MAnimCurveClipboardItemArray.h │ │ │ ├── MAnimMessage.h │ │ │ ├── MAnimUtil.h │ │ │ ├── MApiVersion.h │ │ │ ├── MArgDatabase.h │ │ │ ├── MArgList.h │ │ │ ├── MArgParser.h │ │ │ ├── MArrayDataBuilder.h │ │ │ ├── MArrayDataHandle.h │ │ │ ├── MAttributeIndex.h │ │ │ ├── MAttributeSpec.h │ │ │ ├── MAttributeSpecArray.h │ │ │ ├── MBoundingBox.h │ │ │ ├── MCallbackIdArray.h │ │ │ ├── MClothConstraint.h │ │ │ ├── MClothConstraintBridge.h │ │ │ ├── MClothConstraintCmd.h │ │ │ ├── MClothControl.h │ │ │ ├── MClothEdge.h │ │ │ ├── MClothForce.h │ │ │ ├── MClothMaterial.h │ │ │ ├── MClothParticle.h │ │ │ ├── MClothPolyhedron.h │ │ │ ├── MClothSolverRegister.h │ │ │ ├── MClothSystem.h │ │ │ ├── MClothTriangle.h │ │ │ ├── MClothTypes.h │ │ │ ├── MColor.h │ │ │ ├── MColorArray.h │ │ │ ├── MCommandMessage.h │ │ │ ├── MCommandResult.h │ │ │ ├── MCommonRenderSettingsData.h │ │ │ ├── MComputation.h │ │ │ ├── MConditionMessage.h │ │ │ ├── MCursor.h │ │ │ ├── MDGContext.h │ │ │ ├── MDGMessage.h │ │ │ ├── MDGModifier.h │ │ │ ├── MDagMessage.h │ │ │ ├── MDagModifier.h │ │ │ ├── MDagPath.h │ │ │ ├── MDagPathArray.h │ │ │ ├── MDataBlock.h │ │ │ ├── MDataHandle.h │ │ │ ├── MDeviceChannel.h │ │ │ ├── MDeviceState.h │ │ │ ├── MDistance.h │ │ │ ├── MDoubleArray.h │ │ │ ├── MDrawData.h │ │ │ ├── MDrawInfo.h │ │ │ ├── MDrawProcedureBase.h │ │ │ ├── MDrawRequest.h │ │ │ ├── MDrawRequestQueue.h │ │ │ ├── MDynSweptLine.h │ │ │ ├── MDynSweptTriangle.h │ │ │ ├── MEulerRotation.h │ │ │ ├── MEvent.h │ │ │ ├── MEventMessage.h │ │ │ ├── MFStream.h │ │ │ ├── MFeedbackLine.h │ │ │ ├── MFileIO.h │ │ │ ├── MFileObject.h │ │ │ ├── MFloatArray.h │ │ │ ├── MFloatMatrix.h │ │ │ ├── MFloatPoint.h │ │ │ ├── MFloatPointArray.h │ │ │ ├── MFloatVector.h │ │ │ ├── MFloatVectorArray.h │ │ │ ├── MFn.h │ │ │ ├── MFnAirField.h │ │ │ ├── MFnAmbientLight.h │ │ │ ├── MFnAnimCurve.h │ │ │ ├── MFnAnisotropyShader.h │ │ │ ├── MFnAreaLight.h │ │ │ ├── MFnArrayAttrsData.h │ │ │ ├── MFnAttribute.h │ │ │ ├── MFnBase.h │ │ │ ├── MFnBlendShapeDeformer.h │ │ │ ├── MFnBlinnShader.h │ │ │ ├── MFnCamera.h │ │ │ ├── MFnCharacter.h │ │ │ ├── MFnCircleSweepManip.h │ │ │ ├── MFnClip.h │ │ │ ├── MFnComponent.h │ │ │ ├── MFnComponentListData.h │ │ │ ├── MFnCompoundAttribute.h │ │ │ ├── MFnCurveSegmentManip.h │ │ │ ├── MFnDagNode.h │ │ │ ├── MFnData.h │ │ │ ├── MFnDependencyNode.h │ │ │ ├── MFnDirectionManip.h │ │ │ ├── MFnDirectionalLight.h │ │ │ ├── MFnDiscManip.h │ │ │ ├── MFnDistanceManip.h │ │ │ ├── MFnDoubleArrayData.h │ │ │ ├── MFnDoubleIndexedComponent.h │ │ │ ├── MFnDragField.h │ │ │ ├── MFnDynSweptGeometryData.h │ │ │ ├── MFnEnumAttribute.h │ │ │ ├── MFnExpression.h │ │ │ ├── MFnField.h │ │ │ ├── MFnFluid.h │ │ │ ├── MFnFreePointTriadManip.h │ │ │ ├── MFnGenericAttribute.h │ │ │ ├── MFnGeometryData.h │ │ │ ├── MFnGeometryFilter.h │ │ │ ├── MFnGravityField.h │ │ │ ├── MFnHikEffector.h │ │ │ ├── MFnIkEffector.h │ │ │ ├── MFnIkHandle.h │ │ │ ├── MFnIkJoint.h │ │ │ ├── MFnIkSolver.h │ │ │ ├── MFnIntArrayData.h │ │ │ ├── MFnKeyframeDelta.h │ │ │ ├── MFnKeyframeDeltaAddRemove.h │ │ │ ├── MFnKeyframeDeltaBlockAddRemove.h │ │ │ ├── MFnKeyframeDeltaBreakdown.h │ │ │ ├── MFnKeyframeDeltaInfType.h │ │ │ ├── MFnKeyframeDeltaMove.h │ │ │ ├── MFnKeyframeDeltaScale.h │ │ │ ├── MFnKeyframeDeltaTangent.h │ │ │ ├── MFnKeyframeDeltaWeighted.h │ │ │ ├── MFnLambertShader.h │ │ │ ├── MFnLattice.h │ │ │ ├── MFnLatticeData.h │ │ │ ├── MFnLatticeDeformer.h │ │ │ ├── MFnLayeredShader.h │ │ │ ├── MFnLight.h │ │ │ ├── MFnLightDataAttribute.h │ │ │ ├── MFnManip3D.h │ │ │ ├── MFnMatrixAttribute.h │ │ │ ├── MFnMatrixData.h │ │ │ ├── MFnMesh.h │ │ │ ├── MFnMeshData.h │ │ │ ├── MFnMessageAttribute.h │ │ │ ├── MFnMotionPath.h │ │ │ ├── MFnNewtonField.h │ │ │ ├── MFnNonAmbientLight.h │ │ │ ├── MFnNonExtendedLight.h │ │ │ ├── MFnNumericAttribute.h │ │ │ ├── MFnNumericData.h │ │ │ ├── MFnNurbsCurve.h │ │ │ ├── MFnNurbsCurveData.h │ │ │ ├── MFnNurbsSurface.h │ │ │ ├── MFnNurbsSurfaceData.h │ │ │ ├── MFnParticleSystem.h │ │ │ ├── MFnPartition.h │ │ │ ├── MFnPfxGeometry.h │ │ │ ├── MFnPhongEShader.h │ │ │ ├── MFnPhongShader.h │ │ │ ├── MFnPlugin.h │ │ │ ├── MFnPluginData.h │ │ │ ├── MFnPointArrayData.h │ │ │ ├── MFnPointLight.h │ │ │ ├── MFnPointOnCurveManip.h │ │ │ ├── MFnPointOnSurfaceManip.h │ │ │ ├── MFnRadialField.h │ │ │ ├── MFnReflectShader.h │ │ │ ├── MFnRenderLayer.h │ │ │ ├── MFnRotateManip.h │ │ │ ├── MFnScaleManip.h │ │ │ ├── MFnSet.h │ │ │ ├── MFnSingleIndexedComponent.h │ │ │ ├── MFnSkinCluster.h │ │ │ ├── MFnSphereData.h │ │ │ ├── MFnSpotLight.h │ │ │ ├── MFnStateManip.h │ │ │ ├── MFnStringArrayData.h │ │ │ ├── MFnStringData.h │ │ │ ├── MFnSubd.h │ │ │ ├── MFnSubdData.h │ │ │ ├── MFnSubdNames.h │ │ │ ├── MFnToggleManip.h │ │ │ ├── MFnTransform.h │ │ │ ├── MFnTripleIndexedComponent.h │ │ │ ├── MFnTurbulenceField.h │ │ │ ├── MFnTypedAttribute.h │ │ │ ├── MFnUInt64ArrayData.h │ │ │ ├── MFnUniformField.h │ │ │ ├── MFnUnitAttribute.h │ │ │ ├── MFnVectorArrayData.h │ │ │ ├── MFnVolumeAxisField.h │ │ │ ├── MFnVolumeLight.h │ │ │ ├── MFnVortexField.h │ │ │ ├── MFnWeightGeometryFilter.h │ │ │ ├── MFnWireDeformer.h │ │ │ ├── MGeometryData.h │ │ │ ├── MGlobal.h │ │ │ ├── MHWShaderSwatchGenerator.h │ │ │ ├── MHardwareRenderer.h │ │ │ ├── MIOStream.h │ │ │ ├── MIOStreamFwd.h │ │ │ ├── MIkHandleGroup.h │ │ │ ├── MIkSystem.h │ │ │ ├── MImage.h │ │ │ ├── MIntArray.h │ │ │ ├── MItCurveCV.h │ │ │ ├── MItDag.h │ │ │ ├── MItDependencyGraph.h │ │ │ ├── MItDependencyNodes.h │ │ │ ├── MItGeometry.h │ │ │ ├── MItInstancer.h │ │ │ ├── MItKeyframe.h │ │ │ ├── MItMeshEdge.h │ │ │ ├── MItMeshFaceVertex.h │ │ │ ├── MItMeshPolygon.h │ │ │ ├── MItMeshVertex.h │ │ │ ├── MItSelectionList.h │ │ │ ├── MItSubdEdge.h │ │ │ ├── MItSubdFace.h │ │ │ ├── MItSubdVertex.h │ │ │ ├── MItSurfaceCV.h │ │ │ ├── MIteratorType.h │ │ │ ├── MLibrary.h │ │ │ ├── MLightLinks.h │ │ │ ├── MLockMessage.h │ │ │ ├── MManipData.h │ │ │ ├── MMaterial.h │ │ │ ├── MMatrix.h │ │ │ ├── MMessage.h │ │ │ ├── MModelMessage.h │ │ │ ├── MNodeMessage.h │ │ │ ├── MObject.h │ │ │ ├── MObjectArray.h │ │ │ ├── MObjectHandle.h │ │ │ ├── MObjectSetMessage.h │ │ │ ├── MPlug.h │ │ │ ├── MPlugArray.h │ │ │ ├── MPoint.h │ │ │ ├── MPointArray.h │ │ │ ├── MPolyMessage.h │ │ │ ├── MProgressWindow.h │ │ │ ├── MPx3dModelView.h │ │ │ ├── MPxCommand.h │ │ │ ├── MPxComponentShape.h │ │ │ ├── MPxContext.h │ │ │ ├── MPxContextCommand.h │ │ │ ├── MPxData.h │ │ │ ├── MPxDeformerNode.h │ │ │ ├── MPxDragAndDropBehavior.h │ │ │ ├── MPxEmitterNode.h │ │ │ ├── MPxFieldNode.h │ │ │ ├── MPxFileTranslator.h │ │ │ ├── MPxFluidEmitterNode.h │ │ │ ├── MPxGeometryData.h │ │ │ ├── MPxGeometryIterator.h │ │ │ ├── MPxGlBuffer.h │ │ │ ├── MPxHwShaderNode.h │ │ │ ├── MPxIkSolver.h │ │ │ ├── MPxIkSolverNode.h │ │ │ ├── MPxLocatorNode.h │ │ │ ├── MPxManipContainer.h │ │ │ ├── MPxMidiInputDevice.h │ │ │ ├── MPxModelEditorCommand.h │ │ │ ├── MPxNode.h │ │ │ ├── MPxObjectSet.h │ │ │ ├── MPxPolyTrg.h │ │ │ ├── MPxPolyTweakUVCommand.h │ │ │ ├── MPxSelectionContext.h │ │ │ ├── MPxSpringNode.h │ │ │ ├── MPxSurfaceShape.h │ │ │ ├── MPxSurfaceShapeUI.h │ │ │ ├── MPxToolCommand.h │ │ │ ├── MPxTransform.h │ │ │ ├── MPxTransformationMatrix.h │ │ │ ├── MQuaternion.h │ │ │ ├── MRampAttribute.h │ │ │ ├── MRenderCallback.h │ │ │ ├── MRenderData.h │ │ │ ├── MRenderLine.h │ │ │ ├── MRenderLineArray.h │ │ │ ├── MRenderShadowData.h │ │ │ ├── MRenderUtil.h │ │ │ ├── MRenderView.h │ │ │ ├── MSceneMessage.h │ │ │ ├── MSelectInfo.h │ │ │ ├── MSelectionList.h │ │ │ ├── MSelectionMask.h │ │ │ ├── MSimple.h │ │ │ ├── MStatus.h │ │ │ ├── MString.h │ │ │ ├── MStringArray.h │ │ │ ├── MSwatchRenderBase.h │ │ │ ├── MSwatchRenderRegister.h │ │ │ ├── MSyntax.h │ │ │ ├── MTesselationParams.h │ │ │ ├── MTime.h │ │ │ ├── MTimeArray.h │ │ │ ├── MTimer.h │ │ │ ├── MTimerMessage.h │ │ │ ├── MToolsInfo.h │ │ │ ├── MTransformationMatrix.h │ │ │ ├── MTrimBoundaryArray.h │ │ │ ├── MTypeId.h │ │ │ ├── MTypes.h │ │ │ ├── MUiMessage.h │ │ │ ├── MUint64Array.h │ │ │ ├── MUintArray.h │ │ │ ├── MUserEventMessage.h │ │ │ ├── MVector.h │ │ │ ├── MVectorArray.h │ │ │ ├── flib.h │ │ │ ├── ilib.h │ │ │ ├── mocapserial.h │ │ │ ├── mocapserver.h │ │ │ └── mocaptcp.h │ └── 8.0 │ │ └── maya │ │ ├── M3dView.h │ │ ├── MAngle.h │ │ ├── MAnimControl.h │ │ ├── MAnimCurveChange.h │ │ ├── MAnimCurveClipboard.h │ │ ├── MAnimCurveClipboardItem.h │ │ ├── MAnimCurveClipboardItemArray.h │ │ ├── MAnimMessage.h │ │ ├── MAnimUtil.h │ │ ├── MApiVersion.h │ │ ├── MArgDatabase.h │ │ ├── MArgList.h │ │ ├── MArgParser.h │ │ ├── MArrayDataBuilder.h │ │ ├── MArrayDataHandle.h │ │ ├── MAttributeIndex.h │ │ ├── MAttributeSpec.h │ │ ├── MAttributeSpecArray.h │ │ ├── MBoundingBox.h │ │ ├── MCallbackIdArray.h │ │ ├── MClothConstraint.h │ │ ├── MClothConstraintBridge.h │ │ ├── MClothConstraintCmd.h │ │ ├── MClothControl.h │ │ ├── MClothEdge.h │ │ ├── MClothForce.h │ │ ├── MClothMaterial.h │ │ ├── MClothParticle.h │ │ ├── MClothPolyhedron.h │ │ ├── MClothSolverRegister.h │ │ ├── MClothSystem.h │ │ ├── MClothTriangle.h │ │ ├── MClothTypes.h │ │ ├── MColor.h │ │ ├── MColorArray.h │ │ ├── MCommandMessage.h │ │ ├── MCommandResult.h │ │ ├── MCommonRenderSettingsData.h │ │ ├── MCommonSystemUtils.h │ │ ├── MComputation.h │ │ ├── MConditionMessage.h │ │ ├── MCursor.h │ │ ├── MDGContext.h │ │ ├── MDGMessage.h │ │ ├── MDGModifier.h │ │ ├── MDagMessage.h │ │ ├── MDagModifier.h │ │ ├── MDagPath.h │ │ ├── MDagPathArray.h │ │ ├── MDataBlock.h │ │ ├── MDataHandle.h │ │ ├── MDeviceChannel.h │ │ ├── MDeviceState.h │ │ ├── MDistance.h │ │ ├── MDoubleArray.h │ │ ├── MDrawData.h │ │ ├── MDrawInfo.h │ │ ├── MDrawProcedureBase.h │ │ ├── MDrawRequest.h │ │ ├── MDrawRequestQueue.h │ │ ├── MDrawTraversal.h │ │ ├── MDynSweptLine.h │ │ ├── MDynSweptTriangle.h │ │ ├── MDynamicsUtil.h │ │ ├── MEulerRotation.h │ │ ├── MEvent.h │ │ ├── MEventMessage.h │ │ ├── MFStream.h │ │ ├── MFeedbackLine.h │ │ ├── MFileIO.h │ │ ├── MFileObject.h │ │ ├── MFloatArray.h │ │ ├── MFloatMatrix.h │ │ ├── MFloatPoint.h │ │ ├── MFloatPointArray.h │ │ ├── MFloatVector.h │ │ ├── MFloatVectorArray.h │ │ ├── MFn.h │ │ ├── MFnAirField.h │ │ ├── MFnAmbientLight.h │ │ ├── MFnAnimCurve.h │ │ ├── MFnAnisotropyShader.h │ │ ├── MFnAreaLight.h │ │ ├── MFnArrayAttrsData.h │ │ ├── MFnAttribute.h │ │ ├── MFnBase.h │ │ ├── MFnBlendShapeDeformer.h │ │ ├── MFnBlinnShader.h │ │ ├── MFnCamera.h │ │ ├── MFnCharacter.h │ │ ├── MFnCircleSweepManip.h │ │ ├── MFnClip.h │ │ ├── MFnComponent.h │ │ ├── MFnComponentListData.h │ │ ├── MFnCompoundAttribute.h │ │ ├── MFnCurveSegmentManip.h │ │ ├── MFnDagNode.h │ │ ├── MFnData.h │ │ ├── MFnDependencyNode.h │ │ ├── MFnDirectionManip.h │ │ ├── MFnDirectionalLight.h │ │ ├── MFnDiscManip.h │ │ ├── MFnDistanceManip.h │ │ ├── MFnDoubleArrayData.h │ │ ├── MFnDoubleIndexedComponent.h │ │ ├── MFnDragField.h │ │ ├── MFnDynSweptGeometryData.h │ │ ├── MFnEnumAttribute.h │ │ ├── MFnExpression.h │ │ ├── MFnField.h │ │ ├── MFnFluid.h │ │ ├── MFnFreePointTriadManip.h │ │ ├── MFnGenericAttribute.h │ │ ├── MFnGeometryData.h │ │ ├── MFnGeometryFilter.h │ │ ├── MFnGravityField.h │ │ ├── MFnHikEffector.h │ │ ├── MFnIkEffector.h │ │ ├── MFnIkHandle.h │ │ ├── MFnIkJoint.h │ │ ├── MFnIkSolver.h │ │ ├── MFnInstancer.h │ │ ├── MFnIntArrayData.h │ │ ├── MFnKeyframeDelta.h │ │ ├── MFnKeyframeDeltaAddRemove.h │ │ ├── MFnKeyframeDeltaBlockAddRemove.h │ │ ├── MFnKeyframeDeltaBreakdown.h │ │ ├── MFnKeyframeDeltaInfType.h │ │ ├── MFnKeyframeDeltaMove.h │ │ ├── MFnKeyframeDeltaScale.h │ │ ├── MFnKeyframeDeltaTangent.h │ │ ├── MFnKeyframeDeltaWeighted.h │ │ ├── MFnLambertShader.h │ │ ├── MFnLattice.h │ │ ├── MFnLatticeData.h │ │ ├── MFnLatticeDeformer.h │ │ ├── MFnLayeredShader.h │ │ ├── MFnLight.h │ │ ├── MFnLightDataAttribute.h │ │ ├── MFnManip3D.h │ │ ├── MFnMatrixAttribute.h │ │ ├── MFnMatrixData.h │ │ ├── MFnMesh.h │ │ ├── MFnMeshData.h │ │ ├── MFnMessageAttribute.h │ │ ├── MFnMotionPath.h │ │ ├── MFnNewtonField.h │ │ ├── MFnNonAmbientLight.h │ │ ├── MFnNonExtendedLight.h │ │ ├── MFnNumericAttribute.h │ │ ├── MFnNumericData.h │ │ ├── MFnNurbsCurve.h │ │ ├── MFnNurbsCurveData.h │ │ ├── MFnNurbsSurface.h │ │ ├── MFnNurbsSurfaceData.h │ │ ├── MFnParticleSystem.h │ │ ├── MFnPartition.h │ │ ├── MFnPfxGeometry.h │ │ ├── MFnPhongEShader.h │ │ ├── MFnPhongShader.h │ │ ├── MFnPlugin.h │ │ ├── MFnPluginData.h │ │ ├── MFnPointArrayData.h │ │ ├── MFnPointLight.h │ │ ├── MFnPointOnCurveManip.h │ │ ├── MFnPointOnSurfaceManip.h │ │ ├── MFnRadialField.h │ │ ├── MFnReflectShader.h │ │ ├── MFnRenderLayer.h │ │ ├── MFnRotateManip.h │ │ ├── MFnScaleManip.h │ │ ├── MFnSet.h │ │ ├── MFnSingleIndexedComponent.h │ │ ├── MFnSkinCluster.h │ │ ├── MFnSphereData.h │ │ ├── MFnSpotLight.h │ │ ├── MFnStateManip.h │ │ ├── MFnStringArrayData.h │ │ ├── MFnStringData.h │ │ ├── MFnSubd.h │ │ ├── MFnSubdData.h │ │ ├── MFnSubdNames.h │ │ ├── MFnToggleManip.h │ │ ├── MFnTransform.h │ │ ├── MFnTripleIndexedComponent.h │ │ ├── MFnTurbulenceField.h │ │ ├── MFnTypedAttribute.h │ │ ├── MFnUInt64ArrayData.h │ │ ├── MFnUniformField.h │ │ ├── MFnUnitAttribute.h │ │ ├── MFnVectorArrayData.h │ │ ├── MFnVolumeAxisField.h │ │ ├── MFnVolumeLight.h │ │ ├── MFnVortexField.h │ │ ├── MFnWeightGeometryFilter.h │ │ ├── MFnWireDeformer.h │ │ ├── MGeometry.h │ │ ├── MGeometryData.h │ │ ├── MGeometryManager.h │ │ ├── MGeometryPrimitive.h │ │ ├── MGeometryRequirements.h │ │ ├── MGlobal.h │ │ ├── MHWShaderSwatchGenerator.h │ │ ├── MHardwareRenderer.h │ │ ├── MHwTextureManager.h │ │ ├── MIOStream.h │ │ ├── MIOStreamFwd.h │ │ ├── MIffFile.h │ │ ├── MIffTag.h │ │ ├── MIkHandleGroup.h │ │ ├── MIkSystem.h │ │ ├── MImage.h │ │ ├── MImageFileInfo.h │ │ ├── MIntArray.h │ │ ├── MItCurveCV.h │ │ ├── MItDag.h │ │ ├── MItDependencyGraph.h │ │ ├── MItDependencyNodes.h │ │ ├── MItGeometry.h │ │ ├── MItInstancer.h │ │ ├── MItKeyframe.h │ │ ├── MItMeshEdge.h │ │ ├── MItMeshFaceVertex.h │ │ ├── MItMeshPolygon.h │ │ ├── MItMeshVertex.h │ │ ├── MItSelectionList.h │ │ ├── MItSubdEdge.h │ │ ├── MItSubdFace.h │ │ ├── MItSubdVertex.h │ │ ├── MItSurfaceCV.h │ │ ├── MIteratorType.h │ │ ├── MLibrary.h │ │ ├── MLightLinks.h │ │ ├── MLockMessage.h │ │ ├── MManipData.h │ │ ├── MMaterial.h │ │ ├── MMatrix.h │ │ ├── MMatrixArray.h │ │ ├── MMessage.h │ │ ├── MModelMessage.h │ │ ├── MNodeMessage.h │ │ ├── MObject.h │ │ ├── MObjectArray.h │ │ ├── MObjectHandle.h │ │ ├── MObjectSetMessage.h │ │ ├── MPlug.h │ │ ├── MPlugArray.h │ │ ├── MPoint.h │ │ ├── MPointArray.h │ │ ├── MPolyMessage.h │ │ ├── MProgressWindow.h │ │ ├── MPx3dModelView.h │ │ ├── MPxBakeEngine.h │ │ ├── MPxCommand.h │ │ ├── MPxComponentShape.h │ │ ├── MPxContext.h │ │ ├── MPxContextCommand.h │ │ ├── MPxControlCommand.h │ │ ├── MPxData.h │ │ ├── MPxDeformerNode.h │ │ ├── MPxDragAndDropBehavior.h │ │ ├── MPxEmitterNode.h │ │ ├── MPxFieldNode.h │ │ ├── MPxFileTranslator.h │ │ ├── MPxFluidEmitterNode.h │ │ ├── MPxGeometryData.h │ │ ├── MPxGeometryIterator.h │ │ ├── MPxGlBuffer.h │ │ ├── MPxHwShaderNode.h │ │ ├── MPxIkSolver.h │ │ ├── MPxIkSolverNode.h │ │ ├── MPxImageFile.h │ │ ├── MPxImagePlane.h │ │ ├── MPxLocatorNode.h │ │ ├── MPxManipContainer.h │ │ ├── MPxMaterialInformation.h │ │ ├── MPxMayaAsciiFilter.h │ │ ├── MPxMidiInputDevice.h │ │ ├── MPxModelEditorCommand.h │ │ ├── MPxNode.h │ │ ├── MPxObjectSet.h │ │ ├── MPxParticleAttributeMapperNode.h │ │ ├── MPxPolyTrg.h │ │ ├── MPxPolyTweakUVCommand.h │ │ ├── MPxSelectionContext.h │ │ ├── MPxSpringNode.h │ │ ├── MPxSurfaceShape.h │ │ ├── MPxSurfaceShapeUI.h │ │ ├── MPxToolCommand.h │ │ ├── MPxTransform.h │ │ ├── MPxTransformationMatrix.h │ │ ├── MPxUIControl.h │ │ ├── MPxUITableControl.h │ │ ├── MQuaternion.h │ │ ├── MRampAttribute.h │ │ ├── MRenderCallback.h │ │ ├── MRenderData.h │ │ ├── MRenderLine.h │ │ ├── MRenderLineArray.h │ │ ├── MRenderShadowData.h │ │ ├── MRenderTarget.h │ │ ├── MRenderUtil.h │ │ ├── MRenderView.h │ │ ├── MRenderingInfo.h │ │ ├── MSceneMessage.h │ │ ├── MSelectInfo.h │ │ ├── MSelectionList.h │ │ ├── MSelectionMask.h │ │ ├── MSimple.h │ │ ├── MStatus.h │ │ ├── MString.h │ │ ├── MStringArray.h │ │ ├── MSwatchRenderBase.h │ │ ├── MSwatchRenderRegister.h │ │ ├── MSyntax.h │ │ ├── MTesselationParams.h │ │ ├── MTime.h │ │ ├── MTimeArray.h │ │ ├── MTimer.h │ │ ├── MTimerMessage.h │ │ ├── MToolsInfo.h │ │ ├── MTransformationMatrix.h │ │ ├── MTrimBoundaryArray.h │ │ ├── MTypeId.h │ │ ├── MTypes.h │ │ ├── MUiMessage.h │ │ ├── MUint64Array.h │ │ ├── MUintArray.h │ │ ├── MUserEventMessage.h │ │ ├── MVector.h │ │ ├── MVectorArray.h │ │ ├── MViewportRenderer.h │ │ ├── flib.h │ │ ├── ilib.h │ │ ├── mocapserial.h │ │ ├── mocapserver.h │ │ └── mocaptcp.h ├── netapi.cpp ├── netapi.h ├── netmessages.cpp ├── netmessages.h ├── networksystem │ ├── inetworkmessage.h │ └── inetworksystem.h ├── p4api │ ├── clientapi.h │ ├── clientmerge.h │ ├── clientuser.h │ ├── datetime.h │ ├── debug.h │ ├── diff.h │ ├── echoctl.h │ ├── enviro.h │ ├── error.h │ ├── errorlog.h │ ├── errornum.h │ ├── filesys.h │ ├── handler.h │ ├── hostenv.h │ ├── i18napi.h │ ├── ident.h │ ├── keepalive.h │ ├── msgclient.h │ ├── netconnect.h │ ├── ntservice.h │ ├── options.h │ ├── p4tags.h │ ├── pathsys.h │ ├── runcmd.h │ ├── signaler.h │ ├── spec.h │ ├── stdhdrs.h │ ├── strbuf.h │ ├── strdict.h │ ├── strops.h │ ├── strtable.h │ ├── threading.h │ └── vararray.h ├── packfile.cpp ├── packfile.h ├── proto_oob.h ├── proto_version.h ├── protocol.h ├── qlimits.h ├── randoverride.cpp ├── staticlink │ ├── module.h │ └── system.h ├── steam2.h ├── steamclientpublic.h ├── steamid.cpp ├── steamtypes.h ├── studiobyteswap.cpp ├── studiobyteswap.h ├── userid.h ├── vgui │ ├── HtmlWindow.h │ ├── vgui_basebudgetpanel.cpp │ ├── vgui_basebudgetpanel.h │ ├── vgui_budgetbargraphpanel.cpp │ ├── vgui_budgetbargraphpanel.h │ ├── vgui_budgethistorypanel.cpp │ ├── vgui_budgethistorypanel.h │ ├── vgui_budgetpanelshared.cpp │ └── vgui_budgetpanelshared.h ├── vgui_surfacelib │ ├── BitmapFont.h │ ├── FontAmalgam.h │ ├── FontManager.h │ └── Win32Font.h ├── vtuneapi.h ├── xbox │ ├── xbox_console.h │ ├── xbox_core.h │ ├── xbox_launch.h │ ├── xbox_vxconsole.h │ ├── xbox_win32stubs.h │ └── xboxstubs.h └── xsi │ └── 5.1 │ ├── FactoryDisplayPublicData.h │ ├── SIBCArray.h │ ├── XGS_interface.h │ ├── XSI_rtshaders.h │ ├── ftk │ ├── ASCIIFilter.h │ ├── Action.h │ ├── ActionClip.h │ ├── ActionFCurve.h │ ├── Ambience.h │ ├── Angle.h │ ├── AnimatableType.h │ ├── AnimatableVector.h │ ├── BINFilter.h │ ├── BaseFCurve.h │ ├── BaseShape.h │ ├── Basic_Stub.h │ ├── BufferFilter.h │ ├── CXSIFilter.h │ ├── Camera.h │ ├── Cluster.h │ ├── ColorRGB.h │ ├── ColorRGBA.h │ ├── ConnectionPoint.h │ ├── ConstrainableType.h │ ├── Constraint.h │ ├── CoordinateSystem.h │ ├── CurveList.h │ ├── CustomPSet.h │ ├── CustomParamInfo.h │ ├── DirectionalLight.h │ ├── EnumDictionary.h │ ├── Envelope.h │ ├── EnvelopeList.h │ ├── EulerAngles.h │ ├── Extrapolation.h │ ├── FCurve.h │ ├── FXNode.h │ ├── FXNodeConnection.h │ ├── FXTree.h │ ├── FileInfo.h │ ├── Fog.h │ ├── Geometry.h │ ├── GlobalMaterial.h │ ├── Helpers.h │ ├── IK.h │ ├── IKEffector.h │ ├── IKJoint.h │ ├── IKRoot.h │ ├── ImageClip.h │ ├── InfiniteLight.h │ ├── Instance.h │ ├── LegacyFilter.h │ ├── Light.h │ ├── LightInfo.h │ ├── Logger.h │ ├── Manipulators.h │ ├── Material.h │ ├── MaterialLibrary.h │ ├── Matrix4x4.h │ ├── Mesh.h │ ├── Mixer.h │ ├── Model.h │ ├── Null.h │ ├── NurbsCurve.h │ ├── NurbsSurface.h │ ├── PatchSurface.h │ ├── PointLight.h │ ├── PolygonList.h │ ├── Primitive.h │ ├── QuatTypes.h │ ├── RTP_2D2JIK.h │ ├── RTP_Ambience.h │ ├── RTP_BasicProcessesTypes.h │ ├── RTP_Camera.h │ ├── RTP_Cluster.h │ ├── RTP_Constraint.h │ ├── RTP_Envelope.h │ ├── RTP_FCurve.h │ ├── RTP_Fog.h │ ├── RTP_Instance.h │ ├── RTP_Light.h │ ├── RTP_Material.h │ ├── RTP_Mesh.h │ ├── RTP_Model.h │ ├── RTP_Scene.h │ ├── RTP_Shader.h │ ├── RTP_ShapeAnimation.h │ ├── RTP_Transform.h │ ├── RTP_Visibility.h │ ├── RTP_XSIImage.h │ ├── SIBCArray.h │ ├── SIBCColor.h │ ├── SIBCDebug.h │ ├── SIBCFileRam.h │ ├── SIBCMath.h │ ├── SIBCMathLib.h │ ├── SIBCMatrix.h │ ├── SIBCMatrix33d.h │ ├── SIBCMatrix44d.h │ ├── SIBCMatrixMNd.h │ ├── SIBCNetworkLayer.h │ ├── SIBCNode.h │ ├── SIBCPixMap.h │ ├── SIBCQuaternion.h │ ├── SIBCQuaterniond.h │ ├── SIBCRotMatd.h │ ├── SIBCRotationd.h │ ├── SIBCSearchPath.h │ ├── SIBCString.h │ ├── SIBCTransfod.h │ ├── SIBCUtil.h │ ├── SIBCVector.h │ ├── SIBCVector2Dd.h │ ├── SIBCVector3Dd.h │ ├── SIBCVector4Dd.h │ ├── SIBCVectorwd.h │ ├── SIBCXfoMatd.h │ ├── SIBaseApplication.h │ ├── SIDirectXDriver.h │ ├── SIDisplayDriver.h │ ├── SIILBMPFileDriver.h │ ├── SIILGIFFileDriver.h │ ├── SIILJPGFileDriver.h │ ├── SIILPICFileDriver.h │ ├── SIILPPMFileDriver.h │ ├── SIILTGAFileDriver.h │ ├── SIILUtil.h │ ├── SINetworkMessages.h │ ├── SIOpenGLDriver.h │ ├── SIRTNode.h │ ├── SIRTProcess.h │ ├── SIRuntimeEngine.h │ ├── SITime.h │ ├── SIViewerApplication.h │ ├── SIViewerApplicationWin32.h │ ├── SIViewerWindow.h │ ├── SLTypes.h │ ├── SL_Array.h │ ├── SL_Bool.h │ ├── SL_Byte.h │ ├── SL_Double.h │ ├── SL_Enum.h │ ├── SL_Float.h │ ├── SL_Int.h │ ├── SL_Long.h │ ├── SL_Short.h │ ├── SL_String.h │ ├── SL_UByte.h │ ├── SL_ULong.h │ ├── SL_Variant.h │ ├── Scene.h │ ├── SceneInfo.h │ ├── SemanticLayer.h │ ├── ShaderConnectionPoint.h │ ├── ShaderInstanceData.h │ ├── Shape.h │ ├── ShapeAnimation.h │ ├── Shape_35.h │ ├── SpotLight.h │ ├── StaticValue.h │ ├── StormVersion.rc │ ├── StrMap.h │ ├── SurfaceMesh.h │ ├── Template.h │ ├── Texture2D.h │ ├── TimeControl.h │ ├── Track.h │ ├── Transform.h │ ├── TriangleList.h │ ├── TriangleStrip.h │ ├── TriangleStripList.h │ ├── UVCoordArray.h │ ├── VariantParameter.h │ ├── Vector3D.h │ ├── Visibility.h │ ├── XSIClusterInfo.h │ ├── XSIGeometry.h │ ├── XSIImage.h │ ├── XSIImageData.h │ ├── XSIImageFX.h │ ├── XSIImageLibrary.h │ ├── XSILimit.h │ ├── XSIMaterial.h │ ├── XSIMaterialInfo.h │ ├── XSIMesh.h │ ├── XSINurbsProjectionList.h │ ├── XSINurbsTrimList.h │ ├── XSIParser.h │ ├── XSIPolygonList.h │ ├── XSIShader.h │ ├── XSIShape.h │ ├── XSIShapeAnimation.h │ ├── XSISubComponentAttributeList.h │ ├── XSISubComponentList.h │ ├── XSITransform.h │ ├── XSITriangleList.h │ ├── XSITriangleStripList.h │ ├── XSIUserData.h │ ├── XSIUserDataList.h │ ├── XSIVertexList.h │ ├── XSIViewerDisplayManager.h │ ├── XSIViewerOptions.h │ ├── XSIViewerRenderingTarget.h │ ├── XSIViewerRenderingTargetManager.h │ ├── XSIViewerRenderingTargetWin32.h │ ├── cderror.h │ ├── cdjpeg.h │ ├── dotXSI.h │ ├── dotXSI.idl │ ├── dotXSIDefines.h │ ├── dotXSINativeTemplateReadWrite3_5.h │ ├── dotXSINativeTemplateReadWrite3_6.h │ ├── dotXSIParam.h │ ├── dotXSIParams.h │ ├── dotXSITemplate.h │ ├── dotXSITemplates3_0.h │ ├── dotXSITemplates3_5.h │ ├── dotXSITemplates3_6.h │ ├── ftkstl.h │ ├── jchuff.h │ ├── jconfig.h │ ├── jdct.h │ ├── jdhuff.h │ ├── jerror.h │ ├── jinclude.h │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jversion.h │ ├── transupp.h │ ├── wildcards.h │ ├── zconf.h │ └── zlib.h │ ├── geoshader.h │ ├── shader.h │ ├── si3dobjectmodel.h │ ├── si3dobjectmodel_id.c │ ├── sicppsdk.h │ ├── sicppsdk_win32.h │ ├── simath.h │ ├── simath_id.c │ ├── siobjectmodel.h │ ├── siobjectmodel_id.c │ ├── strings.h │ ├── ufoEditor.h │ ├── ufoError.h │ ├── ufoFunctions.h │ ├── ufoProcess.h │ ├── ufoRaster.h │ ├── ufoTypes.h │ ├── ufoUnixCompat.h │ ├── xsi_actionsource.h │ ├── xsi_animationsourceitem.h │ ├── xsi_animsource.h │ ├── xsi_application.h │ ├── xsi_argument.h │ ├── xsi_argumenthandler.h │ ├── xsi_arrayparameter.h │ ├── xsi_base.h │ ├── xsi_bitarray.h │ ├── xsi_boolarray.h │ ├── xsi_camera.h │ ├── xsi_camerarig.h │ ├── xsi_chainbone.h │ ├── xsi_chaineffector.h │ ├── xsi_chainelement.h │ ├── xsi_chainroot.h │ ├── xsi_clip.h │ ├── xsi_clipcontainer.h │ ├── xsi_clipeffect.h │ ├── xsi_clipeffectitem.h │ ├── xsi_cliprelation.h │ ├── xsi_cluster.h │ ├── xsi_clusterproperty.h │ ├── xsi_clusterpropertybuilder.h │ ├── xsi_color.h │ ├── xsi_comapihandler.h │ ├── xsi_command.h │ ├── xsi_consthistory.h │ ├── xsi_constraint.h │ ├── xsi_context.h │ ├── xsi_controlpoint.h │ ├── xsi_customoperator.h │ ├── xsi_customproperty.h │ ├── xsi_decl.h │ ├── xsi_desktop.h │ ├── xsi_dictionary.h │ ├── xsi_directed.h │ ├── xsi_doublearray.h │ ├── xsi_edge.h │ ├── xsi_envelope.h │ ├── xsi_envelopeweight.h │ ├── xsi_eventinfo.h │ ├── xsi_expression.h │ ├── xsi_facet.h │ ├── xsi_factory.h │ ├── xsi_fcurve.h │ ├── xsi_fcurvekey.h │ ├── xsi_filereference.h │ ├── xsi_filter.h │ ├── xsi_floatarray.h │ ├── xsi_geometry.h │ ├── xsi_geometryaccessor.h │ ├── xsi_graphicsequencer.h │ ├── xsi_graphicsequencercontext.h │ ├── xsi_griddata.h │ ├── xsi_gridwidget.h │ ├── xsi_group.h │ ├── xsi_hairprimitive.h │ ├── xsi_image.h │ ├── xsi_imageclip.h │ ├── xsi_imageclip2.h │ ├── xsi_inputport.h │ ├── xsi_joint.h │ ├── xsi_kinematics.h │ ├── xsi_kinematicstate.h │ ├── xsi_knot.h │ ├── xsi_layer.h │ ├── xsi_layout.h │ ├── xsi_library.h │ ├── xsi_light.h │ ├── xsi_lightrig.h │ ├── xsi_longarray.h │ ├── xsi_mappeditem.h │ ├── xsi_material.h │ ├── xsi_materiallibrary.h │ ├── xsi_math.h │ ├── xsi_matrix3.h │ ├── xsi_matrix4.h │ ├── xsi_menu.h │ ├── xsi_menuitem.h │ ├── xsi_meshbuilder.h │ ├── xsi_miuserdata_defs.h │ ├── xsi_mixer.h │ ├── xsi_model.h │ ├── xsi_null.h │ ├── xsi_nurbscurve.h │ ├── xsi_nurbscurvelist.h │ ├── xsi_nurbsdata.h │ ├── xsi_nurbssample.h │ ├── xsi_nurbssurface.h │ ├── xsi_nurbssurfacemesh.h │ ├── xsi_ogllight.h │ ├── xsi_oglmaterial.h │ ├── xsi_ogltexture.h │ ├── xsi_operator.h │ ├── xsi_operatorcontext.h │ ├── xsi_outputport.h │ ├── xsi_parameter.h │ ├── xsi_particle.h │ ├── xsi_particleattribute.h │ ├── xsi_particlecloud.h │ ├── xsi_particlecloudprimitive.h │ ├── xsi_particletype.h │ ├── xsi_pass.h │ ├── xsi_plugin.h │ ├── xsi_pluginitem.h │ ├── xsi_pluginregistrar.h │ ├── xsi_point.h │ ├── xsi_pointlocatordata.h │ ├── xsi_polygonface.h │ ├── xsi_polygonmesh.h │ ├── xsi_polygonnode.h │ ├── xsi_port.h │ ├── xsi_portgroup.h │ ├── xsi_ppgeventcontext.h │ ├── xsi_ppgitem.h │ ├── xsi_ppglayout.h │ ├── xsi_preferences.h │ ├── xsi_primitive.h │ ├── xsi_progressbar.h │ ├── xsi_project.h │ ├── xsi_projectitem.h │ ├── xsi_property.h │ ├── xsi_proxyparameter.h │ ├── xsi_quaternion.h │ ├── xsi_ref.h │ ├── xsi_renderhairaccessor.h │ ├── xsi_rig.h │ ├── xsi_rotation.h │ ├── xsi_sample.h │ ├── xsi_scene.h │ ├── xsi_sceneitem.h │ ├── xsi_segment.h │ ├── xsi_selection.h │ ├── xsi_shader.h │ ├── xsi_shapeclip.h │ ├── xsi_shapekey.h │ ├── xsi_simulationenvironment.h │ ├── xsi_siobject.h │ ├── xsi_source.h │ ├── xsi_statickinematicstate.h │ ├── xsi_staticsource.h │ ├── xsi_status.h │ ├── xsi_string.h │ ├── xsi_subcomponent.h │ ├── xsi_texture.h │ ├── xsi_texturelayer.h │ ├── xsi_texturelayerport.h │ ├── xsi_time.h │ ├── xsi_timecontrol.h │ ├── xsi_timerevent.h │ ├── xsi_track.h │ ├── xsi_transformation.h │ ├── xsi_transition.h │ ├── xsi_triangle.h │ ├── xsi_trianglevertex.h │ ├── xsi_uiobject.h │ ├── xsi_uipersistable.h │ ├── xsi_uitoolkit.h │ ├── xsi_updatecontext.h │ ├── xsi_userdataarray.h │ ├── xsi_userdatablob.h │ ├── xsi_userdatamap.h │ ├── xsi_utils.h │ ├── xsi_uv.h │ ├── xsi_value.h │ ├── xsi_vector3.h │ ├── xsi_vector4.h │ ├── xsi_vertex.h │ ├── xsi_vertexcolor.h │ ├── xsi_view.h │ ├── xsi_viewcontext.h │ ├── xsi_viewnotification.h │ ├── xsi_x3dobject.h │ ├── xsisdk.c │ └── xsisdk.h ├── game ├── client │ ├── AnimateSpecificTextureProxy.cpp │ ├── C_Env_Projected_Texture.h │ ├── C_MaterialModifyControl.cpp │ ├── C_WaterLODControl.cpp │ ├── EffectsClient.cpp │ ├── IsNPCProxy.cpp │ ├── MonitorMaterialProxy.cpp │ ├── ProxyHealth.cpp │ ├── ScreenSpaceEffects.cpp │ ├── ScreenSpaceEffects.h │ ├── TeamBitmapImage.cpp │ ├── TeamBitmapImage.h │ ├── UpgradeLog.htm │ ├── ViewConeImage.cpp │ ├── ViewConeImage.h │ ├── WaterLODMaterialProxy.cpp │ ├── WorldDimsProxy.cpp │ ├── achievement_notification_panel.cpp │ ├── achievement_notification_panel.h │ ├── alphamaterialproxy.cpp │ ├── animatedentitytextureproxy.cpp │ ├── animatedoffsettextureproxy.cpp │ ├── animatedtextureproxy.cpp │ ├── animationlayer.h │ ├── baseanimatedtextureproxy.cpp │ ├── baseanimatedtextureproxy.h │ ├── baseclientrendertargets.cpp │ ├── baseclientrendertargets.h │ ├── basepresence.cpp │ ├── basepresence.h │ ├── basepresence_xbox.cpp │ ├── beamdraw.cpp │ ├── beamdraw.h │ ├── bone_merge_cache.cpp │ ├── bone_merge_cache.h │ ├── bonetoworldarray.h │ ├── c_ai_basehumanoid.cpp │ ├── c_ai_basenpc.cpp │ ├── c_ai_basenpc.h │ ├── c_baseanimating.cpp │ ├── c_baseanimating.h │ ├── c_baseanimatingoverlay.cpp │ ├── c_baseanimatingoverlay.h │ ├── c_basecombatcharacter.cpp │ ├── c_basecombatcharacter.h │ ├── c_basecombatweapon.cpp │ ├── c_basecombatweapon.h │ ├── c_basedoor.cpp │ ├── c_basedoor.h │ ├── c_baseentity.cpp │ ├── c_baseentity.h │ ├── c_baseflex.cpp │ ├── c_baseflex.h │ ├── c_baseplayer.cpp │ ├── c_baseplayer.h │ ├── c_basetempentity.cpp │ ├── c_basetempentity.h │ ├── c_baseviewmodel.cpp │ ├── c_baseviewmodel.h │ ├── c_breakableprop.cpp │ ├── c_breakableprop.h │ ├── c_colorcorrection.cpp │ ├── c_colorcorrectionvolume.cpp │ ├── c_dynamiclight.cpp │ ├── c_effects.cpp │ ├── c_effects.h │ ├── c_entitydissolve.cpp │ ├── c_entitydissolve.h │ ├── c_entityparticletrail.cpp │ ├── c_env_fog_controller.cpp │ ├── c_env_fog_controller.h │ ├── c_env_particlescript.cpp │ ├── c_env_projectedtexture.cpp │ ├── c_env_screenoverlay.cpp │ ├── c_env_tonemap_controller.cpp │ ├── c_fire_smoke.cpp │ ├── c_fire_smoke.h │ ├── c_fish.cpp │ ├── c_forcefeedback.cpp │ ├── c_func_areaportalwindow.cpp │ ├── c_func_breakablesurf.cpp │ ├── c_func_conveyor.cpp │ ├── c_func_dust.cpp │ ├── c_func_dust.h │ ├── c_func_lod.cpp │ ├── c_func_occluder.cpp │ ├── c_func_reflective_glass.cpp │ ├── c_func_reflective_glass.h │ ├── c_func_rotating.cpp │ ├── c_func_smokevolume.cpp │ ├── c_func_tracktrain.cpp │ ├── c_gib.cpp │ ├── c_gib.h │ ├── c_hairball.cpp │ ├── c_impact_effects.cpp │ ├── c_impact_effects.h │ ├── c_info_overlay_accessor.cpp │ ├── c_lightglow.cpp │ ├── c_movie_explosion.cpp │ ├── c_particle_fire.cpp │ ├── c_particle_smokegrenade.cpp │ ├── c_particle_system.cpp │ ├── c_physbox.cpp │ ├── c_physbox.h │ ├── c_physicsprop.cpp │ ├── c_physicsprop.h │ ├── c_physmagnet.cpp │ ├── c_pixel_visibility.cpp │ ├── c_pixel_visibility.h │ ├── c_plasma.cpp │ ├── c_playerlocaldata.h │ ├── c_playerresource.cpp │ ├── c_playerresource.h │ ├── c_point_camera.cpp │ ├── c_point_camera.h │ ├── c_point_commentary_node.cpp │ ├── c_prop_vehicle.cpp │ ├── c_prop_vehicle.h │ ├── c_props.cpp │ ├── c_props.h │ ├── c_ragdoll_manager.cpp │ ├── c_recipientfilter.cpp │ ├── c_recipientfilter.h │ ├── c_rope.cpp │ ├── c_rope.h │ ├── c_rumble.cpp │ ├── c_rumble.h │ ├── c_sceneentity.cpp │ ├── c_sceneentity.h │ ├── c_shadowcontrol.cpp │ ├── c_slideshow_display.cpp │ ├── c_slideshow_display.h │ ├── c_smoke_trail.cpp │ ├── c_smoke_trail.h │ ├── c_smokestack.cpp │ ├── c_soundscape.cpp │ ├── c_soundscape.h │ ├── c_spotlight_end.cpp │ ├── c_sprite.cpp │ ├── c_sprite.h │ ├── c_sprite_perfmonitor.cpp │ ├── c_steamjet.cpp │ ├── c_stickybolt.cpp │ ├── c_sun.cpp │ ├── c_sun.h │ ├── c_te.cpp │ ├── c_te_armorricochet.cpp │ ├── c_te_basebeam.cpp │ ├── c_te_basebeam.h │ ├── c_te_beamentpoint.cpp │ ├── c_te_beaments.cpp │ ├── c_te_beamfollow.cpp │ ├── c_te_beamlaser.cpp │ ├── c_te_beampoints.cpp │ ├── c_te_beamring.cpp │ ├── c_te_beamringpoint.cpp │ ├── c_te_beamspline.cpp │ ├── c_te_bloodsprite.cpp │ ├── c_te_bloodstream.cpp │ ├── c_te_breakmodel.cpp │ ├── c_te_bspdecal.cpp │ ├── c_te_bubbles.cpp │ ├── c_te_bubbletrail.cpp │ ├── c_te_clientprojectile.cpp │ ├── c_te_decal.cpp │ ├── c_te_dynamiclight.cpp │ ├── c_te_effect_dispatch.cpp │ ├── c_te_effect_dispatch.h │ ├── c_te_energysplash.cpp │ ├── c_te_explosion.cpp │ ├── c_te_fizz.cpp │ ├── c_te_footprint.cpp │ ├── c_te_glassshatter.cpp │ ├── c_te_glowsprite.cpp │ ├── c_te_impact.cpp │ ├── c_te_killplayerattachments.cpp │ ├── c_te_largefunnel.cpp │ ├── c_te_legacytempents.cpp │ ├── c_te_legacytempents.h │ ├── c_te_muzzleflash.cpp │ ├── c_te_particlesystem.cpp │ ├── c_te_particlesystem.h │ ├── c_te_physicsprop.cpp │ ├── c_te_playerdecal.cpp │ ├── c_te_projecteddecal.cpp │ ├── c_te_showline.cpp │ ├── c_te_smoke.cpp │ ├── c_te_sparks.cpp │ ├── c_te_sprite.cpp │ ├── c_te_spritespray.cpp │ ├── c_te_worlddecal.cpp │ ├── c_team.cpp │ ├── c_team.h │ ├── c_team_objectiveresource.cpp │ ├── c_team_objectiveresource.h │ ├── c_tesla.cpp │ ├── c_tesla.h │ ├── c_test_proxytoggle.cpp │ ├── c_testtraceline.cpp │ ├── c_tracer.cpp │ ├── c_tracer.h │ ├── c_user_message_register.cpp │ ├── c_user_message_register.h │ ├── c_vehicle_choreo_generic.cpp │ ├── c_vehicle_jeep.cpp │ ├── c_vehicle_jeep.h │ ├── c_vguiscreen.cpp │ ├── c_vguiscreen.h │ ├── c_weapon__stubs.h │ ├── c_world.cpp │ ├── c_world.h │ ├── camomaterialproxy.cpp │ ├── cbase.h │ ├── cdll_bounded_cvars.cpp │ ├── cdll_bounded_cvars.h │ ├── cdll_client_int.cpp │ ├── cdll_client_int.h │ ├── cdll_util.cpp │ ├── cdll_util.h │ ├── cl_animevent.h │ ├── cl_mat_stub.cpp │ ├── cl_mat_stub.h │ ├── classmap.cpp │ ├── client_base.vpc │ ├── client_cstrike.vcproj │ ├── client_cstrike.vpc │ ├── client_dod.vcproj │ ├── client_dod.vpc │ ├── client_episodic.vcproj │ ├── client_episodic.vpc │ ├── client_factorylist.cpp │ ├── client_factorylist.h │ ├── client_hl1.vcproj │ ├── client_hl1.vpc │ ├── client_hl2.vcxproj │ ├── client_hl2.vcxproj.filters │ ├── client_hl2.vcxproj.user │ ├── client_hl2.vpc │ ├── client_hl2mp.vcproj │ ├── client_hl2mp.vpc │ ├── client_lostcoast.vcproj │ ├── client_lostcoast.vpc │ ├── client_portal.vcproj │ ├── client_portal.vpc │ ├── client_tf.vcproj │ ├── client_tf.vpc │ ├── client_thinklist.cpp │ ├── client_thinklist.h │ ├── clienteffectprecachesystem.cpp │ ├── clienteffectprecachesystem.h │ ├── cliententitylist.cpp │ ├── cliententitylist.h │ ├── clientleafsystem.cpp │ ├── clientleafsystem.h │ ├── clientmode.h │ ├── clientmode_normal.cpp │ ├── clientmode_normal.h │ ├── clientmode_shared.cpp │ ├── clientmode_shared.h │ ├── clientshadowmgr.cpp │ ├── clientsideeffects.cpp │ ├── clientsideeffects.h │ ├── clientsideeffects_test.cpp │ ├── colorcorrectionmgr.cpp │ ├── colorcorrectionmgr.h │ ├── cstrike │ │ ├── VGUI │ │ │ ├── backgroundpanel.cpp │ │ │ ├── backgroundpanel.h │ │ │ ├── buymouseoverpanelbutton.h │ │ │ ├── buypreset_imageinfo.cpp │ │ │ ├── buypreset_listbox.cpp │ │ │ ├── buypreset_listbox.h │ │ │ ├── buypreset_panel.cpp │ │ │ ├── buypreset_weaponsetlabel.h │ │ │ ├── career_box.cpp │ │ │ ├── career_box.h │ │ │ ├── career_button.cpp │ │ │ ├── career_button.h │ │ │ ├── counterstrikeviewport.cpp │ │ │ ├── counterstrikeviewport.h │ │ │ ├── cstrikebuyequipmenu.cpp │ │ │ ├── cstrikebuyequipmenu.h │ │ │ ├── cstrikebuymenu.cpp │ │ │ ├── cstrikebuymenu.h │ │ │ ├── cstrikebuysubmenu.h │ │ │ ├── cstrikeclassmenu.cpp │ │ │ ├── cstrikeclassmenu.h │ │ │ ├── cstrikeclientscoreboard.cpp │ │ │ ├── cstrikeclientscoreboard.h │ │ │ ├── cstrikespectatorgui.cpp │ │ │ ├── cstrikespectatorgui.h │ │ │ ├── cstriketeammenu.cpp │ │ │ ├── cstriketeammenu.h │ │ │ ├── cstriketextwindow.cpp │ │ │ └── cstriketextwindow.h │ │ ├── buy_presets │ │ │ ├── buy_preset.cpp │ │ │ ├── buy_preset_debug.cpp │ │ │ ├── buy_preset_debug.h │ │ │ ├── buy_preset_weapon_info.cpp │ │ │ ├── buy_presets.cpp │ │ │ └── buy_presets.h │ │ ├── c_cs_hostage.cpp │ │ ├── c_cs_hostage.h │ │ ├── c_cs_player.cpp │ │ ├── c_cs_player.h │ │ ├── c_cs_playerresource.cpp │ │ ├── c_cs_playerresource.h │ │ ├── c_cs_team.cpp │ │ ├── c_cs_team.h │ │ ├── c_csrootpanel.cpp │ │ ├── c_csrootpanel.h │ │ ├── c_plantedc4.cpp │ │ ├── c_plantedc4.h │ │ ├── c_te_radioicon.cpp │ │ ├── c_te_shotgun_shot.cpp │ │ ├── clientmode_csnormal.cpp │ │ ├── clientmode_csnormal.h │ │ ├── cs_hud_ammo.cpp │ │ ├── cs_hud_chat.cpp │ │ ├── cs_hud_chat.h │ │ ├── cs_hud_damageindicator.cpp │ │ ├── cs_hud_health.cpp │ │ ├── cs_hud_scope.cpp │ │ ├── cs_hud_target_id.cpp │ │ ├── cs_hud_weaponselection.cpp │ │ ├── cs_in_main.cpp │ │ ├── cs_prediction.cpp │ │ ├── cs_view_scene.cpp │ │ ├── cs_view_scene.h │ │ ├── fx_cs_blood.cpp │ │ ├── fx_cs_blood.h │ │ ├── fx_cs_impacts.cpp │ │ ├── fx_cs_knifeslash.cpp │ │ ├── fx_cs_muzzleflash.cpp │ │ ├── fx_cs_weaponfx.cpp │ │ ├── hud_account.cpp │ │ ├── hud_armor.cpp │ │ ├── hud_c4.cpp │ │ ├── hud_deathnotice.cpp │ │ ├── hud_defuser.cpp │ │ ├── hud_flashbang.cpp │ │ ├── hud_hostagerescue.cpp │ │ ├── hud_progressbar.cpp │ │ ├── hud_radar.cpp │ │ ├── hud_radar.h │ │ ├── hud_roundtimer.cpp │ │ ├── hud_scenarioicon.cpp │ │ ├── hud_shopping_cart.cpp │ │ ├── radio_status.cpp │ │ ├── radio_status.h │ │ ├── vgui_c4panel.cpp │ │ ├── vgui_rootpanel_cs.cpp │ │ └── vgui_viewc4panel.cpp │ ├── death.cpp │ ├── detailobjectsystem.cpp │ ├── detailobjectsystem.h │ ├── dod │ │ ├── VGUI │ │ │ ├── backgroundpanel.cpp │ │ │ ├── backgroundpanel.h │ │ │ ├── dodbutton.cpp │ │ │ ├── dodbutton.h │ │ │ ├── dodclassmenu.cpp │ │ │ ├── dodclassmenu.h │ │ │ ├── dodclientscoreboard.cpp │ │ │ ├── dodclientscoreboard.h │ │ │ ├── dodcornercutpanel.cpp │ │ │ ├── dodcornercutpanel.h │ │ │ ├── dodmenubackground.cpp │ │ │ ├── dodmenubackground.h │ │ │ ├── dodmouseoverpanelbutton.h │ │ │ ├── dodoverview.cpp │ │ │ ├── dodoverview.h │ │ │ ├── dodrandombutton.h │ │ │ ├── dodspectatorgui.cpp │ │ │ ├── dodspectatorgui.h │ │ │ ├── dodteammenu.cpp │ │ │ ├── dodteammenu.h │ │ │ ├── dodtextwindow.cpp │ │ │ ├── dodtextwindow.h │ │ │ ├── dodviewport.cpp │ │ │ ├── dodviewport.h │ │ │ ├── idodviewportmsgs.h │ │ │ ├── vgui_rootpanel_dod.cpp │ │ │ └── vgui_rootpanel_dod.h │ │ ├── c_dod_basegrenade.cpp │ │ ├── c_dod_basegrenade.h │ │ ├── c_dod_baserocket.cpp │ │ ├── c_dod_bombdispenser.cpp │ │ ├── c_dod_bombtarget.cpp │ │ ├── c_dod_bombtarget.h │ │ ├── c_dod_objective_resource.cpp │ │ ├── c_dod_objective_resource.h │ │ ├── c_dod_player.cpp │ │ ├── c_dod_player.h │ │ ├── c_dod_playerresource.cpp │ │ ├── c_dod_playerresource.h │ │ ├── c_dod_smokegrenade.cpp │ │ ├── c_dod_smokegrenade.h │ │ ├── c_dod_team.cpp │ │ ├── c_dod_team.h │ │ ├── c_grenadetrail.cpp │ │ ├── c_grenadetrail.h │ │ ├── c_te_firebullets.cpp │ │ ├── clientmode_dod.cpp │ │ ├── clientmode_dod.h │ │ ├── dod_headiconmanager.cpp │ │ ├── dod_headiconmanager.h │ │ ├── dod_hud_ammo.cpp │ │ ├── dod_hud_areacapicon.cpp │ │ ├── dod_hud_capturepanel.cpp │ │ ├── dod_hud_capturepanel.h │ │ ├── dod_hud_chat.cpp │ │ ├── dod_hud_chat.h │ │ ├── dod_hud_crosshair.cpp │ │ ├── dod_hud_crosshair.h │ │ ├── dod_hud_damageindicator.cpp │ │ ├── dod_hud_deathnotice.cpp │ │ ├── dod_hud_deathstats.cpp │ │ ├── dod_hud_deathstats.h │ │ ├── dod_hud_health.cpp │ │ ├── dod_hud_hintdisplay.cpp │ │ ├── dod_hud_history_resource.cpp │ │ ├── dod_hud_mgheaticon.cpp │ │ ├── dod_hud_objectiveicons.cpp │ │ ├── dod_hud_playerstatus_ammo.cpp │ │ ├── dod_hud_playerstatus_ammo.h │ │ ├── dod_hud_playerstatus_fireselect.cpp │ │ ├── dod_hud_playerstatus_fireselect.h │ │ ├── dod_hud_playerstatus_health.cpp │ │ ├── dod_hud_playerstatus_health.h │ │ ├── dod_hud_playerstatus_mgheat.cpp │ │ ├── dod_hud_playerstatus_mgheat.h │ │ ├── dod_hud_playerstatus_stamina.cpp │ │ ├── dod_hud_playerstatus_stamina.h │ │ ├── dod_hud_playerstatus_tnt.cpp │ │ ├── dod_hud_playerstatus_tnt.h │ │ ├── dod_hud_playerstatus_weapon.cpp │ │ ├── dod_hud_playerstatus_weapon.h │ │ ├── dod_hud_playerstatuspanel.cpp │ │ ├── dod_hud_readyrestart.cpp │ │ ├── dod_hud_restartround.cpp │ │ ├── dod_hud_scope.cpp │ │ ├── dod_hud_spec_crosshair.cpp │ │ ├── dod_hud_spec_crosshair.h │ │ ├── dod_hud_target_id.cpp │ │ ├── dod_hud_tnt_pickup.cpp │ │ ├── dod_hud_tnt_pickup.h │ │ ├── dod_hud_warmuplabel.cpp │ │ ├── dod_hud_weaponselection.cpp │ │ ├── dod_hud_winpanel.cpp │ │ ├── dod_hud_winpanel.h │ │ ├── dod_in_main.cpp │ │ ├── dod_prediction.cpp │ │ ├── dod_view_scene.cpp │ │ ├── dod_view_scene.h │ │ ├── fx_dod_blood.cpp │ │ ├── fx_dod_blood.h │ │ ├── fx_dod_ejectbrass.cpp │ │ ├── fx_dod_filmgrain.cpp │ │ ├── fx_dod_impact.cpp │ │ ├── fx_dod_knifeslash.cpp │ │ ├── fx_dod_muzzleflash.cpp │ │ ├── fx_dod_muzzleflash.h │ │ └── fx_dod_tracers.cpp │ ├── dummyproxy.cpp │ ├── enginesprite.h │ ├── entity_client_tools.cpp │ ├── entityoriginmaterialproxy.cpp │ ├── ep3 │ │ └── c_npc_surface.cpp │ ├── episodic │ │ ├── c_npc_advisor.cpp │ │ ├── c_npc_puppet.cpp │ │ ├── c_prop_coreball.cpp │ │ ├── c_prop_scalable.cpp │ │ ├── c_vehicle_jeep_episodic.cpp │ │ ├── c_vort_charge_token.cpp │ │ ├── c_weapon_hopwire.cpp │ │ ├── episodic_screenspaceeffects.cpp │ │ ├── episodic_screenspaceeffects.h │ │ └── flesh_internal_material_proxy.cpp │ ├── flashlighteffect.cpp │ ├── flashlighteffect.h │ ├── fontabc.h │ ├── functionproxy.cpp │ ├── functionproxy.h │ ├── fx.cpp │ ├── fx.h │ ├── fx_blood.cpp │ ├── fx_blood.h │ ├── fx_cube.cpp │ ├── fx_discreetline.cpp │ ├── fx_discreetline.h │ ├── fx_envelope.cpp │ ├── fx_envelope.h │ ├── fx_explosion.cpp │ ├── fx_explosion.h │ ├── fx_fleck.cpp │ ├── fx_fleck.h │ ├── fx_impact.cpp │ ├── fx_impact.h │ ├── fx_interpvalue.cpp │ ├── fx_interpvalue.h │ ├── fx_line.cpp │ ├── fx_line.h │ ├── fx_quad.cpp │ ├── fx_quad.h │ ├── fx_shelleject.cpp │ ├── fx_sparks.cpp │ ├── fx_sparks.h │ ├── fx_staticline.cpp │ ├── fx_staticline.h │ ├── fx_tracer.cpp │ ├── fx_trail.cpp │ ├── fx_trail.h │ ├── fx_water.cpp │ ├── fx_water.h │ ├── game_controls │ │ ├── ClientScoreBoardDialog.cpp │ │ ├── IconPanel.cpp │ │ ├── IconPanel.h │ │ ├── MapOverview.cpp │ │ ├── NavProgress.cpp │ │ ├── NavProgress.h │ │ ├── SpectatorGUI.cpp │ │ ├── baseviewport.cpp │ │ ├── baseviewport.h │ │ ├── buymenu.cpp │ │ ├── buymenu.h │ │ ├── buysubmenu.cpp │ │ ├── buysubmenu.h │ │ ├── classmenu.cpp │ │ ├── classmenu.h │ │ ├── clientscoreboarddialog.h │ │ ├── commandmenu.cpp │ │ ├── commandmenu.h │ │ ├── imagemouseoverbutton.h │ │ ├── intromenu.cpp │ │ ├── intromenu.h │ │ ├── mapoverview.h │ │ ├── mouseoverhtmlbutton.h │ │ ├── mouseoverpanelbutton.h │ │ ├── spectatorgui.h │ │ ├── teammenu.cpp │ │ ├── teammenu.h │ │ ├── vguitextwindow.cpp │ │ └── vguitextwindow.h │ ├── gametrace_client.cpp │ ├── geiger.cpp │ ├── glow_overlay.cpp │ ├── glow_overlay.h │ ├── history_resource.cpp │ ├── history_resource.h │ ├── hl1 │ │ ├── c_hl1mp_player.cpp │ │ ├── c_hl1mp_player.h │ │ ├── hl1_c_legacytempents.cpp │ │ ├── hl1_c_player.cpp │ │ ├── hl1_c_player.h │ │ ├── hl1_c_rpg_rocket.cpp │ │ ├── hl1_c_weapon__stubs.cpp │ │ ├── hl1_clientmode.cpp │ │ ├── hl1_clientmode.h │ │ ├── hl1_clientscoreboard.cpp │ │ ├── hl1_clientscoreboard.h │ │ ├── hl1_fx_gauss.cpp │ │ ├── hl1_fx_gibs.cpp │ │ ├── hl1_fx_impacts.cpp │ │ ├── hl1_fx_shelleject.cpp │ │ ├── hl1_hud_ammo.cpp │ │ ├── hl1_hud_battery.cpp │ │ ├── hl1_hud_damageindicator.cpp │ │ ├── hl1_hud_damagetiles.cpp │ │ ├── hl1_hud_deathnotice.cpp │ │ ├── hl1_hud_flashlight.cpp │ │ ├── hl1_hud_geiger.cpp │ │ ├── hl1_hud_health.cpp │ │ ├── hl1_hud_history_resource.cpp │ │ ├── hl1_hud_numbers.cpp │ │ ├── hl1_hud_numbers.h │ │ ├── hl1_hud_train.cpp │ │ └── hl1_hud_weaponselection.cpp │ ├── hl2 │ │ ├── C_Func_Monitor.cpp │ │ ├── c_antlion_dust.cpp │ │ ├── c_ar2_explosion.cpp │ │ ├── c_barnacle.cpp │ │ ├── c_barney.cpp │ │ ├── c_basehelicopter.cpp │ │ ├── c_basehelicopter.h │ │ ├── c_basehlcombatweapon.cpp │ │ ├── c_basehlcombatweapon.h │ │ ├── c_basehlplayer.cpp │ │ ├── c_basehlplayer.h │ │ ├── c_citadel_effects.cpp │ │ ├── c_corpse.cpp │ │ ├── c_corpse.h │ │ ├── c_energy_wave.cpp │ │ ├── c_env_alyxtemp.cpp │ │ ├── c_env_headcrabcanister.cpp │ │ ├── c_env_starfield.cpp │ │ ├── c_extinguisher.cpp │ │ ├── c_func_tankmortar.cpp │ │ ├── c_hl2_playerlocaldata.cpp │ │ ├── c_hl2_playerlocaldata.h │ │ ├── c_info_teleporter_countdown.cpp │ │ ├── c_npc_antlionguard.cpp │ │ ├── c_npc_combinegunship.cpp │ │ ├── c_npc_hydra.cpp │ │ ├── c_npc_manhack.cpp │ │ ├── c_npc_rollermine.cpp │ │ ├── c_plasma_beam_node.cpp │ │ ├── c_prop_combine_ball.cpp │ │ ├── c_prop_combine_ball.h │ │ ├── c_rotorwash.cpp │ │ ├── c_script_intro.cpp │ │ ├── c_strider.cpp │ │ ├── c_te_concussiveexplosion.cpp │ │ ├── c_te_flare.cpp │ │ ├── c_thumper_dust.cpp │ │ ├── c_vehicle_airboat.cpp │ │ ├── c_vehicle_cannon.cpp │ │ ├── c_vehicle_crane.cpp │ │ ├── c_vehicle_crane.h │ │ ├── c_vehicle_prisoner_pod.cpp │ │ ├── c_waterbullet.cpp │ │ ├── c_weapon__stubs_hl2.cpp │ │ ├── c_weapon_crossbow.cpp │ │ ├── c_weapon_gravitygun.cpp │ │ ├── c_weapon_physcannon.cpp │ │ ├── c_weapon_stunstick.cpp │ │ ├── clientmode_hlnormal.cpp │ │ ├── clientmode_hlnormal.h │ │ ├── fx_antlion.cpp │ │ ├── fx_bugbait.cpp │ │ ├── fx_hl2_impacts.cpp │ │ ├── fx_hl2_tracers.cpp │ │ ├── hl2_clientmode.cpp │ │ ├── hl_in_main.cpp │ │ ├── hl_prediction.cpp │ │ ├── hud_ammo.cpp │ │ ├── hud_autoaim.cpp │ │ ├── hud_battery.cpp │ │ ├── hud_blood.cpp │ │ ├── hud_bonusprogress.cpp │ │ ├── hud_credits.cpp │ │ ├── hud_damageindicator.cpp │ │ ├── hud_filmdemo.cpp │ │ ├── hud_flashlight.cpp │ │ ├── hud_hdrdemo.cpp │ │ ├── hud_health.cpp │ │ ├── hud_locator.cpp │ │ ├── hud_poisondamageindicator.cpp │ │ ├── hud_quickinfo.cpp │ │ ├── hud_radar.cpp │ │ ├── hud_radar.h │ │ ├── hud_suitpower.cpp │ │ ├── hud_suitpower.h │ │ ├── hud_weaponselection.cpp │ │ ├── hud_zoom.cpp │ │ ├── shieldproxy.cpp │ │ └── vgui_rootpanel_hl2.cpp │ ├── hl2mp │ │ ├── c_hl2mp_player.cpp │ │ ├── c_hl2mp_player.h │ │ ├── c_te_hl2mp_shotgun_shot.cpp │ │ ├── clientmode_hl2mpnormal.cpp │ │ ├── clientmode_hl2mpnormal.h │ │ ├── hl2mp_hud_chat.cpp │ │ ├── hl2mp_hud_chat.h │ │ ├── hl2mp_hud_target_id.cpp │ │ ├── hl2mp_hud_team.cpp │ │ ├── hud_deathnotice.cpp │ │ └── ui │ │ │ ├── backgroundpanel.cpp │ │ │ ├── backgroundpanel.h │ │ │ ├── hl2mpclientscoreboard.cpp │ │ │ ├── hl2mpclientscoreboard.h │ │ │ ├── hl2mptextwindow.cpp │ │ │ └── hl2mptextwindow.h │ ├── hltvcamera.cpp │ ├── hltvcamera.h │ ├── hud.cpp │ ├── hud.h │ ├── hud_animationinfo.cpp │ ├── hud_base_account.cpp │ ├── hud_base_account.h │ ├── hud_basechat.cpp │ ├── hud_basechat.h │ ├── hud_basedeathnotice.cpp │ ├── hud_basedeathnotice.h │ ├── hud_basetimer.cpp │ ├── hud_basetimer.h │ ├── hud_bitmapnumericdisplay.cpp │ ├── hud_bitmapnumericdisplay.h │ ├── hud_chat.cpp │ ├── hud_chat.h │ ├── hud_closecaption.cpp │ ├── hud_closecaption.h │ ├── hud_controlpointicons.cpp │ ├── hud_controlpointicons.h │ ├── hud_controlpointpanel.cpp │ ├── hud_crosshair.cpp │ ├── hud_crosshair.h │ ├── hud_element_helper.cpp │ ├── hud_element_helper.h │ ├── hud_hintdisplay.cpp │ ├── hud_lcd.cpp │ ├── hud_lcd.h │ ├── hud_macros.h │ ├── hud_msg.cpp │ ├── hud_numericdisplay.cpp │ ├── hud_numericdisplay.h │ ├── hud_pdump.cpp │ ├── hud_pdump.h │ ├── hud_posture.cpp │ ├── hud_redraw.cpp │ ├── hud_squadstatus.cpp │ ├── hud_vehicle.cpp │ ├── hud_vehicle.h │ ├── hud_vguiscreencursor.cpp │ ├── hud_voicestatus.cpp │ ├── hud_weapon.cpp │ ├── hudelement.h │ ├── hudtexturehandle.h │ ├── iclassmap.h │ ├── icliententityinternal.h │ ├── iclientmode.h │ ├── iclientshadowmgr.h │ ├── iclientvehicle.h │ ├── iconsole.h │ ├── idebugoverlaypanel.h │ ├── ifpspanel.h │ ├── ihudlcd.h │ ├── iinput.h │ ├── iloadingdisc.h │ ├── imessagechars.h │ ├── in_camera.cpp │ ├── in_forcefeedback.cpp │ ├── in_joystick.cpp │ ├── in_main.cpp │ ├── in_main.h │ ├── in_mouse.cpp │ ├── inetgraphpanel.h │ ├── initializer.cpp │ ├── initializer.h │ ├── input.h │ ├── interpolatedvar.cpp │ ├── interpolatedvar.h │ ├── ipresence.h │ ├── iprofiling.h │ ├── itextmessage.h │ ├── ivieweffects.h │ ├── iviewrender.h │ ├── iviewrender_beams.h │ ├── ivmodemanager.h │ ├── kbutton.h │ ├── lampbeamproxy.cpp │ ├── lamphaloproxy.cpp │ ├── lerp_functions.h │ ├── mathproxy.cpp │ ├── matrixproxy.cpp │ ├── menu.cpp │ ├── menu.h │ ├── message.cpp │ ├── movehelper_client.cpp │ ├── movehelper_client.h │ ├── mp3player.cpp │ ├── mp3player.h │ ├── networkstringtable_clientdll.h │ ├── panelmetaclassmgr.cpp │ ├── panelmetaclassmgr.h │ ├── particle_collision.cpp │ ├── particle_collision.h │ ├── particle_iterators.h │ ├── particle_litsmokeemitter.cpp │ ├── particle_litsmokeemitter.h │ ├── particle_prototype.cpp │ ├── particle_prototype.h │ ├── particle_proxies.cpp │ ├── particle_simple3d.cpp │ ├── particle_simple3d.h │ ├── particle_util.h │ ├── particledraw.h │ ├── particlemgr.cpp │ ├── particlemgr.h │ ├── particles_attractor.cpp │ ├── particles_attractor.h │ ├── particles_ez.cpp │ ├── particles_ez.h │ ├── particles_localspace.cpp │ ├── particles_localspace.h │ ├── particles_new.cpp │ ├── particles_new.h │ ├── particles_simple.cpp │ ├── particles_simple.h │ ├── particlesphererenderer.cpp │ ├── particlesphererenderer.h │ ├── perfvisualbenchmark.cpp │ ├── perfvisualbenchmark.h │ ├── physics.cpp │ ├── physics.h │ ├── physics_main_client.cpp │ ├── physpropclientside.cpp │ ├── physpropclientside.h │ ├── playerandobjectenumerator.cpp │ ├── playerandobjectenumerator.h │ ├── playerenumerator.h │ ├── portal │ │ ├── C_PortalGhostRenderable.cpp │ │ ├── C_PortalGhostRenderable.h │ │ ├── MaterialProxy_Portal_PickAlphaMask.cpp │ │ ├── PortalRender.cpp │ │ ├── PortalRender.h │ │ ├── Portal_DynamicMeshRenderingUtils.cpp │ │ ├── Portal_DynamicMeshRenderingUtils.h │ │ ├── c_env_lightraill_endpoint.cpp │ │ ├── c_env_portal_path_track.cpp │ │ ├── c_func_liquidportal.cpp │ │ ├── c_func_liquidportal.h │ │ ├── c_neurotoxin_countdown.cpp │ │ ├── c_neurotoxin_countdown.h │ │ ├── c_npc_portal_turret_floor.cpp │ │ ├── c_npc_rocket_turret.cpp │ │ ├── c_portal_player.cpp │ │ ├── c_portal_player.h │ │ ├── c_prop_energy_ball.cpp │ │ ├── c_prop_portal.cpp │ │ ├── c_prop_portal.h │ │ ├── c_prop_portal_stats_display.cpp │ │ ├── c_prop_portal_stats_display.h │ │ ├── c_weapon_physcannon.cpp │ │ ├── c_weapon_portalgun.cpp │ │ ├── c_weapon_portalgun.h │ │ ├── c_weapon_stubs_portal.cpp │ │ ├── clientmode_portal.cpp │ │ ├── clientmode_portal.h │ │ ├── fx_portal.cpp │ │ ├── hud_quickinfo.cpp │ │ ├── materialproxy_portalstatic.cpp │ │ ├── portal_credits.cpp │ │ ├── portal_hud_crosshair.cpp │ │ ├── portal_hud_crosshair.h │ │ ├── portal_render_targets.cpp │ │ ├── portal_render_targets.h │ │ ├── portalrenderable_flatbasic.cpp │ │ ├── portalrenderable_flatbasic.h │ │ ├── vgui_neurotoxin_countdown_screen.cpp │ │ └── vgui_portal_stats_display_screen.cpp │ ├── prediction.cpp │ ├── prediction.h │ ├── prediction_private.h │ ├── proxyentity.cpp │ ├── proxyentity.h │ ├── proxyplayer.cpp │ ├── proxypupil.cpp │ ├── ragdoll.cpp │ ├── ragdoll.h │ ├── ragdollexplosionenumerator.h │ ├── recvproxy.cpp │ ├── recvproxy.h │ ├── rendertexture.cpp │ ├── rendertexture.h │ ├── sdk │ │ ├── c_sdk_env_sparkler.cpp │ │ ├── c_sdk_player.cpp │ │ ├── c_sdk_player.h │ │ ├── c_sdk_team.cpp │ │ ├── c_sdk_team.h │ │ ├── c_te_firebullets.cpp │ │ ├── clientmode_sdk.cpp │ │ ├── clientmode_sdk.h │ │ ├── sdk_fx_impacts.cpp │ │ ├── sdk_fx_weaponfx.cpp │ │ ├── sdk_hud_ammo.cpp │ │ ├── sdk_hud_chat.cpp │ │ ├── sdk_hud_chat.h │ │ ├── sdk_hud_health.cpp │ │ ├── sdk_hud_message.cpp │ │ ├── sdk_hud_weaponselection.cpp │ │ ├── sdk_in_main.cpp │ │ ├── sdk_prediction.cpp │ │ └── vgui │ │ │ ├── sdkviewport.cpp │ │ │ ├── sdkviewport.h │ │ │ ├── vgui_rootpanel_sdk.cpp │ │ │ └── vgui_rootpanel_sdk.h │ ├── simple_keys.cpp │ ├── simple_keys.h │ ├── smoke_fog_overlay.cpp │ ├── smoke_fog_overlay.h │ ├── splinepatch.cpp │ ├── splinepatch.h │ ├── spritemodel.cpp │ ├── statgather.cpp │ ├── statgather.h │ ├── stdafx.cpp │ ├── tempent.h │ ├── text_message.cpp │ ├── text_message.h │ ├── texturescrollmaterialproxy.cpp │ ├── tf │ │ ├── c_baseobject.cpp │ │ ├── c_baseobject.h │ │ ├── c_func_capture_zone.cpp │ │ ├── c_func_respawnroom.cpp │ │ ├── c_obj_dispenser.cpp │ │ ├── c_obj_dispenser.h │ │ ├── c_obj_sapper.cpp │ │ ├── c_obj_sapper.h │ │ ├── c_obj_sentrygun.cpp │ │ ├── c_obj_sentrygun.h │ │ ├── c_obj_teleporter.cpp │ │ ├── c_obj_teleporter.h │ │ ├── c_playerattachedmodel.cpp │ │ ├── c_playerattachedmodel.h │ │ ├── c_tf_ammo_pack.cpp │ │ ├── c_tf_fx.cpp │ │ ├── c_tf_fx.h │ │ ├── c_tf_objective_resource.cpp │ │ ├── c_tf_objective_resource.h │ │ ├── c_tf_player.cpp │ │ ├── c_tf_player.h │ │ ├── c_tf_playerclass.h │ │ ├── c_tf_playerresource.cpp │ │ ├── c_tf_playerresource.h │ │ ├── c_tf_projectile_rocket.cpp │ │ ├── c_tf_projectile_rocket.h │ │ ├── c_tf_team.cpp │ │ ├── c_tf_team.h │ │ ├── c_tf_weapon_builder.cpp │ │ ├── c_tf_weapon_builder.h │ │ ├── clientmode_tf.cpp │ │ ├── clientmode_tf.h │ │ ├── teammaterialproxy.cpp │ │ ├── tf_fx_blood.cpp │ │ ├── tf_fx_ejectbrass.cpp │ │ ├── tf_fx_explosions.cpp │ │ ├── tf_fx_impacts.cpp │ │ ├── tf_fx_muzzleflash.cpp │ │ ├── tf_fx_muzzleflash.h │ │ ├── tf_fx_particleeffect.cpp │ │ ├── tf_fx_taunteffects.cpp │ │ ├── tf_fx_tracers.cpp │ │ ├── tf_hud_account.cpp │ │ ├── tf_hud_ammostatus.cpp │ │ ├── tf_hud_ammostatus.h │ │ ├── tf_hud_building_status.cpp │ │ ├── tf_hud_building_status.h │ │ ├── tf_hud_chat.cpp │ │ ├── tf_hud_chat.h │ │ ├── tf_hud_cloakmeter.cpp │ │ ├── tf_hud_damageindicator.cpp │ │ ├── tf_hud_deathnotice.cpp │ │ ├── tf_hud_demomancharge.cpp │ │ ├── tf_hud_demomanpipes.cpp │ │ ├── tf_hud_disguise_status.cpp │ │ ├── tf_hud_flagstatus.cpp │ │ ├── tf_hud_flagstatus.h │ │ ├── tf_hud_freezepanel.cpp │ │ ├── tf_hud_freezepanel.h │ │ ├── tf_hud_health.cpp │ │ ├── tf_hud_mediccallers.cpp │ │ ├── tf_hud_mediccallers.h │ │ ├── tf_hud_mediccharge.cpp │ │ ├── tf_hud_menu_engy_build.cpp │ │ ├── tf_hud_menu_engy_build.h │ │ ├── tf_hud_menu_engy_destroy.cpp │ │ ├── tf_hud_menu_engy_destroy.h │ │ ├── tf_hud_menu_spy_disguise.cpp │ │ ├── tf_hud_menu_spy_disguise.h │ │ ├── tf_hud_notification_panel.cpp │ │ ├── tf_hud_notification_panel.h │ │ ├── tf_hud_objectivestatus.cpp │ │ ├── tf_hud_objectivestatus.h │ │ ├── tf_hud_playerstatus.cpp │ │ ├── tf_hud_playerstatus.h │ │ ├── tf_hud_scope.cpp │ │ ├── tf_hud_smoke_bomb.cpp │ │ ├── tf_hud_stalemate.cpp │ │ ├── tf_hud_statpanel.cpp │ │ ├── tf_hud_statpanel.h │ │ ├── tf_hud_target_id.cpp │ │ ├── tf_hud_target_id.h │ │ ├── tf_hud_teamgoal.cpp │ │ ├── tf_hud_teamswitch.cpp │ │ ├── tf_hud_waitingforplayers_panel.cpp │ │ ├── tf_hud_weaponselection.cpp │ │ ├── tf_hud_winpanel.cpp │ │ ├── tf_hud_winpanel.h │ │ ├── tf_input_main.cpp │ │ ├── tf_prediction.cpp │ │ ├── tf_presence.cpp │ │ ├── tf_presence.h │ │ ├── tf_steamstats.cpp │ │ ├── tf_steamstats.h │ │ ├── tf_tips.cpp │ │ ├── tf_tips.h │ │ ├── tf_viewrender.cpp │ │ ├── tf_viewrender.h │ │ └── vgui │ │ │ ├── ObjectControlPanel.cpp │ │ │ ├── ObjectControlPanel.h │ │ │ ├── backgroundpanel.cpp │ │ │ ├── backgroundpanel.h │ │ │ ├── tf_classmenu.cpp │ │ │ ├── tf_classmenu.h │ │ │ ├── tf_clientscoreboard.cpp │ │ │ ├── tf_clientscoreboard.h │ │ │ ├── tf_controls.cpp │ │ │ ├── tf_controls.h │ │ │ ├── tf_imagepanel.cpp │ │ │ ├── tf_imagepanel.h │ │ │ ├── tf_intromenu.cpp │ │ │ ├── tf_intromenu.h │ │ │ ├── tf_mapinfomenu.cpp │ │ │ ├── tf_mapinfomenu.h │ │ │ ├── tf_modelpanel.cpp │ │ │ ├── tf_modelpanel.h │ │ │ ├── tf_overview.cpp │ │ │ ├── tf_overview.h │ │ │ ├── tf_roundinfo.cpp │ │ │ ├── tf_roundinfo.h │ │ │ ├── tf_spectatorgui.cpp │ │ │ ├── tf_spectatorgui.h │ │ │ ├── tf_statsummary.cpp │ │ │ ├── tf_statsummary.h │ │ │ ├── tf_teammenu.cpp │ │ │ ├── tf_teammenu.h │ │ │ ├── tf_textwindow.cpp │ │ │ ├── tf_textwindow.h │ │ │ ├── tf_vgui_video.cpp │ │ │ ├── tf_vgui_video.h │ │ │ ├── tf_viewport.cpp │ │ │ ├── tf_viewport.h │ │ │ ├── vgui_pda_panel.cpp │ │ │ ├── vgui_rootpanel_tf.cpp │ │ │ ├── vgui_rootpanel_tf.h │ │ │ ├── vgui_rotation_slider.cpp │ │ │ └── vgui_rotation_slider.h │ ├── tf2 │ │ ├── ObjectBuildAlphaProxy.cpp │ │ ├── ObjectControlPanel.cpp │ │ ├── ObjectControlPanel.h │ │ ├── ProxyTFPlayer.cpp │ │ ├── RespawnWaveVGuiScreen.cpp │ │ ├── VGuiScreenVehicleBay.cpp │ │ ├── c_basecombatcharacter_tf2.cpp │ │ ├── c_basefourwheelvehicle.cpp │ │ ├── c_basefourwheelvehicle.h │ │ ├── c_baseobject.cpp │ │ ├── c_baseobject.h │ │ ├── c_basetfplayer.cpp │ │ ├── c_basetfplayer.h │ │ ├── c_controlzone.cpp │ │ ├── c_controlzone.h │ │ ├── c_demo_entities.cpp │ │ ├── c_demo_entities.h │ │ ├── c_effect_shootingstar.cpp │ │ ├── c_effect_shootingstar.h │ │ ├── c_entity_burn_effect.cpp │ │ ├── c_entity_burn_effect.h │ │ ├── c_env_meteor.cpp │ │ ├── c_env_meteor.h │ │ ├── c_func_construction_yard.cpp │ │ ├── c_func_resource.cpp │ │ ├── c_func_resource.h │ │ ├── c_gasoline_blob.cpp │ │ ├── c_gasoline_blob.h │ │ ├── c_grenade_antipersonnel.cpp │ │ ├── c_grenade_limpetmine.cpp │ │ ├── c_grenade_objectsapper.cpp │ │ ├── c_grenade_rocket.cpp │ │ ├── c_harpoon.cpp │ │ ├── c_hint_events.cpp │ │ ├── c_hint_events.h │ │ ├── c_info_act.cpp │ │ ├── c_info_act.h │ │ ├── c_info_customtech.cpp │ │ ├── c_maker_bughole.cpp │ │ ├── c_obj_barbed_wire.cpp │ │ ├── c_obj_barbed_wire.h │ │ ├── c_obj_base_manned_gun.cpp │ │ ├── c_obj_base_manned_gun.h │ │ ├── c_obj_buff_station.cpp │ │ ├── c_obj_bunker.cpp │ │ ├── c_obj_dragonsteeth.cpp │ │ ├── c_obj_empgenerator.cpp │ │ ├── c_obj_explosives.cpp │ │ ├── c_obj_manned_missilelauncher.cpp │ │ ├── c_obj_manned_plasmagun.cpp │ │ ├── c_obj_manned_shield.cpp │ │ ├── c_obj_mapdefined.cpp │ │ ├── c_obj_mapdefined.h │ │ ├── c_obj_mcv_selection_panel.cpp │ │ ├── c_obj_mortar.cpp │ │ ├── c_obj_powerpack.cpp │ │ ├── c_obj_rallyflag.cpp │ │ ├── c_obj_resourcepump.cpp │ │ ├── c_obj_resourcepump.h │ │ ├── c_obj_respawn_station.cpp │ │ ├── c_obj_respawn_station.h │ │ ├── c_obj_resupply.cpp │ │ ├── c_obj_sandbag_bunker.cpp │ │ ├── c_obj_selfheal.cpp │ │ ├── c_obj_sentrygun.h │ │ ├── c_obj_shieldwall.cpp │ │ ├── c_obj_tower.cpp │ │ ├── c_obj_tunnel.cpp │ │ ├── c_obj_vehicleboost.cpp │ │ ├── c_objectsentrygun.cpp │ │ ├── c_order.cpp │ │ ├── c_order.h │ │ ├── c_order_assist.cpp │ │ ├── c_order_assist.h │ │ ├── c_order_buildsentrygun.cpp │ │ ├── c_order_buildsentrygun.h │ │ ├── c_order_buildshieldwall.cpp │ │ ├── c_order_buildshieldwall.h │ │ ├── c_order_heal.cpp │ │ ├── c_order_heal.h │ │ ├── c_order_killmortarguy.cpp │ │ ├── c_order_killmortarguy.h │ │ ├── c_order_mortar_attack.cpp │ │ ├── c_order_mortar_attack.h │ │ ├── c_order_player.cpp │ │ ├── c_order_player.h │ │ ├── c_order_repair.cpp │ │ ├── c_order_repair.h │ │ ├── c_order_resourcepump.cpp │ │ ├── c_order_resourcepump.h │ │ ├── c_order_respawnstation.cpp │ │ ├── c_order_respawnstation.h │ │ ├── c_order_resupply.cpp │ │ ├── c_order_resupply.h │ │ ├── c_ragdoll_shadow.cpp │ │ ├── c_resource_chunk.cpp │ │ ├── c_shield.cpp │ │ ├── c_shield.h │ │ ├── c_shield_flat.cpp │ │ ├── c_shield_mobile.cpp │ │ ├── c_tf2rootpanel.cpp │ │ ├── c_tf2rootpanel.h │ │ ├── c_tf_basecombatweapon.cpp │ │ ├── c_tf_basecombatweapon.h │ │ ├── c_tf_basehint.cpp │ │ ├── c_tf_basehint.h │ │ ├── c_tf_class_commando.cpp │ │ ├── c_tf_class_commando.h │ │ ├── c_tf_class_defender.cpp │ │ ├── c_tf_class_defender.h │ │ ├── c_tf_class_escort.cpp │ │ ├── c_tf_class_escort.h │ │ ├── c_tf_class_infiltrator.cpp │ │ ├── c_tf_class_infiltrator.h │ │ ├── c_tf_class_medic.cpp │ │ ├── c_tf_class_medic.h │ │ ├── c_tf_class_pyro.cpp │ │ ├── c_tf_class_pyro.h │ │ ├── c_tf_class_recon.cpp │ │ ├── c_tf_class_recon.h │ │ ├── c_tf_class_sapper.cpp │ │ ├── c_tf_class_sapper.h │ │ ├── c_tf_class_sniper.cpp │ │ ├── c_tf_class_sniper.h │ │ ├── c_tf_class_support.cpp │ │ ├── c_tf_class_support.h │ │ ├── c_tf_flare.cpp │ │ ├── c_tf_hintmanager.cpp │ │ ├── c_tf_hintmanager.h │ │ ├── c_tf_hints.cpp │ │ ├── c_tf_hints.h │ │ ├── c_tf_playerclass.cpp │ │ ├── c_tf_playerclass.h │ │ ├── c_tfcarrier.cpp │ │ ├── c_tfcarrier.h │ │ ├── c_tfplayerlocaldata.h │ │ ├── c_tfplayerresource.cpp │ │ ├── c_tfplayerresource.h │ │ ├── c_tfteam.cpp │ │ ├── c_tfteam.h │ │ ├── c_vehicle_battering_ram.cpp │ │ ├── c_vehicle_flatbed.cpp │ │ ├── c_vehicle_mortar.cpp │ │ ├── c_vehicle_motorcycle.cpp │ │ ├── c_vehicle_siege_tower.cpp │ │ ├── c_vehicle_tank.cpp │ │ ├── c_vehicle_tank.h │ │ ├── c_vehicle_teleport_station.cpp │ │ ├── c_vehicle_teleport_station.h │ │ ├── c_vehicle_wagon.cpp │ │ ├── c_walker_base.cpp │ │ ├── c_walker_base.h │ │ ├── c_walker_ministrider.cpp │ │ ├── c_walker_ministrider.h │ │ ├── c_walker_strider.cpp │ │ ├── c_walker_strider.h │ │ ├── c_weapon__stubs_tf2.cpp │ │ ├── c_weapon_builder.cpp │ │ ├── c_weapon_builder.h │ │ ├── c_weapon_chargeableplasma.cpp │ │ ├── c_weapon_mortar.cpp │ │ ├── c_weapon_twohandedcontainer.cpp │ │ ├── clientmode_commander.cpp │ │ ├── clientmode_commander.h │ │ ├── clientmode_tfbase.cpp │ │ ├── clientmode_tfbase.h │ │ ├── clientmode_tfnormal.cpp │ │ ├── clientmode_tfnormal.h │ │ ├── commanderoverlay.cpp │ │ ├── commanderoverlay.h │ │ ├── commanderoverlaypanel.cpp │ │ ├── commanderoverlaypanel.h │ │ ├── env_objecteffects.cpp │ │ ├── env_objecteffects.h │ │ ├── fx_tf2_blood.cpp │ │ ├── fx_tf2_buildeffects.cpp │ │ ├── fx_tf2_impacts.cpp │ │ ├── fx_tf2_tracers.cpp │ │ ├── ground_line.cpp │ │ ├── ground_line.h │ │ ├── hintitembase.cpp │ │ ├── hintitembase.h │ │ ├── hintitemobjectbase.cpp │ │ ├── hintitemobjectbase.h │ │ ├── hintitemorderbase.cpp │ │ ├── hintitemorderbase.h │ │ ├── hud_ammo.cpp │ │ ├── hud_ammo.h │ │ ├── hud_commander_statuspanel.cpp │ │ ├── hud_commander_statuspanel.h │ │ ├── hud_damageindicator.cpp │ │ ├── hud_deathnotice.cpp │ │ ├── hud_emp.cpp │ │ ├── hud_health.cpp │ │ ├── hud_minimap.cpp │ │ ├── hud_minimap.h │ │ ├── hud_numeric.cpp │ │ ├── hud_numeric.h │ │ ├── hud_orders.cpp │ │ ├── hud_orders.h │ │ ├── hud_resources.cpp │ │ ├── hud_target_id.cpp │ │ ├── hud_targetreticle.cpp │ │ ├── hud_targetreticle.h │ │ ├── hud_technologytreedoc.cpp │ │ ├── hud_technologytreedoc.h │ │ ├── hud_timer.cpp │ │ ├── hud_timer.h │ │ ├── hud_vehicle_role.cpp │ │ ├── hud_vehicle_role.h │ │ ├── hud_weaponselection.cpp │ │ ├── infiltratorcamomaterialproxy.cpp │ │ ├── itfhintitem.h │ │ ├── iusesmortarpanel.h │ │ ├── mapdata.cpp │ │ ├── mapdata.h │ │ ├── minimap_players.cpp │ │ ├── minimap_resourcezone.cpp │ │ ├── minimap_trace.cpp │ │ ├── minimap_trace.h │ │ ├── overlay_orders.cpp │ │ ├── panel_effects.cpp │ │ ├── paneleffect.cpp │ │ ├── paneleffect.h │ │ ├── playerandobjectenumerator.cpp │ │ ├── playerandobjectenumerator.h │ │ ├── playeroverlay.cpp │ │ ├── playeroverlay.h │ │ ├── playeroverlayclass.cpp │ │ ├── playeroverlayclass.h │ │ ├── playeroverlayhealth.cpp │ │ ├── playeroverlayhealth.h │ │ ├── playeroverlayname.cpp │ │ ├── playeroverlayname.h │ │ ├── playeroverlayselected.cpp │ │ ├── playeroverlayselected.h │ │ ├── playeroverlaysquad.cpp │ │ ├── playeroverlaysquad.h │ │ ├── proxy_objpower.cpp │ │ ├── proxy_shield.cpp │ │ ├── proxy_sunroof.cpp │ │ ├── resourcezoneoverlay.cpp │ │ ├── teammaterialproxy.cpp │ │ ├── tf_clientmode.cpp │ │ ├── tf_in_main.cpp │ │ ├── tf_prediction.cpp │ │ ├── vgui_healthbar.cpp │ │ ├── vgui_healthbar.h │ │ ├── vgui_rootpanel_tf2.cpp │ │ ├── vgui_rotation_slider.cpp │ │ ├── vgui_rotation_slider.h │ │ └── ztestmaterialproxy.cpp │ ├── tfc │ │ ├── c_tfc_player.cpp │ │ ├── c_tfc_player.h │ │ ├── c_tfc_team.cpp │ │ ├── c_tfc_team.h │ │ ├── clientmode_tfc.cpp │ │ ├── clientmode_tfc.h │ │ ├── fx_tfc_impacts.cpp │ │ ├── tfc_hud_ammo.cpp │ │ ├── tfc_hud_weaponselection.cpp │ │ ├── tfc_in_main.cpp │ │ ├── tfc_prediction.cpp │ │ └── vgui │ │ │ ├── tfcclassmenu.cpp │ │ │ ├── tfcclassmenu.h │ │ │ ├── tfcteammenu.cpp │ │ │ ├── tfcteammenu.h │ │ │ ├── tfcviewport.cpp │ │ │ ├── tfcviewport.h │ │ │ ├── vgui_rootpanel_tfc.cpp │ │ │ └── vgui_rootpanel_tfc.h │ ├── thermalmaterialproxy.cpp │ ├── timedevent.h │ ├── timematerialproxy.cpp │ ├── toggletextureproxy.cpp │ ├── toggletextureproxy.h │ ├── toolframework_client.cpp │ ├── toolframework_client.h │ ├── train.cpp │ ├── vgui_avatarimage.cpp │ ├── vgui_avatarimage.h │ ├── vgui_basepanel.cpp │ ├── vgui_basepanel.h │ ├── vgui_bitmapbutton.cpp │ ├── vgui_bitmapbutton.h │ ├── vgui_bitmapimage.cpp │ ├── vgui_bitmapimage.h │ ├── vgui_bitmappanel.cpp │ ├── vgui_bitmappanel.h │ ├── vgui_centerstringpanel.cpp │ ├── vgui_consolepanel.cpp │ ├── vgui_debugoverlaypanel.cpp │ ├── vgui_entityimagepanel.cpp │ ├── vgui_entityimagepanel.h │ ├── vgui_entitypanel.cpp │ ├── vgui_entitypanel.h │ ├── vgui_fpspanel.cpp │ ├── vgui_game_viewport.cpp │ ├── vgui_game_viewport.h │ ├── vgui_grid.cpp │ ├── vgui_grid.h │ ├── vgui_helpers.h │ ├── vgui_imagehealthpanel.cpp │ ├── vgui_imagehealthpanel.h │ ├── vgui_int.cpp │ ├── vgui_int.h │ ├── vgui_loadingdiscpanel.cpp │ ├── vgui_messagechars.cpp │ ├── vgui_netgraphpanel.cpp │ ├── vgui_slideshow_display_screen.cpp │ ├── vgui_textmessagepanel.cpp │ ├── vgui_video.cpp │ ├── vgui_video.h │ ├── vguicenterprint.h │ ├── view.cpp │ ├── view.h │ ├── view_beams.cpp │ ├── view_effects.cpp │ ├── view_scene.cpp │ ├── view_scene.h │ ├── viewangleanim.cpp │ ├── viewangleanim.h │ ├── viewdebug.cpp │ ├── viewdebug.h │ ├── viewpostprocess.cpp │ ├── viewpostprocess.h │ ├── viewrender.cpp │ ├── viewrender.h │ ├── voice_menu.cpp │ ├── warp_overlay.cpp │ ├── weapon_selection.cpp │ ├── weapon_selection.h │ ├── weapons_resource.cpp │ ├── weapons_resource.h │ └── xbox │ │ └── xbox.def ├── server │ ├── AI_Criteria.cpp │ ├── AI_Criteria.h │ ├── AI_Interest_Target.cpp │ ├── AI_Interest_Target.h │ ├── AI_ResponseSystem.cpp │ ├── AI_ResponseSystem.h │ ├── BaseAnimatingOverlay.cpp │ ├── BaseAnimatingOverlay.h │ ├── BasePropDoor.h │ ├── CRagdollMagnet.cpp │ ├── CRagdollMagnet.h │ ├── CommentarySystem.cpp │ ├── EffectsServer.cpp │ ├── EntityDissolve.cpp │ ├── EntityDissolve.h │ ├── EntityFlame.cpp │ ├── EntityFlame.h │ ├── EntityParticleTrail.cpp │ ├── EntityParticleTrail.h │ ├── EnvBeam.cpp │ ├── EnvFade.cpp │ ├── EnvHudHint.cpp │ ├── EnvLaser.cpp │ ├── EnvLaser.h │ ├── EnvMessage.cpp │ ├── EnvMessage.h │ ├── EnvShake.cpp │ ├── EnvSpark.cpp │ ├── EventLog.cpp │ ├── EventLog.h │ ├── GameStats.cpp │ ├── GameStats.h │ ├── GameStats_BasicStatsFunctions.cpp │ ├── MaterialModifyControl.cpp │ ├── PointAngularVelocitySensor.cpp │ ├── RagdollBoogie.cpp │ ├── RagdollBoogie.h │ ├── ServerNetworkProperty.cpp │ ├── ServerNetworkProperty.h │ ├── SkyCamera.cpp │ ├── SkyCamera.h │ ├── TemplateEntities.cpp │ ├── TemplateEntities.h │ ├── UpgradeLog.htm │ ├── WaterLODControl.cpp │ ├── actanimating.cpp │ ├── actanimating.h │ ├── ai_activity.cpp │ ├── ai_baseactor.cpp │ ├── ai_baseactor.h │ ├── ai_basehumanoid.cpp │ ├── ai_basehumanoid.h │ ├── ai_basenpc.cpp │ ├── ai_basenpc.h │ ├── ai_basenpc_flyer.cpp │ ├── ai_basenpc_flyer.h │ ├── ai_basenpc_flyer_new.cpp │ ├── ai_basenpc_flyer_new.h │ ├── ai_basenpc_movement.cpp │ ├── ai_basenpc_physicsflyer.cpp │ ├── ai_basenpc_physicsflyer.h │ ├── ai_basenpc_schedule.cpp │ ├── ai_basenpc_squad.cpp │ ├── ai_behavior.cpp │ ├── ai_behavior.h │ ├── ai_behavior_assault.cpp │ ├── ai_behavior_assault.h │ ├── ai_behavior_fear.cpp │ ├── ai_behavior_fear.h │ ├── ai_behavior_follow.cpp │ ├── ai_behavior_follow.h │ ├── ai_behavior_lead.cpp │ ├── ai_behavior_lead.h │ ├── ai_behavior_passenger.cpp │ ├── ai_behavior_passenger.h │ ├── ai_behavior_rappel.cpp │ ├── ai_behavior_rappel.h │ ├── ai_behavior_standoff.cpp │ ├── ai_behavior_standoff.h │ ├── ai_blended_movement.cpp │ ├── ai_blended_movement.h │ ├── ai_component.h │ ├── ai_concommands.cpp │ ├── ai_condition.cpp │ ├── ai_condition.h │ ├── ai_debug.h │ ├── ai_default.cpp │ ├── ai_default.h │ ├── ai_dynamiclink.cpp │ ├── ai_dynamiclink.h │ ├── ai_event.cpp │ ├── ai_eventresponse.cpp │ ├── ai_eventresponse.h │ ├── ai_goalentity.cpp │ ├── ai_goalentity.h │ ├── ai_hint.cpp │ ├── ai_hint.h │ ├── ai_hull.cpp │ ├── ai_hull.h │ ├── ai_initutils.cpp │ ├── ai_initutils.h │ ├── ai_link.cpp │ ├── ai_link.h │ ├── ai_localnavigator.cpp │ ├── ai_localnavigator.h │ ├── ai_looktarget.cpp │ ├── ai_looktarget.h │ ├── ai_memory.cpp │ ├── ai_memory.h │ ├── ai_motor.cpp │ ├── ai_motor.h │ ├── ai_moveprobe.cpp │ ├── ai_moveprobe.h │ ├── ai_moveshoot.cpp │ ├── ai_moveshoot.h │ ├── ai_movesolver.cpp │ ├── ai_movesolver.h │ ├── ai_movetypes.h │ ├── ai_namespaces.cpp │ ├── ai_namespaces.h │ ├── ai_navgoaltype.h │ ├── ai_navigator.cpp │ ├── ai_navigator.h │ ├── ai_navtype.h │ ├── ai_network.cpp │ ├── ai_network.h │ ├── ai_networkmanager.cpp │ ├── ai_networkmanager.h │ ├── ai_node.cpp │ ├── ai_node.h │ ├── ai_npcstate.h │ ├── ai_obstacle_type.h │ ├── ai_pathfinder.cpp │ ├── ai_pathfinder.h │ ├── ai_planesolver.cpp │ ├── ai_planesolver.h │ ├── ai_playerally.cpp │ ├── ai_playerally.h │ ├── ai_relationship.cpp │ ├── ai_route.cpp │ ├── ai_route.h │ ├── ai_routedist.h │ ├── ai_saverestore.cpp │ ├── ai_saverestore.h │ ├── ai_schedule.cpp │ ├── ai_schedule.h │ ├── ai_scriptconditions.cpp │ ├── ai_scriptconditions.h │ ├── ai_senses.cpp │ ├── ai_senses.h │ ├── ai_sentence.cpp │ ├── ai_sentence.h │ ├── ai_speech.cpp │ ├── ai_speech.h │ ├── ai_speechfilter.cpp │ ├── ai_speechfilter.h │ ├── ai_squad.cpp │ ├── ai_squad.h │ ├── ai_squadslot.cpp │ ├── ai_squadslot.h │ ├── ai_tacticalservices.cpp │ ├── ai_tacticalservices.h │ ├── ai_task.cpp │ ├── ai_task.h │ ├── ai_trackpather.cpp │ ├── ai_trackpather.h │ ├── ai_utils.cpp │ ├── ai_utils.h │ ├── ai_waypoint.cpp │ ├── ai_waypoint.h │ ├── base_gameinterface.cpp │ ├── base_transmit_proxy.cpp │ ├── base_transmit_proxy.h │ ├── baseanimating.cpp │ ├── baseanimating.h │ ├── basebludgeonweapon.cpp │ ├── basebludgeonweapon.h │ ├── basecombatcharacter.cpp │ ├── basecombatcharacter.h │ ├── basecombatweapon.cpp │ ├── basecombatweapon.h │ ├── baseentity.cpp │ ├── baseentity.h │ ├── baseflex.cpp │ ├── baseflex.h │ ├── basegrenade_concussion.cpp │ ├── basegrenade_contact.cpp │ ├── basegrenade_timed.cpp │ ├── basemultiplayerplayer.cpp │ ├── basemultiplayerplayer.h │ ├── baseprojectile.cpp │ ├── baseprojectile.h │ ├── basetempentity.cpp │ ├── basetempentity.h │ ├── basetoggle.h │ ├── baseviewmodel.cpp │ ├── baseviewmodel.h │ ├── bitstring.cpp │ ├── bitstring.h │ ├── bmodels.cpp │ ├── buttons.cpp │ ├── buttons.h │ ├── cbase.cpp │ ├── cbase.h │ ├── client.cpp │ ├── client.h │ ├── colorcorrection.cpp │ ├── colorcorrectionvolume.cpp │ ├── controlentities.cpp │ ├── cplane.cpp │ ├── cplane.h │ ├── cstrike │ │ ├── bot │ │ │ ├── cs_bot.cpp │ │ │ ├── cs_bot.h │ │ │ ├── cs_bot_chatter.cpp │ │ │ ├── cs_bot_chatter.h │ │ │ ├── cs_bot_event.cpp │ │ │ ├── cs_bot_event_bomb.cpp │ │ │ ├── cs_bot_event_player.cpp │ │ │ ├── cs_bot_event_weapon.cpp │ │ │ ├── cs_bot_init.cpp │ │ │ ├── cs_bot_listen.cpp │ │ │ ├── cs_bot_manager.cpp │ │ │ ├── cs_bot_manager.h │ │ │ ├── cs_bot_nav.cpp │ │ │ ├── cs_bot_pathfind.cpp │ │ │ ├── cs_bot_radio.cpp │ │ │ ├── cs_bot_statemachine.cpp │ │ │ ├── cs_bot_update.cpp │ │ │ ├── cs_bot_vision.cpp │ │ │ ├── cs_bot_weapon.cpp │ │ │ ├── cs_bot_weapon_id.cpp │ │ │ ├── cs_gamestate.cpp │ │ │ ├── cs_gamestate.h │ │ │ └── states │ │ │ │ ├── cs_bot_attack.cpp │ │ │ │ ├── cs_bot_buy.cpp │ │ │ │ ├── cs_bot_defuse_bomb.cpp │ │ │ │ ├── cs_bot_escape_from_bomb.cpp │ │ │ │ ├── cs_bot_fetch_bomb.cpp │ │ │ │ ├── cs_bot_follow.cpp │ │ │ │ ├── cs_bot_hide.cpp │ │ │ │ ├── cs_bot_hunt.cpp │ │ │ │ ├── cs_bot_idle.cpp │ │ │ │ ├── cs_bot_investigate_noise.cpp │ │ │ │ ├── cs_bot_move_to.cpp │ │ │ │ ├── cs_bot_open_door.cpp │ │ │ │ ├── cs_bot_plant_bomb.cpp │ │ │ │ └── cs_bot_use_entity.cpp │ │ ├── cs_autobuy.cpp │ │ ├── cs_autobuy.h │ │ ├── cs_bot_temp.cpp │ │ ├── cs_bot_temp.h │ │ ├── cs_client.cpp │ │ ├── cs_client.h │ │ ├── cs_eventlog.cpp │ │ ├── cs_gameinterface.cpp │ │ ├── cs_gameinterface.h │ │ ├── cs_gamestats.cpp │ │ ├── cs_gamestats.h │ │ ├── cs_hltvdirector.cpp │ │ ├── cs_player.cpp │ │ ├── cs_player.h │ │ ├── cs_player_resource.cpp │ │ ├── cs_player_resource.h │ │ ├── cs_playermove.cpp │ │ ├── cs_team.cpp │ │ ├── cs_team.h │ │ ├── cs_vehicle_jeep.cpp │ │ ├── func_bomb_target.cpp │ │ ├── func_bomb_target.h │ │ ├── func_buy_zone.cpp │ │ ├── func_hostage_rescue.cpp │ │ ├── hostage │ │ │ ├── cs_simple_hostage.cpp │ │ │ └── cs_simple_hostage.h │ │ ├── info_view_parameters.cpp │ │ ├── info_view_parameters.h │ │ ├── item_ammo.cpp │ │ ├── item_assaultsuit.cpp │ │ ├── item_defuser.cpp │ │ ├── item_kevlar.cpp │ │ ├── item_nvgs.cpp │ │ ├── mapinfo.cpp │ │ ├── mapinfo.h │ │ ├── point_surroundtest.cpp │ │ ├── smokegrenade_projectile.cpp │ │ ├── smokegrenade_projectile.h │ │ ├── te_radioicon.cpp │ │ ├── te_shotgun_shot.cpp │ │ └── te_shotgun_shot.h │ ├── damagemodifier.cpp │ ├── damagemodifier.h │ ├── data_collector.cpp │ ├── data_collector.h │ ├── dod │ │ ├── dod_ammo_box.cpp │ │ ├── dod_ammo_box.h │ │ ├── dod_area_capture.cpp │ │ ├── dod_area_capture.h │ │ ├── dod_basegrenade.cpp │ │ ├── dod_basegrenade.h │ │ ├── dod_baserocket.cpp │ │ ├── dod_baserocket.h │ │ ├── dod_bombdispenser.cpp │ │ ├── dod_bombtarget.cpp │ │ ├── dod_bombtarget.h │ │ ├── dod_bot_temp.cpp │ │ ├── dod_bot_temp.h │ │ ├── dod_client.cpp │ │ ├── dod_control_point.cpp │ │ ├── dod_control_point.h │ │ ├── dod_control_point_master.cpp │ │ ├── dod_control_point_master.h │ │ ├── dod_cvars.cpp │ │ ├── dod_cvars.h │ │ ├── dod_eventlog.cpp │ │ ├── dod_gameinterface.cpp │ │ ├── dod_gameinterface.h │ │ ├── dod_gamestats.cpp │ │ ├── dod_gamestats.h │ │ ├── dod_handgrenade.cpp │ │ ├── dod_handgrenade.h │ │ ├── dod_hltvdirector.cpp │ │ ├── dod_location.cpp │ │ ├── dod_location.h │ │ ├── dod_objective_resource.cpp │ │ ├── dod_objective_resource.h │ │ ├── dod_player.cpp │ │ ├── dod_player.h │ │ ├── dod_player_resource.cpp │ │ ├── dod_player_resource.h │ │ ├── dod_playermove.cpp │ │ ├── dod_riflegrenade_ger.cpp │ │ ├── dod_riflegrenade_ger.h │ │ ├── dod_riflegrenade_us.cpp │ │ ├── dod_riflegrenade_us.h │ │ ├── dod_smokegrenade.cpp │ │ ├── dod_smokegrenade.h │ │ ├── dod_smokegrenade_ger.cpp │ │ ├── dod_smokegrenade_ger.h │ │ ├── dod_smokegrenade_us.cpp │ │ ├── dod_smokegrenade_us.h │ │ ├── dod_statmgr.cpp │ │ ├── dod_statmgr.h │ │ ├── dod_stickgrenade.cpp │ │ ├── dod_stickgrenade.h │ │ ├── dod_team.cpp │ │ ├── dod_team.h │ │ ├── grenadetrail.cpp │ │ ├── grenadetrail.h │ │ ├── rocket_bazooka.cpp │ │ ├── rocket_bazooka.h │ │ ├── rocket_pschreck.cpp │ │ ├── rocket_pschreck.h │ │ ├── te_firebullets.cpp │ │ ├── te_firebullets.h │ │ └── unisignals.h │ ├── doors.cpp │ ├── doors.h │ ├── dynamiclight.cpp │ ├── effects.cpp │ ├── effects.h │ ├── enginecallback.h │ ├── entity_tools_server.cpp │ ├── entityapi.h │ ├── entityblocker.cpp │ ├── entityblocker.h │ ├── entityinput.h │ ├── entitylist.cpp │ ├── entitylist.h │ ├── entityoutput.h │ ├── env_debughistory.cpp │ ├── env_debughistory.h │ ├── env_effectsscript.cpp │ ├── env_entity_maker.cpp │ ├── env_particlescript.cpp │ ├── env_player_surface_trigger.cpp │ ├── env_player_surface_trigger.h │ ├── env_projectedtexture.cpp │ ├── env_screenoverlay.cpp │ ├── env_texturetoggle.cpp │ ├── env_tonemap_controller.cpp │ ├── env_zoom.cpp │ ├── env_zoom.h │ ├── envmicrophone.cpp │ ├── envmicrophone.h │ ├── ep3 │ │ ├── npc_surface.cpp │ │ └── npc_surface.h │ ├── episodic │ │ ├── Episode3 │ │ │ ├── npc_combine_armored.cpp │ │ │ ├── npc_wpnscanner.cpp │ │ │ └── weapon_proto1.cpp │ │ ├── ai_behavior_alyx_injured.cpp │ │ ├── ai_behavior_alyx_injured.h │ │ ├── ai_behavior_passenger_companion.cpp │ │ ├── ai_behavior_passenger_companion.h │ │ ├── ai_behavior_passenger_zombie.cpp │ │ ├── ai_behavior_passenger_zombie.h │ │ ├── ep1_gamestats.cpp │ │ ├── ep1_gamestats.h │ │ ├── ep2_gamestats.cpp │ │ ├── ep2_gamestats.h │ │ ├── grenade_hopwire.cpp │ │ ├── grenade_hopwire.h │ │ ├── npc_advisor.cpp │ │ ├── npc_combine_cannon.cpp │ │ ├── npc_hunter.cpp │ │ ├── npc_hunter.h │ │ ├── npc_magnusson.cpp │ │ ├── npc_puppet.cpp │ │ ├── prop_scalable.cpp │ │ ├── vehicle_jeep_episodic.cpp │ │ ├── vehicle_jeep_episodic.h │ │ ├── weapon_hopwire.cpp │ │ ├── weapon_oldmanharpoon.cpp │ │ ├── weapon_striderbuster.cpp │ │ └── weapon_striderbuster.h │ ├── event_tempentity_tester.cpp │ ├── event_tempentity_tester.h │ ├── eventqueue.h │ ├── explode.cpp │ ├── explode.h │ ├── filters.cpp │ ├── filters.h │ ├── fire.cpp │ ├── fire.h │ ├── fire_smoke.cpp │ ├── fire_smoke.h │ ├── fish.cpp │ ├── fish.h │ ├── fogcontroller.cpp │ ├── fogcontroller.h │ ├── forcefeedback.cpp │ ├── fourwheelvehiclephysics.cpp │ ├── fourwheelvehiclephysics.h │ ├── func_areaportal.cpp │ ├── func_areaportalbase.cpp │ ├── func_areaportalbase.h │ ├── func_areaportalwindow.cpp │ ├── func_areaportalwindow.h │ ├── func_break.cpp │ ├── func_break.h │ ├── func_breakablesurf.cpp │ ├── func_breakablesurf.h │ ├── func_dust.cpp │ ├── func_ladder_endpoint.cpp │ ├── func_lod.cpp │ ├── func_movelinear.cpp │ ├── func_movelinear.h │ ├── func_occluder.cpp │ ├── func_reflective_glass.cpp │ ├── func_smokevolume.cpp │ ├── game.cpp │ ├── game.h │ ├── game_ui.cpp │ ├── gamehandle.cpp │ ├── gameinterface.cpp │ ├── gameinterface.h │ ├── gametrace_dll.cpp │ ├── gameweaponmanager.cpp │ ├── gameweaponmanager.h │ ├── genericactor.cpp │ ├── genericmonster.cpp │ ├── gib.cpp │ ├── gib.h │ ├── globals.cpp │ ├── globals.h │ ├── globalstate.cpp │ ├── globalstate.h │ ├── globalstate_private.h │ ├── grenadethrown.cpp │ ├── grenadethrown.h │ ├── guntarget.cpp │ ├── h_ai.cpp │ ├── h_cycler.cpp │ ├── h_cycler.h │ ├── h_export.cpp │ ├── hierarchy.cpp │ ├── hierarchy.h │ ├── hl1 │ │ ├── hl1_ai_basenpc.cpp │ │ ├── hl1_ai_basenpc.h │ │ ├── hl1_basecombatweapon.cpp │ │ ├── hl1_basegrenade.cpp │ │ ├── hl1_basegrenade.h │ │ ├── hl1_client.cpp │ │ ├── hl1_ents.cpp │ │ ├── hl1_ents.h │ │ ├── hl1_env_speaker.cpp │ │ ├── hl1_eventlog.cpp │ │ ├── hl1_func_recharge.cpp │ │ ├── hl1_func_tank.cpp │ │ ├── hl1_grenade_mp5.cpp │ │ ├── hl1_grenade_mp5.h │ │ ├── hl1_grenade_spit.cpp │ │ ├── hl1_grenade_spit.h │ │ ├── hl1_item_ammo.cpp │ │ ├── hl1_item_battery.cpp │ │ ├── hl1_item_healthkit.cpp │ │ ├── hl1_item_longjump.cpp │ │ ├── hl1_item_suit.cpp │ │ ├── hl1_items.cpp │ │ ├── hl1_items.h │ │ ├── hl1_monstermaker.cpp │ │ ├── hl1_monstermaker.h │ │ ├── hl1_npc_aflock.cpp │ │ ├── hl1_npc_agrunt.cpp │ │ ├── hl1_npc_apache.cpp │ │ ├── hl1_npc_barnacle.cpp │ │ ├── hl1_npc_barnacle.h │ │ ├── hl1_npc_barney.cpp │ │ ├── hl1_npc_barney.h │ │ ├── hl1_npc_bigmomma.cpp │ │ ├── hl1_npc_bloater.cpp │ │ ├── hl1_npc_bullsquid.cpp │ │ ├── hl1_npc_bullsquid.h │ │ ├── hl1_npc_controller.cpp │ │ ├── hl1_npc_controller.h │ │ ├── hl1_npc_gargantua.cpp │ │ ├── hl1_npc_gargantua.h │ │ ├── hl1_npc_gman.cpp │ │ ├── hl1_npc_hassassin.cpp │ │ ├── hl1_npc_headcrab.cpp │ │ ├── hl1_npc_headcrab.h │ │ ├── hl1_npc_hgrunt.cpp │ │ ├── hl1_npc_hgrunt.h │ │ ├── hl1_npc_hornet.cpp │ │ ├── hl1_npc_hornet.h │ │ ├── hl1_npc_houndeye.cpp │ │ ├── hl1_npc_houndeye.h │ │ ├── hl1_npc_ichthyosaur.cpp │ │ ├── hl1_npc_ichthyosaur.h │ │ ├── hl1_npc_leech.cpp │ │ ├── hl1_npc_nihilanth.cpp │ │ ├── hl1_npc_osprey.cpp │ │ ├── hl1_npc_roach.cpp │ │ ├── hl1_npc_scientist.cpp │ │ ├── hl1_npc_scientist.h │ │ ├── hl1_npc_snark.cpp │ │ ├── hl1_npc_snark.h │ │ ├── hl1_npc_talker.cpp │ │ ├── hl1_npc_talker.h │ │ ├── hl1_npc_tentacle.cpp │ │ ├── hl1_npc_turret.cpp │ │ ├── hl1_npc_vortigaunt.cpp │ │ ├── hl1_npc_vortigaunt.h │ │ ├── hl1_npc_zombie.cpp │ │ ├── hl1_npc_zombie.h │ │ ├── hl1_player.cpp │ │ ├── hl1_player.h │ │ ├── hl1_playermove.cpp │ │ ├── hl1_weapon_crowbar.cpp │ │ ├── hl1_weapon_snark.cpp │ │ ├── hl1_weapon_tripmine.cpp │ │ ├── hl1_weaponbox.cpp │ │ ├── hl1mp_bot_temp.cpp │ │ ├── hl1mp_bot_temp.h │ │ ├── hl1mp_gameinterface.cpp │ │ ├── hl1mp_player.cpp │ │ └── hl1mp_player.h │ ├── hl1_CBaseHelicopter.h │ ├── hl2 │ │ ├── Func_Monitor.cpp │ │ ├── ai_allymanager.cpp │ │ ├── ai_behavior_actbusy.cpp │ │ ├── ai_behavior_actbusy.h │ │ ├── ai_behavior_functank.cpp │ │ ├── ai_behavior_functank.h │ │ ├── ai_behavior_holster.cpp │ │ ├── ai_behavior_holster.h │ │ ├── ai_behavior_operator.cpp │ │ ├── ai_behavior_operator.h │ │ ├── ai_behavior_police.cpp │ │ ├── ai_behavior_police.h │ │ ├── ai_goal_police.cpp │ │ ├── ai_goal_police.h │ │ ├── ai_interactions.h │ │ ├── ai_spotlight.cpp │ │ ├── ai_spotlight.h │ │ ├── antlion_dust.cpp │ │ ├── antlion_dust.h │ │ ├── antlion_maker.cpp │ │ ├── antlion_maker.h │ │ ├── ar2_explosion.cpp │ │ ├── ar2_explosion.h │ │ ├── assassin_smoke.cpp │ │ ├── assassin_smoke.h │ │ ├── basehlcombatweapon.cpp │ │ ├── basehlcombatweapon.h │ │ ├── cbasehelicopter.cpp │ │ ├── cbasehelicopter.h │ │ ├── cbasespriteprojectile.cpp │ │ ├── cbasespriteprojectile.h │ │ ├── citadel_effects.cpp │ │ ├── combine_mine.cpp │ │ ├── combine_mine.h │ │ ├── energy_wave.h │ │ ├── env_alyxemp.cpp │ │ ├── env_headcrabcanister.cpp │ │ ├── env_speaker.cpp │ │ ├── env_speaker.h │ │ ├── env_starfield.cpp │ │ ├── extinguisherjet.cpp │ │ ├── extinguisherjet.h │ │ ├── func_bulletshield.cpp │ │ ├── func_bulletshield.h │ │ ├── func_recharge.cpp │ │ ├── func_tank.cpp │ │ ├── func_tank.h │ │ ├── grenade_ar2.cpp │ │ ├── grenade_ar2.h │ │ ├── grenade_beam.cpp │ │ ├── grenade_beam.h │ │ ├── grenade_brickbat.cpp │ │ ├── grenade_brickbat.h │ │ ├── grenade_bugbait.cpp │ │ ├── grenade_bugbait.h │ │ ├── grenade_energy.cpp │ │ ├── grenade_energy.h │ │ ├── grenade_frag.cpp │ │ ├── grenade_frag.h │ │ ├── grenade_homer.cpp │ │ ├── grenade_homer.h │ │ ├── grenade_molotov.cpp │ │ ├── grenade_molotov.h │ │ ├── grenade_pathfollower.cpp │ │ ├── grenade_pathfollower.h │ │ ├── grenade_satchel.cpp │ │ ├── grenade_satchel.h │ │ ├── grenade_spit.cpp │ │ ├── grenade_spit.h │ │ ├── grenade_tripmine.cpp │ │ ├── grenade_tripmine.h │ │ ├── grenade_tripwire.cpp │ │ ├── grenade_tripwire.h │ │ ├── hl2_ai_network.cpp │ │ ├── hl2_client.cpp │ │ ├── hl2_eventlog.cpp │ │ ├── hl2_gamestats.cpp │ │ ├── hl2_gamestats.h │ │ ├── hl2_player.cpp │ │ ├── hl2_player.h │ │ ├── hl2_playerlocaldata.cpp │ │ ├── hl2_playerlocaldata.h │ │ ├── hl2_triggers.cpp │ │ ├── hl_playermove.cpp │ │ ├── info_darknessmode_lightsource.cpp │ │ ├── info_darknessmode_lightsource.h │ │ ├── info_teleporter_countdown.cpp │ │ ├── item_ammo.cpp │ │ ├── item_antidote.cpp │ │ ├── item_battery.cpp │ │ ├── item_dynamic_resupply.cpp │ │ ├── item_dynamic_resupply.h │ │ ├── item_healthkit.cpp │ │ ├── item_itemcrate.cpp │ │ ├── item_longjump.cpp │ │ ├── item_security.cpp │ │ ├── item_suit.cpp │ │ ├── look_door.cpp │ │ ├── monster_dummy.cpp │ │ ├── npc_BaseZombie.cpp │ │ ├── npc_BaseZombie.h │ │ ├── npc_PoisonZombie.cpp │ │ ├── npc_alyx.cpp │ │ ├── npc_alyx.h │ │ ├── npc_alyx_episodic.cpp │ │ ├── npc_alyx_episodic.h │ │ ├── npc_antlion.cpp │ │ ├── npc_antlion.h │ │ ├── npc_antliongrub.cpp │ │ ├── npc_antliongrub.h │ │ ├── npc_antlionguard.cpp │ │ ├── npc_apcdriver.cpp │ │ ├── npc_assassin.cpp │ │ ├── npc_assassin.h │ │ ├── npc_attackchopper.cpp │ │ ├── npc_attackchopper.h │ │ ├── npc_barnacle.cpp │ │ ├── npc_barnacle.h │ │ ├── npc_barney.cpp │ │ ├── npc_basescanner.cpp │ │ ├── npc_basescanner.h │ │ ├── npc_blob.cpp │ │ ├── npc_breen.cpp │ │ ├── npc_bullseye.cpp │ │ ├── npc_bullseye.h │ │ ├── npc_bullsquid.cpp │ │ ├── npc_bullsquid.h │ │ ├── npc_citizen17.cpp │ │ ├── npc_citizen17.h │ │ ├── npc_combine.cpp │ │ ├── npc_combine.h │ │ ├── npc_combinecamera.cpp │ │ ├── npc_combinedropship.cpp │ │ ├── npc_combinegunship.cpp │ │ ├── npc_combines.cpp │ │ ├── npc_combines.h │ │ ├── npc_cranedriver.cpp │ │ ├── npc_crow.cpp │ │ ├── npc_crow.h │ │ ├── npc_dog.cpp │ │ ├── npc_eli.cpp │ │ ├── npc_enemyfinder.cpp │ │ ├── npc_fastzombie.cpp │ │ ├── npc_fisherman.cpp │ │ ├── npc_gman.cpp │ │ ├── npc_headcrab.cpp │ │ ├── npc_headcrab.h │ │ ├── npc_houndeye.cpp │ │ ├── npc_houndeye.h │ │ ├── npc_hydra.cpp │ │ ├── npc_hydra.h │ │ ├── npc_ichthyosaur.cpp │ │ ├── npc_kleiner.cpp │ │ ├── npc_launcher.cpp │ │ ├── npc_manhack.cpp │ │ ├── npc_manhack.h │ │ ├── npc_metropolice.cpp │ │ ├── npc_metropolice.h │ │ ├── npc_missiledefense.cpp │ │ ├── npc_monk.cpp │ │ ├── npc_mossman.cpp │ │ ├── npc_playercompanion.cpp │ │ ├── npc_playercompanion.h │ │ ├── npc_rollermine.cpp │ │ ├── npc_rollermine.h │ │ ├── npc_scanner.cpp │ │ ├── npc_scanner.h │ │ ├── npc_spotlight.cpp │ │ ├── npc_stalker.cpp │ │ ├── npc_stalker.h │ │ ├── npc_strider.cpp │ │ ├── npc_strider.h │ │ ├── npc_turret.cpp │ │ ├── npc_turret_ceiling.cpp │ │ ├── npc_turret_floor.cpp │ │ ├── npc_turret_floor.h │ │ ├── npc_turret_ground.cpp │ │ ├── npc_turret_ground.h │ │ ├── npc_vortigaunt_episodic.cpp │ │ ├── npc_vortigaunt_episodic.h │ │ ├── npc_zombie.cpp │ │ ├── npc_zombine.cpp │ │ ├── point_apc_controller.cpp │ │ ├── prop_combine_ball.cpp │ │ ├── prop_combine_ball.h │ │ ├── prop_thumper.cpp │ │ ├── proto_sniper.cpp │ │ ├── rotorwash.cpp │ │ ├── rotorwash.h │ │ ├── script_intro.cpp │ │ ├── script_intro.h │ │ ├── te_gaussexplosion.cpp │ │ ├── trigger_super_armor.cpp │ │ ├── vehicle_airboat.cpp │ │ ├── vehicle_apc.cpp │ │ ├── vehicle_apc.h │ │ ├── vehicle_cannon.cpp │ │ ├── vehicle_crane.cpp │ │ ├── vehicle_crane.h │ │ ├── vehicle_jeep.cpp │ │ ├── vehicle_jeep.h │ │ ├── vehicle_jetski.cpp │ │ ├── vehicle_prisoner_pod.cpp │ │ ├── vehicle_viewcontroller.cpp │ │ ├── weapon_357.cpp │ │ ├── weapon_alyxgun.cpp │ │ ├── weapon_alyxgun.h │ │ ├── weapon_annabelle.cpp │ │ ├── weapon_ar1.cpp │ │ ├── weapon_ar2.cpp │ │ ├── weapon_ar2.h │ │ ├── weapon_brickbat.cpp │ │ ├── weapon_brickbat.h │ │ ├── weapon_bugbait.cpp │ │ ├── weapon_cguard.cpp │ │ ├── weapon_citizenpackage.cpp │ │ ├── weapon_citizenpackage.h │ │ ├── weapon_crossbow.cpp │ │ ├── weapon_crowbar.cpp │ │ ├── weapon_crowbar.h │ │ ├── weapon_extinguisher.cpp │ │ ├── weapon_flaregun.cpp │ │ ├── weapon_flaregun.h │ │ ├── weapon_frag.cpp │ │ ├── weapon_gauss.h │ │ ├── weapon_immolator.cpp │ │ ├── weapon_irifle.cpp │ │ ├── weapon_manhack.cpp │ │ ├── weapon_molotov.cpp │ │ ├── weapon_molotov.h │ │ ├── weapon_physcannon.cpp │ │ ├── weapon_physcannon.h │ │ ├── weapon_pistol.cpp │ │ ├── weapon_rpg.cpp │ │ ├── weapon_rpg.h │ │ ├── weapon_shotgun.cpp │ │ ├── weapon_slam.cpp │ │ ├── weapon_slam.h │ │ ├── weapon_smg1.cpp │ │ ├── weapon_smg2.cpp │ │ ├── weapon_sniperrifle.cpp │ │ ├── weapon_stunstick.cpp │ │ ├── weapon_stunstick.h │ │ ├── weapon_thumper.cpp │ │ ├── weapon_tripwire.cpp │ │ └── weapon_tripwire.h │ ├── hl2mp │ │ ├── grenade_satchel.cpp │ │ ├── grenade_satchel.h │ │ ├── grenade_tripmine.cpp │ │ ├── grenade_tripmine.h │ │ ├── hl2mp_bot_temp.cpp │ │ ├── hl2mp_bot_temp.h │ │ ├── hl2mp_client.cpp │ │ ├── hl2mp_cvars.cpp │ │ ├── hl2mp_cvars.h │ │ ├── hl2mp_gameinterface.cpp │ │ ├── hl2mp_gameinterface.h │ │ ├── hl2mp_player.cpp │ │ ├── hl2mp_player.h │ │ ├── te_hl2mp_shotgun_shot.cpp │ │ └── te_hl2mp_shotgun_shot.h │ ├── hltvdirector.cpp │ ├── hltvdirector.h │ ├── ilagcompensationmanager.h │ ├── info_camera_link.cpp │ ├── info_camera_link.h │ ├── info_overlay_accessor.cpp │ ├── init_factory.cpp │ ├── init_factory.h │ ├── intermission.cpp │ ├── iscorer.h │ ├── iservervehicle.h │ ├── item_world.cpp │ ├── items.h │ ├── lightglow.cpp │ ├── lights.cpp │ ├── lights.h │ ├── locksounds.h │ ├── logic_achievement.cpp │ ├── logic_measure_movement.cpp │ ├── logic_mirror_movement.cpp │ ├── logic_navigation.cpp │ ├── logicauto.cpp │ ├── logicentities.cpp │ ├── logicrelay.cpp │ ├── logicrelay.h │ ├── mapentities.cpp │ ├── mapentities.h │ ├── maprules.cpp │ ├── maprules.h │ ├── message_entity.cpp │ ├── modelentities.cpp │ ├── modelentities.h │ ├── monstermaker.cpp │ ├── monstermaker.h │ ├── movehelper_server.cpp │ ├── movehelper_server.h │ ├── movement.cpp │ ├── movie_explosion.cpp │ ├── movie_explosion.h │ ├── nav.h │ ├── nav_area.cpp │ ├── nav_area.h │ ├── nav_colors.cpp │ ├── nav_colors.h │ ├── nav_edit.cpp │ ├── nav_file.cpp │ ├── nav_generate.cpp │ ├── nav_ladder.cpp │ ├── nav_ladder.h │ ├── nav_mesh.cpp │ ├── nav_mesh.h │ ├── nav_node.cpp │ ├── nav_node.h │ ├── nav_pathfind.h │ ├── ndebugoverlay.cpp │ ├── ndebugoverlay.h │ ├── networkstringtable_gamedll.h │ ├── npc_talker.cpp │ ├── npc_talker.h │ ├── npc_vehicledriver.cpp │ ├── npc_vehicledriver.h │ ├── particle_fire.cpp │ ├── particle_fire.h │ ├── particle_light.cpp │ ├── particle_light.h │ ├── particle_smokegrenade.cpp │ ├── particle_smokegrenade.h │ ├── particle_system.cpp │ ├── particle_system.h │ ├── pathcorner.cpp │ ├── pathtrack.cpp │ ├── pathtrack.h │ ├── phys_controller.cpp │ ├── phys_controller.h │ ├── physconstraint.cpp │ ├── physconstraint_sounds.h │ ├── physgun.cpp │ ├── physics.cpp │ ├── physics.h │ ├── physics_bone_follower.cpp │ ├── physics_bone_follower.h │ ├── physics_cannister.cpp │ ├── physics_cannister.h │ ├── physics_collisionevent.h │ ├── physics_fx.cpp │ ├── physics_fx.h │ ├── physics_impact_damage.cpp │ ├── physics_impact_damage.h │ ├── physics_main.cpp │ ├── physics_npc_solver.cpp │ ├── physics_npc_solver.h │ ├── physics_prop_ragdoll.cpp │ ├── physics_prop_ragdoll.h │ ├── physobj.cpp │ ├── physobj.h │ ├── plasma.cpp │ ├── plasma.h │ ├── player.cpp │ ├── player.h │ ├── player_command.cpp │ ├── player_command.h │ ├── player_lagcompensation.cpp │ ├── player_pickup.cpp │ ├── player_pickup.h │ ├── player_resource.cpp │ ├── player_resource.h │ ├── playerinfomanager.cpp │ ├── playerinfomanager.h │ ├── playerlocaldata.cpp │ ├── playerlocaldata.h │ ├── plugin_check.cpp │ ├── point_camera.cpp │ ├── point_camera.h │ ├── point_devshot_camera.cpp │ ├── point_playermoveconstraint.cpp │ ├── point_spotlight.cpp │ ├── point_template.cpp │ ├── point_template.h │ ├── pointanglesensor.cpp │ ├── pointhurt.cpp │ ├── pointteleport.cpp │ ├── portal │ │ ├── PhysicsCloneArea.cpp │ │ ├── PhysicsCloneArea.h │ │ ├── Portal_CustomStatsVisualizer.cpp │ │ ├── cbaseanimatingprojectile.cpp │ │ ├── cbaseanimatingprojectile.h │ │ ├── env_lightrail_endpoint.cpp │ │ ├── env_portal_credits.cpp │ │ ├── env_portal_path_track.cpp │ │ ├── func_liquidportal.cpp │ │ ├── func_liquidportal.h │ │ ├── func_noportal_volume.cpp │ │ ├── func_noportal_volume.h │ │ ├── func_portal_bumper.cpp │ │ ├── func_portal_detector.cpp │ │ ├── func_portal_detector.h │ │ ├── func_portal_orientation.cpp │ │ ├── func_portal_orientation.h │ │ ├── neurotoxin_countdown.cpp │ │ ├── npc_portal_turret_floor.cpp │ │ ├── npc_portal_turret_ground.cpp │ │ ├── npc_rocket_turret.cpp │ │ ├── npc_security_camera.cpp │ │ ├── physicsshadowclone.cpp │ │ ├── physicsshadowclone.h │ │ ├── portal_client.cpp │ │ ├── portal_gamestats.cpp │ │ ├── portal_gamestats.h │ │ ├── portal_mp_client.cpp │ │ ├── portal_physics_collisionevent.cpp │ │ ├── portal_physics_collisionevent.h │ │ ├── portal_placement.cpp │ │ ├── portal_placement.h │ │ ├── portal_player.cpp │ │ ├── portal_player.h │ │ ├── prop_energy_ball.cpp │ │ ├── prop_glados_core.cpp │ │ ├── prop_portal.cpp │ │ ├── prop_portal.h │ │ ├── prop_portal_stats_display.cpp │ │ ├── prop_telescopic_arm.cpp │ │ ├── trigger_portal_cleanser.cpp │ │ ├── weapon_physcannon.cpp │ │ ├── weapon_physcannon.h │ │ ├── weapon_portalgun.cpp │ │ └── weapon_portalgun.h │ ├── props.cpp │ ├── props.h │ ├── ragdoll_manager.cpp │ ├── recipientfilter.cpp │ ├── recipientfilter.h │ ├── rope.cpp │ ├── rope.h │ ├── saverestore_gamedll.cpp │ ├── sceneentity.cpp │ ├── sceneentity.h │ ├── scratchpad_gamedll_helpers.cpp │ ├── scratchpad_gamedll_helpers.h │ ├── scripted.cpp │ ├── scripted.h │ ├── scriptedtarget.cpp │ ├── scriptedtarget.h │ ├── sdk │ │ ├── sdk_bot_temp.cpp │ │ ├── sdk_bot_temp.h │ │ ├── sdk_brushentity.cpp │ │ ├── sdk_client.cpp │ │ ├── sdk_env_message.cpp │ │ ├── sdk_env_sparkler.cpp │ │ ├── sdk_eventlog.cpp │ │ ├── sdk_gameinterface.cpp │ │ ├── sdk_logicalentity.cpp │ │ ├── sdk_modelentity.cpp │ │ ├── sdk_player.cpp │ │ ├── sdk_player.h │ │ ├── sdk_playermove.cpp │ │ ├── sdk_team.cpp │ │ ├── sdk_team.h │ │ ├── sdk_vehicle_jeep.cpp │ │ ├── te_firebullets.cpp │ │ └── te_firebullets.h │ ├── sendproxy.cpp │ ├── sendproxy.h │ ├── server_base.vpc │ ├── server_cstrike.vcproj │ ├── server_cstrike.vpc │ ├── server_dod.vcproj │ ├── server_dod.vpc │ ├── server_episodic.vcproj │ ├── server_episodic.vpc │ ├── server_hl1.vcproj │ ├── server_hl1.vpc │ ├── server_hl2.vcxproj │ ├── server_hl2.vcxproj.filters │ ├── server_hl2.vcxproj.user │ ├── server_hl2.vpc │ ├── server_hl2_old.vcproj │ ├── server_hl2mp.vcproj │ ├── server_hl2mp.vpc │ ├── server_lostcoast.vcproj │ ├── server_lostcoast.vpc │ ├── server_portal.vcproj │ ├── server_portal.vpc │ ├── server_tf.vcproj │ ├── server_tf.vpc │ ├── shadowcontrol.cpp │ ├── slideshow_display.cpp │ ├── smoke_trail.cpp │ ├── smoke_trail.h │ ├── smokestack.cpp │ ├── smokestack.h │ ├── sound.cpp │ ├── soundent.cpp │ ├── soundent.h │ ├── soundscape.cpp │ ├── soundscape.h │ ├── soundscape_system.cpp │ ├── soundscape_system.h │ ├── spark.h │ ├── spotlightend.cpp │ ├── spotlightend.h │ ├── sprite_perfmonitor.cpp │ ├── stdafx.cpp │ ├── steamjet.cpp │ ├── steamjet.h │ ├── subs.cpp │ ├── sun.cpp │ ├── tanktrain.cpp │ ├── te.cpp │ ├── te.h │ ├── te_armorricochet.cpp │ ├── te_basebeam.cpp │ ├── te_basebeam.h │ ├── te_beamentpoint.cpp │ ├── te_beaments.cpp │ ├── te_beamfollow.cpp │ ├── te_beamlaser.cpp │ ├── te_beampoints.cpp │ ├── te_beamring.cpp │ ├── te_beamringpoint.cpp │ ├── te_beamspline.cpp │ ├── te_bloodsprite.cpp │ ├── te_bloodstream.cpp │ ├── te_breakmodel.cpp │ ├── te_bspdecal.cpp │ ├── te_bubbles.cpp │ ├── te_bubbletrail.cpp │ ├── te_clientprojectile.cpp │ ├── te_decal.cpp │ ├── te_dynamiclight.cpp │ ├── te_effect_dispatch.cpp │ ├── te_effect_dispatch.h │ ├── te_energysplash.cpp │ ├── te_explosion.cpp │ ├── te_fizz.cpp │ ├── te_footprintdecal.cpp │ ├── te_glassshatter.cpp │ ├── te_glowsprite.cpp │ ├── te_impact.cpp │ ├── te_killplayerattachments.cpp │ ├── te_largefunnel.cpp │ ├── te_muzzleflash.cpp │ ├── te_particlesystem.cpp │ ├── te_particlesystem.h │ ├── te_physicsprop.cpp │ ├── te_playerdecal.cpp │ ├── te_projecteddecal.cpp │ ├── te_showline.cpp │ ├── te_smoke.cpp │ ├── te_sparks.cpp │ ├── te_sprite.cpp │ ├── te_spritespray.cpp │ ├── te_worlddecal.cpp │ ├── team.cpp │ ├── team.h │ ├── team_control_point.cpp │ ├── team_control_point.h │ ├── team_control_point_master.cpp │ ├── team_control_point_master.h │ ├── team_control_point_round.cpp │ ├── team_control_point_round.h │ ├── team_objectiveresource.cpp │ ├── team_objectiveresource.h │ ├── team_spawnpoint.cpp │ ├── team_spawnpoint.h │ ├── tempmonster.cpp │ ├── tesla.cpp │ ├── tesla.h │ ├── test_proxytoggle.cpp │ ├── test_stressentities.cpp │ ├── test_stressentities.h │ ├── testfunctions.cpp │ ├── testtraceline.cpp │ ├── textstatsmgr.cpp │ ├── textstatsmgr.h │ ├── tf │ │ ├── entity_ammopack.cpp │ │ ├── entity_ammopack.h │ │ ├── entity_armor.cpp │ │ ├── entity_armor.h │ │ ├── entity_forcerespawn.cpp │ │ ├── entity_forcerespawn.h │ │ ├── entity_game_text_tf.cpp │ │ ├── entity_grenadepack.cpp │ │ ├── entity_grenadepack.h │ │ ├── entity_healthkit.cpp │ │ ├── entity_healthkit.h │ │ ├── entity_intermission.cpp │ │ ├── entity_intermission.h │ │ ├── entity_roundwin.cpp │ │ ├── entity_roundwin.h │ │ ├── entity_tfstart.cpp │ │ ├── entity_tfstart.h │ │ ├── func_capture_zone.cpp │ │ ├── func_capture_zone.h │ │ ├── func_changeclass.cpp │ │ ├── func_changeclass.h │ │ ├── func_no_build.cpp │ │ ├── func_no_build.h │ │ ├── func_nogrenades.cpp │ │ ├── func_nogrenades.h │ │ ├── func_regenerate.cpp │ │ ├── func_regenerate.h │ │ ├── func_respawnroom.cpp │ │ ├── func_respawnroom.h │ │ ├── te_tfblood.cpp │ │ ├── te_tfblood.h │ │ ├── tf_ammo_pack.cpp │ │ ├── tf_ammo_pack.h │ │ ├── tf_bot_temp.cpp │ │ ├── tf_bot_temp.h │ │ ├── tf_client.cpp │ │ ├── tf_client.h │ │ ├── tf_eventlog.cpp │ │ ├── tf_filters.cpp │ │ ├── tf_fx.cpp │ │ ├── tf_fx.h │ │ ├── tf_gameinterface.cpp │ │ ├── tf_gamestats.cpp │ │ ├── tf_gamestats.h │ │ ├── tf_hltvdirector.cpp │ │ ├── tf_mapitems.cpp │ │ ├── tf_mapitems.h │ │ ├── tf_obj.cpp │ │ ├── tf_obj.h │ │ ├── tf_obj_dispenser.cpp │ │ ├── tf_obj_dispenser.h │ │ ├── tf_obj_sapper.cpp │ │ ├── tf_obj_sapper.h │ │ ├── tf_obj_sentrygun.cpp │ │ ├── tf_obj_sentrygun.h │ │ ├── tf_obj_teleporter.cpp │ │ ├── tf_obj_teleporter.h │ │ ├── tf_objective_resource.cpp │ │ ├── tf_objective_resource.h │ │ ├── tf_player.cpp │ │ ├── tf_player.h │ │ ├── tf_player_resource.cpp │ │ ├── tf_player_resource.h │ │ ├── tf_playerclass.cpp │ │ ├── tf_playerclass.h │ │ ├── tf_playermove.cpp │ │ ├── tf_powerup.cpp │ │ ├── tf_powerup.h │ │ ├── tf_projectile_rocket.cpp │ │ ├── tf_projectile_rocket.h │ │ ├── tf_team.cpp │ │ ├── tf_team.h │ │ ├── tf_timer.cpp │ │ ├── tf_timer.h │ │ ├── tf_turret.cpp │ │ ├── tf_turret.h │ │ ├── tf_weapon_builder.cpp │ │ └── tf_weapon_builder.h │ ├── tf2 │ │ ├── basecombatcharacter_tf2.cpp │ │ ├── bot_base.cpp │ │ ├── bot_base.h │ │ ├── c_obj_armor_upgrade.cpp │ │ ├── c_obj_armor_upgrade.h │ │ ├── controlzone.cpp │ │ ├── controlzone.h │ │ ├── demo_entities.cpp │ │ ├── entity_burn_effect.cpp │ │ ├── entity_burn_effect.h │ │ ├── env_fallingrocks.cpp │ │ ├── env_meteor.cpp │ │ ├── env_meteor.h │ │ ├── fire_damage_mgr.cpp │ │ ├── fire_damage_mgr.h │ │ ├── gasoline_blob.cpp │ │ ├── gasoline_blob.h │ │ ├── info_act.cpp │ │ ├── info_act.h │ │ ├── info_add_resources.cpp │ │ ├── info_buildpoint.cpp │ │ ├── info_buildpoint.h │ │ ├── info_customtech.cpp │ │ ├── info_customtech.h │ │ ├── info_input_playsound.cpp │ │ ├── info_input_resetbanks.cpp │ │ ├── info_input_resetobjects.cpp │ │ ├── info_input_respawnplayers.cpp │ │ ├── info_minimappulse.cpp │ │ ├── info_output_team.cpp │ │ ├── info_resourceprocessor.cpp │ │ ├── info_vehicle_bay.cpp │ │ ├── info_vehicle_bay.h │ │ ├── mapdata_server.cpp │ │ ├── menu_base.cpp │ │ ├── menu_base.h │ │ ├── mortar_round.cpp │ │ ├── mortar_round.h │ │ ├── npc_bug_builder.cpp │ │ ├── npc_bug_builder.h │ │ ├── npc_bug_hole.cpp │ │ ├── npc_bug_hole.h │ │ ├── npc_bug_warrior.cpp │ │ ├── npc_bug_warrior.h │ │ ├── order_assist.cpp │ │ ├── order_assist.h │ │ ├── order_buildsentrygun.cpp │ │ ├── order_buildsentrygun.h │ │ ├── order_buildshieldwall.cpp │ │ ├── order_buildshieldwall.h │ │ ├── order_events.cpp │ │ ├── order_events.h │ │ ├── order_heal.cpp │ │ ├── order_heal.h │ │ ├── order_helpers.cpp │ │ ├── order_helpers.h │ │ ├── order_killmortarguy.cpp │ │ ├── order_killmortarguy.h │ │ ├── order_mortar_attack.cpp │ │ ├── order_mortar_attack.h │ │ ├── order_player.cpp │ │ ├── order_player.h │ │ ├── order_repair.cpp │ │ ├── order_repair.h │ │ ├── order_resourcepump.cpp │ │ ├── order_resourcepump.h │ │ ├── order_resupply.cpp │ │ ├── order_resupply.h │ │ ├── orders.cpp │ │ ├── orders.h │ │ ├── ragdoll_shadow.cpp │ │ ├── ragdoll_shadow.h │ │ ├── resource_chunk.cpp │ │ ├── resource_chunk.h │ │ ├── sensor_tf_team.cpp │ │ ├── team_messages.cpp │ │ ├── team_messages.h │ │ ├── tf_accuracy.cpp │ │ ├── tf_ai_hint.h │ │ ├── tf_basecombatweapon.cpp │ │ ├── tf_basecombatweapon.h │ │ ├── tf_basefourwheelvehicle.cpp │ │ ├── tf_basefourwheelvehicle.h │ │ ├── tf_carrier.cpp │ │ ├── tf_carrier.h │ │ ├── tf_class_commando.cpp │ │ ├── tf_class_commando.h │ │ ├── tf_class_defender.cpp │ │ ├── tf_class_defender.h │ │ ├── tf_class_escort.cpp │ │ ├── tf_class_escort.h │ │ ├── tf_class_infiltrator.cpp │ │ ├── tf_class_infiltrator.h │ │ ├── tf_class_medic.cpp │ │ ├── tf_class_medic.h │ │ ├── tf_class_pyro.cpp │ │ ├── tf_class_pyro.h │ │ ├── tf_class_recon.cpp │ │ ├── tf_class_recon.h │ │ ├── tf_class_sapper.cpp │ │ ├── tf_class_sapper.h │ │ ├── tf_class_sniper.cpp │ │ ├── tf_class_sniper.h │ │ ├── tf_class_support.cpp │ │ ├── tf_class_support.h │ │ ├── tf_client.cpp │ │ ├── tf_eventlog.cpp │ │ ├── tf_filters.cpp │ │ ├── tf_flare.cpp │ │ ├── tf_flare.h │ │ ├── tf_func_construction_yard.cpp │ │ ├── tf_func_construction_yard.h │ │ ├── tf_func_mass_teleport.cpp │ │ ├── tf_func_mass_teleport.h │ │ ├── tf_func_no_build.cpp │ │ ├── tf_func_no_build.h │ │ ├── tf_func_resource.cpp │ │ ├── tf_func_resource.h │ │ ├── tf_func_weldable_door.cpp │ │ ├── tf_func_weldable_door.h │ │ ├── tf_gameinterface.cpp │ │ ├── tf_hintmanager.cpp │ │ ├── tf_hintmanager.h │ │ ├── tf_obj.cpp │ │ ├── tf_obj.h │ │ ├── tf_obj_armor_upgrade.cpp │ │ ├── tf_obj_armor_upgrade.h │ │ ├── tf_obj_barbed_wire.cpp │ │ ├── tf_obj_barbed_wire.h │ │ ├── tf_obj_buff_station.cpp │ │ ├── tf_obj_buff_station.h │ │ ├── tf_obj_bunker.cpp │ │ ├── tf_obj_bunker.h │ │ ├── tf_obj_dragonsteeth.cpp │ │ ├── tf_obj_dragonsteeth.h │ │ ├── tf_obj_empgenerator.cpp │ │ ├── tf_obj_empgenerator.h │ │ ├── tf_obj_explosives.cpp │ │ ├── tf_obj_manned_missilelauncher.cpp │ │ ├── tf_obj_manned_missilelauncher.h │ │ ├── tf_obj_manned_shield.cpp │ │ ├── tf_obj_mapdefined.cpp │ │ ├── tf_obj_mapdefined.h │ │ ├── tf_obj_mcv_selection_panel.cpp │ │ ├── tf_obj_mcv_selection_panel.h │ │ ├── tf_obj_mortar.cpp │ │ ├── tf_obj_mortar.h │ │ ├── tf_obj_powerpack.cpp │ │ ├── tf_obj_powerpack.h │ │ ├── tf_obj_rallyflag.cpp │ │ ├── tf_obj_rallyflag.h │ │ ├── tf_obj_resourcepump.cpp │ │ ├── tf_obj_resourcepump.h │ │ ├── tf_obj_respawn_station.cpp │ │ ├── tf_obj_respawn_station.h │ │ ├── tf_obj_resupply.cpp │ │ ├── tf_obj_resupply.h │ │ ├── tf_obj_sandbag_bunker.cpp │ │ ├── tf_obj_sandbag_bunker.h │ │ ├── tf_obj_selfheal.cpp │ │ ├── tf_obj_selfheal.h │ │ ├── tf_obj_sentrygun.cpp │ │ ├── tf_obj_sentrygun.h │ │ ├── tf_obj_shieldwall.cpp │ │ ├── tf_obj_shieldwall.h │ │ ├── tf_obj_tower.cpp │ │ ├── tf_obj_tower.h │ │ ├── tf_obj_tunnel.cpp │ │ ├── tf_obj_vehicleboost.cpp │ │ ├── tf_obj_vehicleboost.h │ │ ├── tf_player.cpp │ │ ├── tf_player.h │ │ ├── tf_player_death.cpp │ │ ├── tf_player_resource.cpp │ │ ├── tf_player_resource.h │ │ ├── tf_playerclass.cpp │ │ ├── tf_playerclass.h │ │ ├── tf_playerlocaldata.cpp │ │ ├── tf_playerlocaldata.h │ │ ├── tf_playermove.cpp │ │ ├── tf_rescollector_ground.cpp │ │ ├── tf_rescollector_ground.h │ │ ├── tf_shared_defines.h │ │ ├── tf_shield.cpp │ │ ├── tf_shield.h │ │ ├── tf_shield_flat.cpp │ │ ├── tf_shield_flat.h │ │ ├── tf_shieldgrenade.cpp │ │ ├── tf_shieldgrenade.h │ │ ├── tf_stats.cpp │ │ ├── tf_stats.h │ │ ├── tf_stressentities.cpp │ │ ├── tf_team.cpp │ │ ├── tf_team.h │ │ ├── tf_teamspawnpoint.h │ │ ├── tf_vehicle_battering_ram.cpp │ │ ├── tf_vehicle_battering_ram.h │ │ ├── tf_vehicle_flatbed.cpp │ │ ├── tf_vehicle_flatbed.h │ │ ├── tf_vehicle_mortar.cpp │ │ ├── tf_vehicle_mortar.h │ │ ├── tf_vehicle_motorcycle.cpp │ │ ├── tf_vehicle_siege_tower.cpp │ │ ├── tf_vehicle_siege_tower.h │ │ ├── tf_vehicle_tank.cpp │ │ ├── tf_vehicle_tank.h │ │ ├── tf_vehicle_teleport_station.cpp │ │ ├── tf_vehicle_teleport_station.h │ │ ├── tf_vehicle_wagon.cpp │ │ ├── tf_vehicle_wagon.h │ │ ├── tf_walker_base.cpp │ │ ├── tf_walker_base.h │ │ ├── tf_walker_ministrider.cpp │ │ ├── tf_walker_ministrider.h │ │ ├── tf_walker_strider.cpp │ │ ├── tf_walker_strider.h │ │ ├── trigger_fall.cpp │ │ └── trigger_skybox.cpp │ ├── tfc │ │ ├── tfc_bot_temp.cpp │ │ ├── tfc_bot_temp.h │ │ ├── tfc_building.h │ │ ├── tfc_client.cpp │ │ ├── tfc_client.h │ │ ├── tfc_engineer.cpp │ │ ├── tfc_engineer.h │ │ ├── tfc_eventlog.cpp │ │ ├── tfc_gameinterface.cpp │ │ ├── tfc_mapitems.cpp │ │ ├── tfc_mapitems.h │ │ ├── tfc_player.cpp │ │ ├── tfc_player.h │ │ ├── tfc_playermove.cpp │ │ ├── tfc_team.cpp │ │ ├── tfc_team.h │ │ ├── tfc_timer.cpp │ │ └── tfc_timer.h │ ├── timedeventmgr.cpp │ ├── timedeventmgr.h │ ├── toolframework_server.cpp │ ├── toolframework_server.h │ ├── trains.cpp │ ├── trains.h │ ├── trigger_area_capture.cpp │ ├── trigger_area_capture.h │ ├── trigger_portal.cpp │ ├── triggers.cpp │ ├── triggers.h │ ├── util.cpp │ ├── util.h │ ├── variant_t.cpp │ ├── variant_t.h │ ├── vehicle_base.cpp │ ├── vehicle_base.h │ ├── vehicle_baseserver.cpp │ ├── vehicle_baseserver.h │ ├── vehicle_choreo_generic.cpp │ ├── vehicle_sounds.h │ ├── vguiscreen.cpp │ ├── vguiscreen.h │ ├── waterbullet.cpp │ ├── waterbullet.h │ ├── wcedit.cpp │ ├── wcedit.h │ ├── weapon_cubemap.cpp │ ├── weight_button.cpp │ ├── worker_scientist.h │ ├── world.cpp │ ├── world.h │ └── xbox │ │ └── xbox.def └── shared │ ├── EntityParticleTrail_Shared.cpp │ ├── GameEventListener.h │ ├── IEffects.h │ ├── IVehicle.h │ ├── ModelSoundsCache.cpp │ ├── ModelSoundsCache.h │ ├── Multiplayer │ ├── multiplayer_animstate.cpp │ └── multiplayer_animstate.h │ ├── SceneCache.cpp │ ├── SceneCache.h │ ├── SoundEmitterSystem.cpp │ ├── Sprite.cpp │ ├── Sprite.h │ ├── SpriteTrail.cpp │ ├── SpriteTrail.h │ ├── achievement_saverestore.cpp │ ├── achievement_saverestore.h │ ├── achievementmgr.cpp │ ├── achievementmgr.h │ ├── achievements_hlx.cpp │ ├── activitylist.cpp │ ├── activitylist.h │ ├── ai_activity.h │ ├── ai_debug_shared.h │ ├── ammodef.cpp │ ├── ammodef.h │ ├── animation.cpp │ ├── animation.h │ ├── apparent_velocity_helper.h │ ├── base_playeranimstate.cpp │ ├── base_playeranimstate.h │ ├── baseachievement.cpp │ ├── baseachievement.h │ ├── basecombatcharacter_shared.cpp │ ├── basecombatweapon_shared.cpp │ ├── basecombatweapon_shared.h │ ├── baseentity_shared.cpp │ ├── baseentity_shared.h │ ├── basegrenade_shared.cpp │ ├── basegrenade_shared.h │ ├── baseparticleentity.cpp │ ├── baseparticleentity.h │ ├── baseplayer_shared.cpp │ ├── baseplayer_shared.h │ ├── baseviewmodel_shared.cpp │ ├── baseviewmodel_shared.h │ ├── beam_flags.h │ ├── beam_shared.cpp │ ├── beam_shared.h │ ├── choreoactor.cpp │ ├── choreoactor.h │ ├── choreochannel.cpp │ ├── choreochannel.h │ ├── choreoevent.cpp │ ├── choreoevent.h │ ├── choreoscene.cpp │ ├── choreoscene.h │ ├── collisionproperty.cpp │ ├── collisionproperty.h │ ├── cstrike │ ├── basecsgrenade_projectile.cpp │ ├── basecsgrenade_projectile.h │ ├── bot │ │ ├── bot.cpp │ │ ├── bot.h │ │ ├── bot_constants.h │ │ ├── bot_hide.cpp │ │ ├── bot_manager.cpp │ │ ├── bot_manager.h │ │ ├── bot_profile.cpp │ │ ├── bot_profile.h │ │ ├── bot_util.cpp │ │ ├── bot_util.h │ │ ├── improv_locomotor.h │ │ ├── nav_path.cpp │ │ ├── nav_path.h │ │ ├── shared_util.cpp │ │ └── shared_util.h │ ├── cs_ammodef.cpp │ ├── cs_ammodef.h │ ├── cs_blackmarket.cpp │ ├── cs_blackmarket.h │ ├── cs_gamemovement.cpp │ ├── cs_gamerules.cpp │ ├── cs_gamerules.h │ ├── cs_player_shared.cpp │ ├── cs_playeranimstate.cpp │ ├── cs_playeranimstate.h │ ├── cs_shareddefs.cpp │ ├── cs_shareddefs.h │ ├── cs_urlretrieveprices.cpp │ ├── cs_urlretrieveprices.h │ ├── cs_usermessages.cpp │ ├── cs_weapon_parse.cpp │ ├── cs_weapon_parse.h │ ├── flashbang_projectile.cpp │ ├── flashbang_projectile.h │ ├── fx_cs_shared.cpp │ ├── fx_cs_shared.h │ ├── hegrenade_projectile.cpp │ ├── hegrenade_projectile.h │ ├── weapon_ak47.cpp │ ├── weapon_aug.cpp │ ├── weapon_awp.cpp │ ├── weapon_basecsgrenade.cpp │ ├── weapon_basecsgrenade.h │ ├── weapon_c4.cpp │ ├── weapon_c4.h │ ├── weapon_csbase.cpp │ ├── weapon_csbase.h │ ├── weapon_csbasegun.cpp │ ├── weapon_csbasegun.h │ ├── weapon_deagle.cpp │ ├── weapon_elite.cpp │ ├── weapon_famas.cpp │ ├── weapon_fiveseven.cpp │ ├── weapon_flashbang.cpp │ ├── weapon_flashbang.h │ ├── weapon_g3sg1.cpp │ ├── weapon_galil.cpp │ ├── weapon_glock.cpp │ ├── weapon_hegrenade.cpp │ ├── weapon_hegrenade.h │ ├── weapon_knife.cpp │ ├── weapon_knife.h │ ├── weapon_m249.cpp │ ├── weapon_m3.cpp │ ├── weapon_m4a1.cpp │ ├── weapon_mac10.cpp │ ├── weapon_mp5navy.cpp │ ├── weapon_p228.cpp │ ├── weapon_p90.cpp │ ├── weapon_scout.cpp │ ├── weapon_sg550.cpp │ ├── weapon_sg552.cpp │ ├── weapon_smokegrenade.cpp │ ├── weapon_smokegrenade.h │ ├── weapon_tmp.cpp │ ├── weapon_ump45.cpp │ ├── weapon_usp.cpp │ └── weapon_xm1014.cpp │ ├── death_pose.cpp │ ├── death_pose.h │ ├── debugoverlay_null.cpp │ ├── debugoverlay_shared.cpp │ ├── debugoverlay_shared.h │ ├── decals.cpp │ ├── decals.h │ ├── dod │ ├── achievements_dod.cpp │ ├── dod_gamemovement.cpp │ ├── dod_gamerules.cpp │ ├── dod_gamerules.h │ ├── dod_player_shared.cpp │ ├── dod_player_shared.h │ ├── dod_playeranimstate.cpp │ ├── dod_playeranimstate.h │ ├── dod_playerclass_info_parse.cpp │ ├── dod_playerclass_info_parse.h │ ├── dod_round_timer.cpp │ ├── dod_round_timer.h │ ├── dod_shareddefs.cpp │ ├── dod_shareddefs.h │ ├── dod_usermessages.cpp │ ├── dod_viewmodel.cpp │ ├── dod_viewmodel.h │ ├── dod_weapon_parse.cpp │ ├── dod_weapon_parse.h │ ├── fx_dod_shared.cpp │ ├── fx_dod_shared.h │ ├── weapon_30cal.cpp │ ├── weapon_amerknife.cpp │ ├── weapon_bar.cpp │ ├── weapon_bazooka.cpp │ ├── weapon_c96.cpp │ ├── weapon_colt.cpp │ ├── weapon_dodbase.cpp │ ├── weapon_dodbase.h │ ├── weapon_dodbasebomb.cpp │ ├── weapon_dodbasebomb.h │ ├── weapon_dodbasegrenade.cpp │ ├── weapon_dodbasegrenade.h │ ├── weapon_dodbasegun.cpp │ ├── weapon_dodbasegun.h │ ├── weapon_dodbasemelee.cpp │ ├── weapon_dodbasemelee.h │ ├── weapon_dodbaserpg.cpp │ ├── weapon_dodbaserpg.h │ ├── weapon_dodbipodgun.cpp │ ├── weapon_dodbipodgun.h │ ├── weapon_dodfireselect.cpp │ ├── weapon_dodfireselect.h │ ├── weapon_dodfullauto.cpp │ ├── weapon_dodfullauto.h │ ├── weapon_dodfullauto_punch.cpp │ ├── weapon_dodfullauto_punch.h │ ├── weapon_dodsemiauto.cpp │ ├── weapon_dodsemiauto.h │ ├── weapon_dodsniper.cpp │ ├── weapon_dodsniper.h │ ├── weapon_explodinghandgrenade.cpp │ ├── weapon_explodingstickgrenade.cpp │ ├── weapon_garand.cpp │ ├── weapon_gerknife.cpp │ ├── weapon_greasegun.cpp │ ├── weapon_handgrenade.cpp │ ├── weapon_k98.cpp │ ├── weapon_k98_scoped.cpp │ ├── weapon_m1carbine.cpp │ ├── weapon_mg34.cpp │ ├── weapon_mg42.cpp │ ├── weapon_mg42.h │ ├── weapon_mp40.cpp │ ├── weapon_mp44.cpp │ ├── weapon_p38.cpp │ ├── weapon_pschreck.cpp │ ├── weapon_riflegrenade.cpp │ ├── weapon_riflegrenade.h │ ├── weapon_riflegrenade_ger.cpp │ ├── weapon_riflegrenade_ger_live.cpp │ ├── weapon_riflegrenade_us.cpp │ ├── weapon_riflegrenade_us_live.cpp │ ├── weapon_smokegrenade_ger.cpp │ ├── weapon_smokegrenade_us.cpp │ ├── weapon_spade.cpp │ ├── weapon_spring.cpp │ ├── weapon_stickgrenade.cpp │ └── weapon_thompson.cpp │ ├── effect_color_tables.h │ ├── effect_dispatch_data.cpp │ ├── effect_dispatch_data.h │ ├── ehandle.cpp │ ├── ehandle.h │ ├── entitydatainstantiator.h │ ├── entitylist_base.cpp │ ├── entitylist_base.h │ ├── entityparticletrail_shared.h │ ├── env_detail_controller.cpp │ ├── env_detail_controller.h │ ├── env_meteor_shared.cpp │ ├── env_meteor_shared.h │ ├── env_wind_shared.cpp │ ├── env_wind_shared.h │ ├── episodic │ ├── achievements_ep1.cpp │ ├── achievements_ep2.cpp │ ├── achievements_epx.cpp │ └── npc_advisor_shared.h │ ├── eventlist.cpp │ ├── eventlist.h │ ├── expressionsample.h │ ├── forcefeedback.h │ ├── func_dust_shared.h │ ├── func_ladder.cpp │ ├── func_ladder.h │ ├── gameeventdefs.h │ ├── gamemovement.cpp │ ├── gamemovement.h │ ├── gamerules.cpp │ ├── gamerules.h │ ├── gamerules_register.cpp │ ├── gamerules_register.h │ ├── gamestringpool.cpp │ ├── gamestringpool.h │ ├── gamevars_shared.cpp │ ├── gamevars_shared.h │ ├── groundlink.h │ ├── hintmessage.cpp │ ├── hintmessage.h │ ├── hintsystem.cpp │ ├── hintsystem.h │ ├── hl1 │ ├── hl1_basecombatweapon_shared.cpp │ ├── hl1_basecombatweapon_shared.h │ ├── hl1_gamemovement.cpp │ ├── hl1_gamemovement.h │ ├── hl1_gamerules.cpp │ ├── hl1_gamerules.h │ ├── hl1_player_shared.cpp │ ├── hl1_player_shared.h │ ├── hl1_shareddefs.h │ ├── hl1_usermessages.cpp │ ├── hl1mp_basecombatweapon_shared.cpp │ ├── hl1mp_basecombatweapon_shared.h │ ├── hl1mp_gamerules.cpp │ ├── hl1mp_gamerules.h │ ├── hl1mp_weapon_357.cpp │ ├── hl1mp_weapon_crossbow.cpp │ ├── hl1mp_weapon_egon.cpp │ ├── hl1mp_weapon_gauss.cpp │ ├── hl1mp_weapon_glock.cpp │ ├── hl1mp_weapon_handgrenade.cpp │ ├── hl1mp_weapon_hornetgun.cpp │ ├── hl1mp_weapon_mp5.cpp │ ├── hl1mp_weapon_mp5.h │ ├── hl1mp_weapon_rpg.cpp │ ├── hl1mp_weapon_rpg.h │ ├── hl1mp_weapon_sachel.cpp │ ├── hl1mp_weapon_satchel.h │ └── hl1mp_weapon_shotgun.cpp │ ├── hl2 │ ├── achievements_hl2.cpp │ ├── basehlcombatweapon_shared.cpp │ ├── basehlcombatweapon_shared.h │ ├── citadel_effects_shared.h │ ├── env_alyxemp_shared.h │ ├── env_headcrabcanister_shared.cpp │ ├── env_headcrabcanister_shared.h │ ├── hl2_gamerules.cpp │ ├── hl2_gamerules.h │ ├── hl2_player_shared.h │ ├── hl2_shareddefs.h │ ├── hl2_usermessages.cpp │ ├── hl2_vehicle_radar.h │ ├── hl_gamemovement.cpp │ ├── hl_gamemovement.h │ ├── hl_movedata.h │ └── survival_gamerules.cpp │ ├── hl2mp │ ├── hl2mp_gamerules.cpp │ ├── hl2mp_gamerules.h │ ├── hl2mp_player_shared.cpp │ ├── hl2mp_player_shared.h │ ├── hl2mp_weapon_parse.cpp │ ├── hl2mp_weapon_parse.h │ ├── weapon_357.cpp │ ├── weapon_ar2.cpp │ ├── weapon_ar2.h │ ├── weapon_crossbow.cpp │ ├── weapon_crowbar.cpp │ ├── weapon_crowbar.h │ ├── weapon_frag.cpp │ ├── weapon_hl2mpbase.cpp │ ├── weapon_hl2mpbase.h │ ├── weapon_hl2mpbase_machinegun.cpp │ ├── weapon_hl2mpbase_machinegun.h │ ├── weapon_hl2mpbasebasebludgeon.cpp │ ├── weapon_hl2mpbasebasebludgeon.h │ ├── weapon_hl2mpbasehlmpcombatweapon.cpp │ ├── weapon_hl2mpbasehlmpcombatweapon.h │ ├── weapon_physcannon.cpp │ ├── weapon_physcannon.h │ ├── weapon_pistol.cpp │ ├── weapon_rpg.cpp │ ├── weapon_rpg.h │ ├── weapon_shotgun.cpp │ ├── weapon_slam.cpp │ ├── weapon_slam.h │ ├── weapon_smg1.cpp │ └── weapon_stunstick.cpp │ ├── ichoreoeventcallback.h │ ├── igamemovement.h │ ├── igamesystem.cpp │ ├── igamesystem.h │ ├── imovehelper.h │ ├── in_buttons.h │ ├── interval.cpp │ ├── interval.h │ ├── iplayeranimstate.h │ ├── ipredictionsystem.h │ ├── iscenetokenprocessor.h │ ├── itempents.h │ ├── mapdata_shared.h │ ├── mapentities_shared.cpp │ ├── mapentities_shared.h │ ├── movetype_push.h │ ├── movevars_shared.cpp │ ├── movevars_shared.h │ ├── mp_shareddefs.cpp │ ├── mp_shareddefs.h │ ├── multiplay_gamerules.cpp │ ├── multiplay_gamerules.h │ ├── npcevent.h │ ├── obstacle_pushaway.cpp │ ├── obstacle_pushaway.h │ ├── particle_parse.cpp │ ├── particle_parse.h │ ├── particle_property.cpp │ ├── particle_property.h │ ├── particle_property_inlines.h │ ├── particlesystemquery.cpp │ ├── physics_main_shared.cpp │ ├── physics_saverestore.cpp │ ├── physics_saverestore.h │ ├── physics_shared.cpp │ ├── physics_shared.h │ ├── playerclass_info_parse.cpp │ ├── playerclass_info_parse.h │ ├── playernet_vars.h │ ├── point_bonusmaps_accessor.cpp │ ├── point_bonusmaps_accessor.h │ ├── point_posecontroller.cpp │ ├── point_posecontroller.h │ ├── portal │ ├── PortalSimulation.cpp │ ├── PortalSimulation.h │ ├── StaticCollisionPolyhedronCache.cpp │ ├── StaticCollisionPolyhedronCache.h │ ├── achievements_portal.cpp │ ├── env_lightrail_endpoint_shared.h │ ├── env_portal_path_track_shared.h │ ├── portal_collideable_enumerator.cpp │ ├── portal_collideable_enumerator.h │ ├── portal_gamemovement.cpp │ ├── portal_gamerules.cpp │ ├── portal_gamerules.h │ ├── portal_mp_gamerules.cpp │ ├── portal_mp_gamerules.h │ ├── portal_player_shared.cpp │ ├── portal_player_shared.h │ ├── portal_playeranimstate.cpp │ ├── portal_playeranimstate.h │ ├── portal_shareddefs.cpp │ ├── portal_shareddefs.h │ ├── portal_usermessages.cpp │ ├── portal_util_shared.cpp │ ├── portal_util_shared.h │ ├── portal_weapon_parse.cpp │ ├── portal_weapon_parse.h │ ├── prop_portal_shared.cpp │ ├── prop_portal_shared.h │ ├── weapon_portalbase.cpp │ ├── weapon_portalbase.h │ ├── weapon_portalbasecombatweapon.cpp │ ├── weapon_portalbasecombatweapon.h │ ├── weapon_portalgun_shared.cpp │ └── weapon_portalgun_shared.h │ ├── positionwatcher.h │ ├── precache_register.cpp │ ├── precache_register.h │ ├── precipitation_shared.h │ ├── predictable_entity.h │ ├── predictableid.cpp │ ├── predictableid.h │ ├── predicted_viewmodel.cpp │ ├── predicted_viewmodel.h │ ├── predictioncopy.cpp │ ├── predictioncopy.h │ ├── props_shared.cpp │ ├── props_shared.h │ ├── ragdoll_shared.cpp │ ├── ragdoll_shared.h │ ├── rope_helpers.cpp │ ├── rope_helpers.h │ ├── rumble_shared.h │ ├── saverestore.cpp │ ├── saverestore.h │ ├── saverestore_bitstring.h │ ├── saverestore_stringtable.h │ ├── saverestore_utlclass.h │ ├── saverestore_utlmap.h │ ├── saverestore_utlrbtree.h │ ├── saverestore_utlsymbol.h │ ├── saverestore_utlvector.h │ ├── sceneentity_shared.cpp │ ├── sceneentity_shared.h │ ├── sceneimage.cpp │ ├── sceneimage.h │ ├── script_intro_shared.cpp │ ├── scriptevent.h │ ├── sdk │ ├── sdk_basegrenade_projectile.cpp │ ├── sdk_basegrenade_projectile.h │ ├── sdk_fx_shared.cpp │ ├── sdk_fx_shared.h │ ├── sdk_gamemovement.cpp │ ├── sdk_gamerules.cpp │ ├── sdk_gamerules.h │ ├── sdk_player_shared.cpp │ ├── sdk_playeranimstate.cpp │ ├── sdk_playeranimstate.h │ ├── sdk_shareddefs.h │ ├── sdk_usermessages.cpp │ ├── sdk_weapon_parse.cpp │ ├── sdk_weapon_parse.h │ ├── weapon_basesdkgrenade.cpp │ ├── weapon_basesdkgrenade.h │ ├── weapon_grenade.cpp │ ├── weapon_grenade.h │ ├── weapon_mp5.cpp │ ├── weapon_sdkbase.cpp │ ├── weapon_sdkbase.h │ └── weapon_shotgun.cpp │ ├── sequence_Transitioner.cpp │ ├── sequence_Transitioner.h │ ├── sharedInterface.h │ ├── shared_classnames.h │ ├── shareddefs.h │ ├── sheetsimulator.cpp │ ├── sheetsimulator.h │ ├── shot_manipulator.h │ ├── simtimer.cpp │ ├── simtimer.h │ ├── singleplay_gamerules.cpp │ ├── singleplay_gamerules.h │ ├── solidsetdefaults.h │ ├── soundenvelope.cpp │ ├── soundenvelope.h │ ├── studio_shared.cpp │ ├── sun_shared.h │ ├── takedamageinfo.cpp │ ├── takedamageinfo.h │ ├── teamplay_gamerules.cpp │ ├── teamplay_gamerules.h │ ├── teamplay_round_timer.cpp │ ├── teamplay_round_timer.h │ ├── teamplayroundbased_gamerules.cpp │ ├── teamplayroundbased_gamerules.h │ ├── tempentity.h │ ├── test_ehandle.cpp │ ├── tf │ ├── achievements_tf.cpp │ ├── baseobject_shared.cpp │ ├── baseobject_shared.h │ ├── entity_capture_flag.cpp │ ├── entity_capture_flag.h │ ├── ihasbuildpoints.h │ ├── tf_fx_shared.cpp │ ├── tf_fx_shared.h │ ├── tf_gamemovement.cpp │ ├── tf_gamerules.cpp │ ├── tf_gamerules.h │ ├── tf_gamestats_shared.cpp │ ├── tf_gamestats_shared.h │ ├── tf_item.cpp │ ├── tf_item.h │ ├── tf_obj_baseupgrade_shared.cpp │ ├── tf_obj_baseupgrade_shared.h │ ├── tf_player_shared.cpp │ ├── tf_player_shared.h │ ├── tf_playeranimstate.cpp │ ├── tf_playeranimstate.h │ ├── tf_playerclass_info_parse.cpp │ ├── tf_playerclass_shared.cpp │ ├── tf_playerclass_shared.h │ ├── tf_projectile_base.cpp │ ├── tf_projectile_base.h │ ├── tf_projectile_nail.cpp │ ├── tf_projectile_nail.h │ ├── tf_shareddefs.cpp │ ├── tf_shareddefs.h │ ├── tf_usermessages.cpp │ ├── tf_viewmodel.cpp │ ├── tf_viewmodel.h │ ├── tf_weapon_bat.cpp │ ├── tf_weapon_bat.h │ ├── tf_weapon_bonesaw.cpp │ ├── tf_weapon_bonesaw.h │ ├── tf_weapon_bottle.cpp │ ├── tf_weapon_bottle.h │ ├── tf_weapon_club.cpp │ ├── tf_weapon_club.h │ ├── tf_weapon_crowbar.cpp │ ├── tf_weapon_crowbar.h │ ├── tf_weapon_fireaxe.cpp │ ├── tf_weapon_fireaxe.h │ ├── tf_weapon_fists.cpp │ ├── tf_weapon_fists.h │ ├── tf_weapon_flag.cpp │ ├── tf_weapon_flag.h │ ├── tf_weapon_flamethrower.cpp │ ├── tf_weapon_flamethrower.h │ ├── tf_weapon_grenade_caltrop.cpp │ ├── tf_weapon_grenade_caltrop.h │ ├── tf_weapon_grenade_concussion.cpp │ ├── tf_weapon_grenade_concussion.h │ ├── tf_weapon_grenade_emp.cpp │ ├── tf_weapon_grenade_emp.h │ ├── tf_weapon_grenade_gas.cpp │ ├── tf_weapon_grenade_gas.h │ ├── tf_weapon_grenade_heal.cpp │ ├── tf_weapon_grenade_heal.h │ ├── tf_weapon_grenade_mirv.cpp │ ├── tf_weapon_grenade_mirv.h │ ├── tf_weapon_grenade_nail.cpp │ ├── tf_weapon_grenade_nail.h │ ├── tf_weapon_grenade_napalm.cpp │ ├── tf_weapon_grenade_napalm.h │ ├── tf_weapon_grenade_normal.cpp │ ├── tf_weapon_grenade_normal.h │ ├── tf_weapon_grenade_pipebomb.cpp │ ├── tf_weapon_grenade_pipebomb.h │ ├── tf_weapon_grenade_smoke_bomb.cpp │ ├── tf_weapon_grenade_smoke_bomb.h │ ├── tf_weapon_grenadelauncher.cpp │ ├── tf_weapon_grenadelauncher.h │ ├── tf_weapon_invis.cpp │ ├── tf_weapon_invis.h │ ├── tf_weapon_knife.cpp │ ├── tf_weapon_knife.h │ ├── tf_weapon_medigun.cpp │ ├── tf_weapon_medigun.h │ ├── tf_weapon_minigun.cpp │ ├── tf_weapon_minigun.h │ ├── tf_weapon_nailgun.cpp │ ├── tf_weapon_nailgun.h │ ├── tf_weapon_parse.cpp │ ├── tf_weapon_parse.h │ ├── tf_weapon_pda.cpp │ ├── tf_weapon_pda.h │ ├── tf_weapon_pipebomblauncher.cpp │ ├── tf_weapon_pipebomblauncher.h │ ├── tf_weapon_pistol.cpp │ ├── tf_weapon_pistol.h │ ├── tf_weapon_revolver.cpp │ ├── tf_weapon_revolver.h │ ├── tf_weapon_rocketlauncher.cpp │ ├── tf_weapon_rocketlauncher.h │ ├── tf_weapon_shotgun.cpp │ ├── tf_weapon_shotgun.h │ ├── tf_weapon_shovel.cpp │ ├── tf_weapon_shovel.h │ ├── tf_weapon_smg.cpp │ ├── tf_weapon_smg.h │ ├── tf_weapon_sniperrifle.cpp │ ├── tf_weapon_sniperrifle.h │ ├── tf_weapon_syringegun.cpp │ ├── tf_weapon_syringegun.h │ ├── tf_weapon_tranq.cpp │ ├── tf_weapon_tranq.h │ ├── tf_weapon_wrench.cpp │ ├── tf_weapon_wrench.h │ ├── tf_weaponbase.cpp │ ├── tf_weaponbase.h │ ├── tf_weaponbase_grenade.cpp │ ├── tf_weaponbase_grenade.h │ ├── tf_weaponbase_grenadeproj.cpp │ ├── tf_weaponbase_grenadeproj.h │ ├── tf_weaponbase_gun.cpp │ ├── tf_weaponbase_gun.h │ ├── tf_weaponbase_melee.cpp │ ├── tf_weaponbase_melee.h │ ├── tf_weaponbase_rocket.cpp │ └── tf_weaponbase_rocket.h │ ├── tf2 │ ├── baseobject_shared.cpp │ ├── baseobject_shared.h │ ├── basetfcombatweapon_shared.cpp │ ├── basetfcombatweapon_shared.h │ ├── basetfplayer_shared.cpp │ ├── basetfplayer_shared.h │ ├── basetfvehicle.cpp │ ├── basetfvehicle.h │ ├── env_laserdesignation.cpp │ ├── env_laserdesignation.h │ ├── gasoline_shared.h │ ├── grenade_antipersonnel.cpp │ ├── grenade_antipersonnel.h │ ├── grenade_base_empable.cpp │ ├── grenade_base_empable.h │ ├── grenade_emp.cpp │ ├── grenade_emp.h │ ├── grenade_limpetmine.cpp │ ├── grenade_limpetmine.h │ ├── grenade_objectsapper.cpp │ ├── grenade_objectsapper.h │ ├── grenade_rocket.cpp │ ├── grenade_rocket.h │ ├── grenade_stickybomb.cpp │ ├── ihasbuildpoints.h │ ├── plasmaprojectile.cpp │ ├── plasmaprojectile.h │ ├── plasmaprojectile_shared.cpp │ ├── plasmaprojectile_shared.h │ ├── techtree.cpp │ ├── techtree.h │ ├── techtree_parse.cpp │ ├── tf_gamemovement.cpp │ ├── tf_gamemovement.h │ ├── tf_gamemovement_chooser.cpp │ ├── tf_gamemovement_chooser.h │ ├── tf_gamemovement_commando.cpp │ ├── tf_gamemovement_commando.h │ ├── tf_gamemovement_defender.cpp │ ├── tf_gamemovement_defender.h │ ├── tf_gamemovement_escort.cpp │ ├── tf_gamemovement_escort.h │ ├── tf_gamemovement_infiltrator.cpp │ ├── tf_gamemovement_infiltrator.h │ ├── tf_gamemovement_medic.cpp │ ├── tf_gamemovement_medic.h │ ├── tf_gamemovement_pyro.cpp │ ├── tf_gamemovement_pyro.h │ ├── tf_gamemovement_recon.cpp │ ├── tf_gamemovement_recon.h │ ├── tf_gamemovement_sapper.cpp │ ├── tf_gamemovement_sapper.h │ ├── tf_gamemovement_sniper.cpp │ ├── tf_gamemovement_sniper.h │ ├── tf_gamemovement_support.cpp │ ├── tf_gamemovement_support.h │ ├── tf_gamerules.cpp │ ├── tf_gamerules.h │ ├── tf_hints.h │ ├── tf_movedata.h │ ├── tf_obj_base_manned_gun.cpp │ ├── tf_obj_base_manned_gun.h │ ├── tf_obj_basedrivergun_shared.cpp │ ├── tf_obj_basedrivergun_shared.h │ ├── tf_obj_baseupgrade_shared.cpp │ ├── tf_obj_baseupgrade_shared.h │ ├── tf_obj_driver_machinegun_shared.cpp │ ├── tf_obj_driver_machinegun_shared.h │ ├── tf_obj_manned_plasmagun.cpp │ ├── tf_obj_manned_plasmagun.h │ ├── tf_obj_manned_plasmagun_shared.cpp │ ├── tf_obj_manned_plasmagun_shared.h │ ├── tf_playeranimstate.h │ ├── tf_reconvars.cpp │ ├── tf_reconvars.h │ ├── tf_shareddefs.cpp │ ├── tf_shareddefs.h │ ├── tf_shield_mobile_shared.cpp │ ├── tf_shieldshared.cpp │ ├── tf_shieldshared.h │ ├── tf_tacticalmap.cpp │ ├── tf_usermessages.cpp │ ├── tf_vehicleshared.h │ ├── tfclassdata_shared.cpp │ ├── tfclassdata_shared.h │ ├── vehicle_mortar_shared.h │ ├── weapon_arcwelder.cpp │ ├── weapon_basecombatobject.cpp │ ├── weapon_basecombatobject.h │ ├── weapon_builder.cpp │ ├── weapon_builder.h │ ├── weapon_combat_basegrenade.cpp │ ├── weapon_combat_basegrenade.h │ ├── weapon_combat_burstrifle.cpp │ ├── weapon_combat_chargeableplasma.cpp │ ├── weapon_combat_grenade.cpp │ ├── weapon_combat_grenade_emp.cpp │ ├── weapon_combat_laserrifle.cpp │ ├── weapon_combat_plasma_grenade_launcher.cpp │ ├── weapon_combat_plasmarifle.cpp │ ├── weapon_combat_shotgun.cpp │ ├── weapon_combat_usedwithshieldbase.cpp │ ├── weapon_combat_usedwithshieldbase.h │ ├── weapon_combatshield.cpp │ ├── weapon_combatshield.h │ ├── weapon_drainbeam.cpp │ ├── weapon_drainbeam.h │ ├── weapon_flame_thrower.cpp │ ├── weapon_flame_thrower.h │ ├── weapon_gas_can.cpp │ ├── weapon_gas_can.h │ ├── weapon_grenade_rocket.cpp │ ├── weapon_grenade_rocket.h │ ├── weapon_harpoon.cpp │ ├── weapon_infiltrator.cpp │ ├── weapon_infiltrator.h │ ├── weapon_laserdesignator.cpp │ ├── weapon_laserrifle.cpp │ ├── weapon_limpetmine.cpp │ ├── weapon_limpetmine.h │ ├── weapon_minigun.cpp │ ├── weapon_mortar.cpp │ ├── weapon_mortar.h │ ├── weapon_obj_empgenerator.cpp │ ├── weapon_obj_rallyflag.cpp │ ├── weapon_objectselection.cpp │ ├── weapon_objectselection.h │ ├── weapon_pistols.cpp │ ├── weapon_plasmarifle.cpp │ ├── weapon_repairgun.cpp │ ├── weapon_repairgun.h │ ├── weapon_rocketlauncher.cpp │ ├── weapon_rocketlauncher.h │ ├── weapon_shield.cpp │ ├── weapon_shield.h │ ├── weapon_shieldgrenade.cpp │ ├── weapon_twohandedcontainer.cpp │ └── weapon_twohandedcontainer.h │ ├── tfc │ ├── nailgun_nail.cpp │ ├── nailgun_nail.h │ ├── tfc_gamemovement.cpp │ ├── tfc_gamerules.cpp │ ├── tfc_gamerules.h │ ├── tfc_player_shared.cpp │ ├── tfc_player_shared.h │ ├── tfc_playeranimstate.cpp │ ├── tfc_playeranimstate.h │ ├── tfc_shareddefs.cpp │ ├── tfc_shareddefs.h │ ├── tfc_usermessages.cpp │ ├── tfc_weapon_parse.cpp │ ├── tfc_weapon_parse.h │ ├── weapon_tfc_crowbar.cpp │ ├── weapon_tfc_crowbar.h │ ├── weapon_tfc_knife.cpp │ ├── weapon_tfc_knife.h │ ├── weapon_tfc_medikit.cpp │ ├── weapon_tfc_medikit.h │ ├── weapon_tfc_minigun.cpp │ ├── weapon_tfc_minigun.h │ ├── weapon_tfc_nailgun.cpp │ ├── weapon_tfc_nailgun.h │ ├── weapon_tfc_shotgun.cpp │ ├── weapon_tfc_shotgun.h │ ├── weapon_tfc_spanner.cpp │ ├── weapon_tfc_spanner.h │ ├── weapon_tfc_super_nailgun.cpp │ ├── weapon_tfc_super_nailgun.h │ ├── weapon_tfc_super_shotgun.cpp │ ├── weapon_tfc_super_shotgun.h │ ├── weapon_tfcbase.cpp │ └── weapon_tfcbase.h │ ├── touchlink.h │ ├── usercmd.cpp │ ├── usercmd.h │ ├── usermessages.cpp │ ├── usermessages.h │ ├── util_shared.cpp │ ├── util_shared.h │ ├── vehicle_choreo_generic_shared.h │ ├── vehicle_viewblend_shared.cpp │ ├── vehicle_viewblend_shared.h │ ├── vgui_defaultinputsignal.h │ ├── viewport_panel_names.h │ ├── voice_banmgr.cpp │ ├── voice_banmgr.h │ ├── voice_common.h │ ├── voice_gamemgr.cpp │ ├── voice_gamemgr.h │ ├── voice_status.cpp │ ├── voice_status.h │ ├── vphysics_sound.h │ ├── vphysicsupdateai.h │ ├── weapon_ifmbase.cpp │ ├── weapon_ifmbase.h │ ├── weapon_ifmbasecamera.cpp │ ├── weapon_ifmbasecamera.h │ ├── weapon_ifmsteadycam.cpp │ ├── weapon_ifmsteadycam.h │ ├── weapon_parse.cpp │ ├── weapon_parse.h │ ├── weapon_parse_default.cpp │ ├── weapon_proficiency.cpp │ └── weapon_proficiency.h └── hammer_dll ├── AnchorMgr.cpp ├── AnchorMgr.h ├── DispShore.cpp ├── DispShore.h ├── FileChangeWatcher.cpp ├── FileChangeWatcher.h ├── FilteredComboBox.cpp ├── FilteredComboBox.h ├── HammerScene.cpp ├── HammerScene.h ├── HammerVGui.cpp ├── HammerVGui.h ├── Hammer_dll.vcxproj ├── Hammer_dll.vcxproj.user ├── MapAxisHandle.cpp ├── MapAxisHandle.h ├── MapDiffDlg.cpp ├── MapDiffDlg.h ├── MapHelper.h ├── ModelBrowser.cpp ├── ModelBrowser.h ├── NewVisGroupDlg.cpp ├── NewVisGroupDlg.h ├── OP_Model.cpp ├── OP_Model.h ├── ObjectPage.cpp ├── PopupMenus.h ├── Render.cpp ├── Render.h ├── RenderUtils.cpp ├── RenderUtils.h ├── ScenePreviewDlg.cpp ├── ScenePreviewDlg.h ├── SearchReplaceDlg.cpp ├── SearchReplaceDlg.h ├── SelectModeDlgBar.h ├── Selection.cpp ├── Selection.h ├── SmoothingGroupMgr.cpp ├── SmoothingGroupMgr.h ├── SoundBrowser.cpp ├── SoundBrowser.h ├── ToolAxisHandle.cpp ├── ToolAxisHandle.h ├── ToolBase.cpp ├── ToolBlock.cpp ├── ToolBlock.h ├── ToolCamera.cpp ├── ToolCamera.h ├── ToolClipper.cpp ├── ToolClipper.h ├── ToolCordon.cpp ├── ToolCordon.h ├── ToolDecal.cpp ├── ToolDecal.h ├── ToolEntity.cpp ├── ToolEntity.h ├── ToolMagnify.cpp ├── ToolMagnify.h ├── ToolManager.cpp ├── ToolManager.h ├── ToolMaterial.cpp ├── ToolMaterial.h ├── ToolMorph.cpp ├── ToolMorph.h ├── ToolOverlay.cpp ├── ToolOverlay.h ├── ToolPickAngles.cpp ├── ToolPickAngles.h ├── ToolPickEntity.cpp ├── ToolPickEntity.h ├── ToolPointHandle.cpp ├── ToolPointHandle.h ├── ToolSelection.cpp ├── ToolSelection.h ├── ToolSphere.cpp ├── ToolSphere.h ├── TorusDlg.cpp ├── VGuiWnd.cpp ├── VGuiWnd.h ├── activeitemlist.h ├── anglebox.cpp ├── anglebox.h ├── archdlg.cpp ├── archdlg.h ├── autoselcombo.cpp ├── autoselcombo.h ├── axes2.cpp ├── axes2.h ├── blockarray.cpp ├── blockarray.h ├── boundbox.cpp ├── boundbox.h ├── box3d.cpp ├── box3d.h ├── brushops.cpp ├── brushops.h ├── bsplighting.cpp ├── bsplighting.h ├── bsplightingthread.cpp ├── bsplightingthread.h ├── buildnum.cpp ├── buildnum.h ├── camera.cpp ├── camera.h ├── childfrm.cpp ├── childfrm.h ├── clipcode.cpp ├── clipcode.h ├── clock.cpp ├── controlbarids.h ├── createarch.cpp ├── culltreenode.cpp ├── culltreenode.h ├── custommessages.h ├── d3drmdef.h ├── d3dtypes.h ├── ddraw.h ├── detailobjects.cpp ├── detailobjects.h ├── dispdlg.cpp ├── dispdlg.h ├── dispmanager.cpp ├── dispmanager.h ├── dispmapimagefilter.cpp ├── dispmapimagefilter.h ├── disppaint.cpp ├── disppaint.h ├── dispsew.cpp ├── dispsew.h ├── dispsubdiv.cpp ├── dispsubdiv.h ├── dispview.h ├── dummytexture.cpp ├── dummytexture.h ├── dynamicdialogwnd.cpp ├── dynamicdialogwnd.h ├── editgameclass.cpp ├── editgameclass.h ├── editgameconfigs.cpp ├── editgameconfigs.h ├── editgroups.cpp ├── editgroups.h ├── editorkeys.txt ├── editpathdlg.cpp ├── editpathdlg.h ├── editpathnodedlg.cpp ├── editpathnodedlg.h ├── editprefabdlg.cpp ├── editprefabdlg.h ├── entityconnection.cpp ├── entityconnection.h ├── entityhelpdlg.cpp ├── entityhelpdlg.h ├── entityreportdlg.cpp ├── entityreportdlg.h ├── error3d.h ├── events.cpp ├── faceedit_disppage.cpp ├── faceedit_disppage.h ├── faceedit_materialpage.cpp ├── faceedit_materialpage.h ├── faceeditsheet.cpp ├── faceeditsheet.h ├── facepaint.cur ├── filtercontrol.cpp ├── filtercontrol.h ├── gameconfig.cpp ├── gameconfig.h ├── gamepalette.cpp ├── gamepalette.h ├── gizmo.cpp ├── gizmo.h ├── globalfunctions.h ├── gotobrushdlg.cpp ├── gotobrushdlg.h ├── grouplist.cpp ├── grouplist.h ├── hammer.cpp ├── hammer.h ├── hammer.rc ├── hammer_dll.vcxproj.filters ├── hammer_dll.vpc ├── hammer_mathlib.cpp ├── hammer_mathlib.h ├── hammerbar.cpp ├── hammerbar.h ├── helperfactory.cpp ├── helperfactory.h ├── history.cpp ├── history.h ├── ibsplighting.h ├── ibsplightingthread.h ├── iconcombobox.cpp ├── iconcombobox.h ├── ieditortexture.h ├── keyboard.cpp ├── keyboard.h ├── listboxex.cpp ├── listboxex.h ├── loadsave_map.cpp ├── loadsave_rmf.cpp ├── lpreview_thread.cpp ├── lpreview_thread.h ├── lprvwindow.cpp ├── lprvwindow.h ├── mainfrm.cpp ├── mainfrm.h ├── makeprefablibrary.cpp ├── mapalignedbox.cpp ├── mapalignedbox.h ├── mapanimationdlg.cpp ├── mapanimationdlg.h ├── mapanimator.cpp ├── mapanimator.h ├── mapatom.h ├── mapcheckdlg.cpp ├── mapcheckdlg.h ├── mapclass.cpp ├── mapclass.h ├── mapcylinder.cpp ├── mapcylinder.h ├── mapdecal.cpp ├── mapdecal.h ├── mapdefs.h ├── mapdisp.cpp ├── mapdisp.h ├── mapdoc.cpp ├── mapdoc.h ├── mapentity.cpp ├── mapentity.h ├── maperrorsdlg.cpp ├── maperrorsdlg.h ├── mapface.cpp ├── mapface.h ├── mapfrustum.cpp ├── mapfrustum.h ├── mapgroup.cpp ├── mapgroup.h ├── maphelper.cpp ├── mapinfodlg.cpp ├── mapinfodlg.h ├── mapkeyframe.cpp ├── mapkeyframe.h ├── maplight.cpp ├── maplight.h ├── maplightcone.cpp ├── maplightcone.h ├── mapline.cpp ├── mapline.h ├── mapoverlay.cpp ├── mapoverlay.h ├── mapoverlaytrans.cpp ├── mapoverlaytrans.h ├── mappath.cpp ├── mappath.h ├── mapplayerhullhandle.cpp ├── mapplayerhullhandle.h ├── mappoint.cpp ├── mappoint.h ├── mappointhandle.cpp ├── mappointhandle.h ├── mapquadbounds.cpp ├── mapquadbounds.h ├── mapsidelist.cpp ├── mapsidelist.h ├── mapsolid.cpp ├── mapsolid.h ├── mapsphere.cpp ├── mapsphere.h ├── mapsprite.cpp ├── mapsprite.h ├── mapstudiomodel.cpp ├── mapstudiomodel.h ├── mapsweptplayerhull.cpp ├── mapsweptplayerhull.h ├── mapview.cpp ├── mapview.h ├── mapview2d.cpp ├── mapview2d.h ├── mapview2dbase.cpp ├── mapview2dbase.h ├── mapview3d.cpp ├── mapview3d.h ├── mapviewlogical.cpp ├── mapviewlogical.h ├── mapworld.cpp ├── mapworld.h ├── material.cpp ├── material.h ├── materialdlg.cpp ├── materialdlg.h ├── materialproxyfactory_wc.cpp ├── materialproxyfactory_wc.h ├── mdiclientwnd.cpp ├── mdiclientwnd.h ├── messagewnd.cpp ├── messagewnd.h ├── misc.cpp ├── modelfactory.cpp ├── modelfactory.h ├── mychecklistbox.h ├── new16.txt ├── newdoctype.cpp ├── newdoctype.h ├── newkeyvalue.cpp ├── newkeyvalue.h ├── noise.cpp ├── objectbar.cpp ├── objectbar.h ├── objectpage.h ├── objectproperties.cpp ├── objectproperties.h ├── op_entity.cpp ├── op_entity.h ├── op_flags.cpp ├── op_flags.h ├── op_groups.cpp ├── op_groups.h ├── op_input.cpp ├── op_input.h ├── op_output.cpp ├── op_output.h ├── optbuild.cpp ├── optbuild.h ├── optconfigs.cpp ├── optconfigs.h ├── optgeneral.cpp ├── optgeneral.h ├── optionproperties.cpp ├── optionproperties.h ├── options.cpp ├── options.h ├── opttextures.cpp ├── opttextures.h ├── optview2d.cpp ├── optview2d.h ├── optview3d.cpp ├── optview3d.h ├── osver.cpp ├── osver.h ├── pakdoc.cpp ├── pakdoc.h ├── pakframe.cpp ├── pakframe.h ├── pakviewdirec.cpp ├── pakviewdirec.h ├── pakviewfiles.cpp ├── pakviewfiles.h ├── pastespecialdlg.cpp ├── pastespecialdlg.h ├── prefab3d.cpp ├── prefab3d.h ├── prefabs.cpp ├── prefabs.h ├── prefabsdlg.cpp ├── prefabsdlg.h ├── processwnd.cpp ├── processwnd.h ├── progdlg.cpp ├── progdlg.h ├── render2d.cpp ├── render2d.h ├── render3d.cpp ├── render3d.h ├── render3dms.cpp ├── render3dms.h ├── replacetexdlg.cpp ├── replacetexdlg.h ├── res ├── afx_idi_.ico ├── bitmap1.bmp ├── bmp00001.bmp ├── bmp00002.bmp ├── camera.ico ├── crosshair.cur ├── crosshair.ico ├── cube.bmp ├── cubechec.bmp ├── cur00001.cur ├── cur00002.cur ├── cursor1.cur ├── cursor2.cur ├── cursor3.cur ├── dispedit.bmp ├── elevtool.bmp ├── entity.cur ├── eyedropper.cur ├── eyedropper.ico ├── forge.ico ├── forgedoc.ico ├── forgemap.bmp ├── gizmoaxis.bmp ├── gizmorotate.bmp ├── gizmoscale.bmp ├── gizmotranslate.bmp ├── handclos.cur ├── handcurs.cur ├── ico00001.ico ├── ico00002.ico ├── ico00003.ico ├── ico00004.ico ├── icon1.ico ├── input.ico ├── input_grey.ico ├── inputbad.ico ├── inputbad_grey.ico ├── magnify.cur ├── mapdoc.bmp ├── mapdoc_n.bmp ├── mapedit.bmp ├── mapedit.bmp2 ├── mapedit256.bmp ├── mapeditt.bmp ├── mapeditt.bmp2 ├── mapopera.bmp ├── new-1.pcx ├── newsplash.bmp ├── newtoolbar.bmp ├── ouput.ico ├── output_grey.ico ├── outputbad.ico ├── outputbad_grey.ico ├── paktool.bmp ├── paktypes.bmp ├── seltools.bmp ├── set_u.bmp ├── settingsu.bmp ├── smartclick.cur ├── splash7b.bmp ├── texturew.ico ├── toolbar.bmp ├── toolbar1.bmp ├── treeroot.bmp ├── undoredo.bmp ├── visgroup.bmp └── wcsplash.bmp ├── resource.h ├── richeditctrlex.cpp ├── richeditctrlex.h ├── runcommands.cpp ├── runcommands.h ├── runmap.cpp ├── runmap.h ├── runmapcfgdlg.cpp ├── runmapcfgdlg.h ├── runmapexpertdlg.cpp ├── runmapexpertdlg.h ├── saveinfo.cpp ├── saveinfo.h ├── scaleverticesdlg.cpp ├── scaleverticesdlg.h ├── searchbox.cpp ├── searchbox.h ├── selectentitydlg.cpp ├── selectentitydlg.h ├── selectmodedlgbar.cpp ├── shell.cpp ├── shell.h ├── shellmessagewnd.cpp ├── shellmessagewnd.h ├── soundsystem.cpp ├── soundsystem.h ├── splash.cpp ├── splash.h ├── sprite.cpp ├── sprite.h ├── ssolid.cpp ├── ssolid.h ├── statusbarids.h ├── stdafx.cpp ├── stdafx.h ├── stocksolids.cpp ├── stocksolids.h ├── strdlg.cpp ├── strdlg.h ├── studiomodel.cpp ├── studiomodel.h ├── subdiv.cpp ├── subdiv.h ├── targetnamecombo.cpp ├── targetnamecombo.h ├── test.txt ├── texture.cpp ├── texture.h ├── texturebar.cpp ├── texturebar.h ├── texturebox.cpp ├── texturebox.h ├── texturebrowser.cpp ├── texturebrowser.h ├── textureconverter.cpp ├── textureconverter.h ├── texturesystem.cpp ├── texturesystem.h ├── texturewindow.cpp ├── texturewindow.h ├── titlewnd.cpp ├── titlewnd.h ├── tool3d.cpp ├── tool3d.h ├── tooldefs.h ├── tooldisplace.cpp ├── tooldisplace.h ├── toolinterface.h ├── toolpickface.cpp ├── toolpickface.h ├── toolswepthull.cpp ├── toolswepthull.h ├── torusdlg.h ├── transformdlg.cpp ├── transformdlg.h ├── undowarningdlg.cpp ├── undowarningdlg.h ├── updatehint.cpp ├── updatehint.h ├── vgui_undef_end.h ├── viewersettings.cpp ├── viewersettings.h ├── visgroup.cpp ├── visgroup.h ├── wadtexture.cpp ├── wadtexture.h ├── whatsnew.txt └── wndtex.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/.gitignore -------------------------------------------------------------------------------- /GameConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/GameConfig.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/README.md -------------------------------------------------------------------------------- /base.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/base.fgd -------------------------------------------------------------------------------- /forgit/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/forgit/logo.png -------------------------------------------------------------------------------- /halflife2.fgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/halflife2.fgd -------------------------------------------------------------------------------- /include/BitmapFontFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/BitmapFontFile.h -------------------------------------------------------------------------------- /include/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/Color.h -------------------------------------------------------------------------------- /include/IGameUIFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/IGameUIFuncs.h -------------------------------------------------------------------------------- /include/IHammer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/IHammer.h -------------------------------------------------------------------------------- /include/OfflineMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/OfflineMode.h -------------------------------------------------------------------------------- /include/PlayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/PlayerState.h -------------------------------------------------------------------------------- /include/ScratchPadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ScratchPadUtils.h -------------------------------------------------------------------------------- /include/XUnzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/XUnzip.cpp -------------------------------------------------------------------------------- /include/XZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/XZip.cpp -------------------------------------------------------------------------------- /include/arraystack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/arraystack.h -------------------------------------------------------------------------------- /include/avi/iavi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/avi/iavi.h -------------------------------------------------------------------------------- /include/avi/ibik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/avi/ibik.h -------------------------------------------------------------------------------- /include/basehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/basehandle.h -------------------------------------------------------------------------------- /include/bitmap/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bitmap/bitmap.h -------------------------------------------------------------------------------- /include/bitmap/cubemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bitmap/cubemap.h -------------------------------------------------------------------------------- /include/bitmap/float_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bitmap/float_bm.h -------------------------------------------------------------------------------- /include/bitmap/psd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bitmap/psd.h -------------------------------------------------------------------------------- /include/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bitvec.h -------------------------------------------------------------------------------- /include/bone_accessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bone_accessor.cpp -------------------------------------------------------------------------------- /include/bone_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bone_accessor.h -------------------------------------------------------------------------------- /include/bone_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bone_setup.cpp -------------------------------------------------------------------------------- /include/bone_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bone_setup.h -------------------------------------------------------------------------------- /include/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bspfile.h -------------------------------------------------------------------------------- /include/bspflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bspflags.h -------------------------------------------------------------------------------- /include/bsptreedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bsptreedata.cpp -------------------------------------------------------------------------------- /include/bsptreedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/bsptreedata.h -------------------------------------------------------------------------------- /include/builddisp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/builddisp.cpp -------------------------------------------------------------------------------- /include/builddisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/builddisp.h -------------------------------------------------------------------------------- /include/captioncompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/captioncompiler.h -------------------------------------------------------------------------------- /include/cdll_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/cdll_int.h -------------------------------------------------------------------------------- /include/chunkfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/chunkfile.cpp -------------------------------------------------------------------------------- /include/chunkfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/chunkfile.h -------------------------------------------------------------------------------- /include/client_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/client_class.cpp -------------------------------------------------------------------------------- /include/client_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/client_class.h -------------------------------------------------------------------------------- /include/clientstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/clientstats.h -------------------------------------------------------------------------------- /include/cmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/cmodel.h -------------------------------------------------------------------------------- /include/collisionutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/collisionutils.h -------------------------------------------------------------------------------- /include/con_nprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/con_nprint.h -------------------------------------------------------------------------------- /include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/const.h -------------------------------------------------------------------------------- /include/coordsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/coordsize.h -------------------------------------------------------------------------------- /include/crtmemdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/crtmemdebug.cpp -------------------------------------------------------------------------------- /include/crtmemdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/crtmemdebug.h -------------------------------------------------------------------------------- /include/datamap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/datamap.h -------------------------------------------------------------------------------- /include/datamodel/dmvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/datamodel/dmvar.h -------------------------------------------------------------------------------- /include/disp_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/disp_common.cpp -------------------------------------------------------------------------------- /include/disp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/disp_common.h -------------------------------------------------------------------------------- /include/disp_powerinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/disp_powerinfo.h -------------------------------------------------------------------------------- /include/disp_tesselate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/disp_tesselate.h -------------------------------------------------------------------------------- /include/disp_vertindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/disp_vertindex.h -------------------------------------------------------------------------------- /include/dispcoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dispcoll.cpp -------------------------------------------------------------------------------- /include/dispcoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dispcoll.h -------------------------------------------------------------------------------- /include/dispcoll_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dispcoll_common.h -------------------------------------------------------------------------------- /include/dlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dlight.h -------------------------------------------------------------------------------- /include/dt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dt_common.h -------------------------------------------------------------------------------- /include/dt_recv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dt_recv.cpp -------------------------------------------------------------------------------- /include/dt_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dt_recv.h -------------------------------------------------------------------------------- /include/dt_send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dt_send.cpp -------------------------------------------------------------------------------- /include/dt_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dt_send.h -------------------------------------------------------------------------------- /include/dt_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dt_shared.cpp -------------------------------------------------------------------------------- /include/dt_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/dt_shared.h -------------------------------------------------------------------------------- /include/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/edict.h -------------------------------------------------------------------------------- /include/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/eiface.h -------------------------------------------------------------------------------- /include/eifaceV21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/eifaceV21.h -------------------------------------------------------------------------------- /include/engine/SndInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/engine/SndInfo.h -------------------------------------------------------------------------------- /include/engine_hlds_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/engine_hlds_api.h -------------------------------------------------------------------------------- /include/event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/event_flags.h -------------------------------------------------------------------------------- /include/fgdlib/fgdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/fgdlib/fgdlib.h -------------------------------------------------------------------------------- /include/fgdlib/gamedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/fgdlib/gamedata.h -------------------------------------------------------------------------------- /include/fgdlib/gdclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/fgdlib/gdclass.h -------------------------------------------------------------------------------- /include/fgdlib/gdvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/fgdlib/gdvar.h -------------------------------------------------------------------------------- /include/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/filesystem.h -------------------------------------------------------------------------------- /include/filesystem_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/filesystem_init.h -------------------------------------------------------------------------------- /include/g15/ig15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/g15/ig15.h -------------------------------------------------------------------------------- /include/gamebspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/gamebspfile.h -------------------------------------------------------------------------------- /include/gametrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/gametrace.h -------------------------------------------------------------------------------- /include/globalvars_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/globalvars_base.h -------------------------------------------------------------------------------- /include/iachievementmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iachievementmgr.h -------------------------------------------------------------------------------- /include/ibsppack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ibsppack.h -------------------------------------------------------------------------------- /include/iclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iclient.h -------------------------------------------------------------------------------- /include/icliententity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/icliententity.h -------------------------------------------------------------------------------- /include/iclientunknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iclientunknown.h -------------------------------------------------------------------------------- /include/icvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/icvar.h -------------------------------------------------------------------------------- /include/iefx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iefx.h -------------------------------------------------------------------------------- /include/ienginevgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ienginevgui.h -------------------------------------------------------------------------------- /include/ifilelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ifilelist.h -------------------------------------------------------------------------------- /include/igameevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/igameevents.h -------------------------------------------------------------------------------- /include/igameresources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/igameresources.h -------------------------------------------------------------------------------- /include/ihandleentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ihandleentity.h -------------------------------------------------------------------------------- /include/ihltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ihltv.h -------------------------------------------------------------------------------- /include/ihltvdirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ihltvdirector.h -------------------------------------------------------------------------------- /include/ilaunchabledll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ilaunchabledll.h -------------------------------------------------------------------------------- /include/imapoverview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/imapoverview.h -------------------------------------------------------------------------------- /include/inetchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/inetchannel.h -------------------------------------------------------------------------------- /include/inetchannelinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/inetchannelinfo.h -------------------------------------------------------------------------------- /include/inetmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/inetmessage.h -------------------------------------------------------------------------------- /include/inetmsghandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/inetmsghandler.h -------------------------------------------------------------------------------- /include/inetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/inetwork.h -------------------------------------------------------------------------------- /include/iprediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iprediction.h -------------------------------------------------------------------------------- /include/iregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iregistry.h -------------------------------------------------------------------------------- /include/isaverestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/isaverestore.h -------------------------------------------------------------------------------- /include/iscratchpad3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iscratchpad3d.h -------------------------------------------------------------------------------- /include/iserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iserver.h -------------------------------------------------------------------------------- /include/iserverentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iserverentity.h -------------------------------------------------------------------------------- /include/iserverunknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/iserverunknown.h -------------------------------------------------------------------------------- /include/isoundcombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/isoundcombiner.h -------------------------------------------------------------------------------- /include/isqlwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/isqlwrapper.h -------------------------------------------------------------------------------- /include/istudiorender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/istudiorender.h -------------------------------------------------------------------------------- /include/ivoiceserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ivoiceserver.h -------------------------------------------------------------------------------- /include/ivoicetweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ivoicetweak.h -------------------------------------------------------------------------------- /include/ivraddll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ivraddll.h -------------------------------------------------------------------------------- /include/ivrenderview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ivrenderview.h -------------------------------------------------------------------------------- /include/ivtex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ivtex.h -------------------------------------------------------------------------------- /include/ixboxsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ixboxsystem.h -------------------------------------------------------------------------------- /include/jigglebones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/jigglebones.cpp -------------------------------------------------------------------------------- /include/jigglebones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/jigglebones.h -------------------------------------------------------------------------------- /include/jpeglib/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/jpeglib/jconfig.h -------------------------------------------------------------------------------- /include/jpeglib/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/jpeglib/jpeglib.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/list.h -------------------------------------------------------------------------------- /include/loadcmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/loadcmdline.cpp -------------------------------------------------------------------------------- /include/loadcmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/loadcmdline.h -------------------------------------------------------------------------------- /include/lumpfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/lumpfiles.cpp -------------------------------------------------------------------------------- /include/lumpfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/lumpfiles.h -------------------------------------------------------------------------------- /include/map_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/map_utils.cpp -------------------------------------------------------------------------------- /include/map_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/map_utils.h -------------------------------------------------------------------------------- /include/mathlib/IceKey.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/IceKey.H -------------------------------------------------------------------------------- /include/mathlib/amd3dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/amd3dx.h -------------------------------------------------------------------------------- /include/mathlib/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/anorms.h -------------------------------------------------------------------------------- /include/mathlib/halton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/halton.h -------------------------------------------------------------------------------- /include/mathlib/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/mathlib.h -------------------------------------------------------------------------------- /include/mathlib/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/noise.h -------------------------------------------------------------------------------- /include/mathlib/ssemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/ssemath.h -------------------------------------------------------------------------------- /include/mathlib/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/vector.h -------------------------------------------------------------------------------- /include/mathlib/vmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/vmatrix.h -------------------------------------------------------------------------------- /include/mathlib/vplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mathlib/vplane.h -------------------------------------------------------------------------------- /include/maya/IMayaVGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/maya/IMayaVGui.h -------------------------------------------------------------------------------- /include/maya/VsMayaDmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/maya/VsMayaDmx.h -------------------------------------------------------------------------------- /include/maya/valveMaya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/maya/valveMaya.h -------------------------------------------------------------------------------- /include/mdllib/mdllib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mdllib/mdllib.h -------------------------------------------------------------------------------- /include/measure_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/measure_section.h -------------------------------------------------------------------------------- /include/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/minmax.h -------------------------------------------------------------------------------- /include/model_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/model_types.h -------------------------------------------------------------------------------- /include/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/modes.h -------------------------------------------------------------------------------- /include/mouthinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mouthinfo.h -------------------------------------------------------------------------------- /include/mxtk/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/gl.h -------------------------------------------------------------------------------- /include/mxtk/mx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mx.h -------------------------------------------------------------------------------- /include/mxtk/mxbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxbmp.h -------------------------------------------------------------------------------- /include/mxtk/mxbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxbutton.h -------------------------------------------------------------------------------- /include/mxtk/mxcheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxcheckbox.h -------------------------------------------------------------------------------- /include/mxtk/mxchoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxchoice.h -------------------------------------------------------------------------------- /include/mxtk/mxevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxevent.h -------------------------------------------------------------------------------- /include/mxtk/mxglwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxglwindow.h -------------------------------------------------------------------------------- /include/mxtk/mxgroupbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxgroupbox.h -------------------------------------------------------------------------------- /include/mxtk/mximage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mximage.h -------------------------------------------------------------------------------- /include/mxtk/mxinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxinit.h -------------------------------------------------------------------------------- /include/mxtk/mxlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxlabel.h -------------------------------------------------------------------------------- /include/mxtk/mxlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxlineedit.h -------------------------------------------------------------------------------- /include/mxtk/mxlistbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxlistbox.h -------------------------------------------------------------------------------- /include/mxtk/mxlistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxlistview.h -------------------------------------------------------------------------------- /include/mxtk/mxmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxmenu.h -------------------------------------------------------------------------------- /include/mxtk/mxmenubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxmenubar.h -------------------------------------------------------------------------------- /include/mxtk/mxpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxpath.h -------------------------------------------------------------------------------- /include/mxtk/mxpcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxpcx.h -------------------------------------------------------------------------------- /include/mxtk/mxslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxslider.h -------------------------------------------------------------------------------- /include/mxtk/mxstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxstring.h -------------------------------------------------------------------------------- /include/mxtk/mxtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxtab.h -------------------------------------------------------------------------------- /include/mxtk/mxtga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxtga.h -------------------------------------------------------------------------------- /include/mxtk/mxtooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxtooltip.h -------------------------------------------------------------------------------- /include/mxtk/mxtreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxtreeview.h -------------------------------------------------------------------------------- /include/mxtk/mxwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxwidget.h -------------------------------------------------------------------------------- /include/mxtk/mxwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/mxtk/mxwindow.h -------------------------------------------------------------------------------- /include/networkvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/networkvar.cpp -------------------------------------------------------------------------------- /include/networkvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/networkvar.h -------------------------------------------------------------------------------- /include/nmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/nmatrix.h -------------------------------------------------------------------------------- /include/ntree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/ntree.h -------------------------------------------------------------------------------- /include/nvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/nvector.h -------------------------------------------------------------------------------- /include/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/optimize.h -------------------------------------------------------------------------------- /include/overlaytext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/overlaytext.h -------------------------------------------------------------------------------- /include/p4lib/ip4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/p4lib/ip4.h -------------------------------------------------------------------------------- /include/parsifal/lib/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/parsifal/lib/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/parsifal/lib/BUGS -------------------------------------------------------------------------------- /include/parsifal/lib/INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/parsifal/lib/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/parsifal/lib/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/parsifal/lib/TODO -------------------------------------------------------------------------------- /include/parsifal/lib/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.3 2 | -------------------------------------------------------------------------------- /include/parsifal/lib/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = libparsifal -------------------------------------------------------------------------------- /include/parsifal/lib/samples/xmlplint/README: -------------------------------------------------------------------------------- 1 | see doc/index.html GENERAL/xmlplint 2 | see also BUILDING 3 | -------------------------------------------------------------------------------- /include/parsifal/lib/samples/xmltest/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.2 2 | -------------------------------------------------------------------------------- /include/parsifal/lib/samples/xmltest/pxpout/README: -------------------------------------------------------------------------------- 1 | This directory is place for files from output tests. 2 | 3 | -------------------------------------------------------------------------------- /include/parsifal/optcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/parsifal/optcfg.h -------------------------------------------------------------------------------- /include/parsifal/xmlcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/parsifal/xmlcfg.h -------------------------------------------------------------------------------- /include/parsifal/xmldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/parsifal/xmldef.h -------------------------------------------------------------------------------- /include/phyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/phyfile.h -------------------------------------------------------------------------------- /include/pixelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/pixelwriter.h -------------------------------------------------------------------------------- /include/posedebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/posedebugger.cpp -------------------------------------------------------------------------------- /include/posedebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/posedebugger.h -------------------------------------------------------------------------------- /include/r_efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/r_efx.h -------------------------------------------------------------------------------- /include/raytrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/raytrace.h -------------------------------------------------------------------------------- /include/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/registry.cpp -------------------------------------------------------------------------------- /include/renderparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/renderparm.h -------------------------------------------------------------------------------- /include/rope_physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/rope_physics.cpp -------------------------------------------------------------------------------- /include/rope_physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/rope_physics.h -------------------------------------------------------------------------------- /include/rope_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/rope_shared.h -------------------------------------------------------------------------------- /include/scratchpad3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/scratchpad3d.cpp -------------------------------------------------------------------------------- /include/scratchpad3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/scratchpad3d.h -------------------------------------------------------------------------------- /include/sentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/sentence.cpp -------------------------------------------------------------------------------- /include/sentence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/sentence.h -------------------------------------------------------------------------------- /include/server_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/server_class.cpp -------------------------------------------------------------------------------- /include/server_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/server_class.h -------------------------------------------------------------------------------- /include/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/shake.h -------------------------------------------------------------------------------- /include/simple_physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/simple_physics.h -------------------------------------------------------------------------------- /include/smooth_average.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/smooth_average.h -------------------------------------------------------------------------------- /include/soundchars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/soundchars.h -------------------------------------------------------------------------------- /include/soundcombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/soundcombiner.cpp -------------------------------------------------------------------------------- /include/soundflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/soundflags.h -------------------------------------------------------------------------------- /include/soundinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/soundinfo.h -------------------------------------------------------------------------------- /include/stdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/stdstring.h -------------------------------------------------------------------------------- /include/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/steam/steam_api.h -------------------------------------------------------------------------------- /include/string_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/string_t.h -------------------------------------------------------------------------------- /include/stringregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/stringregistry.h -------------------------------------------------------------------------------- /include/studio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/studio.cpp -------------------------------------------------------------------------------- /include/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/studio.h -------------------------------------------------------------------------------- /include/surfinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/surfinfo.h -------------------------------------------------------------------------------- /include/tier0/PMELib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/PMELib.h -------------------------------------------------------------------------------- /include/tier0/basetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/basetypes.h -------------------------------------------------------------------------------- /include/tier0/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/dbg.h -------------------------------------------------------------------------------- /include/tier0/dbgflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/dbgflag.h -------------------------------------------------------------------------------- /include/tier0/fasttimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/fasttimer.h -------------------------------------------------------------------------------- /include/tier0/l2cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/l2cache.h -------------------------------------------------------------------------------- /include/tier0/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/mem.h -------------------------------------------------------------------------------- /include/tier0/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/memalloc.h -------------------------------------------------------------------------------- /include/tier0/memdbgoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/memdbgoff.h -------------------------------------------------------------------------------- /include/tier0/memdbgon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/memdbgon.h -------------------------------------------------------------------------------- /include/tier0/minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/minidump.h -------------------------------------------------------------------------------- /include/tier0/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/platform.h -------------------------------------------------------------------------------- /include/tier0/pmc360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/pmc360.h -------------------------------------------------------------------------------- /include/tier0/tslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/tslist.h -------------------------------------------------------------------------------- /include/tier0/validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/validator.h -------------------------------------------------------------------------------- /include/tier0/valobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/valobject.h -------------------------------------------------------------------------------- /include/tier0/valve_off.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/valve_off.h -------------------------------------------------------------------------------- /include/tier0/valve_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/valve_on.h -------------------------------------------------------------------------------- /include/tier0/vcrmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/vcrmode.h -------------------------------------------------------------------------------- /include/tier0/vprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier0/vprof.h -------------------------------------------------------------------------------- /include/tier1/KeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/KeyValues.h -------------------------------------------------------------------------------- /include/tier1/bitbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/bitbuf.h -------------------------------------------------------------------------------- /include/tier1/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/byteswap.h -------------------------------------------------------------------------------- /include/tier1/callqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/callqueue.h -------------------------------------------------------------------------------- /include/tier1/convar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/convar.h -------------------------------------------------------------------------------- /include/tier1/delegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/delegates.h -------------------------------------------------------------------------------- /include/tier1/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/diff.h -------------------------------------------------------------------------------- /include/tier1/fmtstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/fmtstr.h -------------------------------------------------------------------------------- /include/tier1/functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/functors.h -------------------------------------------------------------------------------- /include/tier1/iconvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/iconvar.h -------------------------------------------------------------------------------- /include/tier1/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/interface.h -------------------------------------------------------------------------------- /include/tier1/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/lzss.h -------------------------------------------------------------------------------- /include/tier1/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/mempool.h -------------------------------------------------------------------------------- /include/tier1/memstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/memstack.h -------------------------------------------------------------------------------- /include/tier1/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/netadr.h -------------------------------------------------------------------------------- /include/tier1/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/refcount.h -------------------------------------------------------------------------------- /include/tier1/smartptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/smartptr.h -------------------------------------------------------------------------------- /include/tier1/strtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/strtools.h -------------------------------------------------------------------------------- /include/tier1/tier1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/tier1.h -------------------------------------------------------------------------------- /include/tier1/uniqueid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/uniqueid.h -------------------------------------------------------------------------------- /include/tier1/utlbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlbuffer.h -------------------------------------------------------------------------------- /include/tier1/utlcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlcommon.h -------------------------------------------------------------------------------- /include/tier1/utldict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utldict.h -------------------------------------------------------------------------------- /include/tier1/utlflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlflags.h -------------------------------------------------------------------------------- /include/tier1/utlhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlhash.h -------------------------------------------------------------------------------- /include/tier1/utlmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlmap.h -------------------------------------------------------------------------------- /include/tier1/utlmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlmemory.h -------------------------------------------------------------------------------- /include/tier1/utlntree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlntree.h -------------------------------------------------------------------------------- /include/tier1/utlqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlqueue.h -------------------------------------------------------------------------------- /include/tier1/utlrbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlrbtree.h -------------------------------------------------------------------------------- /include/tier1/utlstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlstack.h -------------------------------------------------------------------------------- /include/tier1/utlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlstring.h -------------------------------------------------------------------------------- /include/tier1/utlsymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlsymbol.h -------------------------------------------------------------------------------- /include/tier1/utlvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier1/utlvector.h -------------------------------------------------------------------------------- /include/tier2/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier2/fileutils.h -------------------------------------------------------------------------------- /include/tier2/meshutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier2/meshutils.h -------------------------------------------------------------------------------- /include/tier2/p4helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier2/p4helpers.h -------------------------------------------------------------------------------- /include/tier2/riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier2/riff.h -------------------------------------------------------------------------------- /include/tier2/tier2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier2/tier2.h -------------------------------------------------------------------------------- /include/tier2/tier2dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier2/tier2dm.h -------------------------------------------------------------------------------- /include/tier2/vconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier2/vconfig.h -------------------------------------------------------------------------------- /include/tier3/tier3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier3/tier3.h -------------------------------------------------------------------------------- /include/tier3/tier3dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tier3/tier3dm.h -------------------------------------------------------------------------------- /include/tools/bonelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/tools/bonelist.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/unicode/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/unicode/unicode.h -------------------------------------------------------------------------------- /include/unitlib/unitlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/unitlib/unitlib.h -------------------------------------------------------------------------------- /include/vallocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vallocator.cpp -------------------------------------------------------------------------------- /include/vallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vallocator.h -------------------------------------------------------------------------------- /include/vaudio/2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vaudio/2.h -------------------------------------------------------------------------------- /include/vaudio/ivaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vaudio/ivaudio.h -------------------------------------------------------------------------------- /include/vcollide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vcollide.h -------------------------------------------------------------------------------- /include/vcollide_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vcollide_parse.h -------------------------------------------------------------------------------- /include/vgui/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/Cursor.h -------------------------------------------------------------------------------- /include/vgui/Dar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/Dar.h -------------------------------------------------------------------------------- /include/vgui/IBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/IBorder.h -------------------------------------------------------------------------------- /include/vgui/IHTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/IHTML.h -------------------------------------------------------------------------------- /include/vgui/IImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/IImage.h -------------------------------------------------------------------------------- /include/vgui/IInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/IInput.h -------------------------------------------------------------------------------- /include/vgui/ILocalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/ILocalize.h -------------------------------------------------------------------------------- /include/vgui/IPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/IPanel.h -------------------------------------------------------------------------------- /include/vgui/IScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/IScheme.h -------------------------------------------------------------------------------- /include/vgui/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/ISurface.h -------------------------------------------------------------------------------- /include/vgui/ISystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/ISystem.h -------------------------------------------------------------------------------- /include/vgui/IVGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/IVGui.h -------------------------------------------------------------------------------- /include/vgui/KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/KeyCode.h -------------------------------------------------------------------------------- /include/vgui/MouseCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/MouseCode.h -------------------------------------------------------------------------------- /include/vgui/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/Point.h -------------------------------------------------------------------------------- /include/vgui/VGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vgui/VGUI.h -------------------------------------------------------------------------------- /include/view_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/view_shared.h -------------------------------------------------------------------------------- /include/vphysics/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vphysics/stats.h -------------------------------------------------------------------------------- /include/vstdlib/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vstdlib/cvar.h -------------------------------------------------------------------------------- /include/vstdlib/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vstdlib/random.h -------------------------------------------------------------------------------- /include/vstdlib/vcover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vstdlib/vcover.h -------------------------------------------------------------------------------- /include/vstdlib/vstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vstdlib/vstdlib.h -------------------------------------------------------------------------------- /include/vtf/vtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/vtf/vtf.h -------------------------------------------------------------------------------- /include/wadtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/wadtypes.h -------------------------------------------------------------------------------- /include/winlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/winlite.h -------------------------------------------------------------------------------- /include/worldsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/worldsize.h -------------------------------------------------------------------------------- /include/xwvfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/xwvfile.h -------------------------------------------------------------------------------- /include/xzp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/xzp.cpp -------------------------------------------------------------------------------- /include/zip/XUnzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/zip/XUnzip.h -------------------------------------------------------------------------------- /include/zip/XZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/zip/XZip.h -------------------------------------------------------------------------------- /include/zip_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/zip_utils.cpp -------------------------------------------------------------------------------- /include/zip_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/include/zip_utils.h -------------------------------------------------------------------------------- /sdk/include/dxsdk/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/include/dxsdk/d3dx9.h -------------------------------------------------------------------------------- /sdk/include/nvtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/include/nvtc.h -------------------------------------------------------------------------------- /sdk/lib/Win32/d3dx10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/Win32/d3dx10.lib -------------------------------------------------------------------------------- /sdk/lib/Win32/d3dx10d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/Win32/d3dx10d.lib -------------------------------------------------------------------------------- /sdk/lib/Win32/d3dx11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/Win32/d3dx11.lib -------------------------------------------------------------------------------- /sdk/lib/Win32/d3dx11d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/Win32/d3dx11d.lib -------------------------------------------------------------------------------- /sdk/lib/Win32/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/Win32/d3dx9.lib -------------------------------------------------------------------------------- /sdk/lib/Win32/d3dx9d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/Win32/d3dx9d.lib -------------------------------------------------------------------------------- /sdk/lib/Win32/d3dxof.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/Win32/d3dxof.lib -------------------------------------------------------------------------------- /sdk/lib/x64/d3dx10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/x64/d3dx10.lib -------------------------------------------------------------------------------- /sdk/lib/x64/d3dx10d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/x64/d3dx10d.lib -------------------------------------------------------------------------------- /sdk/lib/x64/d3dx11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/x64/d3dx11.lib -------------------------------------------------------------------------------- /sdk/lib/x64/d3dx11d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/x64/d3dx11d.lib -------------------------------------------------------------------------------- /sdk/lib/x64/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/x64/d3dx9.lib -------------------------------------------------------------------------------- /sdk/lib/x64/d3dx9d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/x64/d3dx9d.lib -------------------------------------------------------------------------------- /sdk/lib/x64/d3dxof.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/sdk/lib/x64/d3dxof.lib -------------------------------------------------------------------------------- /src/Bitmap/Bitmap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/Bitmap.vcxproj -------------------------------------------------------------------------------- /src/Bitmap/float_bm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/float_bm.cpp -------------------------------------------------------------------------------- /src/Bitmap/float_bm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/float_bm2.cpp -------------------------------------------------------------------------------- /src/Bitmap/float_bm3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/float_bm3.cpp -------------------------------------------------------------------------------- /src/Bitmap/float_bm4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/float_bm4.cpp -------------------------------------------------------------------------------- /src/Bitmap/float_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/float_cube.cpp -------------------------------------------------------------------------------- /src/Bitmap/psd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/psd.cpp -------------------------------------------------------------------------------- /src/Bitmap/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/resample.cpp -------------------------------------------------------------------------------- /src/Bitmap/tgaloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/tgaloader.cpp -------------------------------------------------------------------------------- /src/Bitmap/tgawriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Bitmap/tgawriter.cpp -------------------------------------------------------------------------------- /src/Datacache/datacache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Datacache/datacache.h -------------------------------------------------------------------------------- /src/Datamodel/datamodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Datamodel/datamodel.h -------------------------------------------------------------------------------- /src/Engine/Engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/Engine.vcxproj -------------------------------------------------------------------------------- /src/Engine/ModelInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/ModelInfo.cpp -------------------------------------------------------------------------------- /src/Engine/ModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/ModelInfo.h -------------------------------------------------------------------------------- /src/Engine/Overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/Overlay.cpp -------------------------------------------------------------------------------- /src/Engine/Overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/Overlay.h -------------------------------------------------------------------------------- /src/Engine/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/Session.cpp -------------------------------------------------------------------------------- /src/Engine/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/Session.h -------------------------------------------------------------------------------- /src/Engine/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/UpgradeLog.htm -------------------------------------------------------------------------------- /src/Engine/baseclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/baseclient.cpp -------------------------------------------------------------------------------- /src/Engine/baseclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/baseclient.h -------------------------------------------------------------------------------- /src/Engine/baseserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/baseserver.cpp -------------------------------------------------------------------------------- /src/Engine/baseserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/baseserver.h -------------------------------------------------------------------------------- /src/Engine/buildnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/buildnum.cpp -------------------------------------------------------------------------------- /src/Engine/cbenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cbenchmark.cpp -------------------------------------------------------------------------------- /src/Engine/cbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cbenchmark.h -------------------------------------------------------------------------------- /src/Engine/cheatcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cheatcodes.cpp -------------------------------------------------------------------------------- /src/Engine/cheatcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cheatcodes.h -------------------------------------------------------------------------------- /src/Engine/cl_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_demo.cpp -------------------------------------------------------------------------------- /src/Engine/cl_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_demo.h -------------------------------------------------------------------------------- /src/Engine/cl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_main.cpp -------------------------------------------------------------------------------- /src/Engine/cl_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_main.h -------------------------------------------------------------------------------- /src/Engine/cl_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_null.cpp -------------------------------------------------------------------------------- /src/Engine/cl_pred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_pred.cpp -------------------------------------------------------------------------------- /src/Engine/cl_pred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_pred.h -------------------------------------------------------------------------------- /src/Engine/cl_rcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_rcon.cpp -------------------------------------------------------------------------------- /src/Engine/cl_rcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_rcon.h -------------------------------------------------------------------------------- /src/Engine/cl_steamauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cl_steamauth.h -------------------------------------------------------------------------------- /src/Engine/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/client.cpp -------------------------------------------------------------------------------- /src/Engine/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/client.h -------------------------------------------------------------------------------- /src/Engine/client_pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/client_pch.cpp -------------------------------------------------------------------------------- /src/Engine/client_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/client_pch.h -------------------------------------------------------------------------------- /src/Engine/clientframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/clientframe.h -------------------------------------------------------------------------------- /src/Engine/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cmd.cpp -------------------------------------------------------------------------------- /src/Engine/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cmd.h -------------------------------------------------------------------------------- /src/Engine/cmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cmodel.cpp -------------------------------------------------------------------------------- /src/Engine/cmodel_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cmodel_bsp.cpp -------------------------------------------------------------------------------- /src/Engine/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/common.cpp -------------------------------------------------------------------------------- /src/Engine/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/common.h -------------------------------------------------------------------------------- /src/Engine/conprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/conprint.h -------------------------------------------------------------------------------- /src/Engine/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/console.cpp -------------------------------------------------------------------------------- /src/Engine/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/console.h -------------------------------------------------------------------------------- /src/Engine/cvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cvar.cpp -------------------------------------------------------------------------------- /src/Engine/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/cvar.h -------------------------------------------------------------------------------- /src/Engine/debugoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/debugoverlay.h -------------------------------------------------------------------------------- /src/Engine/decal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/decal.h -------------------------------------------------------------------------------- /src/Engine/decal_clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/decal_clip.cpp -------------------------------------------------------------------------------- /src/Engine/decal_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/decal_clip.h -------------------------------------------------------------------------------- /src/Engine/decals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/decals.cpp -------------------------------------------------------------------------------- /src/Engine/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/demo.h -------------------------------------------------------------------------------- /src/Engine/demofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/demofile.cpp -------------------------------------------------------------------------------- /src/Engine/demofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/demofile.h -------------------------------------------------------------------------------- /src/Engine/disp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/disp.cpp -------------------------------------------------------------------------------- /src/Engine/disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/disp.h -------------------------------------------------------------------------------- /src/Engine/disp_defs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/disp_defs.cpp -------------------------------------------------------------------------------- /src/Engine/disp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/disp_defs.h -------------------------------------------------------------------------------- /src/Engine/disp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/disp_helpers.h -------------------------------------------------------------------------------- /src/Engine/dispnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dispnode.h -------------------------------------------------------------------------------- /src/Engine/download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/download.cpp -------------------------------------------------------------------------------- /src/Engine/download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/download.h -------------------------------------------------------------------------------- /src/Engine/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/draw.h -------------------------------------------------------------------------------- /src/Engine/dt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt.cpp -------------------------------------------------------------------------------- /src/Engine/dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt.h -------------------------------------------------------------------------------- /src/Engine/dt_encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_encode.cpp -------------------------------------------------------------------------------- /src/Engine/dt_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_encode.h -------------------------------------------------------------------------------- /src/Engine/dt_recv_eng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_recv_eng.h -------------------------------------------------------------------------------- /src/Engine/dt_send_eng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_send_eng.h -------------------------------------------------------------------------------- /src/Engine/dt_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_stack.cpp -------------------------------------------------------------------------------- /src/Engine/dt_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_stack.h -------------------------------------------------------------------------------- /src/Engine/dt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_test.cpp -------------------------------------------------------------------------------- /src/Engine/dt_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/dt_test.h -------------------------------------------------------------------------------- /src/Engine/engine.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/engine.vpc -------------------------------------------------------------------------------- /src/Engine/enginestats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/enginestats.h -------------------------------------------------------------------------------- /src/Engine/enginetool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/enginetool.cpp -------------------------------------------------------------------------------- /src/Engine/enginetrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/enginetrace.h -------------------------------------------------------------------------------- /src/Engine/ents_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/ents_shared.h -------------------------------------------------------------------------------- /src/Engine/event_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/event_system.h -------------------------------------------------------------------------------- /src/Engine/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/filter.h -------------------------------------------------------------------------------- /src/Engine/flat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/flat.mat -------------------------------------------------------------------------------- /src/Engine/gl_cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_cvars.h -------------------------------------------------------------------------------- /src/Engine/gl_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_draw.cpp -------------------------------------------------------------------------------- /src/Engine/gl_lightmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_lightmap.h -------------------------------------------------------------------------------- /src/Engine/gl_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_model.h -------------------------------------------------------------------------------- /src/Engine/gl_rlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_rlight.cpp -------------------------------------------------------------------------------- /src/Engine/gl_rmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_rmain.cpp -------------------------------------------------------------------------------- /src/Engine/gl_rmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_rmain.h -------------------------------------------------------------------------------- /src/Engine/gl_rmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_rmisc.cpp -------------------------------------------------------------------------------- /src/Engine/gl_rsurf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_rsurf.cpp -------------------------------------------------------------------------------- /src/Engine/gl_rsurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_rsurf.h -------------------------------------------------------------------------------- /src/Engine/gl_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_screen.cpp -------------------------------------------------------------------------------- /src/Engine/gl_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_shader.cpp -------------------------------------------------------------------------------- /src/Engine/gl_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_shader.h -------------------------------------------------------------------------------- /src/Engine/gl_warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_warp.cpp -------------------------------------------------------------------------------- /src/Engine/gl_water.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/gl_water.h -------------------------------------------------------------------------------- /src/Engine/hltvclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvclient.cpp -------------------------------------------------------------------------------- /src/Engine/hltvclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvclient.h -------------------------------------------------------------------------------- /src/Engine/hltvdemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvdemo.cpp -------------------------------------------------------------------------------- /src/Engine/hltvdemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvdemo.h -------------------------------------------------------------------------------- /src/Engine/hltvserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvserver.cpp -------------------------------------------------------------------------------- /src/Engine/hltvserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvserver.h -------------------------------------------------------------------------------- /src/Engine/hltvtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvtest.cpp -------------------------------------------------------------------------------- /src/Engine/hltvtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/hltvtest.h -------------------------------------------------------------------------------- /src/Engine/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/host.cpp -------------------------------------------------------------------------------- /src/Engine/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/host.h -------------------------------------------------------------------------------- /src/Engine/host_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/host_cmd.cpp -------------------------------------------------------------------------------- /src/Engine/host_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/host_cmd.h -------------------------------------------------------------------------------- /src/Engine/host_jmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/host_jmp.h -------------------------------------------------------------------------------- /src/Engine/host_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/host_state.cpp -------------------------------------------------------------------------------- /src/Engine/host_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/host_state.h -------------------------------------------------------------------------------- /src/Engine/idispinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/idispinfo.h -------------------------------------------------------------------------------- /src/Engine/iengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/iengine.h -------------------------------------------------------------------------------- /src/Engine/igame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/igame.h -------------------------------------------------------------------------------- /src/Engine/ithread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/ithread.h -------------------------------------------------------------------------------- /src/Engine/ivideomode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/ivideomode.h -------------------------------------------------------------------------------- /src/Engine/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/keys.cpp -------------------------------------------------------------------------------- /src/Engine/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/keys.h -------------------------------------------------------------------------------- /src/Engine/l_studio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/l_studio.cpp -------------------------------------------------------------------------------- /src/Engine/l_studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/l_studio.h -------------------------------------------------------------------------------- /src/Engine/lightcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/lightcache.cpp -------------------------------------------------------------------------------- /src/Engine/lightcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/lightcache.h -------------------------------------------------------------------------------- /src/Engine/master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/master.h -------------------------------------------------------------------------------- /src/Engine/matchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/matchmaking.h -------------------------------------------------------------------------------- /src/Engine/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/mem.cpp -------------------------------------------------------------------------------- /src/Engine/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/mem.h -------------------------------------------------------------------------------- /src/Engine/mem_fgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/mem_fgets.cpp -------------------------------------------------------------------------------- /src/Engine/mem_fgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/mem_fgets.h -------------------------------------------------------------------------------- /src/Engine/mod_vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/mod_vis.cpp -------------------------------------------------------------------------------- /src/Engine/mod_vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/mod_vis.h -------------------------------------------------------------------------------- /src/Engine/modelloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/modelloader.h -------------------------------------------------------------------------------- /src/Engine/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/net.h -------------------------------------------------------------------------------- /src/Engine/net_chan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/net_chan.cpp -------------------------------------------------------------------------------- /src/Engine/net_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/net_chan.h -------------------------------------------------------------------------------- /src/Engine/net_synctags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/net_synctags.h -------------------------------------------------------------------------------- /src/Engine/net_ws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/net_ws.cpp -------------------------------------------------------------------------------- /src/Engine/pr_edict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/pr_edict.cpp -------------------------------------------------------------------------------- /src/Engine/pr_edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/pr_edict.h -------------------------------------------------------------------------------- /src/Engine/precache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/precache.cpp -------------------------------------------------------------------------------- /src/Engine/precache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/precache.h -------------------------------------------------------------------------------- /src/Engine/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/profile.h -------------------------------------------------------------------------------- /src/Engine/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/profiling.h -------------------------------------------------------------------------------- /src/Engine/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/progs.h -------------------------------------------------------------------------------- /src/Engine/pure_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/pure_server.h -------------------------------------------------------------------------------- /src/Engine/quakeasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/quakeasm.h -------------------------------------------------------------------------------- /src/Engine/quakedef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/quakedef.cpp -------------------------------------------------------------------------------- /src/Engine/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/quakedef.h -------------------------------------------------------------------------------- /src/Engine/r_areaportal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/r_areaportal.h -------------------------------------------------------------------------------- /src/Engine/r_decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/r_decal.cpp -------------------------------------------------------------------------------- /src/Engine/r_decal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/r_decal.h -------------------------------------------------------------------------------- /src/Engine/r_efx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/r_efx.cpp -------------------------------------------------------------------------------- /src/Engine/r_efxextern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/r_efxextern.h -------------------------------------------------------------------------------- /src/Engine/r_linefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/r_linefile.cpp -------------------------------------------------------------------------------- /src/Engine/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/r_local.h -------------------------------------------------------------------------------- /src/Engine/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/render.h -------------------------------------------------------------------------------- /src/Engine/render_pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/render_pch.cpp -------------------------------------------------------------------------------- /src/Engine/render_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/render_pch.h -------------------------------------------------------------------------------- /src/Engine/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/resource.h -------------------------------------------------------------------------------- /src/Engine/rpt_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/rpt_engine.cpp -------------------------------------------------------------------------------- /src/Engine/sbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sbar.h -------------------------------------------------------------------------------- /src/Engine/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/screen.h -------------------------------------------------------------------------------- /src/Engine/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/server.h -------------------------------------------------------------------------------- /src/Engine/server_pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/server_pch.cpp -------------------------------------------------------------------------------- /src/Engine/server_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/server_pch.h -------------------------------------------------------------------------------- /src/Engine/shadowmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/shadowmgr.cpp -------------------------------------------------------------------------------- /src/Engine/shadowmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/shadowmgr.h -------------------------------------------------------------------------------- /src/Engine/snd_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/snd_io.cpp -------------------------------------------------------------------------------- /src/Engine/sv_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_client.cpp -------------------------------------------------------------------------------- /src/Engine/sv_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_client.h -------------------------------------------------------------------------------- /src/Engine/sv_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_filter.cpp -------------------------------------------------------------------------------- /src/Engine/sv_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_filter.h -------------------------------------------------------------------------------- /src/Engine/sv_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_log.cpp -------------------------------------------------------------------------------- /src/Engine/sv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_log.h -------------------------------------------------------------------------------- /src/Engine/sv_logofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_logofile.h -------------------------------------------------------------------------------- /src/Engine/sv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_main.cpp -------------------------------------------------------------------------------- /src/Engine/sv_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_main.h -------------------------------------------------------------------------------- /src/Engine/sv_master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_master.cpp -------------------------------------------------------------------------------- /src/Engine/sv_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_plugin.cpp -------------------------------------------------------------------------------- /src/Engine/sv_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_plugin.h -------------------------------------------------------------------------------- /src/Engine/sv_precache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_precache.h -------------------------------------------------------------------------------- /src/Engine/sv_rcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_rcon.cpp -------------------------------------------------------------------------------- /src/Engine/sv_rcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_rcon.h -------------------------------------------------------------------------------- /src/Engine/sv_steamauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_steamauth.h -------------------------------------------------------------------------------- /src/Engine/sv_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sv_user.h -------------------------------------------------------------------------------- /src/Engine/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sys.h -------------------------------------------------------------------------------- /src/Engine/sys_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sys_dll.cpp -------------------------------------------------------------------------------- /src/Engine/sys_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sys_dll.h -------------------------------------------------------------------------------- /src/Engine/sys_dll2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sys_dll2.cpp -------------------------------------------------------------------------------- /src/Engine/sys_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sys_engine.cpp -------------------------------------------------------------------------------- /src/Engine/sys_mainwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sys_mainwind.h -------------------------------------------------------------------------------- /src/Engine/sysexternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/sysexternal.h -------------------------------------------------------------------------------- /src/Engine/tmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/tmessage.cpp -------------------------------------------------------------------------------- /src/Engine/tmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/tmessage.h -------------------------------------------------------------------------------- /src/Engine/traceinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/traceinit.cpp -------------------------------------------------------------------------------- /src/Engine/traceinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/traceinit.h -------------------------------------------------------------------------------- /src/Engine/vgui_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/vgui_helpers.h -------------------------------------------------------------------------------- /src/Engine/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/view.cpp -------------------------------------------------------------------------------- /src/Engine/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/view.h -------------------------------------------------------------------------------- /src/Engine/vmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/vmodes.h -------------------------------------------------------------------------------- /src/Engine/voice_codecs/speex/source/NEWS: -------------------------------------------------------------------------------- 1 | 2002/02/13: Creation of the "Speex" project 2 | -------------------------------------------------------------------------------- /src/Engine/vprof_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/vprof_engine.h -------------------------------------------------------------------------------- /src/Engine/vprof_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/vprof_record.h -------------------------------------------------------------------------------- /src/Engine/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/world.cpp -------------------------------------------------------------------------------- /src/Engine/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/world.h -------------------------------------------------------------------------------- /src/Engine/xbox/xbox.def: -------------------------------------------------------------------------------- 1 | LIBRARY engine_360.dll 2 | EXPORTS 3 | CreateInterface @1 4 | -------------------------------------------------------------------------------- /src/Engine/xboxsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/xboxsystem.cpp -------------------------------------------------------------------------------- /src/Engine/zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/zone.cpp -------------------------------------------------------------------------------- /src/Engine/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Engine/zone.h -------------------------------------------------------------------------------- /src/Fgdlib/Fgdlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Fgdlib/Fgdlib.vcxproj -------------------------------------------------------------------------------- /src/Fgdlib/gamedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Fgdlib/gamedata.cpp -------------------------------------------------------------------------------- /src/Fgdlib/gdclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Fgdlib/gdclass.cpp -------------------------------------------------------------------------------- /src/Fgdlib/gdvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Fgdlib/gdvar.cpp -------------------------------------------------------------------------------- /src/GameUI/BasePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/BasePanel.cpp -------------------------------------------------------------------------------- /src/GameUI/BasePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/BasePanel.h -------------------------------------------------------------------------------- /src/GameUI/CvarSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/CvarSlider.cpp -------------------------------------------------------------------------------- /src/GameUI/CvarSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/CvarSlider.h -------------------------------------------------------------------------------- /src/GameUI/GameApp.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GameUI/GameApp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GameUI/GameConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/GameConsole.h -------------------------------------------------------------------------------- /src/GameUI/GameUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/GameUI.h -------------------------------------------------------------------------------- /src/GameUI/GameUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/GameUI.vcxproj -------------------------------------------------------------------------------- /src/GameUI/GameUIPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/GameUIPanel.h -------------------------------------------------------------------------------- /src/GameUI/LogoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/LogoFile.cpp -------------------------------------------------------------------------------- /src/GameUI/ModInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/ModInfo.cpp -------------------------------------------------------------------------------- /src/GameUI/ModInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/ModInfo.h -------------------------------------------------------------------------------- /src/GameUI/RunGameEngine.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GameUI/ScriptObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/ScriptObject.h -------------------------------------------------------------------------------- /src/GameUI/Sys_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/Sys_Utils.cpp -------------------------------------------------------------------------------- /src/GameUI/Sys_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/Sys_Utils.h -------------------------------------------------------------------------------- /src/GameUI/TextEntryBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/TextEntryBox.h -------------------------------------------------------------------------------- /src/GameUI/URLButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/URLButton.cpp -------------------------------------------------------------------------------- /src/GameUI/URLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/GameUI/URLButton.h -------------------------------------------------------------------------------- /src/Hammer/Hammer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Hammer/Hammer.vcxproj -------------------------------------------------------------------------------- /src/Hammer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Hammer/main.cpp -------------------------------------------------------------------------------- /src/Hammer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Hammer/resource.h -------------------------------------------------------------------------------- /src/IVP/havana/havok/hk_physics/core/rigid_body_core.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Launcher/launcher.cpp -------------------------------------------------------------------------------- /src/Materialsystem/Stdshaders/BufferClearObeyStencil_ps11.psh: -------------------------------------------------------------------------------- 1 | ps.1.1 2 | 3 | mov r0, v0 -------------------------------------------------------------------------------- /src/Materialsystem/Stdshaders/NIL: -------------------------------------------------------------------------------- 1 | assembly succeeded; see shader0.o 2 | -------------------------------------------------------------------------------- /src/Materialsystem/Stdshaders/SpriteRenderTransColor.psh: -------------------------------------------------------------------------------- 1 | ps.1.1 2 | 3 | tex t0 4 | 5 | mul r0, t0, v0 6 | -------------------------------------------------------------------------------- /src/Materialsystem/Stdshaders/common_vertexlitgeneric_vs20.fxc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Materialsystem/Stdshaders/decalmodulate_ps11.psh: -------------------------------------------------------------------------------- 1 | ps.1.1 2 | 3 | tex t0 4 | mov r0, t0 -------------------------------------------------------------------------------- /src/Materialsystem/Stdshaders/makefile.stdshader_dx9_20b_new: -------------------------------------------------------------------------------- 1 | default: 2 | 3 | -------------------------------------------------------------------------------- /src/Materialsystem/Stdshaders/modulate_vs11.vsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Mathlib/3dnow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/3dnow.cpp -------------------------------------------------------------------------------- /src/Mathlib/3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/3dnow.h -------------------------------------------------------------------------------- /src/Mathlib/IceKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/IceKey.cpp -------------------------------------------------------------------------------- /src/Mathlib/anorms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/anorms.cpp -------------------------------------------------------------------------------- /src/Mathlib/bumpvects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/bumpvects.cpp -------------------------------------------------------------------------------- /src/Mathlib/datagen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/datagen.pl -------------------------------------------------------------------------------- /src/Mathlib/halton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/halton.cpp -------------------------------------------------------------------------------- /src/Mathlib/lightdesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/lightdesc.cpp -------------------------------------------------------------------------------- /src/Mathlib/mathlib.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/mathlib.vpc -------------------------------------------------------------------------------- /src/Mathlib/noisedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/noisedata.h -------------------------------------------------------------------------------- /src/Mathlib/powsse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/powsse.cpp -------------------------------------------------------------------------------- /src/Mathlib/quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/quantize.cpp -------------------------------------------------------------------------------- /src/Mathlib/randsse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/randsse.cpp -------------------------------------------------------------------------------- /src/Mathlib/sse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/sse.cpp -------------------------------------------------------------------------------- /src/Mathlib/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/sse.h -------------------------------------------------------------------------------- /src/Mathlib/sseconst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/sseconst.cpp -------------------------------------------------------------------------------- /src/Mathlib/ssenoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/ssenoise.cpp -------------------------------------------------------------------------------- /src/Mathlib/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/vector.cpp -------------------------------------------------------------------------------- /src/Mathlib/vmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Mathlib/vmatrix.cpp -------------------------------------------------------------------------------- /src/Particles/psheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Particles/psheet.cpp -------------------------------------------------------------------------------- /src/Particles/psheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Particles/psheet.h -------------------------------------------------------------------------------- /src/RayTrace/raytrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/RayTrace/raytrace.cpp -------------------------------------------------------------------------------- /src/RayTrace/trace2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/RayTrace/trace2.cpp -------------------------------------------------------------------------------- /src/RayTrace/trace3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/RayTrace/trace3.cpp -------------------------------------------------------------------------------- /src/SourceEngine.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/SourceEngine.props -------------------------------------------------------------------------------- /src/SourceEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/SourceEngine.sln -------------------------------------------------------------------------------- /src/SourceEngine/RCa19596: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/SourceEngine/RCa19596 -------------------------------------------------------------------------------- /src/SourceEngine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/SourceEngine/main.cpp -------------------------------------------------------------------------------- /src/SourceEngine_SDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/SourceEngine_SDK.sln -------------------------------------------------------------------------------- /src/Tier0/PMELib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/PMELib.cpp -------------------------------------------------------------------------------- /src/Tier0/Tier0.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/Tier0.vcxproj -------------------------------------------------------------------------------- /src/Tier0/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/commandline.cpp -------------------------------------------------------------------------------- /src/Tier0/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/cpu.cpp -------------------------------------------------------------------------------- /src/Tier0/cpu_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/cpu_linux.cpp -------------------------------------------------------------------------------- /src/Tier0/dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/dbg.cpp -------------------------------------------------------------------------------- /src/Tier0/extendedtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/extendedtrace.h -------------------------------------------------------------------------------- /src/Tier0/fasttimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/fasttimer.cpp -------------------------------------------------------------------------------- /src/Tier0/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/mem.cpp -------------------------------------------------------------------------------- /src/Tier0/mem_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/mem_helpers.cpp -------------------------------------------------------------------------------- /src/Tier0/mem_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/mem_helpers.h -------------------------------------------------------------------------------- /src/Tier0/memdbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/memdbg.cpp -------------------------------------------------------------------------------- /src/Tier0/meminit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/meminit.cpp -------------------------------------------------------------------------------- /src/Tier0/memstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/memstd.cpp -------------------------------------------------------------------------------- /src/Tier0/memstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/memstd.h -------------------------------------------------------------------------------- /src/Tier0/memvalidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/memvalidate.cpp -------------------------------------------------------------------------------- /src/Tier0/minidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/minidump.cpp -------------------------------------------------------------------------------- /src/Tier0/pch_tier0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/pch_tier0.cpp -------------------------------------------------------------------------------- /src/Tier0/pch_tier0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/pch_tier0.h -------------------------------------------------------------------------------- /src/Tier0/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/platform.cpp -------------------------------------------------------------------------------- /src/Tier0/pmc360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/pmc360.cpp -------------------------------------------------------------------------------- /src/Tier0/pme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/pme.cpp -------------------------------------------------------------------------------- /src/Tier0/pme_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/pme_linux.cpp -------------------------------------------------------------------------------- /src/Tier0/progressbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/progressbar.cpp -------------------------------------------------------------------------------- /src/Tier0/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/resource.h -------------------------------------------------------------------------------- /src/Tier0/security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/security.cpp -------------------------------------------------------------------------------- /src/Tier0/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/thread.cpp -------------------------------------------------------------------------------- /src/Tier0/threadtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/threadtools.cpp -------------------------------------------------------------------------------- /src/Tier0/tslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/tslist.cpp -------------------------------------------------------------------------------- /src/Tier0/validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/validator.cpp -------------------------------------------------------------------------------- /src/Tier0/valobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/valobject.cpp -------------------------------------------------------------------------------- /src/Tier0/vcrmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/vcrmode.cpp -------------------------------------------------------------------------------- /src/Tier0/vprof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier0/vprof.cpp -------------------------------------------------------------------------------- /src/Tier1/KeyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/KeyValues.cpp -------------------------------------------------------------------------------- /src/Tier1/NetAdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/NetAdr.cpp -------------------------------------------------------------------------------- /src/Tier1/Tier1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/Tier1.vcxproj -------------------------------------------------------------------------------- /src/Tier1/bitbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/bitbuf.cpp -------------------------------------------------------------------------------- /src/Tier1/byteswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/byteswap.cpp -------------------------------------------------------------------------------- /src/Tier1/convar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/convar.cpp -------------------------------------------------------------------------------- /src/Tier1/datamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/datamanager.cpp -------------------------------------------------------------------------------- /src/Tier1/diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/diff.cpp -------------------------------------------------------------------------------- /src/Tier1/generichash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/generichash.cpp -------------------------------------------------------------------------------- /src/Tier1/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/interface.cpp -------------------------------------------------------------------------------- /src/Tier1/lzmaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/lzmaDecoder.cpp -------------------------------------------------------------------------------- /src/Tier1/lzss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/lzss.cpp -------------------------------------------------------------------------------- /src/Tier1/mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/mempool.cpp -------------------------------------------------------------------------------- /src/Tier1/memstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/memstack.cpp -------------------------------------------------------------------------------- /src/Tier1/newbitbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/newbitbuf.cpp -------------------------------------------------------------------------------- /src/Tier1/stringpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/stringpool.cpp -------------------------------------------------------------------------------- /src/Tier1/strtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/strtools.cpp -------------------------------------------------------------------------------- /src/Tier1/tier1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/tier1.cpp -------------------------------------------------------------------------------- /src/Tier1/tokenreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/tokenreader.cpp -------------------------------------------------------------------------------- /src/Tier1/undiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/undiff.cpp -------------------------------------------------------------------------------- /src/Tier1/uniqueid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/uniqueid.cpp -------------------------------------------------------------------------------- /src/Tier1/utlbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/utlbuffer.cpp -------------------------------------------------------------------------------- /src/Tier1/utlstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/utlstring.cpp -------------------------------------------------------------------------------- /src/Tier1/utlsymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier1/utlsymbol.cpp -------------------------------------------------------------------------------- /src/Tier2/Tier2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/Tier2.vcxproj -------------------------------------------------------------------------------- /src/Tier2/beamsegdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/beamsegdraw.cpp -------------------------------------------------------------------------------- /src/Tier2/dmconnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/dmconnect.cpp -------------------------------------------------------------------------------- /src/Tier2/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/fileutils.cpp -------------------------------------------------------------------------------- /src/Tier2/keybindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/keybindings.cpp -------------------------------------------------------------------------------- /src/Tier2/meshutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/meshutils.cpp -------------------------------------------------------------------------------- /src/Tier2/p4helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/p4helpers.cpp -------------------------------------------------------------------------------- /src/Tier2/renderutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/renderutils.cpp -------------------------------------------------------------------------------- /src/Tier2/riff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/riff.cpp -------------------------------------------------------------------------------- /src/Tier2/soundutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/soundutils.cpp -------------------------------------------------------------------------------- /src/Tier2/tier2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/tier2.cpp -------------------------------------------------------------------------------- /src/Tier2/util_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/util_init.cpp -------------------------------------------------------------------------------- /src/Tier2/vconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier2/vconfig.cpp -------------------------------------------------------------------------------- /src/Tier3/Tier3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier3/Tier3.vcxproj -------------------------------------------------------------------------------- /src/Tier3/choreoutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier3/choreoutils.cpp -------------------------------------------------------------------------------- /src/Tier3/tier3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tier3/tier3.cpp -------------------------------------------------------------------------------- /src/Tracker/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Tracker/common/util.h -------------------------------------------------------------------------------- /src/Unicode/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Unicode/unicode.cpp -------------------------------------------------------------------------------- /src/Utils/Bullet/msvc/BulletMultiThreaded/ThreadPool.cpp: -------------------------------------------------------------------------------- 1 | #include "ThreadPool.h" -------------------------------------------------------------------------------- /src/Utils/Bzip2/bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Bzip2/bzip2.c -------------------------------------------------------------------------------- /src/Utils/Bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Bzip2/bzlib.c -------------------------------------------------------------------------------- /src/Utils/Bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Bzip2/bzlib.h -------------------------------------------------------------------------------- /src/Utils/Bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Bzip2/huffman.c -------------------------------------------------------------------------------- /src/Utils/Jpeglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Jpeglib/jdct.h -------------------------------------------------------------------------------- /src/Utils/Parsifal2/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = libparsifal -------------------------------------------------------------------------------- /src/Utils/Parsifal2/lib/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Utils/Parsifal2/lib/INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Utils/Parsifal2/lib/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Utils/Parsifal2/lib/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.3 2 | -------------------------------------------------------------------------------- /src/Utils/Parsifal2/lib/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = libparsifal -------------------------------------------------------------------------------- /src/Utils/Parsifal2/lib/samples/xmlplint/README: -------------------------------------------------------------------------------- 1 | see doc/index.html GENERAL/xmlplint 2 | see also BUILDING 3 | -------------------------------------------------------------------------------- /src/Utils/Parsifal2/lib/samples/xmltest/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.2 2 | -------------------------------------------------------------------------------- /src/Utils/Vbsp/csg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/csg.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/csg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/csg.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/detail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/detail.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/detail.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/disp_ivp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/disp_ivp.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/faces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/faces.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/faces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/faces.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/glfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/glfile.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/ivp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/ivp.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/ivp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/ivp.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/map.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/map.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/nodraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/nodraw.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/portals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/portals.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/tree.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/vbsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/vbsp.cpp -------------------------------------------------------------------------------- /src/Utils/Vbsp/vbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/vbsp.h -------------------------------------------------------------------------------- /src/Utils/Vbsp/writebsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vbsp/writebsp.h -------------------------------------------------------------------------------- /src/Utils/Vmpi/ichannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vmpi/ichannel.h -------------------------------------------------------------------------------- /src/Utils/Vmpi/messbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vmpi/messbuf.h -------------------------------------------------------------------------------- /src/Utils/Vmpi/vmpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vmpi/vmpi.cpp -------------------------------------------------------------------------------- /src/Utils/Vmpi/vmpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vmpi/vmpi.h -------------------------------------------------------------------------------- /src/Utils/Vmpi/win_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vmpi/win_idle.h -------------------------------------------------------------------------------- /src/Utils/Vrad/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vrad/stdafx.cpp -------------------------------------------------------------------------------- /src/Utils/Vrad/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vrad/stdafx.h -------------------------------------------------------------------------------- /src/Utils/Vrad_dll/vrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vrad_dll/vrad.h -------------------------------------------------------------------------------- /src/Utils/Vvis/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vvis/StdAfx.cpp -------------------------------------------------------------------------------- /src/Utils/Vvis/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vvis/StdAfx.h -------------------------------------------------------------------------------- /src/Utils/Vvis_dll/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/Vvis_dll/vis.h -------------------------------------------------------------------------------- /src/Utils/ZLib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/adler32.c -------------------------------------------------------------------------------- /src/Utils/ZLib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/compress.c -------------------------------------------------------------------------------- /src/Utils/ZLib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/crc32.c -------------------------------------------------------------------------------- /src/Utils/ZLib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/deflate.c -------------------------------------------------------------------------------- /src/Utils/ZLib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/gzio.c -------------------------------------------------------------------------------- /src/Utils/ZLib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/infback.c -------------------------------------------------------------------------------- /src/Utils/ZLib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/inffast.c -------------------------------------------------------------------------------- /src/Utils/ZLib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/inflate.c -------------------------------------------------------------------------------- /src/Utils/ZLib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/inftrees.c -------------------------------------------------------------------------------- /src/Utils/ZLib/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/ioapi.c -------------------------------------------------------------------------------- /src/Utils/ZLib/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/iowin32.c -------------------------------------------------------------------------------- /src/Utils/ZLib/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/mztools.c -------------------------------------------------------------------------------- /src/Utils/ZLib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/trees.c -------------------------------------------------------------------------------- /src/Utils/ZLib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/uncompr.c -------------------------------------------------------------------------------- /src/Utils/ZLib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/unzip.c -------------------------------------------------------------------------------- /src/Utils/ZLib/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/zip.c -------------------------------------------------------------------------------- /src/Utils/ZLib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/ZLib/zutil.c -------------------------------------------------------------------------------- /src/Utils/common/bsplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/common/bsplib.h -------------------------------------------------------------------------------- /src/Utils/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/common/cmdlib.h -------------------------------------------------------------------------------- /src/Utils/common/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/common/movie.h -------------------------------------------------------------------------------- /src/Utils/common/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/common/qfiles.h -------------------------------------------------------------------------------- /src/Utils/common/wadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/common/wadlib.c -------------------------------------------------------------------------------- /src/Utils/common/wadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Utils/common/wadlib.h -------------------------------------------------------------------------------- /src/Vgui2/Vgui2/VPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vgui2/Vgui2/VPanel.h -------------------------------------------------------------------------------- /src/Vgui2/Vgui2/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vgui2/Vgui2/bitmap.h -------------------------------------------------------------------------------- /src/Vgui2/Vgui2/vgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vgui2/Vgui2/vgui.cpp -------------------------------------------------------------------------------- /src/Vgui2/Vgui2/xbox/xbox.def: -------------------------------------------------------------------------------- 1 | LIBRARY vgui2_360.dll 2 | EXPORTS 3 | CreateInterface @1 4 | -------------------------------------------------------------------------------- /src/VphysicsBullet/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | #include "StdAfx.h" 2 | -------------------------------------------------------------------------------- /src/VphysicsIVP/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/VphysicsIVP/cbase.h -------------------------------------------------------------------------------- /src/VphysicsIVP/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/VphysicsIVP/convert.h -------------------------------------------------------------------------------- /src/VphysicsIVP/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/VphysicsIVP/main.cpp -------------------------------------------------------------------------------- /src/VphysicsIVP/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/VphysicsIVP/trace.cpp -------------------------------------------------------------------------------- /src/Vstdlib/cvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vstdlib/cvar.cpp -------------------------------------------------------------------------------- /src/Vstdlib/jobthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vstdlib/jobthread.cpp -------------------------------------------------------------------------------- /src/Vstdlib/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vstdlib/random.cpp -------------------------------------------------------------------------------- /src/Vstdlib/vcover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vstdlib/vcover.cpp -------------------------------------------------------------------------------- /src/Vtf/Vtf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/Vtf.vcxproj -------------------------------------------------------------------------------- /src/Vtf/Vtf.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/Vtf.vcxproj.user -------------------------------------------------------------------------------- /src/Vtf/convert_x360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/convert_x360.cpp -------------------------------------------------------------------------------- /src/Vtf/cvtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/cvtf.h -------------------------------------------------------------------------------- /src/Vtf/s3tc_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/s3tc_decode.cpp -------------------------------------------------------------------------------- /src/Vtf/s3tc_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/s3tc_decode.h -------------------------------------------------------------------------------- /src/Vtf/vtf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/vtf.cpp -------------------------------------------------------------------------------- /src/Vtf/vtf_x360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/Vtf/vtf_x360.cpp -------------------------------------------------------------------------------- /src/common/IAdminServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/IAdminServer.h -------------------------------------------------------------------------------- /src/common/IVguiModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/IVguiModule.h -------------------------------------------------------------------------------- /src/common/Miles/MSS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/Miles/MSS.H -------------------------------------------------------------------------------- /src/common/Steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/Steam.h -------------------------------------------------------------------------------- /src/common/SteamCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/SteamCommon.h -------------------------------------------------------------------------------- /src/common/Steamlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/Steamlib.h -------------------------------------------------------------------------------- /src/common/bink/bink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/bink/bink.h -------------------------------------------------------------------------------- /src/common/bink/radbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/bink/radbase.h -------------------------------------------------------------------------------- /src/common/cstringhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/cstringhash.h -------------------------------------------------------------------------------- /src/common/hl2orange.spa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/hl2orange.spa -------------------------------------------------------------------------------- /src/common/hl2orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/hl2orange.xml -------------------------------------------------------------------------------- /src/common/info_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/info_key.cpp -------------------------------------------------------------------------------- /src/common/info_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/info_key.h -------------------------------------------------------------------------------- /src/common/ivprofexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/ivprofexport.h -------------------------------------------------------------------------------- /src/common/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/language.cpp -------------------------------------------------------------------------------- /src/common/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/language.h -------------------------------------------------------------------------------- /src/common/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/lauxlib.h -------------------------------------------------------------------------------- /src/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/lua.h -------------------------------------------------------------------------------- /src/common/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/luaconf.h -------------------------------------------------------------------------------- /src/common/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/lualib.h -------------------------------------------------------------------------------- /src/common/lzma/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/lzma/lzma.h -------------------------------------------------------------------------------- /src/common/netapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/netapi.cpp -------------------------------------------------------------------------------- /src/common/netapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/netapi.h -------------------------------------------------------------------------------- /src/common/netmessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/netmessages.h -------------------------------------------------------------------------------- /src/common/p4api/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/debug.h -------------------------------------------------------------------------------- /src/common/p4api/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/diff.h -------------------------------------------------------------------------------- /src/common/p4api/enviro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/enviro.h -------------------------------------------------------------------------------- /src/common/p4api/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/error.h -------------------------------------------------------------------------------- /src/common/p4api/ident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/ident.h -------------------------------------------------------------------------------- /src/common/p4api/p4tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/p4tags.h -------------------------------------------------------------------------------- /src/common/p4api/runcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/runcmd.h -------------------------------------------------------------------------------- /src/common/p4api/spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/spec.h -------------------------------------------------------------------------------- /src/common/p4api/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/strbuf.h -------------------------------------------------------------------------------- /src/common/p4api/strops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/p4api/strops.h -------------------------------------------------------------------------------- /src/common/packfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/packfile.cpp -------------------------------------------------------------------------------- /src/common/packfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/packfile.h -------------------------------------------------------------------------------- /src/common/proto_oob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/proto_oob.h -------------------------------------------------------------------------------- /src/common/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/protocol.h -------------------------------------------------------------------------------- /src/common/qlimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/qlimits.h -------------------------------------------------------------------------------- /src/common/steam2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/steam2.h -------------------------------------------------------------------------------- /src/common/steamid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/steamid.cpp -------------------------------------------------------------------------------- /src/common/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/steamtypes.h -------------------------------------------------------------------------------- /src/common/userid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/userid.h -------------------------------------------------------------------------------- /src/common/vtuneapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/common/vtuneapi.h -------------------------------------------------------------------------------- /src/common/xsi/5.1/ftk/SL_UByte.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/xsi/5.1/strings.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/game/client/c_gib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/c_gib.cpp -------------------------------------------------------------------------------- /src/game/client/c_gib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/c_gib.h -------------------------------------------------------------------------------- /src/game/client/c_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/c_props.h -------------------------------------------------------------------------------- /src/game/client/c_rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/c_rope.h -------------------------------------------------------------------------------- /src/game/client/c_sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/c_sun.h -------------------------------------------------------------------------------- /src/game/client/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/cbase.h -------------------------------------------------------------------------------- /src/game/client/fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/fx.cpp -------------------------------------------------------------------------------- /src/game/client/fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/fx.h -------------------------------------------------------------------------------- /src/game/client/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/hud.cpp -------------------------------------------------------------------------------- /src/game/client/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/hud.h -------------------------------------------------------------------------------- /src/game/client/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/input.h -------------------------------------------------------------------------------- /src/game/client/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/menu.h -------------------------------------------------------------------------------- /src/game/client/tf/c_tf_fx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/client/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/client/view.h -------------------------------------------------------------------------------- /src/game/client/xbox/xbox.def: -------------------------------------------------------------------------------- 1 | LIBRARY client_360.dll 2 | EXPORTS 3 | CreateInterface @1 4 | -------------------------------------------------------------------------------- /src/game/server/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/cbase.h -------------------------------------------------------------------------------- /src/game/server/doors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/doors.h -------------------------------------------------------------------------------- /src/game/server/fire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/fire.h -------------------------------------------------------------------------------- /src/game/server/fish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/fish.h -------------------------------------------------------------------------------- /src/game/server/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/game.h -------------------------------------------------------------------------------- /src/game/server/gib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/gib.cpp -------------------------------------------------------------------------------- /src/game/server/gib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/gib.h -------------------------------------------------------------------------------- /src/game/server/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/items.h -------------------------------------------------------------------------------- /src/game/server/nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/nav.h -------------------------------------------------------------------------------- /src/game/server/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/props.h -------------------------------------------------------------------------------- /src/game/server/rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/rope.h -------------------------------------------------------------------------------- /src/game/server/spark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/spark.h -------------------------------------------------------------------------------- /src/game/server/sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/sun.cpp -------------------------------------------------------------------------------- /src/game/server/te.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/te.cpp -------------------------------------------------------------------------------- /src/game/server/te.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/te.h -------------------------------------------------------------------------------- /src/game/server/team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/team.h -------------------------------------------------------------------------------- /src/game/server/tesla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/tesla.h -------------------------------------------------------------------------------- /src/game/server/tf2/tf_carrier.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/server/tf2/tf_carrier.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/server/tf2/tf_rescollector_ground.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/server/tf2/tf_rescollector_ground.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/server/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/util.h -------------------------------------------------------------------------------- /src/game/server/worker_scientist.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game/server/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/game/server/world.h -------------------------------------------------------------------------------- /src/game/server/xbox/xbox.def: -------------------------------------------------------------------------------- 1 | LIBRARY Server_360.dll 2 | EXPORTS 3 | CreateInterface @1 4 | -------------------------------------------------------------------------------- /src/hammer_dll/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/Render.h -------------------------------------------------------------------------------- /src/hammer_dll/axes2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/axes2.h -------------------------------------------------------------------------------- /src/hammer_dll/box3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/box3d.h -------------------------------------------------------------------------------- /src/hammer_dll/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/camera.h -------------------------------------------------------------------------------- /src/hammer_dll/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/ddraw.h -------------------------------------------------------------------------------- /src/hammer_dll/gizmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/gizmo.h -------------------------------------------------------------------------------- /src/hammer_dll/hammer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/hammer.h -------------------------------------------------------------------------------- /src/hammer_dll/mapdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/mapdoc.h -------------------------------------------------------------------------------- /src/hammer_dll/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/misc.cpp -------------------------------------------------------------------------------- /src/hammer_dll/osver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/osver.h -------------------------------------------------------------------------------- /src/hammer_dll/pakdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/pakdoc.h -------------------------------------------------------------------------------- /src/hammer_dll/runmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/runmap.h -------------------------------------------------------------------------------- /src/hammer_dll/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/shell.h -------------------------------------------------------------------------------- /src/hammer_dll/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/splash.h -------------------------------------------------------------------------------- /src/hammer_dll/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/sprite.h -------------------------------------------------------------------------------- /src/hammer_dll/ssolid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/ssolid.h -------------------------------------------------------------------------------- /src/hammer_dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/stdafx.h -------------------------------------------------------------------------------- /src/hammer_dll/strdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/strdlg.h -------------------------------------------------------------------------------- /src/hammer_dll/subdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/subdiv.h -------------------------------------------------------------------------------- /src/hammer_dll/test.txt: -------------------------------------------------------------------------------- 1 | hello 2 | 3 | test 4 | 5 | -------------------------------------------------------------------------------- /src/hammer_dll/tool3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/tool3d.h -------------------------------------------------------------------------------- /src/hammer_dll/wndtex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedPandaProjects/RedSource/HEAD/src/hammer_dll/wndtex.h --------------------------------------------------------------------------------