├── .gitignore ├── COPYING.txt ├── README.txt ├── base ├── default.cfg └── renderprogs │ ├── bink.pixel │ ├── bink.vertex │ ├── bink_gui.pixel │ ├── bink_gui.vertex │ ├── blendLight.pixel │ ├── blendLight.vertex │ ├── bloodorb1_capture.pixel │ ├── bloodorb1_capture.vertex │ ├── bloodorb2_capture.pixel │ ├── bloodorb2_capture.vertex │ ├── bloodorb3_capture.pixel │ ├── bloodorb3_capture.vertex │ ├── bloodorb_draw.pixel │ ├── bloodorb_draw.vertex │ ├── bumpyenvironment.pixel │ ├── bumpyenvironment.vertex │ ├── bumpyenvironment_skinned.pixel │ ├── bumpyenvironment_skinned.vertex │ ├── color.pixel │ ├── color.vertex │ ├── colorProcess.pixel │ ├── colorProcess.vertex │ ├── depth.pixel │ ├── depth.vertex │ ├── depth_skinned.pixel │ ├── depth_skinned.vertex │ ├── enviroSuit.pixel │ ├── enviroSuit.vertex │ ├── environment.pixel │ ├── environment.vertex │ ├── environment_skinned.pixel │ ├── environment_skinned.vertex │ ├── fog.pixel │ ├── fog.vertex │ ├── fog_skinned.pixel │ ├── fog_skinned.vertex │ ├── fxaa.pixel │ ├── fxaa.vertex │ ├── global.inc │ ├── gui.pixel │ ├── gui.vertex │ ├── heatHazeWithMask.pixel │ ├── heatHazeWithMask.vertex │ ├── heatHazeWithMaskAndVertex.pixel │ ├── heatHazeWithMaskAndVertex.vertex │ ├── heathaze.pixel │ ├── heathaze.vertex │ ├── interaction.pixel │ ├── interaction.vertex │ ├── interactionAmbient.pixel │ ├── interactionAmbient.vertex │ ├── interactionAmbient_skinned.pixel │ ├── interactionAmbient_skinned.vertex │ ├── interaction_skinned.pixel │ ├── interaction_skinned.vertex │ ├── motionBlur.pixel │ ├── motionBlur.vertex │ ├── postprocess.pixel │ ├── postprocess.vertex │ ├── shadow.pixel │ ├── shadow.vertex │ ├── shadowDebug.pixel │ ├── shadowDebug.vertex │ ├── shadowDebug_skinned.pixel │ ├── shadowDebug_skinned.vertex │ ├── shadow_skinned.pixel │ ├── shadow_skinned.vertex │ ├── simpleshade.pixel │ ├── simpleshade.vertex │ ├── skinning.inc │ ├── skybox.pixel │ ├── skybox.vertex │ ├── stereoDeGhost.pixel │ ├── stereoDeGhost.vertex │ ├── stereoInterlace.pixel │ ├── stereoInterlace.vertex │ ├── stereoWarp.pixel │ ├── stereoWarp.vertex │ ├── texture.pixel │ ├── texture.vertex │ ├── texture_color.pixel │ ├── texture_color.vertex │ ├── texture_color_skinned.pixel │ ├── texture_color_skinned.vertex │ ├── texture_color_texgen.pixel │ ├── texture_color_texgen.vertex │ ├── wobblesky.pixel │ ├── wobblesky.vertex │ ├── zcullReconstruct.pixel │ └── zcullReconstruct.vertex ├── doomclassic └── doom │ ├── Main.h │ ├── Precompiled.cpp │ ├── Precompiled.h │ ├── am_map.cpp │ ├── am_map.h │ ├── constructs.h │ ├── d_englsh.h │ ├── d_event.h │ ├── d_french.h │ ├── d_items.cpp │ ├── d_items.h │ ├── d_main.cpp │ ├── d_main.h │ ├── d_net.cpp │ ├── d_net.h │ ├── d_player.h │ ├── d_textur.h │ ├── d_think.h │ ├── d_ticcmd.h │ ├── defs.h │ ├── doomdata.h │ ├── doomdef.cpp │ ├── doomdef.h │ ├── doominterface.cpp │ ├── doominterface.h │ ├── doomlib.cpp │ ├── doomlib.h │ ├── doomstat.cpp │ ├── doomstat.h │ ├── doomtype.h │ ├── dstrings.cpp │ ├── dstrings.h │ ├── f_finale.cpp │ ├── f_finale.h │ ├── f_wipe.cpp │ ├── f_wipe.h │ ├── g_game.cpp │ ├── g_game.h │ ├── globaldata.cpp │ ├── globaldata.h │ ├── hu_lib.cpp │ ├── hu_lib.h │ ├── hu_stuff.cpp │ ├── hu_stuff.h │ ├── i_input.cpp │ ├── i_main.cpp │ ├── i_net.cpp │ ├── i_net.h │ ├── i_net_win32.cpp │ ├── i_sound.h │ ├── i_sound_openal.cpp │ ├── i_sound_stub.cpp │ ├── i_sound_win32.cpp │ ├── i_system.cpp │ ├── i_system.h │ ├── i_video.h │ ├── i_video_ps3.cpp │ ├── info.cpp │ ├── info.h │ ├── m_argv.cpp │ ├── m_argv.h │ ├── m_bbox.cpp │ ├── m_bbox.h │ ├── m_cheat.cpp │ ├── m_cheat.h │ ├── m_fixed.cpp │ ├── m_fixed.h │ ├── m_menu.cpp │ ├── m_menu.h │ ├── m_misc.cpp │ ├── m_misc.h │ ├── m_random.cpp │ ├── m_random.h │ ├── m_swap.cpp │ ├── m_swap.h │ ├── mus2midi.cpp │ ├── p_ceilng.cpp │ ├── p_doors.cpp │ ├── p_enemy.cpp │ ├── p_floor.cpp │ ├── p_inter.cpp │ ├── p_inter.h │ ├── p_lights.cpp │ ├── p_local.h │ ├── p_map.cpp │ ├── p_maputl.cpp │ ├── p_mobj.cpp │ ├── p_mobj.h │ ├── p_plats.cpp │ ├── p_pspr.cpp │ ├── p_pspr.h │ ├── p_saveg.cpp │ ├── p_saveg.h │ ├── p_setup.cpp │ ├── p_setup.h │ ├── p_sight.cpp │ ├── p_spec.cpp │ ├── p_spec.h │ ├── p_switch.cpp │ ├── p_telept.cpp │ ├── p_tick.cpp │ ├── p_tick.h │ ├── p_user.cpp │ ├── r_bsp.cpp │ ├── r_bsp.h │ ├── r_data.cpp │ ├── r_data.h │ ├── r_defs.h │ ├── r_draw.cpp │ ├── r_draw.h │ ├── r_local.h │ ├── r_main.cpp │ ├── r_main.h │ ├── r_plane.cpp │ ├── r_plane.h │ ├── r_segs.cpp │ ├── r_segs.h │ ├── r_sky.cpp │ ├── r_sky.h │ ├── r_state.h │ ├── r_things.cpp │ ├── r_things.h │ ├── s_sound.cpp │ ├── s_sound.h │ ├── sounds.cpp │ ├── sounds.h │ ├── st_lib.cpp │ ├── st_lib.h │ ├── st_stuff.cpp │ ├── st_stuff.h │ ├── structs.h │ ├── tables.cpp │ ├── tables.h │ ├── typedefs.h │ ├── v_video.cpp │ ├── v_video.h │ ├── vars.h │ ├── w_wad.cpp │ ├── w_wad.h │ ├── wi_stuff.cpp │ ├── wi_stuff.h │ ├── z_zone.cpp │ └── z_zone.h └── neo ├── CMakeLists.txt ├── aas ├── AASFile.cpp ├── AASFile.h ├── AASFileManager.cpp ├── AASFileManager.h ├── AASFile_local.h ├── AASFile_optimize.cpp └── AASFile_sample.cpp ├── amplitude └── amplitude.cpp ├── astyle-code.bat ├── astyle-code.sh ├── astyle-options.ini ├── astyle.exe ├── cm ├── CollisionModel.h ├── CollisionModel_contacts.cpp ├── CollisionModel_contents.cpp ├── CollisionModel_debug.cpp ├── CollisionModel_files.cpp ├── CollisionModel_load.cpp ├── CollisionModel_local.h ├── CollisionModel_rotate.cpp ├── CollisionModel_trace.cpp └── CollisionModel_translate.cpp ├── cmake-eclipse-linux-debug.sh ├── cmake-eclipse-linux-profile.sh ├── cmake-eclipse-mingw-debug.bat ├── cmake-eclipse-mingw-release.bat ├── cmake-vs2010-32bit.bat ├── cmake-vs2010-64bit.bat ├── cmake-vs2012-32bit-openal.bat ├── cmake-vs2012-32bit.bat ├── cmake-vs2012-64bit.bat ├── cmake ├── FindDirectX.cmake └── FindSDL2.cmake ├── d3xp ├── AF.cpp ├── AF.h ├── AFEntity.cpp ├── AFEntity.h ├── Achievements.cpp ├── Achievements.h ├── Actor.cpp ├── Actor.h ├── AimAssist.cpp ├── AimAssist.h ├── BrittleFracture.cpp ├── BrittleFracture.h ├── Camera.cpp ├── Camera.h ├── EndLevel.cpp ├── EndLevel.h ├── Entity.cpp ├── Entity.h ├── Fx.cpp ├── Fx.h ├── Game.def ├── Game.h ├── GameEdit.cpp ├── GameEdit.h ├── Game_local.cpp ├── Game_local.h ├── Game_network.cpp ├── Grabber.cpp ├── Grabber.h ├── IK.cpp ├── IK.h ├── Item.cpp ├── Item.h ├── Leaderboards.cpp ├── Leaderboards.h ├── Light.cpp ├── Light.h ├── Misc.cpp ├── Misc.h ├── Moveable.cpp ├── Moveable.h ├── Mover.cpp ├── Mover.h ├── MultiplayerGame.cpp ├── MultiplayerGame.h ├── Player.cpp ├── Player.h ├── PlayerIcon.cpp ├── PlayerIcon.h ├── PlayerView.cpp ├── PlayerView.h ├── PredictedValue.h ├── PredictedValue_impl.h ├── Projectile.cpp ├── Projectile.h ├── Pvs.cpp ├── Pvs.h ├── SecurityCamera.cpp ├── SecurityCamera.h ├── SmokeParticles.cpp ├── SmokeParticles.h ├── Sound.cpp ├── Sound.h ├── Target.cpp ├── Target.h ├── Trigger.cpp ├── Trigger.h ├── Weapon.cpp ├── Weapon.h ├── WorldSpawn.cpp ├── WorldSpawn.h ├── ai │ ├── AAS.cpp │ ├── AAS.h │ ├── AAS_debug.cpp │ ├── AAS_local.h │ ├── AAS_pathing.cpp │ ├── AAS_routing.cpp │ ├── AI.cpp │ ├── AI.h │ ├── AI_Vagary.cpp │ ├── AI_events.cpp │ └── AI_pathing.cpp ├── anim │ ├── Anim.cpp │ ├── Anim.h │ ├── Anim_Blend.cpp │ ├── Anim_Testmodel.cpp │ └── Anim_Testmodel.h ├── gamesys │ ├── Callbacks.cpp │ ├── Class.cpp │ ├── Class.h │ ├── Event.cpp │ ├── Event.h │ ├── SaveGame.cpp │ ├── SaveGame.h │ ├── SysCmds.cpp │ ├── SysCmds.h │ ├── SysCvar.cpp │ └── SysCvar.h ├── menus │ ├── MenuHandler.cpp │ ├── MenuHandler.h │ ├── MenuHandler_HUD.cpp │ ├── MenuHandler_PDA.cpp │ ├── MenuHandler_Scoreboard.cpp │ ├── MenuHandler_Shell.cpp │ ├── MenuScreen.cpp │ ├── MenuScreen.h │ ├── MenuScreen_HUD.cpp │ ├── MenuScreen_PDA_Inventory.cpp │ ├── MenuScreen_PDA_UserData.cpp │ ├── MenuScreen_PDA_UserEmails.cpp │ ├── MenuScreen_PDA_VideoDisks.cpp │ ├── MenuScreen_Scoreboard.cpp │ ├── MenuScreen_Shell_Bindings.cpp │ ├── MenuScreen_Shell_Browser.cpp │ ├── MenuScreen_Shell_ControllerLayout.cpp │ ├── MenuScreen_Shell_Controls.cpp │ ├── MenuScreen_Shell_Credits.cpp │ ├── MenuScreen_Shell_Dev.cpp │ ├── MenuScreen_Shell_Difficulty.cpp │ ├── MenuScreen_Shell_GameLobby.cpp │ ├── MenuScreen_Shell_GameOptions.cpp │ ├── MenuScreen_Shell_Gamepad.cpp │ ├── MenuScreen_Shell_Leaderboards.cpp │ ├── MenuScreen_Shell_Load.cpp │ ├── MenuScreen_Shell_MatchSettings.cpp │ ├── MenuScreen_Shell_ModeSelect.cpp │ ├── MenuScreen_Shell_NewGame.cpp │ ├── MenuScreen_Shell_PartyLobby.cpp │ ├── MenuScreen_Shell_Pause.cpp │ ├── MenuScreen_Shell_Playstation.cpp │ ├── MenuScreen_Shell_PressStart.cpp │ ├── MenuScreen_Shell_Resolution.cpp │ ├── MenuScreen_Shell_Root.cpp │ ├── MenuScreen_Shell_Save.cpp │ ├── MenuScreen_Shell_Settings.cpp │ ├── MenuScreen_Shell_Singleplayer.cpp │ ├── MenuScreen_Shell_Stereoscopics.cpp │ ├── MenuScreen_Shell_SystemOptions.cpp │ ├── MenuWidget.cpp │ ├── MenuWidget.h │ ├── MenuWidget_Button.cpp │ ├── MenuWidget_Carousel.cpp │ ├── MenuWidget_CommandBar.cpp │ ├── MenuWidget_DynamicList.cpp │ ├── MenuWidget_Help.cpp │ ├── MenuWidget_InfoBox.cpp │ ├── MenuWidget_ItemAssignment.cpp │ ├── MenuWidget_List.cpp │ ├── MenuWidget_LobbyList.cpp │ ├── MenuWidget_MenuBar.cpp │ ├── MenuWidget_NavBar.cpp │ ├── MenuWidget_NavButton.cpp │ ├── MenuWidget_PDA_AudioFiles.cpp │ ├── MenuWidget_PDA_EmailInbox.cpp │ ├── MenuWidget_PDA_Objective.cpp │ ├── MenuWidget_PDA_UserData.cpp │ ├── MenuWidget_PDA_VideoInfo.cpp │ ├── MenuWidget_Scrollbar.cpp │ └── MenuWidget_Shell_SaveInfo.cpp ├── physics │ ├── Clip.cpp │ ├── Clip.h │ ├── Force.cpp │ ├── Force.h │ ├── Force_Constant.cpp │ ├── Force_Constant.h │ ├── Force_Drag.cpp │ ├── Force_Drag.h │ ├── Force_Field.cpp │ ├── Force_Field.h │ ├── Force_Grab.cpp │ ├── Force_Grab.h │ ├── Force_Spring.cpp │ ├── Force_Spring.h │ ├── Physics.cpp │ ├── Physics.h │ ├── Physics_AF.cpp │ ├── Physics_AF.h │ ├── Physics_Actor.cpp │ ├── Physics_Actor.h │ ├── Physics_Base.cpp │ ├── Physics_Base.h │ ├── Physics_Monster.cpp │ ├── Physics_Monster.h │ ├── Physics_Parametric.cpp │ ├── Physics_Parametric.h │ ├── Physics_Player.cpp │ ├── Physics_Player.h │ ├── Physics_RigidBody.cpp │ ├── Physics_RigidBody.h │ ├── Physics_Static.cpp │ ├── Physics_Static.h │ ├── Physics_StaticMulti.cpp │ ├── Physics_StaticMulti.h │ ├── Push.cpp │ └── Push.h ├── precompiled.cpp └── script │ ├── Script_Compiler.cpp │ ├── Script_Compiler.h │ ├── Script_Interpreter.cpp │ ├── Script_Interpreter.h │ ├── Script_Program.cpp │ ├── Script_Program.h │ ├── Script_Thread.cpp │ └── Script_Thread.h ├── framework ├── BuildVersion.h ├── CVarSystem.cpp ├── CVarSystem.h ├── CmdSystem.cpp ├── CmdSystem.h ├── Common.cpp ├── Common.h ├── Common_demos.cpp ├── Common_dialog.cpp ├── Common_dialog.h ├── Common_load.cpp ├── Common_local.h ├── Common_localize.cpp ├── Common_menu.cpp ├── Common_network.cpp ├── Common_printf.cpp ├── Compressor.cpp ├── Compressor.h ├── Console.cpp ├── Console.h ├── ConsoleHistory.cpp ├── ConsoleHistory.h ├── DebugGraph.cpp ├── DebugGraph.h ├── DeclAF.cpp ├── DeclAF.h ├── DeclEntityDef.cpp ├── DeclEntityDef.h ├── DeclFX.cpp ├── DeclFX.h ├── DeclManager.cpp ├── DeclManager.h ├── DeclPDA.cpp ├── DeclPDA.h ├── DeclParticle.cpp ├── DeclParticle.h ├── DeclSkin.cpp ├── DeclSkin.h ├── DeclTable.cpp ├── DeclTable.h ├── DemoChecksum.h ├── DemoFile.cpp ├── DemoFile.h ├── EditField.cpp ├── EditField.h ├── EventLoop.cpp ├── EventLoop.h ├── File.cpp ├── File.h ├── FileSystem.cpp ├── FileSystem.h ├── File_Manifest.cpp ├── File_Manifest.h ├── File_Resource.cpp ├── File_Resource.h ├── File_SaveGame.cpp ├── File_SaveGame.h ├── KeyInput.cpp ├── KeyInput.h ├── Licensee.h ├── PlayerProfile.cpp ├── PlayerProfile.h ├── Serializer.h ├── TokenParser.cpp ├── TokenParser.h ├── Unzip.h ├── UsercmdGen.cpp ├── UsercmdGen.h ├── Zip.cpp ├── Zip.h ├── common_frame.cpp └── precompiled.cpp ├── idlib ├── Base64.cpp ├── Base64.h ├── BitMsg.cpp ├── BitMsg.h ├── CMakeLists.txt ├── Callback.h ├── CmdArgs.cpp ├── CmdArgs.h ├── CommandLink.cpp ├── DataQueue.h ├── Dict.cpp ├── Dict.h ├── Heap.cpp ├── Heap.h ├── LangDict.cpp ├── LangDict.h ├── Lexer.cpp ├── Lexer.h ├── Lib.cpp ├── Lib.h ├── MapFile.cpp ├── MapFile.h ├── ParallelJobList.cpp ├── ParallelJobList.h ├── ParallelJobList_JobHeaders.h ├── Parser.cpp ├── Parser.h ├── RectAllocator.cpp ├── SoftwareCache.cpp ├── SoftwareCache.h ├── Str.cpp ├── Str.h ├── StrStatic.h ├── Swap.h ├── Thread.cpp ├── Thread.h ├── Timer.cpp ├── Timer.h ├── Token.cpp ├── Token.h ├── bv │ ├── Bounds.cpp │ ├── Bounds.h │ ├── Box.cpp │ ├── Box.h │ ├── Sphere.cpp │ └── Sphere.h ├── containers │ ├── Array.h │ ├── BTree.h │ ├── BinSearch.h │ ├── HashIndex.cpp │ ├── HashIndex.h │ ├── HashTable.h │ ├── Hierarchy.h │ ├── LinkList.h │ ├── List.h │ ├── PlaneSet.h │ ├── Queue.h │ ├── Sort.h │ ├── Stack.h │ ├── StaticList.h │ ├── StrList.h │ ├── StrPool.h │ └── VectorSet.h ├── geometry │ ├── DrawVert.cpp │ ├── DrawVert.h │ ├── DrawVert_intrinsics.h │ ├── JointTransform.cpp │ ├── JointTransform.h │ ├── RenderMatrix.cpp │ ├── RenderMatrix.h │ ├── Surface.cpp │ ├── Surface.h │ ├── Surface_Patch.cpp │ ├── Surface_Patch.h │ ├── Surface_Polytope.cpp │ ├── Surface_Polytope.h │ ├── Surface_SweptSpline.cpp │ ├── Surface_SweptSpline.h │ ├── TraceModel.cpp │ ├── TraceModel.h │ ├── Winding.cpp │ ├── Winding.h │ ├── Winding2D.cpp │ └── Winding2D.h ├── hashing │ ├── CRC32.cpp │ ├── CRC32.h │ ├── MD4.cpp │ ├── MD4.h │ ├── MD5.cpp │ └── MD5.h ├── math │ ├── Angles.cpp │ ├── Angles.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Curve.h │ ├── Extrapolate.h │ ├── Interpolate.h │ ├── Lcp.cpp │ ├── Lcp.h │ ├── MatX.cpp │ ├── MatX.h │ ├── Math.cpp │ ├── Math.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Ode.cpp │ ├── Ode.h │ ├── Plane.cpp │ ├── Plane.h │ ├── Pluecker.cpp │ ├── Pluecker.h │ ├── Polynomial.cpp │ ├── Polynomial.h │ ├── Quat.cpp │ ├── Quat.h │ ├── Random.h │ ├── Rotation.cpp │ ├── Rotation.h │ ├── Simd.cpp │ ├── Simd.h │ ├── Simd_Generic.cpp │ ├── Simd_Generic.h │ ├── Simd_SSE.cpp │ ├── Simd_SSE.h │ ├── VecX.cpp │ ├── VecX.h │ ├── Vector.cpp │ ├── Vector.h │ └── VectorI.h ├── precompiled.cpp ├── precompiled.h └── sys │ ├── posix │ └── posix_thread.cpp │ ├── sys_alloc_tags.h │ ├── sys_assert.cpp │ ├── sys_assert.h │ ├── sys_builddefines.h │ ├── sys_defines.h │ ├── sys_filesystem.h │ ├── sys_includes.h │ ├── sys_intrinsics.h │ ├── sys_threading.h │ ├── sys_types.h │ └── win32 │ └── win_thread.cpp ├── libs ├── jpeg-6 │ ├── jcapimin.cpp │ ├── jcapistd.cpp │ ├── jccoefct.cpp │ ├── jccolor.cpp │ ├── jcdctmgr.cpp │ ├── jchuff.cpp │ ├── jchuff.h │ ├── jcinit.cpp │ ├── jcmainct.cpp │ ├── jcmarker.cpp │ ├── jcmaster.cpp │ ├── jcomapi.cpp │ ├── jconfig.h │ ├── jcparam.cpp │ ├── jcphuff.cpp │ ├── jcprepct.cpp │ ├── jcsample.cpp │ ├── jctrans.cpp │ ├── jdapimin.cpp │ ├── jdapistd.cpp │ ├── jdatadst.cpp │ ├── jdatasrc.cpp │ ├── jdcoefct.cpp │ ├── jdcolor.cpp │ ├── jdct.h │ ├── jddctmgr.cpp │ ├── jdhuff.cpp │ ├── jdhuff.h │ ├── jdinput.cpp │ ├── jdmainct.cpp │ ├── jdmarker.cpp │ ├── jdmaster.cpp │ ├── jdmerge.cpp │ ├── jdphuff.cpp │ ├── jdpostct.cpp │ ├── jdsample.cpp │ ├── jdtrans.cpp │ ├── jerror.cpp │ ├── jerror.h │ ├── jfdctflt.cpp │ ├── jfdctfst.cpp │ ├── jfdctint.cpp │ ├── jidctflt.cpp │ ├── jidctfst.cpp │ ├── jidctint.cpp │ ├── jidctred.cpp │ ├── jinclude.h │ ├── jload.cpp │ ├── jmemansi.cpp │ ├── jmemdos.cpp │ ├── jmemmgr.cpp │ ├── jmemname.cpp │ ├── jmemnobs.cpp │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.cpp │ ├── jquant1.cpp │ ├── jquant2.cpp │ ├── jutils.cpp │ └── jversion.h ├── mingw-hacks │ ├── sal.h │ ├── wine-dsound.h │ └── wine-xinput.h ├── openal-soft │ ├── COPYING │ ├── include │ │ └── AL │ │ │ ├── al.h │ │ │ ├── alc.h │ │ │ ├── alext.h │ │ │ ├── efx-creative.h │ │ │ ├── efx-presets.h │ │ │ └── efx.h │ ├── lib │ │ └── win32 │ │ │ └── OpenAL32.lib │ ├── readme.txt │ └── win32 │ │ └── OpenAL32.dll ├── timidity │ ├── FAQ │ ├── README │ ├── common.cpp │ ├── common.h │ ├── config.h │ ├── controls.cpp │ ├── controls.h │ ├── filter.cpp │ ├── filter.h │ ├── instrum.cpp │ ├── instrum.h │ ├── mix.cpp │ ├── mix.h │ ├── output.cpp │ ├── output.h │ ├── playmidi.cpp │ ├── playmidi.h │ ├── readmidi.cpp │ ├── readmidi.h │ ├── resample.cpp │ ├── resample.h │ ├── sdl_a.cpp │ ├── sdl_c.cpp │ ├── structs.h │ ├── tables.cpp │ ├── tables.h │ ├── timidity.cpp │ └── timidity.h └── zlib │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── algorithm.txt │ ├── compress.c │ ├── configure │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── minizip │ ├── MiniZip64_info.txt │ ├── ioapi.c │ ├── ioapi.h │ ├── unzip.cpp │ ├── unzip.h │ ├── zip.cpp │ └── zip.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.h.in │ ├── zconf.h.included │ ├── zlib.3 │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── renderer ├── AutoRender.cpp ├── AutoRender.h ├── AutoRenderBink.cpp ├── AutoRenderBink.h ├── BinaryImage.cpp ├── BinaryImage.h ├── BinaryImageData.h ├── BoundsTrack.cpp ├── BoundsTrack.h ├── BufferObject.cpp ├── BufferObject.h ├── Cinematic.cpp ├── Cinematic.h ├── Color │ ├── ColorSpace.cpp │ └── ColorSpace.h ├── DXT │ ├── DXTCodec.h │ ├── DXTCodec_local.h │ ├── DXTDecoder.cpp │ ├── DXTEncoder.cpp │ └── DXTEncoder_SSE2.cpp ├── Font.cpp ├── Font.h ├── GLMatrix.cpp ├── GLMatrix.h ├── GLState.h ├── GraphicsAPIWrapper.h ├── GuiModel.cpp ├── GuiModel.h ├── Image.h ├── ImageManager.cpp ├── ImageOpts.h ├── Image_files.cpp ├── Image_intrinsic.cpp ├── Image_load.cpp ├── Image_process.cpp ├── Image_program.cpp ├── Interaction.cpp ├── Interaction.h ├── Material.cpp ├── Material.h ├── Model.cpp ├── Model.h ├── ModelDecal.cpp ├── ModelDecal.h ├── ModelManager.cpp ├── ModelManager.h ├── ModelOverlay.cpp ├── ModelOverlay.h ├── Model_ase.cpp ├── Model_ase.h ├── Model_beam.cpp ├── Model_liquid.cpp ├── Model_local.h ├── Model_lwo.cpp ├── Model_lwo.h ├── Model_ma.cpp ├── Model_ma.h ├── Model_md3.cpp ├── Model_md3.h ├── Model_md5.cpp ├── Model_prt.cpp ├── Model_sprite.cpp ├── OpenGL │ ├── gl_GraphicsAPIWrapper.cpp │ ├── gl_Image.cpp │ ├── gl_backend.cpp │ ├── glext.h │ ├── qgl.h │ ├── qgl_linked.h │ └── wglext.h ├── RenderContext.h ├── RenderEntity.cpp ├── RenderLog.cpp ├── RenderLog.h ├── RenderProgs.cpp ├── RenderProgs.h ├── RenderProgs_GLSL.cpp ├── RenderSystem.cpp ├── RenderSystem.h ├── RenderSystem_init.cpp ├── RenderTexture.h ├── RenderWorld.cpp ├── RenderWorld.h ├── RenderWorld_defs.cpp ├── RenderWorld_demo.cpp ├── RenderWorld_load.cpp ├── RenderWorld_local.h ├── RenderWorld_portals.cpp ├── ResolutionScale.cpp ├── ResolutionScale.h ├── ScreenRect.cpp ├── ScreenRect.h ├── VertexCache.cpp ├── VertexCache.h ├── jobs │ ├── ShadowShared.cpp │ ├── ShadowShared.h │ ├── dynamicshadowvolume │ │ ├── DynamicShadowVolume.cpp │ │ ├── DynamicShadowVolume.h │ │ └── DynamicShadowVolume_local.h │ ├── prelightshadowvolume │ │ ├── PreLightShadowVolume.cpp │ │ ├── PreLightShadowVolume.h │ │ └── PreLightShadowVolume_local.h │ └── staticshadowvolume │ │ ├── StaticShadowVolume.cpp │ │ ├── StaticShadowVolume.h │ │ └── StaticShadowVolume_local.h ├── simplex.h ├── tr_backend_draw.cpp ├── tr_backend_rendertools.cpp ├── tr_frontend_addlights.cpp ├── tr_frontend_addmodels.cpp ├── tr_frontend_deform.cpp ├── tr_frontend_guisurf.cpp ├── tr_frontend_main.cpp ├── tr_frontend_subview.cpp ├── tr_local.h ├── tr_trace.cpp └── tr_trisurf.cpp ├── sound ├── OpenAL │ ├── AL_SoundHardware.cpp │ ├── AL_SoundHardware.h │ ├── AL_SoundSample.cpp │ ├── AL_SoundSample.h │ ├── AL_SoundVoice.cpp │ └── AL_SoundVoice.h ├── SoundVoice.cpp ├── SoundVoice.h ├── WaveFile.cpp ├── WaveFile.h ├── XAudio2 │ ├── XA2_SoundHardware.cpp │ ├── XA2_SoundHardware.h │ ├── XA2_SoundSample.cpp │ ├── XA2_SoundSample.h │ ├── XA2_SoundVoice.cpp │ └── XA2_SoundVoice.h ├── snd_emitter.cpp ├── snd_local.h ├── snd_shader.cpp ├── snd_system.cpp ├── snd_world.cpp ├── sound.h └── stub │ ├── SoundSample.cpp │ └── SoundStub.h ├── swf ├── SWF.h ├── SWF_Bitstream.cpp ├── SWF_Bitstream.h ├── SWF_Dictionary.cpp ├── SWF_Enums.h ├── SWF_Events.cpp ├── SWF_Image.cpp ├── SWF_Load.cpp ├── SWF_Main.cpp ├── SWF_Names.cpp ├── SWF_ParmList.cpp ├── SWF_ParmList.h ├── SWF_PlaceObject.cpp ├── SWF_Render.cpp ├── SWF_ScriptFunction.cpp ├── SWF_ScriptFunction.h ├── SWF_ScriptObject.cpp ├── SWF_ScriptObject.h ├── SWF_ScriptVar.cpp ├── SWF_ScriptVar.h ├── SWF_ShapeParser.cpp ├── SWF_ShapeParser.h ├── SWF_Shapes.cpp ├── SWF_Sounds.cpp ├── SWF_SpriteInstance.cpp ├── SWF_SpriteInstance.h ├── SWF_Sprites.cpp ├── SWF_Sprites.h ├── SWF_Text.cpp ├── SWF_TextInstance.cpp ├── SWF_TextInstance.h ├── SWF_Types.h └── SWF_Zlib.cpp ├── sys ├── LightweightCompression.cpp ├── LightweightCompression.h ├── PacketProcessor.cpp ├── PacketProcessor.h ├── Snapshot.cpp ├── Snapshot.h ├── SnapshotProcessor.cpp ├── SnapshotProcessor.h ├── Snapshot_Jobs.cpp ├── Snapshot_Jobs.h ├── common │ ├── achievements.cpp │ ├── achievements.h │ ├── localuser.cpp │ ├── localuser.h │ ├── savegame.cpp │ ├── session_local.cpp │ ├── signin.cpp │ ├── signin.h │ └── socket_net.cpp ├── linux │ └── linux_main.cpp ├── posix │ ├── posix_main.cpp │ ├── posix_public.h │ └── posix_signal.cpp ├── sdl │ ├── sdl_cpu.cpp │ ├── sdl_events.cpp │ ├── sdl_glimp.cpp │ ├── sdl_local.h │ └── sdl_qgl.cpp ├── sys_achievements.cpp ├── sys_achievements.h ├── sys_dedicated_server_search.cpp ├── sys_dedicated_server_search.h ├── sys_leaderboards.h ├── sys_lobby.cpp ├── sys_lobby.h ├── sys_lobby_backend.h ├── sys_lobby_backend_direct.cpp ├── sys_lobby_backend_direct.h ├── sys_lobby_migrate.cpp ├── sys_lobby_snapshot.cpp ├── sys_lobby_users.cpp ├── sys_local.cpp ├── sys_local.h ├── sys_localuser.cpp ├── sys_localuser.h ├── sys_profile.cpp ├── sys_profile.h ├── sys_public.h ├── sys_savegame.cpp ├── sys_savegame.h ├── sys_session.h ├── sys_session_callbacks.cpp ├── sys_session_local.cpp ├── sys_session_local.h ├── sys_session_savegames.cpp ├── sys_session_savegames.h ├── sys_signin.cpp ├── sys_signin.h ├── sys_stats.h ├── sys_stats_misc.h ├── sys_voicechat.cpp ├── sys_voicechat.h └── win32 │ ├── rc │ ├── doom.rc │ ├── doom_resource.h │ └── res │ │ └── doom.ico │ ├── win_cpu.cpp │ ├── win_glimp.cpp │ ├── win_input.cpp │ ├── win_input.h │ ├── win_local.h │ ├── win_main.cpp │ ├── win_nanoafx.h │ ├── win_qgl.cpp │ ├── win_shared.cpp │ ├── win_snd.cpp │ ├── win_syscon.cpp │ ├── win_taskkeyhook.cpp │ └── win_wndproc.cpp └── ui ├── BindWindow.cpp ├── BindWindow.h ├── ChoiceWindow.cpp ├── ChoiceWindow.h ├── DeviceContext.cpp ├── DeviceContext.h ├── EditWindow.cpp ├── EditWindow.h ├── FieldWindow.cpp ├── FieldWindow.h ├── GameBearShootWindow.cpp ├── GameBearShootWindow.h ├── GameBustOutWindow.cpp ├── GameBustOutWindow.h ├── GameSSDWindow.cpp ├── GameSSDWindow.h ├── GuiScript.cpp ├── GuiScript.h ├── ListGUI.cpp ├── ListGUI.h ├── ListGUILocal.h ├── ListWindow.cpp ├── ListWindow.h ├── Rectangle.h ├── RegExp.cpp ├── RegExp.h ├── RegExp_old.h ├── RenderWindow.cpp ├── RenderWindow.h ├── SimpleWindow.cpp ├── SimpleWindow.h ├── SliderWindow.cpp ├── SliderWindow.h ├── UserInterface.cpp ├── UserInterface.h ├── UserInterfaceLocal.h ├── Window.cpp ├── Window.h ├── Winvar.cpp └── Winvar.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/README.txt -------------------------------------------------------------------------------- /base/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/default.cfg -------------------------------------------------------------------------------- /base/renderprogs/bink.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/bink.pixel -------------------------------------------------------------------------------- /base/renderprogs/bink.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/bink.vertex -------------------------------------------------------------------------------- /base/renderprogs/bink_gui.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/bink_gui.pixel -------------------------------------------------------------------------------- /base/renderprogs/bink_gui.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/bink_gui.vertex -------------------------------------------------------------------------------- /base/renderprogs/blendLight.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/blendLight.pixel -------------------------------------------------------------------------------- /base/renderprogs/color.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/color.pixel -------------------------------------------------------------------------------- /base/renderprogs/color.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/color.vertex -------------------------------------------------------------------------------- /base/renderprogs/depth.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/depth.pixel -------------------------------------------------------------------------------- /base/renderprogs/depth.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/depth.vertex -------------------------------------------------------------------------------- /base/renderprogs/fog.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/fog.pixel -------------------------------------------------------------------------------- /base/renderprogs/fog.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/fog.vertex -------------------------------------------------------------------------------- /base/renderprogs/fxaa.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/fxaa.pixel -------------------------------------------------------------------------------- /base/renderprogs/fxaa.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/fxaa.vertex -------------------------------------------------------------------------------- /base/renderprogs/global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/global.inc -------------------------------------------------------------------------------- /base/renderprogs/gui.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/gui.pixel -------------------------------------------------------------------------------- /base/renderprogs/gui.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/gui.vertex -------------------------------------------------------------------------------- /base/renderprogs/heathaze.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/heathaze.pixel -------------------------------------------------------------------------------- /base/renderprogs/heathaze.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/heathaze.vertex -------------------------------------------------------------------------------- /base/renderprogs/shadow.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/shadow.pixel -------------------------------------------------------------------------------- /base/renderprogs/shadow.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/shadow.vertex -------------------------------------------------------------------------------- /base/renderprogs/skinning.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/skinning.inc -------------------------------------------------------------------------------- /base/renderprogs/skybox.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/skybox.pixel -------------------------------------------------------------------------------- /base/renderprogs/skybox.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/skybox.vertex -------------------------------------------------------------------------------- /base/renderprogs/texture.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/texture.pixel -------------------------------------------------------------------------------- /base/renderprogs/texture.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/texture.vertex -------------------------------------------------------------------------------- /base/renderprogs/wobblesky.pixel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/base/renderprogs/wobblesky.pixel -------------------------------------------------------------------------------- /doomclassic/doom/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/Main.h -------------------------------------------------------------------------------- /doomclassic/doom/Precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/Precompiled.cpp -------------------------------------------------------------------------------- /doomclassic/doom/Precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/Precompiled.h -------------------------------------------------------------------------------- /doomclassic/doom/am_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/am_map.cpp -------------------------------------------------------------------------------- /doomclassic/doom/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/am_map.h -------------------------------------------------------------------------------- /doomclassic/doom/constructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/constructs.h -------------------------------------------------------------------------------- /doomclassic/doom/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_englsh.h -------------------------------------------------------------------------------- /doomclassic/doom/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_event.h -------------------------------------------------------------------------------- /doomclassic/doom/d_french.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_french.h -------------------------------------------------------------------------------- /doomclassic/doom/d_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_items.cpp -------------------------------------------------------------------------------- /doomclassic/doom/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_items.h -------------------------------------------------------------------------------- /doomclassic/doom/d_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_main.cpp -------------------------------------------------------------------------------- /doomclassic/doom/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_main.h -------------------------------------------------------------------------------- /doomclassic/doom/d_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_net.cpp -------------------------------------------------------------------------------- /doomclassic/doom/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_net.h -------------------------------------------------------------------------------- /doomclassic/doom/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_player.h -------------------------------------------------------------------------------- /doomclassic/doom/d_textur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_textur.h -------------------------------------------------------------------------------- /doomclassic/doom/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_think.h -------------------------------------------------------------------------------- /doomclassic/doom/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/d_ticcmd.h -------------------------------------------------------------------------------- /doomclassic/doom/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/defs.h -------------------------------------------------------------------------------- /doomclassic/doom/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomdata.h -------------------------------------------------------------------------------- /doomclassic/doom/doomdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomdef.cpp -------------------------------------------------------------------------------- /doomclassic/doom/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomdef.h -------------------------------------------------------------------------------- /doomclassic/doom/doominterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doominterface.h -------------------------------------------------------------------------------- /doomclassic/doom/doomlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomlib.cpp -------------------------------------------------------------------------------- /doomclassic/doom/doomlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomlib.h -------------------------------------------------------------------------------- /doomclassic/doom/doomstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomstat.cpp -------------------------------------------------------------------------------- /doomclassic/doom/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomstat.h -------------------------------------------------------------------------------- /doomclassic/doom/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/doomtype.h -------------------------------------------------------------------------------- /doomclassic/doom/dstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/dstrings.cpp -------------------------------------------------------------------------------- /doomclassic/doom/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/dstrings.h -------------------------------------------------------------------------------- /doomclassic/doom/f_finale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/f_finale.cpp -------------------------------------------------------------------------------- /doomclassic/doom/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/f_finale.h -------------------------------------------------------------------------------- /doomclassic/doom/f_wipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/f_wipe.cpp -------------------------------------------------------------------------------- /doomclassic/doom/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/f_wipe.h -------------------------------------------------------------------------------- /doomclassic/doom/g_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/g_game.cpp -------------------------------------------------------------------------------- /doomclassic/doom/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/g_game.h -------------------------------------------------------------------------------- /doomclassic/doom/globaldata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/globaldata.cpp -------------------------------------------------------------------------------- /doomclassic/doom/globaldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/globaldata.h -------------------------------------------------------------------------------- /doomclassic/doom/hu_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/hu_lib.cpp -------------------------------------------------------------------------------- /doomclassic/doom/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/hu_lib.h -------------------------------------------------------------------------------- /doomclassic/doom/hu_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/hu_stuff.cpp -------------------------------------------------------------------------------- /doomclassic/doom/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/hu_stuff.h -------------------------------------------------------------------------------- /doomclassic/doom/i_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_input.cpp -------------------------------------------------------------------------------- /doomclassic/doom/i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_main.cpp -------------------------------------------------------------------------------- /doomclassic/doom/i_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_net.cpp -------------------------------------------------------------------------------- /doomclassic/doom/i_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_net.h -------------------------------------------------------------------------------- /doomclassic/doom/i_net_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_net_win32.cpp -------------------------------------------------------------------------------- /doomclassic/doom/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_sound.h -------------------------------------------------------------------------------- /doomclassic/doom/i_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_system.cpp -------------------------------------------------------------------------------- /doomclassic/doom/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_system.h -------------------------------------------------------------------------------- /doomclassic/doom/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_video.h -------------------------------------------------------------------------------- /doomclassic/doom/i_video_ps3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/i_video_ps3.cpp -------------------------------------------------------------------------------- /doomclassic/doom/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/info.cpp -------------------------------------------------------------------------------- /doomclassic/doom/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/info.h -------------------------------------------------------------------------------- /doomclassic/doom/m_argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_argv.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_argv.h -------------------------------------------------------------------------------- /doomclassic/doom/m_bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_bbox.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_bbox.h -------------------------------------------------------------------------------- /doomclassic/doom/m_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_cheat.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_cheat.h -------------------------------------------------------------------------------- /doomclassic/doom/m_fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_fixed.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_fixed.h -------------------------------------------------------------------------------- /doomclassic/doom/m_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_menu.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_menu.h -------------------------------------------------------------------------------- /doomclassic/doom/m_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_misc.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_misc.h -------------------------------------------------------------------------------- /doomclassic/doom/m_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_random.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_random.h -------------------------------------------------------------------------------- /doomclassic/doom/m_swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_swap.cpp -------------------------------------------------------------------------------- /doomclassic/doom/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/m_swap.h -------------------------------------------------------------------------------- /doomclassic/doom/mus2midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/mus2midi.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_ceilng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_ceilng.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_doors.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_enemy.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_floor.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_inter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_inter.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_inter.h -------------------------------------------------------------------------------- /doomclassic/doom/p_lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_lights.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_local.h -------------------------------------------------------------------------------- /doomclassic/doom/p_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_map.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_maputl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_maputl.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_mobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_mobj.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_mobj.h -------------------------------------------------------------------------------- /doomclassic/doom/p_plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_plats.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_pspr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_pspr.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_pspr.h -------------------------------------------------------------------------------- /doomclassic/doom/p_saveg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_saveg.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_saveg.h -------------------------------------------------------------------------------- /doomclassic/doom/p_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_setup.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_setup.h -------------------------------------------------------------------------------- /doomclassic/doom/p_sight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_sight.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_spec.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_spec.h -------------------------------------------------------------------------------- /doomclassic/doom/p_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_switch.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_telept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_telept.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_tick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_tick.cpp -------------------------------------------------------------------------------- /doomclassic/doom/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_tick.h -------------------------------------------------------------------------------- /doomclassic/doom/p_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/p_user.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_bsp.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_bsp.h -------------------------------------------------------------------------------- /doomclassic/doom/r_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_data.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_data.h -------------------------------------------------------------------------------- /doomclassic/doom/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_defs.h -------------------------------------------------------------------------------- /doomclassic/doom/r_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_draw.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_draw.h -------------------------------------------------------------------------------- /doomclassic/doom/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_local.h -------------------------------------------------------------------------------- /doomclassic/doom/r_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_main.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_main.h -------------------------------------------------------------------------------- /doomclassic/doom/r_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_plane.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_plane.h -------------------------------------------------------------------------------- /doomclassic/doom/r_segs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_segs.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_segs.h -------------------------------------------------------------------------------- /doomclassic/doom/r_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_sky.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_sky.h -------------------------------------------------------------------------------- /doomclassic/doom/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_state.h -------------------------------------------------------------------------------- /doomclassic/doom/r_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_things.cpp -------------------------------------------------------------------------------- /doomclassic/doom/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/r_things.h -------------------------------------------------------------------------------- /doomclassic/doom/s_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/s_sound.cpp -------------------------------------------------------------------------------- /doomclassic/doom/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/s_sound.h -------------------------------------------------------------------------------- /doomclassic/doom/sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/sounds.cpp -------------------------------------------------------------------------------- /doomclassic/doom/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/sounds.h -------------------------------------------------------------------------------- /doomclassic/doom/st_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/st_lib.cpp -------------------------------------------------------------------------------- /doomclassic/doom/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/st_lib.h -------------------------------------------------------------------------------- /doomclassic/doom/st_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/st_stuff.cpp -------------------------------------------------------------------------------- /doomclassic/doom/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/st_stuff.h -------------------------------------------------------------------------------- /doomclassic/doom/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/structs.h -------------------------------------------------------------------------------- /doomclassic/doom/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/tables.cpp -------------------------------------------------------------------------------- /doomclassic/doom/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/tables.h -------------------------------------------------------------------------------- /doomclassic/doom/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/typedefs.h -------------------------------------------------------------------------------- /doomclassic/doom/v_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/v_video.cpp -------------------------------------------------------------------------------- /doomclassic/doom/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/v_video.h -------------------------------------------------------------------------------- /doomclassic/doom/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/vars.h -------------------------------------------------------------------------------- /doomclassic/doom/w_wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/w_wad.cpp -------------------------------------------------------------------------------- /doomclassic/doom/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/w_wad.h -------------------------------------------------------------------------------- /doomclassic/doom/wi_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/wi_stuff.cpp -------------------------------------------------------------------------------- /doomclassic/doom/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/wi_stuff.h -------------------------------------------------------------------------------- /doomclassic/doom/z_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/z_zone.cpp -------------------------------------------------------------------------------- /doomclassic/doom/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/doomclassic/doom/z_zone.h -------------------------------------------------------------------------------- /neo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/CMakeLists.txt -------------------------------------------------------------------------------- /neo/aas/AASFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/aas/AASFile.cpp -------------------------------------------------------------------------------- /neo/aas/AASFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/aas/AASFile.h -------------------------------------------------------------------------------- /neo/aas/AASFileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/aas/AASFileManager.cpp -------------------------------------------------------------------------------- /neo/aas/AASFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/aas/AASFileManager.h -------------------------------------------------------------------------------- /neo/aas/AASFile_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/aas/AASFile_local.h -------------------------------------------------------------------------------- /neo/aas/AASFile_optimize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/aas/AASFile_optimize.cpp -------------------------------------------------------------------------------- /neo/aas/AASFile_sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/aas/AASFile_sample.cpp -------------------------------------------------------------------------------- /neo/amplitude/amplitude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/amplitude/amplitude.cpp -------------------------------------------------------------------------------- /neo/astyle-code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/astyle-code.bat -------------------------------------------------------------------------------- /neo/astyle-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/astyle-code.sh -------------------------------------------------------------------------------- /neo/astyle-options.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/astyle-options.ini -------------------------------------------------------------------------------- /neo/astyle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/astyle.exe -------------------------------------------------------------------------------- /neo/cm/CollisionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cm/CollisionModel.h -------------------------------------------------------------------------------- /neo/cm/CollisionModel_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cm/CollisionModel_debug.cpp -------------------------------------------------------------------------------- /neo/cm/CollisionModel_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cm/CollisionModel_files.cpp -------------------------------------------------------------------------------- /neo/cm/CollisionModel_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cm/CollisionModel_load.cpp -------------------------------------------------------------------------------- /neo/cm/CollisionModel_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cm/CollisionModel_local.h -------------------------------------------------------------------------------- /neo/cm/CollisionModel_rotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cm/CollisionModel_rotate.cpp -------------------------------------------------------------------------------- /neo/cm/CollisionModel_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cm/CollisionModel_trace.cpp -------------------------------------------------------------------------------- /neo/cmake-eclipse-linux-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cmake-eclipse-linux-debug.sh -------------------------------------------------------------------------------- /neo/cmake-vs2010-32bit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cmake-vs2010-32bit.bat -------------------------------------------------------------------------------- /neo/cmake-vs2010-64bit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cmake-vs2010-64bit.bat -------------------------------------------------------------------------------- /neo/cmake-vs2012-32bit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cmake-vs2012-32bit.bat -------------------------------------------------------------------------------- /neo/cmake-vs2012-64bit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cmake-vs2012-64bit.bat -------------------------------------------------------------------------------- /neo/cmake/FindDirectX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cmake/FindDirectX.cmake -------------------------------------------------------------------------------- /neo/cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /neo/d3xp/AF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/AF.cpp -------------------------------------------------------------------------------- /neo/d3xp/AF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/AF.h -------------------------------------------------------------------------------- /neo/d3xp/AFEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/AFEntity.cpp -------------------------------------------------------------------------------- /neo/d3xp/AFEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/AFEntity.h -------------------------------------------------------------------------------- /neo/d3xp/Achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Achievements.cpp -------------------------------------------------------------------------------- /neo/d3xp/Achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Achievements.h -------------------------------------------------------------------------------- /neo/d3xp/Actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Actor.cpp -------------------------------------------------------------------------------- /neo/d3xp/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Actor.h -------------------------------------------------------------------------------- /neo/d3xp/AimAssist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/AimAssist.cpp -------------------------------------------------------------------------------- /neo/d3xp/AimAssist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/AimAssist.h -------------------------------------------------------------------------------- /neo/d3xp/BrittleFracture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/BrittleFracture.cpp -------------------------------------------------------------------------------- /neo/d3xp/BrittleFracture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/BrittleFracture.h -------------------------------------------------------------------------------- /neo/d3xp/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Camera.cpp -------------------------------------------------------------------------------- /neo/d3xp/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Camera.h -------------------------------------------------------------------------------- /neo/d3xp/EndLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/EndLevel.cpp -------------------------------------------------------------------------------- /neo/d3xp/EndLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/EndLevel.h -------------------------------------------------------------------------------- /neo/d3xp/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Entity.cpp -------------------------------------------------------------------------------- /neo/d3xp/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Entity.h -------------------------------------------------------------------------------- /neo/d3xp/Fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Fx.cpp -------------------------------------------------------------------------------- /neo/d3xp/Fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Fx.h -------------------------------------------------------------------------------- /neo/d3xp/Game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | GetGameAPI 3 | -------------------------------------------------------------------------------- /neo/d3xp/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Game.h -------------------------------------------------------------------------------- /neo/d3xp/GameEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/GameEdit.cpp -------------------------------------------------------------------------------- /neo/d3xp/GameEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/GameEdit.h -------------------------------------------------------------------------------- /neo/d3xp/Game_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Game_local.cpp -------------------------------------------------------------------------------- /neo/d3xp/Game_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Game_local.h -------------------------------------------------------------------------------- /neo/d3xp/Game_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Game_network.cpp -------------------------------------------------------------------------------- /neo/d3xp/Grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Grabber.cpp -------------------------------------------------------------------------------- /neo/d3xp/Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Grabber.h -------------------------------------------------------------------------------- /neo/d3xp/IK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/IK.cpp -------------------------------------------------------------------------------- /neo/d3xp/IK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/IK.h -------------------------------------------------------------------------------- /neo/d3xp/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Item.cpp -------------------------------------------------------------------------------- /neo/d3xp/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Item.h -------------------------------------------------------------------------------- /neo/d3xp/Leaderboards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Leaderboards.cpp -------------------------------------------------------------------------------- /neo/d3xp/Leaderboards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Leaderboards.h -------------------------------------------------------------------------------- /neo/d3xp/Light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Light.cpp -------------------------------------------------------------------------------- /neo/d3xp/Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Light.h -------------------------------------------------------------------------------- /neo/d3xp/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Misc.cpp -------------------------------------------------------------------------------- /neo/d3xp/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Misc.h -------------------------------------------------------------------------------- /neo/d3xp/Moveable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Moveable.cpp -------------------------------------------------------------------------------- /neo/d3xp/Moveable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Moveable.h -------------------------------------------------------------------------------- /neo/d3xp/Mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Mover.cpp -------------------------------------------------------------------------------- /neo/d3xp/Mover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Mover.h -------------------------------------------------------------------------------- /neo/d3xp/MultiplayerGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/MultiplayerGame.cpp -------------------------------------------------------------------------------- /neo/d3xp/MultiplayerGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/MultiplayerGame.h -------------------------------------------------------------------------------- /neo/d3xp/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Player.cpp -------------------------------------------------------------------------------- /neo/d3xp/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Player.h -------------------------------------------------------------------------------- /neo/d3xp/PlayerIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/PlayerIcon.cpp -------------------------------------------------------------------------------- /neo/d3xp/PlayerIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/PlayerIcon.h -------------------------------------------------------------------------------- /neo/d3xp/PlayerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/PlayerView.cpp -------------------------------------------------------------------------------- /neo/d3xp/PlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/PlayerView.h -------------------------------------------------------------------------------- /neo/d3xp/PredictedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/PredictedValue.h -------------------------------------------------------------------------------- /neo/d3xp/PredictedValue_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/PredictedValue_impl.h -------------------------------------------------------------------------------- /neo/d3xp/Projectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Projectile.cpp -------------------------------------------------------------------------------- /neo/d3xp/Projectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Projectile.h -------------------------------------------------------------------------------- /neo/d3xp/Pvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Pvs.cpp -------------------------------------------------------------------------------- /neo/d3xp/Pvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Pvs.h -------------------------------------------------------------------------------- /neo/d3xp/SecurityCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/SecurityCamera.cpp -------------------------------------------------------------------------------- /neo/d3xp/SecurityCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/SecurityCamera.h -------------------------------------------------------------------------------- /neo/d3xp/SmokeParticles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/SmokeParticles.cpp -------------------------------------------------------------------------------- /neo/d3xp/SmokeParticles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/SmokeParticles.h -------------------------------------------------------------------------------- /neo/d3xp/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Sound.cpp -------------------------------------------------------------------------------- /neo/d3xp/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Sound.h -------------------------------------------------------------------------------- /neo/d3xp/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Target.cpp -------------------------------------------------------------------------------- /neo/d3xp/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Target.h -------------------------------------------------------------------------------- /neo/d3xp/Trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Trigger.cpp -------------------------------------------------------------------------------- /neo/d3xp/Trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Trigger.h -------------------------------------------------------------------------------- /neo/d3xp/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Weapon.cpp -------------------------------------------------------------------------------- /neo/d3xp/Weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/Weapon.h -------------------------------------------------------------------------------- /neo/d3xp/WorldSpawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/WorldSpawn.cpp -------------------------------------------------------------------------------- /neo/d3xp/WorldSpawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/WorldSpawn.h -------------------------------------------------------------------------------- /neo/d3xp/ai/AAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AAS.cpp -------------------------------------------------------------------------------- /neo/d3xp/ai/AAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AAS.h -------------------------------------------------------------------------------- /neo/d3xp/ai/AAS_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AAS_debug.cpp -------------------------------------------------------------------------------- /neo/d3xp/ai/AAS_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AAS_local.h -------------------------------------------------------------------------------- /neo/d3xp/ai/AAS_pathing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AAS_pathing.cpp -------------------------------------------------------------------------------- /neo/d3xp/ai/AAS_routing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AAS_routing.cpp -------------------------------------------------------------------------------- /neo/d3xp/ai/AI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AI.cpp -------------------------------------------------------------------------------- /neo/d3xp/ai/AI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AI.h -------------------------------------------------------------------------------- /neo/d3xp/ai/AI_Vagary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AI_Vagary.cpp -------------------------------------------------------------------------------- /neo/d3xp/ai/AI_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AI_events.cpp -------------------------------------------------------------------------------- /neo/d3xp/ai/AI_pathing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/ai/AI_pathing.cpp -------------------------------------------------------------------------------- /neo/d3xp/anim/Anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/anim/Anim.cpp -------------------------------------------------------------------------------- /neo/d3xp/anim/Anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/anim/Anim.h -------------------------------------------------------------------------------- /neo/d3xp/anim/Anim_Blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/anim/Anim_Blend.cpp -------------------------------------------------------------------------------- /neo/d3xp/anim/Anim_Testmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/anim/Anim_Testmodel.cpp -------------------------------------------------------------------------------- /neo/d3xp/anim/Anim_Testmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/anim/Anim_Testmodel.h -------------------------------------------------------------------------------- /neo/d3xp/gamesys/Callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/Callbacks.cpp -------------------------------------------------------------------------------- /neo/d3xp/gamesys/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/Class.cpp -------------------------------------------------------------------------------- /neo/d3xp/gamesys/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/Class.h -------------------------------------------------------------------------------- /neo/d3xp/gamesys/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/Event.cpp -------------------------------------------------------------------------------- /neo/d3xp/gamesys/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/Event.h -------------------------------------------------------------------------------- /neo/d3xp/gamesys/SaveGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/SaveGame.cpp -------------------------------------------------------------------------------- /neo/d3xp/gamesys/SaveGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/SaveGame.h -------------------------------------------------------------------------------- /neo/d3xp/gamesys/SysCmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/SysCmds.cpp -------------------------------------------------------------------------------- /neo/d3xp/gamesys/SysCmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/SysCmds.h -------------------------------------------------------------------------------- /neo/d3xp/gamesys/SysCvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/SysCvar.cpp -------------------------------------------------------------------------------- /neo/d3xp/gamesys/SysCvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/gamesys/SysCvar.h -------------------------------------------------------------------------------- /neo/d3xp/menus/MenuHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/menus/MenuHandler.cpp -------------------------------------------------------------------------------- /neo/d3xp/menus/MenuHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/menus/MenuHandler.h -------------------------------------------------------------------------------- /neo/d3xp/menus/MenuScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/menus/MenuScreen.cpp -------------------------------------------------------------------------------- /neo/d3xp/menus/MenuScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/menus/MenuScreen.h -------------------------------------------------------------------------------- /neo/d3xp/menus/MenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/menus/MenuWidget.cpp -------------------------------------------------------------------------------- /neo/d3xp/menus/MenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/menus/MenuWidget.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Clip.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Clip.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Force_Drag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force_Drag.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Force_Drag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force_Drag.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Force_Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force_Field.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Force_Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force_Field.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Force_Grab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force_Grab.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Force_Grab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force_Grab.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Force_Spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Force_Spring.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Physics.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Physics.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Physics_AF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Physics_AF.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Physics_AF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Physics_AF.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Physics_Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Physics_Actor.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Physics_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Physics_Base.h -------------------------------------------------------------------------------- /neo/d3xp/physics/Push.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Push.cpp -------------------------------------------------------------------------------- /neo/d3xp/physics/Push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/physics/Push.h -------------------------------------------------------------------------------- /neo/d3xp/precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/precompiled.cpp -------------------------------------------------------------------------------- /neo/d3xp/script/Script_Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/script/Script_Program.h -------------------------------------------------------------------------------- /neo/d3xp/script/Script_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/d3xp/script/Script_Thread.h -------------------------------------------------------------------------------- /neo/framework/BuildVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/BuildVersion.h -------------------------------------------------------------------------------- /neo/framework/CVarSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/CVarSystem.cpp -------------------------------------------------------------------------------- /neo/framework/CVarSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/CVarSystem.h -------------------------------------------------------------------------------- /neo/framework/CmdSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/CmdSystem.cpp -------------------------------------------------------------------------------- /neo/framework/CmdSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/CmdSystem.h -------------------------------------------------------------------------------- /neo/framework/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common.cpp -------------------------------------------------------------------------------- /neo/framework/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common.h -------------------------------------------------------------------------------- /neo/framework/Common_demos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_demos.cpp -------------------------------------------------------------------------------- /neo/framework/Common_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_dialog.cpp -------------------------------------------------------------------------------- /neo/framework/Common_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_dialog.h -------------------------------------------------------------------------------- /neo/framework/Common_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_load.cpp -------------------------------------------------------------------------------- /neo/framework/Common_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_local.h -------------------------------------------------------------------------------- /neo/framework/Common_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_menu.cpp -------------------------------------------------------------------------------- /neo/framework/Common_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_network.cpp -------------------------------------------------------------------------------- /neo/framework/Common_printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Common_printf.cpp -------------------------------------------------------------------------------- /neo/framework/Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Compressor.cpp -------------------------------------------------------------------------------- /neo/framework/Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Compressor.h -------------------------------------------------------------------------------- /neo/framework/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Console.cpp -------------------------------------------------------------------------------- /neo/framework/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Console.h -------------------------------------------------------------------------------- /neo/framework/ConsoleHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/ConsoleHistory.cpp -------------------------------------------------------------------------------- /neo/framework/ConsoleHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/ConsoleHistory.h -------------------------------------------------------------------------------- /neo/framework/DebugGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DebugGraph.cpp -------------------------------------------------------------------------------- /neo/framework/DebugGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DebugGraph.h -------------------------------------------------------------------------------- /neo/framework/DeclAF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclAF.cpp -------------------------------------------------------------------------------- /neo/framework/DeclAF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclAF.h -------------------------------------------------------------------------------- /neo/framework/DeclEntityDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclEntityDef.cpp -------------------------------------------------------------------------------- /neo/framework/DeclEntityDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclEntityDef.h -------------------------------------------------------------------------------- /neo/framework/DeclFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclFX.cpp -------------------------------------------------------------------------------- /neo/framework/DeclFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclFX.h -------------------------------------------------------------------------------- /neo/framework/DeclManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclManager.cpp -------------------------------------------------------------------------------- /neo/framework/DeclManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclManager.h -------------------------------------------------------------------------------- /neo/framework/DeclPDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclPDA.cpp -------------------------------------------------------------------------------- /neo/framework/DeclPDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclPDA.h -------------------------------------------------------------------------------- /neo/framework/DeclParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclParticle.cpp -------------------------------------------------------------------------------- /neo/framework/DeclParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclParticle.h -------------------------------------------------------------------------------- /neo/framework/DeclSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclSkin.cpp -------------------------------------------------------------------------------- /neo/framework/DeclSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclSkin.h -------------------------------------------------------------------------------- /neo/framework/DeclTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclTable.cpp -------------------------------------------------------------------------------- /neo/framework/DeclTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DeclTable.h -------------------------------------------------------------------------------- /neo/framework/DemoChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DemoChecksum.h -------------------------------------------------------------------------------- /neo/framework/DemoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DemoFile.cpp -------------------------------------------------------------------------------- /neo/framework/DemoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/DemoFile.h -------------------------------------------------------------------------------- /neo/framework/EditField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/EditField.cpp -------------------------------------------------------------------------------- /neo/framework/EditField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/EditField.h -------------------------------------------------------------------------------- /neo/framework/EventLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/EventLoop.cpp -------------------------------------------------------------------------------- /neo/framework/EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/EventLoop.h -------------------------------------------------------------------------------- /neo/framework/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File.cpp -------------------------------------------------------------------------------- /neo/framework/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File.h -------------------------------------------------------------------------------- /neo/framework/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/FileSystem.cpp -------------------------------------------------------------------------------- /neo/framework/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/FileSystem.h -------------------------------------------------------------------------------- /neo/framework/File_Manifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File_Manifest.cpp -------------------------------------------------------------------------------- /neo/framework/File_Manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File_Manifest.h -------------------------------------------------------------------------------- /neo/framework/File_Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File_Resource.cpp -------------------------------------------------------------------------------- /neo/framework/File_Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File_Resource.h -------------------------------------------------------------------------------- /neo/framework/File_SaveGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File_SaveGame.cpp -------------------------------------------------------------------------------- /neo/framework/File_SaveGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/File_SaveGame.h -------------------------------------------------------------------------------- /neo/framework/KeyInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/KeyInput.cpp -------------------------------------------------------------------------------- /neo/framework/KeyInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/KeyInput.h -------------------------------------------------------------------------------- /neo/framework/Licensee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Licensee.h -------------------------------------------------------------------------------- /neo/framework/PlayerProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/PlayerProfile.cpp -------------------------------------------------------------------------------- /neo/framework/PlayerProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/PlayerProfile.h -------------------------------------------------------------------------------- /neo/framework/Serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Serializer.h -------------------------------------------------------------------------------- /neo/framework/TokenParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/TokenParser.cpp -------------------------------------------------------------------------------- /neo/framework/TokenParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/TokenParser.h -------------------------------------------------------------------------------- /neo/framework/Unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Unzip.h -------------------------------------------------------------------------------- /neo/framework/UsercmdGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/UsercmdGen.cpp -------------------------------------------------------------------------------- /neo/framework/UsercmdGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/UsercmdGen.h -------------------------------------------------------------------------------- /neo/framework/Zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Zip.cpp -------------------------------------------------------------------------------- /neo/framework/Zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/Zip.h -------------------------------------------------------------------------------- /neo/framework/common_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/common_frame.cpp -------------------------------------------------------------------------------- /neo/framework/precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/framework/precompiled.cpp -------------------------------------------------------------------------------- /neo/idlib/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Base64.cpp -------------------------------------------------------------------------------- /neo/idlib/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Base64.h -------------------------------------------------------------------------------- /neo/idlib/BitMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/BitMsg.cpp -------------------------------------------------------------------------------- /neo/idlib/BitMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/BitMsg.h -------------------------------------------------------------------------------- /neo/idlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/CMakeLists.txt -------------------------------------------------------------------------------- /neo/idlib/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Callback.h -------------------------------------------------------------------------------- /neo/idlib/CmdArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/CmdArgs.cpp -------------------------------------------------------------------------------- /neo/idlib/CmdArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/CmdArgs.h -------------------------------------------------------------------------------- /neo/idlib/CommandLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/CommandLink.cpp -------------------------------------------------------------------------------- /neo/idlib/DataQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/DataQueue.h -------------------------------------------------------------------------------- /neo/idlib/Dict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Dict.cpp -------------------------------------------------------------------------------- /neo/idlib/Dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Dict.h -------------------------------------------------------------------------------- /neo/idlib/Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Heap.cpp -------------------------------------------------------------------------------- /neo/idlib/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Heap.h -------------------------------------------------------------------------------- /neo/idlib/LangDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/LangDict.cpp -------------------------------------------------------------------------------- /neo/idlib/LangDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/LangDict.h -------------------------------------------------------------------------------- /neo/idlib/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Lexer.cpp -------------------------------------------------------------------------------- /neo/idlib/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Lexer.h -------------------------------------------------------------------------------- /neo/idlib/Lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Lib.cpp -------------------------------------------------------------------------------- /neo/idlib/Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Lib.h -------------------------------------------------------------------------------- /neo/idlib/MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/MapFile.cpp -------------------------------------------------------------------------------- /neo/idlib/MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/MapFile.h -------------------------------------------------------------------------------- /neo/idlib/ParallelJobList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/ParallelJobList.cpp -------------------------------------------------------------------------------- /neo/idlib/ParallelJobList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/ParallelJobList.h -------------------------------------------------------------------------------- /neo/idlib/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Parser.cpp -------------------------------------------------------------------------------- /neo/idlib/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Parser.h -------------------------------------------------------------------------------- /neo/idlib/RectAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/RectAllocator.cpp -------------------------------------------------------------------------------- /neo/idlib/SoftwareCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/SoftwareCache.cpp -------------------------------------------------------------------------------- /neo/idlib/SoftwareCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/SoftwareCache.h -------------------------------------------------------------------------------- /neo/idlib/Str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Str.cpp -------------------------------------------------------------------------------- /neo/idlib/Str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Str.h -------------------------------------------------------------------------------- /neo/idlib/StrStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/StrStatic.h -------------------------------------------------------------------------------- /neo/idlib/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Swap.h -------------------------------------------------------------------------------- /neo/idlib/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Thread.cpp -------------------------------------------------------------------------------- /neo/idlib/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Thread.h -------------------------------------------------------------------------------- /neo/idlib/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Timer.cpp -------------------------------------------------------------------------------- /neo/idlib/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Timer.h -------------------------------------------------------------------------------- /neo/idlib/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Token.cpp -------------------------------------------------------------------------------- /neo/idlib/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/Token.h -------------------------------------------------------------------------------- /neo/idlib/bv/Bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/bv/Bounds.cpp -------------------------------------------------------------------------------- /neo/idlib/bv/Bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/bv/Bounds.h -------------------------------------------------------------------------------- /neo/idlib/bv/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/bv/Box.cpp -------------------------------------------------------------------------------- /neo/idlib/bv/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/bv/Box.h -------------------------------------------------------------------------------- /neo/idlib/bv/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/bv/Sphere.cpp -------------------------------------------------------------------------------- /neo/idlib/bv/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/bv/Sphere.h -------------------------------------------------------------------------------- /neo/idlib/containers/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/Array.h -------------------------------------------------------------------------------- /neo/idlib/containers/BTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/BTree.h -------------------------------------------------------------------------------- /neo/idlib/containers/BinSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/BinSearch.h -------------------------------------------------------------------------------- /neo/idlib/containers/HashIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/HashIndex.h -------------------------------------------------------------------------------- /neo/idlib/containers/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/HashTable.h -------------------------------------------------------------------------------- /neo/idlib/containers/Hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/Hierarchy.h -------------------------------------------------------------------------------- /neo/idlib/containers/LinkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/LinkList.h -------------------------------------------------------------------------------- /neo/idlib/containers/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/List.h -------------------------------------------------------------------------------- /neo/idlib/containers/PlaneSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/PlaneSet.h -------------------------------------------------------------------------------- /neo/idlib/containers/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/Queue.h -------------------------------------------------------------------------------- /neo/idlib/containers/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/Sort.h -------------------------------------------------------------------------------- /neo/idlib/containers/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/Stack.h -------------------------------------------------------------------------------- /neo/idlib/containers/StrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/StrList.h -------------------------------------------------------------------------------- /neo/idlib/containers/StrPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/StrPool.h -------------------------------------------------------------------------------- /neo/idlib/containers/VectorSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/containers/VectorSet.h -------------------------------------------------------------------------------- /neo/idlib/geometry/DrawVert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/DrawVert.cpp -------------------------------------------------------------------------------- /neo/idlib/geometry/DrawVert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/DrawVert.h -------------------------------------------------------------------------------- /neo/idlib/geometry/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/Surface.cpp -------------------------------------------------------------------------------- /neo/idlib/geometry/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/Surface.h -------------------------------------------------------------------------------- /neo/idlib/geometry/TraceModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/TraceModel.h -------------------------------------------------------------------------------- /neo/idlib/geometry/Winding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/Winding.cpp -------------------------------------------------------------------------------- /neo/idlib/geometry/Winding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/Winding.h -------------------------------------------------------------------------------- /neo/idlib/geometry/Winding2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/Winding2D.cpp -------------------------------------------------------------------------------- /neo/idlib/geometry/Winding2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/geometry/Winding2D.h -------------------------------------------------------------------------------- /neo/idlib/hashing/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/hashing/CRC32.cpp -------------------------------------------------------------------------------- /neo/idlib/hashing/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/hashing/CRC32.h -------------------------------------------------------------------------------- /neo/idlib/hashing/MD4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/hashing/MD4.cpp -------------------------------------------------------------------------------- /neo/idlib/hashing/MD4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/hashing/MD4.h -------------------------------------------------------------------------------- /neo/idlib/hashing/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/hashing/MD5.cpp -------------------------------------------------------------------------------- /neo/idlib/hashing/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/hashing/MD5.h -------------------------------------------------------------------------------- /neo/idlib/math/Angles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Angles.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Angles.h -------------------------------------------------------------------------------- /neo/idlib/math/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Complex.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Complex.h -------------------------------------------------------------------------------- /neo/idlib/math/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Curve.h -------------------------------------------------------------------------------- /neo/idlib/math/Extrapolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Extrapolate.h -------------------------------------------------------------------------------- /neo/idlib/math/Interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Interpolate.h -------------------------------------------------------------------------------- /neo/idlib/math/Lcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Lcp.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Lcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Lcp.h -------------------------------------------------------------------------------- /neo/idlib/math/MatX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/MatX.cpp -------------------------------------------------------------------------------- /neo/idlib/math/MatX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/MatX.h -------------------------------------------------------------------------------- /neo/idlib/math/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Math.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Math.h -------------------------------------------------------------------------------- /neo/idlib/math/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Matrix.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Matrix.h -------------------------------------------------------------------------------- /neo/idlib/math/Ode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Ode.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Ode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Ode.h -------------------------------------------------------------------------------- /neo/idlib/math/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Plane.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Plane.h -------------------------------------------------------------------------------- /neo/idlib/math/Pluecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Pluecker.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Pluecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Pluecker.h -------------------------------------------------------------------------------- /neo/idlib/math/Polynomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Polynomial.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Polynomial.h -------------------------------------------------------------------------------- /neo/idlib/math/Quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Quat.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Quat.h -------------------------------------------------------------------------------- /neo/idlib/math/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Random.h -------------------------------------------------------------------------------- /neo/idlib/math/Rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Rotation.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Rotation.h -------------------------------------------------------------------------------- /neo/idlib/math/Simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Simd.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Simd.h -------------------------------------------------------------------------------- /neo/idlib/math/Simd_Generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Simd_Generic.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Simd_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Simd_Generic.h -------------------------------------------------------------------------------- /neo/idlib/math/Simd_SSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Simd_SSE.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Simd_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Simd_SSE.h -------------------------------------------------------------------------------- /neo/idlib/math/VecX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/VecX.cpp -------------------------------------------------------------------------------- /neo/idlib/math/VecX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/VecX.h -------------------------------------------------------------------------------- /neo/idlib/math/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Vector.cpp -------------------------------------------------------------------------------- /neo/idlib/math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/Vector.h -------------------------------------------------------------------------------- /neo/idlib/math/VectorI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/math/VectorI.h -------------------------------------------------------------------------------- /neo/idlib/precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/precompiled.cpp -------------------------------------------------------------------------------- /neo/idlib/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/precompiled.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_alloc_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_alloc_tags.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_assert.cpp -------------------------------------------------------------------------------- /neo/idlib/sys/sys_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_assert.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_builddefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_builddefines.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_defines.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_filesystem.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_includes.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_intrinsics.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_threading.h -------------------------------------------------------------------------------- /neo/idlib/sys/sys_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/idlib/sys/sys_types.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcapimin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcapimin.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcapistd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcapistd.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jccoefct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jccoefct.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jccolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jccolor.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcdctmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcdctmgr.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jchuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jchuff.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jchuff.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcinit.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcmainct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcmainct.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcmarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcmarker.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcmaster.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcomapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcomapi.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jconfig.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcparam.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcphuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcphuff.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcprepct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcprepct.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jcsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jcsample.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jctrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jctrans.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdapimin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdapimin.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdapistd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdapistd.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdatadst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdatadst.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdatasrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdatasrc.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdcoefct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdcoefct.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdcolor.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdct.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jddctmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jddctmgr.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdhuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdhuff.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdhuff.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdinput.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdmainct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdmainct.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdmarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdmarker.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdmaster.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdmerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdmerge.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdphuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdphuff.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdpostct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdpostct.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdsample.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jdtrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jdtrans.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jerror.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jerror.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jfdctflt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jfdctflt.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jfdctfst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jfdctfst.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jfdctint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jfdctint.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jidctflt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jidctflt.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jidctfst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jidctfst.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jidctint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jidctint.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jidctred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jidctred.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jinclude.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jload.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jmemansi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jmemansi.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jmemdos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jmemdos.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jmemmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jmemmgr.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jmemname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jmemname.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jmemnobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jmemnobs.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jmemsys.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jmorecfg.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jpegint.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jpeglib.h -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jpegtran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jpegtran.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jquant1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jquant1.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jquant2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jquant2.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jutils.cpp -------------------------------------------------------------------------------- /neo/libs/jpeg-6/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/jpeg-6/jversion.h -------------------------------------------------------------------------------- /neo/libs/mingw-hacks/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/mingw-hacks/sal.h -------------------------------------------------------------------------------- /neo/libs/openal-soft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/openal-soft/COPYING -------------------------------------------------------------------------------- /neo/libs/openal-soft/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/openal-soft/readme.txt -------------------------------------------------------------------------------- /neo/libs/timidity/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/FAQ -------------------------------------------------------------------------------- /neo/libs/timidity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/README -------------------------------------------------------------------------------- /neo/libs/timidity/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/common.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/common.h -------------------------------------------------------------------------------- /neo/libs/timidity/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/config.h -------------------------------------------------------------------------------- /neo/libs/timidity/controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/controls.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/controls.h -------------------------------------------------------------------------------- /neo/libs/timidity/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/filter.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/filter.h -------------------------------------------------------------------------------- /neo/libs/timidity/instrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/instrum.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/instrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/instrum.h -------------------------------------------------------------------------------- /neo/libs/timidity/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/mix.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/mix.h -------------------------------------------------------------------------------- /neo/libs/timidity/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/output.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/output.h -------------------------------------------------------------------------------- /neo/libs/timidity/playmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/playmidi.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/playmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/playmidi.h -------------------------------------------------------------------------------- /neo/libs/timidity/readmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/readmidi.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/readmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/readmidi.h -------------------------------------------------------------------------------- /neo/libs/timidity/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/resample.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/resample.h -------------------------------------------------------------------------------- /neo/libs/timidity/sdl_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/sdl_a.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/sdl_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/sdl_c.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/structs.h -------------------------------------------------------------------------------- /neo/libs/timidity/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/tables.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/tables.h -------------------------------------------------------------------------------- /neo/libs/timidity/timidity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/timidity.cpp -------------------------------------------------------------------------------- /neo/libs/timidity/timidity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/timidity/timidity.h -------------------------------------------------------------------------------- /neo/libs/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/ChangeLog -------------------------------------------------------------------------------- /neo/libs/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/FAQ -------------------------------------------------------------------------------- /neo/libs/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/INDEX -------------------------------------------------------------------------------- /neo/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/Makefile -------------------------------------------------------------------------------- /neo/libs/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/Makefile.in -------------------------------------------------------------------------------- /neo/libs/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/README -------------------------------------------------------------------------------- /neo/libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/adler32.c -------------------------------------------------------------------------------- /neo/libs/zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/algorithm.txt -------------------------------------------------------------------------------- /neo/libs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/compress.c -------------------------------------------------------------------------------- /neo/libs/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/configure -------------------------------------------------------------------------------- /neo/libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/crc32.c -------------------------------------------------------------------------------- /neo/libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/crc32.h -------------------------------------------------------------------------------- /neo/libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/deflate.c -------------------------------------------------------------------------------- /neo/libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/deflate.h -------------------------------------------------------------------------------- /neo/libs/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/gzclose.c -------------------------------------------------------------------------------- /neo/libs/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/gzguts.h -------------------------------------------------------------------------------- /neo/libs/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/gzlib.c -------------------------------------------------------------------------------- /neo/libs/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/gzread.c -------------------------------------------------------------------------------- /neo/libs/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/gzwrite.c -------------------------------------------------------------------------------- /neo/libs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/infback.c -------------------------------------------------------------------------------- /neo/libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/inffast.c -------------------------------------------------------------------------------- /neo/libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/inffast.h -------------------------------------------------------------------------------- /neo/libs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/inffixed.h -------------------------------------------------------------------------------- /neo/libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/inflate.c -------------------------------------------------------------------------------- /neo/libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/inflate.h -------------------------------------------------------------------------------- /neo/libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /neo/libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /neo/libs/zlib/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/minizip/ioapi.c -------------------------------------------------------------------------------- /neo/libs/zlib/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/minizip/ioapi.h -------------------------------------------------------------------------------- /neo/libs/zlib/minizip/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/minizip/unzip.cpp -------------------------------------------------------------------------------- /neo/libs/zlib/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/minizip/unzip.h -------------------------------------------------------------------------------- /neo/libs/zlib/minizip/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/minizip/zip.cpp -------------------------------------------------------------------------------- /neo/libs/zlib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/minizip/zip.h -------------------------------------------------------------------------------- /neo/libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/trees.c -------------------------------------------------------------------------------- /neo/libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/trees.h -------------------------------------------------------------------------------- /neo/libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /neo/libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/zconf.h -------------------------------------------------------------------------------- /neo/libs/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/zconf.h.in -------------------------------------------------------------------------------- /neo/libs/zlib/zconf.h.included: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/zconf.h.included -------------------------------------------------------------------------------- /neo/libs/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/zlib.3 -------------------------------------------------------------------------------- /neo/libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/zlib.h -------------------------------------------------------------------------------- /neo/libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/zutil.c -------------------------------------------------------------------------------- /neo/libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/libs/zlib/zutil.h -------------------------------------------------------------------------------- /neo/renderer/AutoRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/AutoRender.cpp -------------------------------------------------------------------------------- /neo/renderer/AutoRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/AutoRender.h -------------------------------------------------------------------------------- /neo/renderer/AutoRenderBink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/AutoRenderBink.cpp -------------------------------------------------------------------------------- /neo/renderer/AutoRenderBink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/AutoRenderBink.h -------------------------------------------------------------------------------- /neo/renderer/BinaryImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/BinaryImage.cpp -------------------------------------------------------------------------------- /neo/renderer/BinaryImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/BinaryImage.h -------------------------------------------------------------------------------- /neo/renderer/BinaryImageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/BinaryImageData.h -------------------------------------------------------------------------------- /neo/renderer/BoundsTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/BoundsTrack.cpp -------------------------------------------------------------------------------- /neo/renderer/BoundsTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/BoundsTrack.h -------------------------------------------------------------------------------- /neo/renderer/BufferObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/BufferObject.cpp -------------------------------------------------------------------------------- /neo/renderer/BufferObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/BufferObject.h -------------------------------------------------------------------------------- /neo/renderer/Cinematic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Cinematic.cpp -------------------------------------------------------------------------------- /neo/renderer/Cinematic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Cinematic.h -------------------------------------------------------------------------------- /neo/renderer/Color/ColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Color/ColorSpace.h -------------------------------------------------------------------------------- /neo/renderer/DXT/DXTCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/DXT/DXTCodec.h -------------------------------------------------------------------------------- /neo/renderer/DXT/DXTDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/DXT/DXTDecoder.cpp -------------------------------------------------------------------------------- /neo/renderer/DXT/DXTEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/DXT/DXTEncoder.cpp -------------------------------------------------------------------------------- /neo/renderer/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Font.cpp -------------------------------------------------------------------------------- /neo/renderer/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Font.h -------------------------------------------------------------------------------- /neo/renderer/GLMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/GLMatrix.cpp -------------------------------------------------------------------------------- /neo/renderer/GLMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/GLMatrix.h -------------------------------------------------------------------------------- /neo/renderer/GLState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/GLState.h -------------------------------------------------------------------------------- /neo/renderer/GuiModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/GuiModel.cpp -------------------------------------------------------------------------------- /neo/renderer/GuiModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/GuiModel.h -------------------------------------------------------------------------------- /neo/renderer/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Image.h -------------------------------------------------------------------------------- /neo/renderer/ImageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ImageManager.cpp -------------------------------------------------------------------------------- /neo/renderer/ImageOpts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ImageOpts.h -------------------------------------------------------------------------------- /neo/renderer/Image_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Image_files.cpp -------------------------------------------------------------------------------- /neo/renderer/Image_intrinsic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Image_intrinsic.cpp -------------------------------------------------------------------------------- /neo/renderer/Image_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Image_load.cpp -------------------------------------------------------------------------------- /neo/renderer/Image_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Image_process.cpp -------------------------------------------------------------------------------- /neo/renderer/Image_program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Image_program.cpp -------------------------------------------------------------------------------- /neo/renderer/Interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Interaction.cpp -------------------------------------------------------------------------------- /neo/renderer/Interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Interaction.h -------------------------------------------------------------------------------- /neo/renderer/Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Material.cpp -------------------------------------------------------------------------------- /neo/renderer/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Material.h -------------------------------------------------------------------------------- /neo/renderer/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model.cpp -------------------------------------------------------------------------------- /neo/renderer/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model.h -------------------------------------------------------------------------------- /neo/renderer/ModelDecal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ModelDecal.cpp -------------------------------------------------------------------------------- /neo/renderer/ModelDecal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ModelDecal.h -------------------------------------------------------------------------------- /neo/renderer/ModelManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ModelManager.cpp -------------------------------------------------------------------------------- /neo/renderer/ModelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ModelManager.h -------------------------------------------------------------------------------- /neo/renderer/ModelOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ModelOverlay.cpp -------------------------------------------------------------------------------- /neo/renderer/ModelOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ModelOverlay.h -------------------------------------------------------------------------------- /neo/renderer/Model_ase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_ase.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_ase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_ase.h -------------------------------------------------------------------------------- /neo/renderer/Model_beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_beam.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_liquid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_liquid.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_local.h -------------------------------------------------------------------------------- /neo/renderer/Model_lwo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_lwo.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_lwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_lwo.h -------------------------------------------------------------------------------- /neo/renderer/Model_ma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_ma.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_ma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_ma.h -------------------------------------------------------------------------------- /neo/renderer/Model_md3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_md3.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_md3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_md3.h -------------------------------------------------------------------------------- /neo/renderer/Model_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_md5.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_prt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_prt.cpp -------------------------------------------------------------------------------- /neo/renderer/Model_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/Model_sprite.cpp -------------------------------------------------------------------------------- /neo/renderer/OpenGL/gl_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/OpenGL/gl_Image.cpp -------------------------------------------------------------------------------- /neo/renderer/OpenGL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/OpenGL/glext.h -------------------------------------------------------------------------------- /neo/renderer/OpenGL/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/OpenGL/qgl.h -------------------------------------------------------------------------------- /neo/renderer/OpenGL/qgl_linked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/OpenGL/qgl_linked.h -------------------------------------------------------------------------------- /neo/renderer/OpenGL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/OpenGL/wglext.h -------------------------------------------------------------------------------- /neo/renderer/RenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderContext.h -------------------------------------------------------------------------------- /neo/renderer/RenderEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderEntity.cpp -------------------------------------------------------------------------------- /neo/renderer/RenderLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderLog.cpp -------------------------------------------------------------------------------- /neo/renderer/RenderLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderLog.h -------------------------------------------------------------------------------- /neo/renderer/RenderProgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderProgs.cpp -------------------------------------------------------------------------------- /neo/renderer/RenderProgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderProgs.h -------------------------------------------------------------------------------- /neo/renderer/RenderSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderSystem.cpp -------------------------------------------------------------------------------- /neo/renderer/RenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderSystem.h -------------------------------------------------------------------------------- /neo/renderer/RenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderTexture.h -------------------------------------------------------------------------------- /neo/renderer/RenderWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderWorld.cpp -------------------------------------------------------------------------------- /neo/renderer/RenderWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderWorld.h -------------------------------------------------------------------------------- /neo/renderer/RenderWorld_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/RenderWorld_local.h -------------------------------------------------------------------------------- /neo/renderer/ResolutionScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ResolutionScale.cpp -------------------------------------------------------------------------------- /neo/renderer/ResolutionScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ResolutionScale.h -------------------------------------------------------------------------------- /neo/renderer/ScreenRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ScreenRect.cpp -------------------------------------------------------------------------------- /neo/renderer/ScreenRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/ScreenRect.h -------------------------------------------------------------------------------- /neo/renderer/VertexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/VertexCache.cpp -------------------------------------------------------------------------------- /neo/renderer/VertexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/VertexCache.h -------------------------------------------------------------------------------- /neo/renderer/jobs/ShadowShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/jobs/ShadowShared.h -------------------------------------------------------------------------------- /neo/renderer/simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/simplex.h -------------------------------------------------------------------------------- /neo/renderer/tr_backend_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/tr_backend_draw.cpp -------------------------------------------------------------------------------- /neo/renderer/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/tr_local.h -------------------------------------------------------------------------------- /neo/renderer/tr_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/tr_trace.cpp -------------------------------------------------------------------------------- /neo/renderer/tr_trisurf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/renderer/tr_trisurf.cpp -------------------------------------------------------------------------------- /neo/sound/OpenAL/AL_SoundVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/OpenAL/AL_SoundVoice.h -------------------------------------------------------------------------------- /neo/sound/SoundVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/SoundVoice.cpp -------------------------------------------------------------------------------- /neo/sound/SoundVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/SoundVoice.h -------------------------------------------------------------------------------- /neo/sound/WaveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/WaveFile.cpp -------------------------------------------------------------------------------- /neo/sound/WaveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/WaveFile.h -------------------------------------------------------------------------------- /neo/sound/snd_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/snd_emitter.cpp -------------------------------------------------------------------------------- /neo/sound/snd_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/snd_local.h -------------------------------------------------------------------------------- /neo/sound/snd_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/snd_shader.cpp -------------------------------------------------------------------------------- /neo/sound/snd_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/snd_system.cpp -------------------------------------------------------------------------------- /neo/sound/snd_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/snd_world.cpp -------------------------------------------------------------------------------- /neo/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/sound.h -------------------------------------------------------------------------------- /neo/sound/stub/SoundSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/stub/SoundSample.cpp -------------------------------------------------------------------------------- /neo/sound/stub/SoundStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sound/stub/SoundStub.h -------------------------------------------------------------------------------- /neo/swf/SWF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF.h -------------------------------------------------------------------------------- /neo/swf/SWF_Bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Bitstream.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Bitstream.h -------------------------------------------------------------------------------- /neo/swf/SWF_Dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Dictionary.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Enums.h -------------------------------------------------------------------------------- /neo/swf/SWF_Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Events.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Image.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Load.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Main.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Names.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_ParmList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ParmList.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_ParmList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ParmList.h -------------------------------------------------------------------------------- /neo/swf/SWF_PlaceObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_PlaceObject.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Render.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_ScriptFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ScriptFunction.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_ScriptFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ScriptFunction.h -------------------------------------------------------------------------------- /neo/swf/SWF_ScriptObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ScriptObject.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_ScriptObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ScriptObject.h -------------------------------------------------------------------------------- /neo/swf/SWF_ScriptVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ScriptVar.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_ScriptVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ScriptVar.h -------------------------------------------------------------------------------- /neo/swf/SWF_ShapeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ShapeParser.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_ShapeParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_ShapeParser.h -------------------------------------------------------------------------------- /neo/swf/SWF_Shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Shapes.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Sounds.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_SpriteInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_SpriteInstance.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_SpriteInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_SpriteInstance.h -------------------------------------------------------------------------------- /neo/swf/SWF_Sprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Sprites.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_Sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Sprites.h -------------------------------------------------------------------------------- /neo/swf/SWF_Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Text.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_TextInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_TextInstance.cpp -------------------------------------------------------------------------------- /neo/swf/SWF_TextInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_TextInstance.h -------------------------------------------------------------------------------- /neo/swf/SWF_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Types.h -------------------------------------------------------------------------------- /neo/swf/SWF_Zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/swf/SWF_Zlib.cpp -------------------------------------------------------------------------------- /neo/sys/LightweightCompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/LightweightCompression.h -------------------------------------------------------------------------------- /neo/sys/PacketProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/PacketProcessor.cpp -------------------------------------------------------------------------------- /neo/sys/PacketProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/PacketProcessor.h -------------------------------------------------------------------------------- /neo/sys/Snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/Snapshot.cpp -------------------------------------------------------------------------------- /neo/sys/Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/Snapshot.h -------------------------------------------------------------------------------- /neo/sys/SnapshotProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/SnapshotProcessor.cpp -------------------------------------------------------------------------------- /neo/sys/SnapshotProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/SnapshotProcessor.h -------------------------------------------------------------------------------- /neo/sys/Snapshot_Jobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/Snapshot_Jobs.cpp -------------------------------------------------------------------------------- /neo/sys/Snapshot_Jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/Snapshot_Jobs.h -------------------------------------------------------------------------------- /neo/sys/common/achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/achievements.cpp -------------------------------------------------------------------------------- /neo/sys/common/achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/achievements.h -------------------------------------------------------------------------------- /neo/sys/common/localuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/localuser.cpp -------------------------------------------------------------------------------- /neo/sys/common/localuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/localuser.h -------------------------------------------------------------------------------- /neo/sys/common/savegame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/savegame.cpp -------------------------------------------------------------------------------- /neo/sys/common/session_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/session_local.cpp -------------------------------------------------------------------------------- /neo/sys/common/signin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/signin.cpp -------------------------------------------------------------------------------- /neo/sys/common/signin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/signin.h -------------------------------------------------------------------------------- /neo/sys/common/socket_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/common/socket_net.cpp -------------------------------------------------------------------------------- /neo/sys/linux/linux_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/linux/linux_main.cpp -------------------------------------------------------------------------------- /neo/sys/posix/posix_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/posix/posix_main.cpp -------------------------------------------------------------------------------- /neo/sys/posix/posix_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/posix/posix_public.h -------------------------------------------------------------------------------- /neo/sys/posix/posix_signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/posix/posix_signal.cpp -------------------------------------------------------------------------------- /neo/sys/sdl/sdl_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sdl/sdl_cpu.cpp -------------------------------------------------------------------------------- /neo/sys/sdl/sdl_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sdl/sdl_events.cpp -------------------------------------------------------------------------------- /neo/sys/sdl/sdl_glimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sdl/sdl_glimp.cpp -------------------------------------------------------------------------------- /neo/sys/sdl/sdl_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sdl/sdl_local.h -------------------------------------------------------------------------------- /neo/sys/sdl/sdl_qgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sdl/sdl_qgl.cpp -------------------------------------------------------------------------------- /neo/sys/sys_achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_achievements.cpp -------------------------------------------------------------------------------- /neo/sys/sys_achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_achievements.h -------------------------------------------------------------------------------- /neo/sys/sys_leaderboards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_leaderboards.h -------------------------------------------------------------------------------- /neo/sys/sys_lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_lobby.cpp -------------------------------------------------------------------------------- /neo/sys/sys_lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_lobby.h -------------------------------------------------------------------------------- /neo/sys/sys_lobby_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_lobby_backend.h -------------------------------------------------------------------------------- /neo/sys/sys_lobby_migrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_lobby_migrate.cpp -------------------------------------------------------------------------------- /neo/sys/sys_lobby_snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_lobby_snapshot.cpp -------------------------------------------------------------------------------- /neo/sys/sys_lobby_users.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_lobby_users.cpp -------------------------------------------------------------------------------- /neo/sys/sys_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_local.cpp -------------------------------------------------------------------------------- /neo/sys/sys_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_local.h -------------------------------------------------------------------------------- /neo/sys/sys_localuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_localuser.cpp -------------------------------------------------------------------------------- /neo/sys/sys_localuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_localuser.h -------------------------------------------------------------------------------- /neo/sys/sys_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_profile.cpp -------------------------------------------------------------------------------- /neo/sys/sys_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_profile.h -------------------------------------------------------------------------------- /neo/sys/sys_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_public.h -------------------------------------------------------------------------------- /neo/sys/sys_savegame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_savegame.cpp -------------------------------------------------------------------------------- /neo/sys/sys_savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_savegame.h -------------------------------------------------------------------------------- /neo/sys/sys_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_session.h -------------------------------------------------------------------------------- /neo/sys/sys_session_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_session_local.cpp -------------------------------------------------------------------------------- /neo/sys/sys_session_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_session_local.h -------------------------------------------------------------------------------- /neo/sys/sys_session_savegames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_session_savegames.h -------------------------------------------------------------------------------- /neo/sys/sys_signin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_signin.cpp -------------------------------------------------------------------------------- /neo/sys/sys_signin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_signin.h -------------------------------------------------------------------------------- /neo/sys/sys_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_stats.h -------------------------------------------------------------------------------- /neo/sys/sys_stats_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_stats_misc.h -------------------------------------------------------------------------------- /neo/sys/sys_voicechat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_voicechat.cpp -------------------------------------------------------------------------------- /neo/sys/sys_voicechat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/sys_voicechat.h -------------------------------------------------------------------------------- /neo/sys/win32/rc/doom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/rc/doom.rc -------------------------------------------------------------------------------- /neo/sys/win32/rc/doom_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/rc/doom_resource.h -------------------------------------------------------------------------------- /neo/sys/win32/rc/res/doom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/rc/res/doom.ico -------------------------------------------------------------------------------- /neo/sys/win32/win_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_cpu.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_glimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_glimp.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_input.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_input.h -------------------------------------------------------------------------------- /neo/sys/win32/win_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_local.h -------------------------------------------------------------------------------- /neo/sys/win32/win_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_main.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_nanoafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_nanoafx.h -------------------------------------------------------------------------------- /neo/sys/win32/win_qgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_qgl.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_shared.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_snd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_snd.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_syscon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_syscon.cpp -------------------------------------------------------------------------------- /neo/sys/win32/win_wndproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/sys/win32/win_wndproc.cpp -------------------------------------------------------------------------------- /neo/ui/BindWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/BindWindow.cpp -------------------------------------------------------------------------------- /neo/ui/BindWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/BindWindow.h -------------------------------------------------------------------------------- /neo/ui/ChoiceWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/ChoiceWindow.cpp -------------------------------------------------------------------------------- /neo/ui/ChoiceWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/ChoiceWindow.h -------------------------------------------------------------------------------- /neo/ui/DeviceContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/DeviceContext.cpp -------------------------------------------------------------------------------- /neo/ui/DeviceContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/DeviceContext.h -------------------------------------------------------------------------------- /neo/ui/EditWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/EditWindow.cpp -------------------------------------------------------------------------------- /neo/ui/EditWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/EditWindow.h -------------------------------------------------------------------------------- /neo/ui/FieldWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/FieldWindow.cpp -------------------------------------------------------------------------------- /neo/ui/FieldWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/FieldWindow.h -------------------------------------------------------------------------------- /neo/ui/GameBearShootWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GameBearShootWindow.cpp -------------------------------------------------------------------------------- /neo/ui/GameBearShootWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GameBearShootWindow.h -------------------------------------------------------------------------------- /neo/ui/GameBustOutWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GameBustOutWindow.cpp -------------------------------------------------------------------------------- /neo/ui/GameBustOutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GameBustOutWindow.h -------------------------------------------------------------------------------- /neo/ui/GameSSDWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GameSSDWindow.cpp -------------------------------------------------------------------------------- /neo/ui/GameSSDWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GameSSDWindow.h -------------------------------------------------------------------------------- /neo/ui/GuiScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GuiScript.cpp -------------------------------------------------------------------------------- /neo/ui/GuiScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/GuiScript.h -------------------------------------------------------------------------------- /neo/ui/ListGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/ListGUI.cpp -------------------------------------------------------------------------------- /neo/ui/ListGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/ListGUI.h -------------------------------------------------------------------------------- /neo/ui/ListGUILocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/ListGUILocal.h -------------------------------------------------------------------------------- /neo/ui/ListWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/ListWindow.cpp -------------------------------------------------------------------------------- /neo/ui/ListWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/ListWindow.h -------------------------------------------------------------------------------- /neo/ui/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/Rectangle.h -------------------------------------------------------------------------------- /neo/ui/RegExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/RegExp.cpp -------------------------------------------------------------------------------- /neo/ui/RegExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/RegExp.h -------------------------------------------------------------------------------- /neo/ui/RegExp_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/RegExp_old.h -------------------------------------------------------------------------------- /neo/ui/RenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/RenderWindow.cpp -------------------------------------------------------------------------------- /neo/ui/RenderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/RenderWindow.h -------------------------------------------------------------------------------- /neo/ui/SimpleWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/SimpleWindow.cpp -------------------------------------------------------------------------------- /neo/ui/SimpleWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/SimpleWindow.h -------------------------------------------------------------------------------- /neo/ui/SliderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/SliderWindow.cpp -------------------------------------------------------------------------------- /neo/ui/SliderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/SliderWindow.h -------------------------------------------------------------------------------- /neo/ui/UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/UserInterface.cpp -------------------------------------------------------------------------------- /neo/ui/UserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/UserInterface.h -------------------------------------------------------------------------------- /neo/ui/UserInterfaceLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/UserInterfaceLocal.h -------------------------------------------------------------------------------- /neo/ui/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/Window.cpp -------------------------------------------------------------------------------- /neo/ui/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/Window.h -------------------------------------------------------------------------------- /neo/ui/Winvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/Winvar.cpp -------------------------------------------------------------------------------- /neo/ui/Winvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/RBDOOM-3-BFG/HEAD/neo/ui/Winvar.h --------------------------------------------------------------------------------