├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CleanDirectoryList.cmake ├── CreateLaunchers.cmake ├── FindDRPC.cmake ├── FindFluidSynth.cmake ├── FindMPG123.cmake ├── FindSndFile.cmake ├── GeoIP ├── CMakeLists.txt ├── COPYING ├── GeoIP.c ├── GeoIP.h ├── GeoIP.vcproj └── GeoIP_internal.h ├── LICENSE.txt ├── README.md ├── bzip2 ├── CHANGES ├── CMakeLists.txt ├── LICENSE ├── README ├── blocksort.c ├── bzip2.vcproj ├── bzlib.c ├── bzlib.h ├── bzlib_private.h ├── compress.c ├── crctable.c ├── decompress.c ├── huffman.c └── randtable.c ├── docs ├── BUILDLIC.TXT ├── README.asm ├── README.gl ├── Skulltag HOWTO compile.txt ├── Skulltag TODO List.txt ├── Skulltag Version History.txt ├── Skulltag-license.txt ├── commands.txt ├── console.css ├── console.html ├── doomlic.txt ├── history.txt ├── rh-log.txt ├── zandronum-history.txt ├── zandronum-launcher-protocol.txt └── zdoom.txt ├── dumb ├── CMakeLists.txt ├── ChangeLog ├── docs │ ├── deprec.txt │ ├── duhspecs.txt │ ├── dumb.txt │ ├── dumbfull.txt │ ├── faq.txt │ ├── fnptr.txt │ ├── howto.txt │ ├── modplug.txt │ ├── ptr.txt │ └── tutorial.txt ├── examples │ ├── dumb.ini │ ├── dumb2wav.c │ ├── dumbout.c │ ├── dumbplay.c │ └── playduh.c ├── include │ ├── dumb.h │ └── internal │ │ ├── barray.h │ │ ├── blip_buf.h │ │ ├── dumb.h │ │ ├── it.h │ │ └── riff.h ├── licence.txt ├── readme.txt ├── release.txt ├── src │ ├── core │ │ ├── atexit.c │ │ ├── duhlen.c │ │ ├── duhtag.c │ │ ├── dumbfile.c │ │ ├── loadduh.c │ │ ├── makeduh.c │ │ ├── rawsig.c │ │ ├── readduh.c │ │ ├── register.c │ │ ├── rendduh.c │ │ ├── rendsig.c │ │ └── unload.c │ ├── helpers │ │ ├── barray.c │ │ ├── blip_buf.c │ │ ├── clickrem.c │ │ ├── memfile.c │ │ ├── resamp2.inc │ │ ├── resamp3.inc │ │ ├── resample.c │ │ ├── resample.inc │ │ ├── riff.c │ │ ├── sampbuf.c │ │ ├── silence.c │ │ └── stdfile.c │ ├── it │ │ ├── itload.c │ │ ├── itload2.c │ │ ├── itmisc.c │ │ ├── itorder.c │ │ ├── itread.c │ │ ├── itread2.c │ │ ├── itrender.c │ │ ├── itunload.c │ │ ├── load669.c │ │ ├── load6692.c │ │ ├── loadasy.c │ │ ├── loadasy2.c │ │ ├── loadmod.c │ │ ├── loadmod2.c │ │ ├── loadmtm.c │ │ ├── loadmtm2.c │ │ ├── loadokt.c │ │ ├── loadokt2.c │ │ ├── loadoldpsm.c │ │ ├── loadoldpsm2.c │ │ ├── loadpsm.c │ │ ├── loadpsm2.c │ │ ├── loadptm.c │ │ ├── loadptm2.c │ │ ├── loadriff.c │ │ ├── loadriff2.c │ │ ├── loads3m.c │ │ ├── loads3m2.c │ │ ├── loadstm.c │ │ ├── loadstm2.c │ │ ├── loadxm.c │ │ ├── loadxm2.c │ │ ├── ptmeffect.c │ │ ├── read669.c │ │ ├── read6692.c │ │ ├── readam.c │ │ ├── readasy.c │ │ ├── readdsmf.c │ │ ├── readmod.c │ │ ├── readmod2.c │ │ ├── readmtm.c │ │ ├── readokt.c │ │ ├── readokt2.c │ │ ├── readoldpsm.c │ │ ├── readpsm.c │ │ ├── readptm.c │ │ ├── readriff.c │ │ ├── reads3m.c │ │ ├── reads3m2.c │ │ ├── readstm.c │ │ ├── readstm2.c │ │ ├── readxm.c │ │ ├── readxm2.c │ │ └── xmeffect.c │ ├── sigtypes │ │ ├── combine.c │ │ ├── sample.c │ │ ├── sequence.c │ │ └── sterpan.c │ └── tools │ │ └── it │ │ ├── load_it.cpp │ │ ├── modulus.h │ │ └── typedef.hpp ├── todo.txt └── vc6 │ └── dumb_static │ └── dumb_static.vcproj ├── editors ├── GZDoom.cfg ├── GZDoom_Heretic.cfg └── GZDoom_Hexen.cfg ├── game-music-emu ├── CMakeLists.txt ├── changes.txt ├── design.txt ├── game-music-emu.vcproj ├── gme.txt ├── gme │ ├── Ay_Apu.cpp │ ├── Ay_Apu.h │ ├── Ay_Cpu.cpp │ ├── Ay_Cpu.h │ ├── Ay_Emu.cpp │ ├── Ay_Emu.h │ ├── Blip_Buffer.cpp │ ├── Blip_Buffer.h │ ├── CMakeLists.txt │ ├── Classic_Emu.cpp │ ├── Classic_Emu.h │ ├── Data_Reader.cpp │ ├── Data_Reader.h │ ├── Dual_Resampler.cpp │ ├── Dual_Resampler.h │ ├── Effects_Buffer.cpp │ ├── Effects_Buffer.h │ ├── Fir_Resampler.cpp │ ├── Fir_Resampler.h │ ├── Gb_Apu.cpp │ ├── Gb_Apu.h │ ├── Gb_Cpu.cpp │ ├── Gb_Cpu.h │ ├── Gb_Oscs.cpp │ ├── Gb_Oscs.h │ ├── Gbs_Emu.cpp │ ├── Gbs_Emu.h │ ├── Gme_File.cpp │ ├── Gme_File.h │ ├── Gym_Emu.cpp │ ├── Gym_Emu.h │ ├── Hes_Apu.cpp │ ├── Hes_Apu.h │ ├── Hes_Cpu.cpp │ ├── Hes_Cpu.h │ ├── Hes_Emu.cpp │ ├── Hes_Emu.h │ ├── Kss_Cpu.cpp │ ├── Kss_Cpu.h │ ├── Kss_Emu.cpp │ ├── Kss_Emu.h │ ├── Kss_Scc_Apu.cpp │ ├── Kss_Scc_Apu.h │ ├── M3u_Playlist.cpp │ ├── M3u_Playlist.h │ ├── Multi_Buffer.cpp │ ├── Multi_Buffer.h │ ├── Music_Emu.cpp │ ├── Music_Emu.h │ ├── Nes_Apu.cpp │ ├── Nes_Apu.h │ ├── Nes_Cpu.cpp │ ├── Nes_Cpu.h │ ├── Nes_Fme7_Apu.cpp │ ├── Nes_Fme7_Apu.h │ ├── Nes_Namco_Apu.cpp │ ├── Nes_Namco_Apu.h │ ├── Nes_Oscs.cpp │ ├── Nes_Oscs.h │ ├── Nes_Vrc6_Apu.cpp │ ├── Nes_Vrc6_Apu.h │ ├── Nsf_Emu.cpp │ ├── Nsf_Emu.h │ ├── Nsfe_Emu.cpp │ ├── Nsfe_Emu.h │ ├── Sap_Apu.cpp │ ├── Sap_Apu.h │ ├── Sap_Cpu.cpp │ ├── Sap_Cpu.h │ ├── Sap_Emu.cpp │ ├── Sap_Emu.h │ ├── Sms_Apu.cpp │ ├── Sms_Apu.h │ ├── Sms_Oscs.h │ ├── Snes_Spc.cpp │ ├── Snes_Spc.h │ ├── Spc_Cpu.cpp │ ├── Spc_Cpu.h │ ├── Spc_Dsp.cpp │ ├── Spc_Dsp.h │ ├── Spc_Emu.cpp │ ├── Spc_Emu.h │ ├── Spc_Filter.cpp │ ├── Spc_Filter.h │ ├── Vgm_Emu.cpp │ ├── Vgm_Emu.h │ ├── Vgm_Emu_Impl.cpp │ ├── Vgm_Emu_Impl.h │ ├── Ym2413_Emu.cpp │ ├── Ym2413_Emu.h │ ├── Ym2612_Emu.cpp │ ├── Ym2612_Emu.h │ ├── blargg_common.h │ ├── blargg_config.h │ ├── blargg_endian.h │ ├── blargg_source.h │ ├── gb_cpu_io.h │ ├── gme.cpp │ ├── gme.h │ ├── gme_types.h │ ├── gme_types.h.in │ ├── hes_cpu_io.h │ ├── nes_cpu_io.h │ └── sap_cpu_io.h ├── license.txt └── readme.txt ├── gdtoa ├── CMakeLists.txt ├── README ├── arithchk.c ├── dmisc.c ├── dtoa.c ├── g_Qfmt.c ├── g__fmt.c ├── g_ddfmt.c ├── g_dfmt.c ├── g_ffmt.c ├── g_xLfmt.c ├── g_xfmt.c ├── gdtoa.c ├── gdtoa.h ├── gdtoa.vcproj ├── gdtoa_fltrnds.h ├── gdtoaimp.h ├── gethex.c ├── gmisc.c ├── hd_init.c ├── hexnan.c ├── misc.c ├── qnan.c ├── smisc.c ├── strtoIQ.c ├── strtoId.c ├── strtoIdd.c ├── strtoIf.c ├── strtoIg.c ├── strtoIx.c ├── strtoIxL.c ├── strtod.c ├── strtodI.c ├── strtodg.c ├── strtodnrp.c ├── strtof.c ├── strtopQ.c ├── strtopd.c ├── strtopdd.c ├── strtopf.c ├── strtopx.c ├── strtopxL.c ├── strtorQ.c ├── strtord.c ├── strtordd.c ├── strtorf.c ├── strtorx.c ├── strtorxL.c ├── sum.c └── ulp.c ├── getwad ├── GetWAD.sln ├── docs │ ├── bg.jpg │ ├── getwad.hhp │ ├── getwad.htm │ └── progref.htm ├── readme.txt ├── setup │ └── getwad.nsi ├── src │ ├── GetWAD.vcproj │ ├── base64.c │ ├── base64.h │ ├── browse.bmp │ ├── del.bmp │ ├── down.bmp │ ├── getwad.c │ ├── getwad.def │ ├── getwad.h │ ├── getwad.ico │ ├── getwad.rc │ ├── getwade.c │ ├── getwade.def │ ├── getwade.rc │ ├── getwadrc.h │ ├── inet.c │ ├── inet.h │ ├── makefile │ ├── makefile.unx │ ├── makefile.win │ ├── manifest │ ├── misc.c │ ├── misc.h │ ├── new.bmp │ ├── prop.bmp │ ├── unzip.c │ ├── unzip.h │ └── up.bmp └── unix │ └── getwad.ini ├── gzdoom.vcproj ├── jpeg-6b ├── CMakeLists.txt ├── README ├── jcomapi.c ├── jconfig.h ├── jdapimin.c ├── jdapistd.c ├── jdatasrc.c ├── jdcoefct.c ├── jdcolor.c ├── jdct.h ├── jddctmgr.c ├── jdhuff.c ├── jdhuff.h ├── jdinput.c ├── jdmainct.c ├── jdmarker.c ├── jdmaster.c ├── jdmerge.c ├── jdphuff.c ├── jdpostct.c ├── jdsample.c ├── jerror.c ├── jerror.h ├── jidctint.c ├── jinclude.h ├── jmemmgr.c ├── jmorecfg.h ├── jpeg-6b.vcproj ├── jpegint.h ├── jpeglib.h ├── jutils.c ├── jversion.h └── readme-zdoom.txt ├── launcher-templates ├── genericlauncher.cmd.in ├── launcher.env.cmd.in ├── perconfig.vcproj.user.in ├── perconfig.vcxproj.user.in ├── targetlauncher.cmd.in ├── vcproj.user.in └── vcxproj.user.in ├── lzma ├── C │ ├── 7z.h │ ├── 7zBuf.c │ ├── 7zBuf.h │ ├── 7zCrc.c │ ├── 7zCrc.h │ ├── 7zCrcOpt.c │ ├── 7zDec.c │ ├── 7zIn.c │ ├── 7zStream.c │ ├── 7zVersion.h │ ├── Bcj2.c │ ├── Bcj2.h │ ├── Bra.c │ ├── Bra.h │ ├── Bra86.c │ ├── CpuArch.c │ ├── CpuArch.h │ ├── LzFind.c │ ├── LzFind.h │ ├── LzFindMt.c │ ├── LzFindMt.h │ ├── LzHash.h │ ├── Lzma2Dec.c │ ├── Lzma2Dec.h │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── LzmaEnc.c │ ├── LzmaEnc.h │ ├── Threads.c │ ├── Threads.h │ └── Types.h ├── CMakeLists.txt ├── history.txt ├── lzma.txt └── lzmalib.vcproj ├── masterserver ├── CMakeLists.txt ├── Makefile ├── i_system.h ├── main.cpp ├── main.h ├── masterserver.sln ├── masterserver.vcproj ├── network.cpp └── network.h ├── output_sdl ├── CMakeLists.txt └── output_sdl.c ├── protocolspec ├── generator │ ├── codegenerator.py │ ├── outputfile.py │ ├── parametertypes.py │ └── spec.py ├── spec.game.txt ├── spec.map.txt ├── spec.misc.txt ├── spec.players.txt ├── spec.print.txt ├── spec.protocol.txt ├── spec.sectors.txt ├── spec.sounds.txt ├── spec.team.txt ├── spec.things.txt ├── spec.txt └── spec.weapons.txt ├── rcon_utility ├── MD5Checksum.cpp ├── MD5Checksum.h ├── MD5ChecksumDefines.h ├── RCON Utility To-Do List.txt ├── i_system.h ├── main.cpp ├── main.h ├── rcon_utility.ico ├── rcon_utility.vcproj ├── resource.aps ├── resource.h ├── resource.rc ├── zstrformat.cpp ├── zstring.cpp └── zstring.h ├── specs ├── fmod_version.txt ├── udmf.txt ├── udmf_zdoom.txt ├── usdf.txt └── usdf_zdoom.txt ├── sqlite ├── CMakeLists.txt └── sqlite3.vcproj ├── src ├── CMakeLists.txt ├── EnumToString.h ├── Linux │ └── platform.h ├── __autostart.cpp ├── actionspecials.h ├── actor.h ├── actorptrselect.cpp ├── actorptrselect.h ├── am_map.cpp ├── am_map.h ├── announcer.cpp ├── announcer.h ├── asm_ia32 │ ├── a.asm │ ├── misc.asm │ ├── tmap.asm │ ├── tmap2.asm │ └── tmap3.asm ├── asm_x86_64 │ ├── tmap3.asm │ └── tmap3.s ├── astar.cpp ├── astar.h ├── autosegs.h ├── basicinlines.h ├── basictypes.h ├── botcommands.cpp ├── botcommands.h ├── botpath.cpp ├── botpath.h ├── bots.cpp ├── bots.h ├── browser.cpp ├── browser.h ├── c_bind.cpp ├── c_bind.h ├── c_cmds.cpp ├── c_console.cpp ├── c_console.h ├── c_cvars.cpp ├── c_cvars.h ├── c_dispatch.cpp ├── c_dispatch.h ├── c_expr.cpp ├── callvote.cpp ├── callvote.h ├── campaign.cpp ├── campaign.h ├── chat.cpp ├── chat.h ├── cl_commands.cpp ├── cl_commands.h ├── cl_demo.cpp ├── cl_demo.h ├── cl_main.cpp ├── cl_main.h ├── cl_pred.cpp ├── cl_statistics.cpp ├── cl_statistics.h ├── cmdlib.cpp ├── cmdlib.h ├── colormatcher.cpp ├── colormatcher.h ├── compatibility.cpp ├── compatibility.h ├── configfile.cpp ├── configfile.h ├── cooperative.cpp ├── cooperative.h ├── d_dehacked.cpp ├── d_dehacked.h ├── d_event.h ├── d_gui.h ├── d_iwad.cpp ├── d_main.cpp ├── d_main.h ├── d_net.cpp ├── d_net.h ├── d_netinf.h ├── d_netinfo.cpp ├── d_player.h ├── d_protocol.cpp ├── d_protocol.h ├── d_ticcmd.h ├── deathmatch.cpp ├── deathmatch.h ├── decallib.cpp ├── decallib.h ├── dobject.cpp ├── dobject.h ├── dobjgc.cpp ├── dobjtype.cpp ├── dobjtype.h ├── domination.cpp ├── domination.h ├── doomdata.h ├── doomdef.cpp ├── doomdef.h ├── doomerrors.h ├── doomstat.cpp ├── doomstat.h ├── doomtype.h ├── dscript.h ├── dsectoreffect.cpp ├── dsectoreffect.h ├── dthinker.cpp ├── dthinker.h ├── duel.cpp ├── duel.h ├── empty.cpp ├── errors.h ├── f_wipe.cpp ├── f_wipe.h ├── farchive.cpp ├── farchive.h ├── files.cpp ├── files.h ├── g_doom │ ├── a_arachnotron.cpp │ ├── a_archvile.cpp │ ├── a_bossbrain.cpp │ ├── a_bruiser.cpp │ ├── a_cacodemon.cpp │ ├── a_cyberdemon.cpp │ ├── a_demon.cpp │ ├── a_doomartifacts.cpp │ ├── a_doomglobal.h │ ├── a_doomimp.cpp │ ├── a_doommisc.cpp │ ├── a_doomweaps.cpp │ ├── a_fatso.cpp │ ├── a_keen.cpp │ ├── a_lostsoul.cpp │ ├── a_painelemental.cpp │ ├── a_possessed.cpp │ ├── a_revenant.cpp │ ├── a_scriptedmarine.cpp │ ├── a_spidermaster.cpp │ └── doom_sbar.cpp ├── g_game.cpp ├── g_game.h ├── g_heretic │ ├── a_chicken.cpp │ ├── a_dsparil.cpp │ ├── a_hereticartifacts.cpp │ ├── a_hereticimp.cpp │ ├── a_hereticmisc.cpp │ ├── a_hereticweaps.cpp │ ├── a_ironlich.cpp │ ├── a_knight.cpp │ └── a_wizard.cpp ├── g_hexen │ ├── a_bats.cpp │ ├── a_bishop.cpp │ ├── a_blastradius.cpp │ ├── a_boostarmor.cpp │ ├── a_centaur.cpp │ ├── a_clericflame.cpp │ ├── a_clericholy.cpp │ ├── a_clericmace.cpp │ ├── a_clericstaff.cpp │ ├── a_dragon.cpp │ ├── a_fighteraxe.cpp │ ├── a_fighterhammer.cpp │ ├── a_fighterplayer.cpp │ ├── a_fighterquietus.cpp │ ├── a_firedemon.cpp │ ├── a_flechette.cpp │ ├── a_fog.cpp │ ├── a_healingradius.cpp │ ├── a_heresiarch.cpp │ ├── a_hexenglobal.h │ ├── a_hexenmisc.cpp │ ├── a_hexenspecialdecs.cpp │ ├── a_iceguy.cpp │ ├── a_korax.cpp │ ├── a_magecone.cpp │ ├── a_magelightning.cpp │ ├── a_magestaff.cpp │ ├── a_pig.cpp │ ├── a_serpent.cpp │ ├── a_spike.cpp │ ├── a_summon.cpp │ ├── a_teleportother.cpp │ └── a_wraith.cpp ├── g_hub.cpp ├── g_hub.h ├── g_level.cpp ├── g_level.h ├── g_mapinfo.cpp ├── g_raven │ ├── a_artitele.cpp │ ├── a_minotaur.cpp │ └── ravenshared.h ├── g_shared │ ├── a_action.cpp │ ├── a_action.h │ ├── a_armor.cpp │ ├── a_artifacts.cpp │ ├── a_artifacts.h │ ├── a_bridge.cpp │ ├── a_camera.cpp │ ├── a_cooperativebackpack.cpp │ ├── a_debris.cpp │ ├── a_decals.cpp │ ├── a_fastprojectile.cpp │ ├── a_flags.cpp │ ├── a_flashfader.cpp │ ├── a_fountain.cpp │ ├── a_hatetarget.cpp │ ├── a_icon.cpp │ ├── a_keys.cpp │ ├── a_keys.h │ ├── a_lightning.cpp │ ├── a_lightning.h │ ├── a_mapmarker.cpp │ ├── a_morph.cpp │ ├── a_morph.h │ ├── a_movingcamera.cpp │ ├── a_movingcamera.h │ ├── a_pickups.cpp │ ├── a_pickups.h │ ├── a_puzzleitems.cpp │ ├── a_quake.cpp │ ├── a_randomspawner.cpp │ ├── a_returnzone.cpp │ ├── a_secrettrigger.cpp │ ├── a_sectoraction.cpp │ ├── a_setcolor.cpp │ ├── a_sharedglobal.h │ ├── a_skies.cpp │ ├── a_soundenvironment.cpp │ ├── a_soundsequence.cpp │ ├── a_spark.cpp │ ├── a_specialspot.cpp │ ├── a_specialspot.h │ ├── a_springpad.cpp │ ├── a_waterzone.cpp │ ├── a_weaponpiece.cpp │ ├── a_weaponpiece.h │ ├── a_weapons.cpp │ ├── hudmessages.cpp │ ├── pwo.cpp │ ├── pwo.h │ ├── sbar.h │ ├── sbar_mugshot.cpp │ ├── sbarinfo.cpp │ ├── sbarinfo.h │ ├── sbarinfo_commands.cpp │ ├── shared_hud.cpp │ ├── shared_sbar.cpp │ ├── st_hud.cpp │ └── st_hud.h ├── g_skill.cpp ├── g_strife │ ├── a_acolyte.cpp │ ├── a_alienspectres.cpp │ ├── a_coin.cpp │ ├── a_crusader.cpp │ ├── a_entityboss.cpp │ ├── a_inquisitor.cpp │ ├── a_loremaster.cpp │ ├── a_oracle.cpp │ ├── a_programmer.cpp │ ├── a_reaver.cpp │ ├── a_rebels.cpp │ ├── a_sentinel.cpp │ ├── a_spectral.cpp │ ├── a_stalker.cpp │ ├── a_strifeglobal.h │ ├── a_strifeitems.cpp │ ├── a_strifestuff.cpp │ ├── a_strifeweapons.cpp │ ├── a_templar.cpp │ ├── a_thingstoblowup.cpp │ └── strife_sbar.cpp ├── gameconfigfile.cpp ├── gameconfigfile.h ├── gamemode.cpp ├── gamemode.h ├── gamemode_enums.h ├── gametype.h ├── gccinlines.h ├── gi.cpp ├── gi.h ├── gitinfo.cpp ├── gl │ ├── api │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── gl_api.cpp │ │ ├── gl_api.h │ │ ├── glcorearb.h │ │ ├── glext.h │ │ └── wglext.h │ ├── data │ │ ├── gl_data.cpp │ │ ├── gl_data.h │ │ ├── gl_portaldata.cpp │ │ ├── gl_sections.cpp │ │ ├── gl_sections.h │ │ ├── gl_setup.cpp │ │ ├── gl_vertexbuffer.cpp │ │ └── gl_vertexbuffer.h │ ├── dynlights │ │ ├── a_dynlight.cpp │ │ ├── gl_dynlight.cpp │ │ ├── gl_dynlight.h │ │ ├── gl_dynlight1.cpp │ │ ├── gl_glow.cpp │ │ ├── gl_glow.h │ │ ├── gl_lightbuffer.cpp │ │ └── gl_lightbuffer.h │ ├── gl_builddraw.cpp │ ├── gl_functions.h │ ├── hqnx │ │ ├── common.h │ │ ├── hq2x.cpp │ │ ├── hq3x.cpp │ │ ├── hq4x.cpp │ │ ├── hqx.h │ │ ├── init.cpp │ │ ├── license.txt │ │ └── mystdint.h │ ├── hqnx_asm │ │ ├── hq2x_asm.cpp │ │ ├── hq3x_asm.cpp │ │ ├── hq4x_asm.cpp │ │ ├── hqnx_asm.h │ │ ├── hqnx_asm_Image.cpp │ │ └── hqnx_asm_Image.h │ ├── models │ │ ├── gl_models.cpp │ │ ├── gl_models.h │ │ ├── gl_models_md2.cpp │ │ ├── gl_models_md3.cpp │ │ ├── gl_voxels.cpp │ │ └── tab_anorms.h │ ├── renderer │ │ ├── gl_colormap.h │ │ ├── gl_lightdata.cpp │ │ ├── gl_lightdata.h │ │ ├── gl_renderer.cpp │ │ ├── gl_renderer.h │ │ ├── gl_renderstate.cpp │ │ └── gl_renderstate.h │ ├── scene │ │ ├── gl_bsp.cpp │ │ ├── gl_clipper.cpp │ │ ├── gl_clipper.h │ │ ├── gl_decal.cpp │ │ ├── gl_drawinfo.cpp │ │ ├── gl_drawinfo.h │ │ ├── gl_fakeflat.cpp │ │ ├── gl_flats.cpp │ │ ├── gl_portal.cpp │ │ ├── gl_portal.h │ │ ├── gl_renderhacks.cpp │ │ ├── gl_scene.cpp │ │ ├── gl_sky.cpp │ │ ├── gl_skydome.cpp │ │ ├── gl_sprite.cpp │ │ ├── gl_spritelight.cpp │ │ ├── gl_vertex.cpp │ │ ├── gl_wall.h │ │ ├── gl_walls.cpp │ │ ├── gl_walls_draw.cpp │ │ └── gl_weapon.cpp │ ├── shaders │ │ ├── gl_shader.cpp │ │ ├── gl_shader.h │ │ ├── gl_texshader.cpp │ │ └── gl_texshader.h │ ├── system │ │ ├── gl_cvars.h │ │ ├── gl_framebuffer.cpp │ │ ├── gl_framebuffer.h │ │ ├── gl_interface.cpp │ │ ├── gl_interface.h │ │ ├── gl_menu.cpp │ │ ├── gl_system.h │ │ ├── gl_threads.cpp │ │ ├── gl_threads.h │ │ └── gl_wipe.cpp │ ├── textures │ │ ├── gl_bitmap.cpp │ │ ├── gl_bitmap.h │ │ ├── gl_hirestex.cpp │ │ ├── gl_hqresize.cpp │ │ ├── gl_hwtexture.cpp │ │ ├── gl_hwtexture.h │ │ ├── gl_material.cpp │ │ ├── gl_material.h │ │ ├── gl_skyboxtexture.cpp │ │ ├── gl_skyboxtexture.h │ │ ├── gl_texture.cpp │ │ ├── gl_texture.h │ │ ├── gl_translate.cpp │ │ └── gl_translate.h │ └── utility │ │ ├── gl_clock.cpp │ │ ├── gl_clock.h │ │ ├── gl_convert.h │ │ ├── gl_cycler.cpp │ │ ├── gl_cycler.h │ │ ├── gl_geometric.cpp │ │ ├── gl_geometric.h │ │ └── gl_templates.h ├── gstrings.h ├── hu_stuff.h ├── huffman │ ├── bitreader.cpp │ ├── bitreader.h │ ├── bitwriter.cpp │ ├── bitwriter.h │ ├── codec.h │ ├── huffcodec.cpp │ ├── huffcodec.h │ ├── huffman.cpp │ └── huffman.h ├── i_cd.h ├── i_movie.h ├── i_net.cpp ├── i_net.h ├── i_video.h ├── info.cpp ├── info.h ├── intermission │ ├── intermission.cpp │ ├── intermission.h │ └── intermission_parse.cpp ├── invasion.cpp ├── invasion.h ├── joinqueue.cpp ├── joinqueue.h ├── keysections.cpp ├── lastmanstanding.cpp ├── lastmanstanding.h ├── lists.h ├── lumpconfigfile.cpp ├── lumpconfigfile.h ├── m_alloc.cpp ├── m_alloc.h ├── m_argv.cpp ├── m_argv.h ├── m_bbox.cpp ├── m_bbox.h ├── m_cheat.cpp ├── m_cheat.h ├── m_crc32.h ├── m_fixed.h ├── m_joy.cpp ├── m_joy.h ├── m_misc.cpp ├── m_misc.h ├── m_oldrandom.cpp ├── m_oldrandom.h ├── m_png.cpp ├── m_png.h ├── m_random.cpp ├── m_random.h ├── m_specialpaths.cpp ├── m_swap.h ├── maprotation.cpp ├── maprotation.h ├── md5.cpp ├── md5.h ├── medal.cpp ├── medal.h ├── memarena.cpp ├── memarena.h ├── menu │ ├── browsermenu.cpp │ ├── colorpickermenu.cpp │ ├── freeformmenu.cpp │ ├── freeformmenuitems.h │ ├── joystickmenu.cpp │ ├── listmenu.cpp │ ├── loadsavemenu.cpp │ ├── menu.cpp │ ├── menu.h │ ├── menudef.cpp │ ├── menuinput.cpp │ ├── messagebox.cpp │ ├── multiplayermenu.cpp │ ├── optionmenu.cpp │ ├── optionmenuitems.h │ ├── playerdisplay.cpp │ ├── playermenu.cpp │ ├── readthis.cpp │ └── videomenu.cpp ├── mscinlines.h ├── mus2midi.cpp ├── mus2midi.h ├── name.cpp ├── name.h ├── namedef.h ├── network.cpp ├── network.h ├── network │ ├── cl_auth.cpp │ ├── cl_auth.h │ ├── netcommand.cpp │ ├── netcommand.h │ ├── nettraffic.cpp │ ├── nettraffic.h │ ├── packetarchive.cpp │ ├── packetarchive.h │ ├── srp.cpp │ ├── srp.h │ ├── sv_auth.cpp │ └── sv_auth.h ├── network_enums.h ├── networkheaders.h ├── networkshared.cpp ├── networkshared.h ├── nodebuild.cpp ├── nodebuild.h ├── nodebuild_classify_nosse2.cpp ├── nodebuild_classify_sse2.cpp ├── nodebuild_events.cpp ├── nodebuild_extract.cpp ├── nodebuild_gl.cpp ├── nodebuild_utility.cpp ├── oplsynth │ ├── OPL3.cpp │ ├── deftypes.h │ ├── dosbox │ │ ├── opl.cpp │ │ └── opl.h │ ├── fmopl.cpp │ ├── mlopl.cpp │ ├── mlopl_io.cpp │ ├── music_opl_mididevice.cpp │ ├── music_opldumper_mididevice.cpp │ ├── muslib.h │ ├── opl.h │ ├── opl_mus_player.cpp │ └── opl_mus_player.h ├── p_3dfloors.cpp ├── p_3dfloors.h ├── p_3dmidtex.cpp ├── p_3dmidtex.h ├── p_acs.cpp ├── p_acs.h ├── p_buildmap.cpp ├── p_ceiling.cpp ├── p_conversation.cpp ├── p_conversation.h ├── p_doors.cpp ├── p_effect.cpp ├── p_effect.h ├── p_enemy.cpp ├── p_enemy.h ├── p_floor.cpp ├── p_glnodes.cpp ├── p_interaction.cpp ├── p_lights.cpp ├── p_linkedsectors.cpp ├── p_lnspec.cpp ├── p_lnspec.h ├── p_local.h ├── p_map.cpp ├── p_maputl.cpp ├── p_mobj.cpp ├── p_pillar.cpp ├── p_plats.cpp ├── p_pspr.cpp ├── p_pspr.h ├── p_saveg.cpp ├── p_saveg.h ├── p_sectors.cpp ├── p_setup.cpp ├── p_setup.h ├── p_sight.cpp ├── p_slopes.cpp ├── p_spec.cpp ├── p_spec.h ├── p_states.cpp ├── p_switch.cpp ├── p_teleport.cpp ├── p_terrain.cpp ├── p_terrain.h ├── p_things.cpp ├── p_tick.cpp ├── p_tick.h ├── p_trace.cpp ├── p_trace.h ├── p_udmf.cpp ├── p_udmf.h ├── p_usdf.cpp ├── p_user.cpp ├── p_writemap.cpp ├── p_xlat.cpp ├── parsecontext.cpp ├── parsecontext.h ├── platform.cpp ├── platform.h ├── po_man.cpp ├── po_man.h ├── possession.cpp ├── possession.h ├── r_3dfloors.cpp ├── r_3dfloors.h ├── r_bsp.cpp ├── r_bsp.h ├── r_data │ ├── colormaps.cpp │ ├── colormaps.h │ ├── r_interpolate.cpp │ ├── r_interpolate.h │ ├── r_translate.cpp │ ├── r_translate.h │ ├── renderstyle.cpp │ ├── renderstyle.h │ ├── sprites.cpp │ ├── sprites.h │ ├── voxels.cpp │ └── voxels.h ├── r_defs.h ├── r_draw.cpp ├── r_draw.h ├── r_drawt.cpp ├── r_local.h ├── r_main.cpp ├── r_main.h ├── r_plane.cpp ├── r_plane.h ├── r_polymost.cpp ├── r_polymost.h ├── r_renderer.h ├── r_segs.cpp ├── r_segs.h ├── r_sky.cpp ├── r_sky.h ├── r_state.h ├── r_swrenderer.cpp ├── r_swrenderer.h ├── r_things.cpp ├── r_things.h ├── r_utility.cpp ├── r_utility.h ├── resourcefiles │ ├── ancientzip.cpp │ ├── ancientzip.h │ ├── file_7z.cpp │ ├── file_directory.cpp │ ├── file_grp.cpp │ ├── file_lump.cpp │ ├── file_pak.cpp │ ├── file_rff.cpp │ ├── file_wad.cpp │ ├── file_zip.cpp │ ├── resourcefile.cpp │ └── resourcefile.h ├── richpresence.cpp ├── s_advsound.cpp ├── s_environment.cpp ├── s_playlist.cpp ├── s_playlist.h ├── s_sndseq.cpp ├── s_sndseq.h ├── s_sound.cpp ├── s_sound.h ├── sc_man.cpp ├── sc_man.h ├── sc_man_scanner.re ├── sc_man_tokens.h ├── scoreboard.cpp ├── scoreboard.h ├── sdl │ ├── SDLMain.m │ ├── crashcatcher.c │ ├── critsec.h │ ├── dikeys.h │ ├── glstubs.cpp │ ├── hardware.cpp │ ├── hardware.h │ ├── i_cd.cpp │ ├── i_input.cpp │ ├── i_input.h │ ├── i_joystick.cpp │ ├── i_main.cpp │ ├── i_movie.cpp │ ├── i_system.cpp │ ├── i_system.h │ ├── i_system_cocoa.mm │ ├── iwadpicker_cocoa.mm │ ├── sdlglvideo.cpp │ ├── sdlglvideo.h │ ├── sdlvideo.cpp │ ├── sdlvideo.h │ └── st_start.cpp ├── sectinfo.cpp ├── sectinfo.h ├── sfmt │ ├── LICENSE.txt │ ├── SFMT-alti.h │ ├── SFMT-params.h │ ├── SFMT-params11213.h │ ├── SFMT-params1279.h │ ├── SFMT-params132049.h │ ├── SFMT-params19937.h │ ├── SFMT-params216091.h │ ├── SFMT-params2281.h │ ├── SFMT-params4253.h │ ├── SFMT-params44497.h │ ├── SFMT-params607.h │ ├── SFMT-params86243.h │ ├── SFMT-sse2.h │ ├── SFMT.cpp │ └── SFMT.h ├── skins.cpp ├── skins.h ├── sound │ ├── efx.h │ ├── except.h │ ├── fmod_wrap.h │ ├── fmodsound.cpp │ ├── fmodsound.h │ ├── i_music.cpp │ ├── i_music.h │ ├── i_musicinterns.h │ ├── i_sound.cpp │ ├── i_sound.h │ ├── i_soundinternal.h │ ├── mpg123_decoder.cpp │ ├── mpg123_decoder.h │ ├── music_audiotoolbox_mididevice.cpp │ ├── music_cd.cpp │ ├── music_dumb.cpp │ ├── music_fluidsynth_mididevice.cpp │ ├── music_gme.cpp │ ├── music_hmi_midiout.cpp │ ├── music_midi_base.cpp │ ├── music_midi_timidity.cpp │ ├── music_midistream.cpp │ ├── music_mus_midiout.cpp │ ├── music_mus_opl.cpp │ ├── music_pseudo_mididevice.cpp │ ├── music_smf_midiout.cpp │ ├── music_softsynth_mididevice.cpp │ ├── music_stream.cpp │ ├── music_timidity_mididevice.cpp │ ├── music_win_mididevice.cpp │ ├── music_xmi_midiout.cpp │ ├── oalsound.cpp │ ├── oalsound.h │ ├── sndfile_decoder.cpp │ └── sndfile_decoder.h ├── st_start.h ├── st_stuff.cpp ├── st_stuff.h ├── statistics.cpp ├── statnums.h ├── stats.cpp ├── stats.h ├── stringtable.cpp ├── stringtable.h ├── strnatcmp.c ├── strnatcmp.h ├── survival.cpp ├── survival.h ├── sv_ban.cpp ├── sv_ban.h ├── sv_commands.cpp ├── sv_commands.h ├── sv_main.cpp ├── sv_main.h ├── sv_master.cpp ├── sv_rcon.cpp ├── sv_rcon.h ├── sv_save.cpp ├── sv_save.h ├── tables.cpp ├── tables.h ├── tagitem.h ├── tarray.h ├── team.cpp ├── team.h ├── teaminfo.cpp ├── teaminfo.h ├── tempfiles.cpp ├── tempfiles.h ├── templates.h ├── textures │ ├── anim_switches.cpp │ ├── animations.cpp │ ├── automaptexture.cpp │ ├── bitmap.cpp │ ├── bitmap.h │ ├── buildtexture.cpp │ ├── canvastexture.cpp │ ├── ddstexture.cpp │ ├── emptytexture.cpp │ ├── flattexture.cpp │ ├── imgztexture.cpp │ ├── jpegtexture.cpp │ ├── multipatchtexture.cpp │ ├── patchtexture.cpp │ ├── pcxtexture.cpp │ ├── pngtexture.cpp │ ├── rawpagetexture.cpp │ ├── texture.cpp │ ├── texturemanager.cpp │ ├── textures.h │ ├── tgatexture.cpp │ └── warptexture.cpp ├── tflags.h ├── thingdef │ ├── olddecorations.cpp │ ├── thingdef.cpp │ ├── thingdef.h │ ├── thingdef_codeptr.cpp │ ├── thingdef_data.cpp │ ├── thingdef_exp.cpp │ ├── thingdef_exp.h │ ├── thingdef_expression.cpp │ ├── thingdef_function.cpp │ ├── thingdef_parse.cpp │ ├── thingdef_properties.cpp │ ├── thingdef_states.cpp │ └── thingdef_type.h ├── timidity │ ├── CHANGES │ ├── COPYING │ ├── FAQ │ ├── README │ ├── common.cpp │ ├── dls1.h │ ├── dls2.h │ ├── gf1patch.h │ ├── instrum.cpp │ ├── instrum.obj │ ├── instrum_dls.cpp │ ├── instrum_font.cpp │ ├── instrum_sf2.cpp │ ├── mix.cpp │ ├── playmidi.cpp │ ├── resample.cpp │ ├── sf2.h │ ├── timidity.cpp │ └── timidity.h ├── unlagged.cpp ├── unlagged.h ├── v_blend.cpp ├── v_collection.cpp ├── v_collection.h ├── v_draw.cpp ├── v_font.cpp ├── v_font.h ├── v_palette.cpp ├── v_palette.h ├── v_pfx.cpp ├── v_pfx.h ├── v_text.cpp ├── v_text.h ├── v_video.cpp ├── v_video.h ├── valgrind.inc ├── vectors.h ├── version.h ├── w_wad.cpp ├── w_wad.h ├── w_zip.h ├── weightedlist.h ├── wi_stuff.cpp ├── wi_stuff.h ├── win32 │ ├── afxres.h │ ├── critsec.h │ ├── deadguy.bmp │ ├── eaxedit.cpp │ ├── fb_d3d9.cpp │ ├── fb_d3d9_wipe.cpp │ ├── fb_ddraw.cpp │ ├── g15 │ │ ├── g15.cpp │ │ ├── g15.h │ │ ├── include │ │ │ ├── EZ_LCD.cpp │ │ │ ├── EZ_LCD.h │ │ │ ├── LCDAnimatedBitmap.cpp │ │ │ ├── LCDAnimatedBitmap.h │ │ │ ├── LCDBase.cpp │ │ │ ├── LCDBase.h │ │ │ ├── LCDBitmap.cpp │ │ │ ├── LCDBitmap.h │ │ │ ├── LCDCollection.cpp │ │ │ ├── LCDCollection.h │ │ │ ├── LCDGfx.cpp │ │ │ ├── LCDGfx.h │ │ │ ├── LCDIcon.cpp │ │ │ ├── LCDIcon.h │ │ │ ├── LCDManager.cpp │ │ │ ├── LCDManager.h │ │ │ ├── LCDOutput.cpp │ │ │ ├── LCDOutput.h │ │ │ ├── LCDProgressBar.cpp │ │ │ ├── LCDProgressBar.h │ │ │ ├── LCDScrollingText.cpp │ │ │ ├── LCDScrollingText.h │ │ │ ├── LCDStreamingText.cpp │ │ │ ├── LCDStreamingText.h │ │ │ ├── LCDText.cpp │ │ │ ├── LCDText.h │ │ │ ├── lcdwin32.h │ │ │ └── lglcd.h │ │ └── res │ │ │ ├── armor.ico │ │ │ ├── orion.ico │ │ │ ├── shells.ico │ │ │ └── stimpack.ico │ ├── hardware.cpp │ ├── hardware.h │ ├── helperthread.cpp │ ├── helperthread.h │ ├── i_cd.cpp │ ├── i_crash.cpp │ ├── i_dijoy.cpp │ ├── i_input.cpp │ ├── i_input.h │ ├── i_keyboard.cpp │ ├── i_main.cpp │ ├── i_mouse.cpp │ ├── i_movie.cpp │ ├── i_rawps2.cpp │ ├── i_system.cpp │ ├── i_system.h │ ├── i_xinput.cpp │ ├── rawinput.h │ ├── resource.h │ ├── serverconsole │ │ ├── resource.h │ │ ├── serverconsole.cpp │ │ ├── serverconsole.h │ │ ├── serverconsole.rc │ │ ├── serverconsole_dmflags.cpp │ │ ├── serverconsole_dmflags.h │ │ ├── serverconsole_settings.cpp │ │ └── serverconsole_settings.h │ ├── setup.bmp │ ├── st_start.cpp │ ├── win32gliface.cpp │ ├── win32gliface.h │ ├── win32iface.h │ ├── win32video.cpp │ ├── winres.h │ ├── zandronum.ico │ ├── zdoom.RES │ ├── zdoom.aps │ ├── zdoom.exe.manifest │ └── zdoom.rc ├── x86.cpp ├── x86.h ├── xlat │ ├── parse_xlat.cpp │ ├── xlat.h │ └── xlat_parser.y ├── xs_Float.h ├── za_database.cpp ├── za_database.h ├── za_misc.cpp ├── za_misc.h ├── zstrformat.cpp ├── zstring.cpp ├── zstring.h └── zzautozend.cpp ├── statsmaker ├── CMakeLists.txt ├── Script1.aps ├── Script1.rc ├── Statsmaker To-Do List.txt ├── Statsmaker Version History.txt ├── collector.cpp ├── collector.h ├── gui.cpp ├── gui.h ├── i_system.h ├── ico_skulltag.ico ├── ico_zdaemon.ico ├── main.cpp ├── main.h ├── network.cpp ├── network.h ├── protocol_zandronum.cpp ├── protocol_zandronum.h ├── protocol_zdaemon.cpp ├── protocol_zdaemon.h ├── resource.h ├── statsmaker.vcproj └── tray_icon.ico ├── strifehelp.acs ├── tools ├── CMakeLists.txt ├── fixrtext │ ├── CMakeLists.txt │ ├── fixrtext.c │ └── fixrtext.vcproj ├── lemon │ ├── CMakeLists.txt │ ├── lemon.c │ ├── lemon.html │ ├── lemon.vcproj │ └── lempar.c ├── re2c │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── README │ ├── actions.cc │ ├── basics.h │ ├── code.cc │ ├── code.h │ ├── code_names.h │ ├── config.h.in │ ├── config_w32.h │ ├── dfa.cc │ ├── dfa.h │ ├── doc │ │ ├── loplas.ps │ │ └── sample.bib │ ├── examples │ │ ├── basemmap.c │ │ ├── c.re │ │ ├── cmmap.re │ │ ├── cnokw.re │ │ ├── cunroll.re │ │ ├── modula.re │ │ ├── push.re │ │ ├── repeater.re │ │ ├── rexx │ │ │ ├── README │ │ │ ├── rexx.l │ │ │ └── scanio.c │ │ ├── sample.re │ │ └── simple.re │ ├── globals.h │ ├── ins.h │ ├── main.cc │ ├── mbo_getopt.cc │ ├── mbo_getopt.h │ ├── parser.cc │ ├── parser.h │ ├── parser.y │ ├── re.h │ ├── re2c.1 │ ├── re2c.vcproj │ ├── scanner.cc │ ├── scanner.h │ ├── scanner.re │ ├── stream_lc.h │ ├── substr.cc │ ├── substr.h │ ├── token.h │ ├── translate.cc │ └── y.tab.h ├── updaterevision │ ├── CMakeLists.txt │ ├── trustinfo.rc │ ├── trustinfo.txt │ ├── updaterevision.c │ └── updaterevision.vcproj └── zipdir │ ├── CMakeLists.txt │ ├── zipdir.c │ └── zipdir.vcproj ├── upnpnat ├── Makefile ├── test.cpp ├── upnp-test.sln ├── upnp-test.vcproj ├── upnpnat.cpp ├── upnpnat.h ├── upnpnat.vcproj ├── xmlParser.cpp └── xmlParser.h ├── wadsrc ├── CMakeLists.txt ├── static │ ├── acs │ │ └── strfhelp.o │ ├── actors │ │ ├── Skulltag │ │ │ ├── skulltagarmor.txt │ │ │ ├── skulltagartifacts.txt │ │ │ ├── skulltaghealth.txt │ │ │ ├── skulltagmisc.txt │ │ │ ├── skulltagscorepillars.txt │ │ │ └── skulltagteamitems.txt │ │ ├── actor.txt │ │ ├── chex │ │ │ ├── chexammo.txt │ │ │ ├── chexdecorations.txt │ │ │ ├── chexitems.txt │ │ │ ├── chexkeys.txt │ │ │ ├── chexmonsters.txt │ │ │ ├── chexplayer.txt │ │ │ └── chexweapons.txt │ │ ├── constants.txt │ │ ├── doom │ │ │ ├── arachnotron.txt │ │ │ ├── archvile.txt │ │ │ ├── bossbrain.txt │ │ │ ├── bruiser.txt │ │ │ ├── cacodemon.txt │ │ │ ├── cyberdemon.txt │ │ │ ├── deadthings.txt │ │ │ ├── demon.txt │ │ │ ├── doomammo.txt │ │ │ ├── doomarmor.txt │ │ │ ├── doomartifacts.txt │ │ │ ├── doomdecorations.txt │ │ │ ├── doomhealth.txt │ │ │ ├── doomimp.txt │ │ │ ├── doomkeys.txt │ │ │ ├── doommisc.txt │ │ │ ├── doomplayer.txt │ │ │ ├── doomspawners.txt │ │ │ ├── doomweapons.txt │ │ │ ├── fatso.txt │ │ │ ├── keen.txt │ │ │ ├── lostsoul.txt │ │ │ ├── painelemental.txt │ │ │ ├── possessed.txt │ │ │ ├── revenant.txt │ │ │ ├── scriptedmarine.txt │ │ │ ├── spidermaster.txt │ │ │ └── stealthmonsters.txt │ │ ├── heretic │ │ │ ├── beast.txt │ │ │ ├── chicken.txt │ │ │ ├── clink.txt │ │ │ ├── dsparil.txt │ │ │ ├── hereticammo.txt │ │ │ ├── hereticarmor.txt │ │ │ ├── hereticartifacts.txt │ │ │ ├── hereticdecorations.txt │ │ │ ├── hereticimp.txt │ │ │ ├── heretickeys.txt │ │ │ ├── hereticmisc.txt │ │ │ ├── hereticplayer.txt │ │ │ ├── hereticspawners.txt │ │ │ ├── hereticweaps.txt │ │ │ ├── ironlich.txt │ │ │ ├── knight.txt │ │ │ ├── mummy.txt │ │ │ ├── snake.txt │ │ │ └── wizard.txt │ │ ├── hexen │ │ │ ├── baseweapons.txt │ │ │ ├── bats.txt │ │ │ ├── bishop.txt │ │ │ ├── blastradius.txt │ │ │ ├── boostarmor.txt │ │ │ ├── centaur.txt │ │ │ ├── clericboss.txt │ │ │ ├── clericflame.txt │ │ │ ├── clericholy.txt │ │ │ ├── clericmace.txt │ │ │ ├── clericplayer.txt │ │ │ ├── clericstaff.txt │ │ │ ├── demons.txt │ │ │ ├── dragon.txt │ │ │ ├── ettin.txt │ │ │ ├── fighteraxe.txt │ │ │ ├── fighterboss.txt │ │ │ ├── fighterfist.txt │ │ │ ├── fighterhammer.txt │ │ │ ├── fighterplayer.txt │ │ │ ├── fighterquietus.txt │ │ │ ├── firedemon.txt │ │ │ ├── flame.txt │ │ │ ├── flechette.txt │ │ │ ├── fog.txt │ │ │ ├── healingradius.txt │ │ │ ├── heresiarch.txt │ │ │ ├── hexenarmor.txt │ │ │ ├── hexendecorations.txt │ │ │ ├── hexenkeys.txt │ │ │ ├── hexenspawners.txt │ │ │ ├── hexenspecialdecs.txt │ │ │ ├── iceguy.txt │ │ │ ├── korax.txt │ │ │ ├── mageboss.txt │ │ │ ├── magecone.txt │ │ │ ├── magelightning.txt │ │ │ ├── mageplayer.txt │ │ │ ├── magestaff.txt │ │ │ ├── magewand.txt │ │ │ ├── mana.txt │ │ │ ├── pig.txt │ │ │ ├── puzzleitems.txt │ │ │ ├── scriptprojectiles.txt │ │ │ ├── serpent.txt │ │ │ ├── speedboots.txt │ │ │ ├── spike.txt │ │ │ ├── summon.txt │ │ │ ├── teleportother.txt │ │ │ └── wraith.txt │ │ ├── raven │ │ │ ├── artiegg.txt │ │ │ ├── artitele.txt │ │ │ ├── minotaur.txt │ │ │ ├── ravenambient.txt │ │ │ ├── ravenartifacts.txt │ │ │ └── ravenhealth.txt │ │ ├── shared │ │ │ ├── action.txt │ │ │ ├── blood.txt │ │ │ ├── bridge.txt │ │ │ ├── camera.txt │ │ │ ├── damagetypes.txt │ │ │ ├── debris.txt │ │ │ ├── decal.txt │ │ │ ├── dog.txt │ │ │ ├── fountain.txt │ │ │ ├── hatetarget.txt │ │ │ ├── inventory.txt │ │ │ ├── mapmarker.txt │ │ │ ├── morph.txt │ │ │ ├── movingcamera.txt │ │ │ ├── pickups.txt │ │ │ ├── player.txt │ │ │ ├── secrettrigger.txt │ │ │ ├── sectoraction.txt │ │ │ ├── setcolor.txt │ │ │ ├── sharedmisc.txt │ │ │ ├── skies.txt │ │ │ ├── soundenvironment.txt │ │ │ ├── soundsequence.txt │ │ │ ├── spark.txt │ │ │ ├── specialspot.txt │ │ │ ├── splashes.txt │ │ │ ├── teleport.txt │ │ │ └── waterzone.txt │ │ └── strife │ │ │ ├── acolyte.txt │ │ │ ├── alienspectres.txt │ │ │ ├── beggars.txt │ │ │ ├── coin.txt │ │ │ ├── crusader.txt │ │ │ ├── entityboss.txt │ │ │ ├── inquisitor.txt │ │ │ ├── loremaster.txt │ │ │ ├── macil.txt │ │ │ ├── merchants.txt │ │ │ ├── oracle.txt │ │ │ ├── peasants.txt │ │ │ ├── programmer.txt │ │ │ ├── questitems.txt │ │ │ ├── ratbuddy.txt │ │ │ ├── reaver.txt │ │ │ ├── rebels.txt │ │ │ ├── sentinel.txt │ │ │ ├── sigil.txt │ │ │ ├── spectral.txt │ │ │ ├── stalker.txt │ │ │ ├── strifeammo.txt │ │ │ ├── strifearmor.txt │ │ │ ├── strifebishop.txt │ │ │ ├── strifehumanoid.txt │ │ │ ├── strifeitems.txt │ │ │ ├── strifekeys.txt │ │ │ ├── strifeplayer.txt │ │ │ ├── strifespawners.txt │ │ │ ├── strifestuff.txt │ │ │ ├── strifeweapons.txt │ │ │ ├── templar.txt │ │ │ ├── thingstoblowup.txt │ │ │ └── zombie.txt │ ├── althudcf.txt │ ├── animated.lmp │ ├── animdefs.txt │ ├── botinfo.txt │ ├── bots │ │ └── chatfiles │ │ │ ├── 1337.txt │ │ │ ├── chubbs.txt │ │ │ ├── crash.txt │ │ │ ├── cyborg.txt │ │ │ ├── cygnus.txt │ │ │ ├── daisy.txt │ │ │ ├── fob.txt │ │ │ ├── frad.txt │ │ │ ├── hissy.txt │ │ │ ├── insect.txt │ │ │ ├── linguica.txt │ │ │ ├── massmouth.txt │ │ │ ├── meepy.txt │ │ │ ├── mewse.txt │ │ │ ├── orion.txt │ │ │ ├── quotebot.txt │ │ │ ├── reol.txt │ │ │ ├── rigel.txt │ │ │ ├── romero.txt │ │ │ ├── soldier.txt │ │ │ ├── ultimus.txt │ │ │ └── xxenemyxx.txt │ ├── compatibility.txt │ ├── confont.lmp │ ├── crashbot.lump │ ├── dbigfont.lmp │ ├── decaldef.txt │ ├── decorate.txt │ ├── decorate.z │ ├── dehsupp.txt │ ├── dfultbot.lump │ ├── doomdefs.txt │ ├── etc.h.txt │ ├── fatbot.lump │ ├── fontdefs.txt │ ├── gamemode.txt │ ├── glstuff │ │ ├── gllight.png │ │ ├── glpart.png │ │ ├── glpart2.png │ │ └── mirror.png │ ├── graphics │ │ ├── -badpatc.lmp │ │ ├── STFLA0.png │ │ ├── artibox.png │ │ ├── bal7scr1.png │ │ ├── bal7scr2.png │ │ ├── bfglite1.png │ │ ├── bfglite2.png │ │ ├── bfgscrc1.png │ │ ├── bfgscrc2.png │ │ ├── blast1.png │ │ ├── botskil0.png │ │ ├── botskil1.png │ │ ├── botskil2.png │ │ ├── botskil3.png │ │ ├── botskil4.png │ │ ├── bsmear1.png │ │ ├── bsmear2.png │ │ ├── bsplat1.png │ │ ├── bsplat2.png │ │ ├── bsplat3.png │ │ ├── bsplat4.png │ │ ├── bsplat5.png │ │ ├── bsplat6.png │ │ ├── bsplat7.png │ │ ├── cbalscr1.png │ │ ├── cbalscr2.png │ │ ├── cbowmark.png │ │ ├── chexcurs.png │ │ ├── chip1.png │ │ ├── chip2.png │ │ ├── chip3.png │ │ ├── chip4.png │ │ ├── chip5.png │ │ ├── clerface.lmp │ │ ├── consmini.png │ │ ├── cursor.png │ │ ├── doomcurs.png │ │ ├── fiteface.lmp │ │ ├── fonta164.lmp │ │ ├── fonta165.lmp │ │ ├── fonta182.lmp │ │ ├── fonta188.lmp │ │ ├── fonta191.lmp │ │ ├── fonta60.lmp │ │ ├── fonta61.lmp │ │ ├── fonta62.lmp │ │ ├── fonta63.lmp │ │ ├── hamoback.png │ │ ├── hellston.png │ │ ├── herecurs.png │ │ ├── hexncurs.png │ │ ├── invgeml1.png │ │ ├── invgeml2.png │ │ ├── invgemr1.png │ │ ├── invgemr2.png │ │ ├── lagmini.png │ │ ├── m_back_d.png │ │ ├── m_back_h.png │ │ ├── m_back_s.png │ │ ├── m_back_x.png │ │ ├── m_multi.png │ │ ├── mageface.lmp │ │ ├── plasma1.png │ │ ├── plasma2.png │ │ ├── scorch1.png │ │ ├── selectbo.png │ │ ├── stcfn191.lmp │ │ ├── stcfn193.lmp │ │ ├── stcfn196.lmp │ │ ├── stcfn197.lmp │ │ ├── stcfn201.lmp │ │ ├── stcfn205.lmp │ │ ├── stcfn209.lmp │ │ ├── stcfn211.lmp │ │ ├── stcfn214.lmp │ │ ├── stcfn218.lmp │ │ ├── stcfn220.lmp │ │ ├── stcfn223.lmp │ │ ├── stfbany.lmp │ │ ├── stkeys6.lmp │ │ ├── stkeys7.lmp │ │ ├── stkeys8.lmp │ │ ├── stpbany.lmp │ │ ├── stpts.png │ │ ├── strfcurs.png │ │ ├── terminat.png │ │ ├── twirl.png │ │ ├── wislash.lmp │ │ ├── xhairb1.imgz │ │ ├── xhairb2.png │ │ ├── xhairb3.imgz │ │ ├── xhairb4.imgz │ │ ├── xhairb5.imgz │ │ ├── xhairb6.imgz │ │ ├── xhairb7.imgz │ │ ├── xhairs1.imgz │ │ ├── xhairs2.imgz │ │ ├── xhairs3.imgz │ │ ├── xhairs4.imgz │ │ ├── xhairs5.imgz │ │ ├── xhairs6.imgz │ │ └── xhairs7.imgz │ ├── hexndefs.txt │ ├── hticdefs.txt │ ├── humanbot.lump │ ├── in_epi1.txt │ ├── in_epi2.txt │ ├── in_epi3.txt │ ├── in_htc1.txt │ ├── in_htc2.txt │ ├── in_htc3.txt │ ├── indexfont │ ├── iwadinfo.txt │ ├── language.enu │ ├── language.fr │ ├── language.ita │ ├── language.ptb │ ├── lockdefs.txt │ ├── maparrows │ │ ├── arrow.txt │ │ ├── dagger.txt │ │ ├── ddtarrow.txt │ │ ├── key.txt │ │ └── ravenkey.txt │ ├── mapinfo │ │ ├── chex.txt │ │ ├── chex3.txt │ │ ├── common.txt │ │ ├── doom1.txt │ │ ├── doom2.txt │ │ ├── doom2bfg.txt │ │ ├── doomcommon.txt │ │ ├── hacxharm.txt │ │ ├── heretic.txt │ │ ├── hereticsw.txt │ │ ├── hexdd.txt │ │ ├── hexen.txt │ │ ├── plutonia.txt │ │ ├── strife.txt │ │ ├── tnt.txt │ │ ├── ultdoom.txt │ │ └── urbanbrawl.txt │ ├── menudef.txt │ ├── menudef.z │ ├── menudef.za │ ├── netnotch.dat │ ├── notch.dat │ ├── reverbs.txt │ ├── sausgbot.lump │ ├── sbarinfo.txt │ ├── sbarinfo │ │ ├── doom.txt │ │ ├── heretic.txt │ │ └── hexen.txt │ ├── sbigfont.lmp │ ├── shaders │ │ ├── d3d │ │ │ ├── build.bat │ │ │ ├── shaders.ps │ │ │ ├── sm14 │ │ │ │ ├── BurnWipe.pso │ │ │ │ ├── GammaCorrection.pso │ │ │ │ ├── InGameColormap.pso │ │ │ │ ├── InGameColormapDesat.pso │ │ │ │ ├── InGameColormapInv.pso │ │ │ │ ├── InGameColormapInvDesat.pso │ │ │ │ ├── InGameColormapPal.pso │ │ │ │ ├── InGameColormapPalDesat.pso │ │ │ │ ├── InGameColormapPalInv.pso │ │ │ │ ├── InGameColormapPalInvDesat.pso │ │ │ │ ├── NormalColor.pso │ │ │ │ ├── NormalColorInv.pso │ │ │ │ ├── NormalColorPal.pso │ │ │ │ ├── NormalColorPalInv.pso │ │ │ │ ├── RedToAlpha.pso │ │ │ │ ├── RedToAlphaInv.pso │ │ │ │ ├── SpecialColormap.pso │ │ │ │ ├── SpecialColormapPal.pso │ │ │ │ ├── VertexColor.pso │ │ │ │ └── build.bat │ │ │ ├── sm20 │ │ │ │ ├── BurnWipe.pso │ │ │ │ ├── GammaCorrection.pso │ │ │ │ ├── InGameColormap.pso │ │ │ │ ├── InGameColormapDesat.pso │ │ │ │ ├── InGameColormapInv.pso │ │ │ │ ├── InGameColormapInvDesat.pso │ │ │ │ ├── InGameColormapPal.pso │ │ │ │ ├── InGameColormapPalDesat.pso │ │ │ │ ├── InGameColormapPalInv.pso │ │ │ │ ├── InGameColormapPalInvDesat.pso │ │ │ │ ├── NormalColor.pso │ │ │ │ ├── NormalColorInv.pso │ │ │ │ ├── NormalColorPal.pso │ │ │ │ ├── NormalColorPalInv.pso │ │ │ │ ├── RedToAlpha.pso │ │ │ │ ├── RedToAlphaInv.pso │ │ │ │ ├── SpecialColormap.pso │ │ │ │ ├── SpecialColormapPal.pso │ │ │ │ ├── VertexColor.pso │ │ │ │ └── build.bat │ │ │ └── sm30 │ │ │ │ ├── BurnWipe.pso │ │ │ │ ├── GammaCorrection.pso │ │ │ │ ├── InGameColormap.pso │ │ │ │ ├── InGameColormapDesat.pso │ │ │ │ ├── InGameColormapInv.pso │ │ │ │ ├── InGameColormapInvDesat.pso │ │ │ │ ├── InGameColormapPal.pso │ │ │ │ ├── InGameColormapPalDesat.pso │ │ │ │ ├── InGameColormapPalInv.pso │ │ │ │ ├── InGameColormapPalInvDesat.pso │ │ │ │ ├── NormalColor.pso │ │ │ │ ├── NormalColorInv.pso │ │ │ │ ├── NormalColorPal.pso │ │ │ │ ├── NormalColorPalInv.pso │ │ │ │ ├── RedToAlpha.pso │ │ │ │ ├── RedToAlphaInv.pso │ │ │ │ ├── SpecialColormap.pso │ │ │ │ ├── SpecialColormapPal.pso │ │ │ │ ├── VertexColor.pso │ │ │ │ └── build.bat │ │ └── glsl │ │ │ ├── fogboundary.fp │ │ │ ├── func_brightmap.fp │ │ │ ├── func_normal.fp │ │ │ ├── func_notexture.fp │ │ │ ├── func_warp1.fp │ │ │ ├── func_warp2.fp │ │ │ ├── func_wavex.fp │ │ │ ├── fuzz_jagged.fp │ │ │ ├── fuzz_noise.fp │ │ │ ├── fuzz_smooth.fp │ │ │ ├── fuzz_smoothnoise.fp │ │ │ ├── fuzz_smoothtranslucent.fp │ │ │ ├── fuzz_standard.fp │ │ │ ├── fuzz_swirly.fp │ │ │ ├── main.fp │ │ │ ├── main.vp │ │ │ ├── main_colormap.fp │ │ │ └── main_foglayer.fp │ ├── sndinfo.txt │ ├── sndseq.txt │ ├── sounds │ │ ├── DSDGACT.flac │ │ ├── DSDGATK.flac │ │ ├── DSDGDTH.flac │ │ ├── DSDGPAIN.flac │ │ ├── DSDGSIT.flac │ │ ├── cnnctsnd.ogg │ │ ├── dsempty.lmp │ │ ├── dsquake.flac │ │ ├── dssecret.flac │ │ ├── dstaunt.wav │ │ ├── icebrk1a.flac │ │ ├── icedth1.flac │ │ ├── railgf1.flac │ │ ├── spark1.flac │ │ ├── spark2.flac │ │ └── spark3.flac │ ├── spaldoom.lmp │ ├── spalhtic.lmp │ ├── sprites │ │ ├── CNSLA0.png │ │ ├── CNSLB0.png │ │ ├── MENUA0.png │ │ ├── MENUB0.png │ │ ├── MENUC0.png │ │ ├── PLS1A0.png │ │ ├── PLS1B0.png │ │ ├── PLS1C0.png │ │ ├── PLS1D0.png │ │ ├── PLS1E0.png │ │ ├── PLS1F0.png │ │ ├── PLS1G0.png │ │ ├── PLS2A0.png │ │ ├── PLS2B0.png │ │ ├── PLS2C0.png │ │ ├── PLS2D0.png │ │ ├── PLS2E0.png │ │ ├── SFLAA0.png │ │ ├── SFLAB0.png │ │ ├── SFLAC0.png │ │ ├── SFLAD0.png │ │ ├── SFLAE0.png │ │ ├── SFLAF0.png │ │ ├── SFLSA0.png │ │ ├── SFLSB0.png │ │ ├── SFLSC0.png │ │ ├── SFLSD0.png │ │ ├── SFLSE0.png │ │ ├── SFLSF0.png │ │ ├── accua0.png │ │ ├── allya0.png │ │ ├── amrka0.png │ │ ├── arnoa0.png │ │ ├── arnob0.png │ │ ├── arnoc0.png │ │ ├── arnod0.png │ │ ├── assta0.png │ │ ├── capta0.png │ │ ├── dfnsa0.png │ │ ├── dogs │ │ │ ├── DOGSA1.png │ │ │ ├── DOGSA2A8.png │ │ │ ├── DOGSA3A7.png │ │ │ ├── DOGSA4A6.png │ │ │ ├── DOGSA5.png │ │ │ ├── DOGSB1.png │ │ │ ├── DOGSB2B8.png │ │ │ ├── DOGSB3B7.png │ │ │ ├── DOGSB4B6.png │ │ │ ├── DOGSB5.png │ │ │ ├── DOGSC1.png │ │ │ ├── DOGSC2C8.png │ │ │ ├── DOGSC3C7.png │ │ │ ├── DOGSC4C6.png │ │ │ ├── DOGSC5.png │ │ │ ├── DOGSD1.png │ │ │ ├── DOGSD2D8.png │ │ │ ├── DOGSD3D7.png │ │ │ ├── DOGSD4D6.png │ │ │ ├── DOGSD5.png │ │ │ ├── DOGSE1.png │ │ │ ├── DOGSE2.png │ │ │ ├── DOGSE3.png │ │ │ ├── DOGSE4.png │ │ │ ├── DOGSE5.png │ │ │ ├── DOGSE6.png │ │ │ ├── DOGSE7.png │ │ │ ├── DOGSE8.png │ │ │ ├── DOGSF1.png │ │ │ ├── DOGSF2.png │ │ │ ├── DOGSF3.png │ │ │ ├── DOGSF4.png │ │ │ ├── DOGSF5.png │ │ │ ├── DOGSF6.png │ │ │ ├── DOGSF7.png │ │ │ ├── DOGSF8.png │ │ │ ├── DOGSG1.png │ │ │ ├── DOGSG2.png │ │ │ ├── DOGSG3.png │ │ │ ├── DOGSG4.png │ │ │ ├── DOGSG5.png │ │ │ ├── DOGSG6.png │ │ │ ├── DOGSG7.png │ │ │ ├── DOGSG8.png │ │ │ ├── DOGSH1.png │ │ │ ├── DOGSH2.png │ │ │ ├── DOGSH3.png │ │ │ ├── DOGSH4.png │ │ │ ├── DOGSH5.png │ │ │ ├── DOGSH6.png │ │ │ ├── DOGSH7.png │ │ │ ├── DOGSH8.png │ │ │ ├── DOGSI0.png │ │ │ ├── DOGSJ0.png │ │ │ ├── DOGSK0.png │ │ │ ├── DOGSL0.png │ │ │ ├── DOGSM0.png │ │ │ └── DOGSN0.png │ │ ├── domna0.png │ │ ├── excla0.png │ │ ├── faila0.png │ │ ├── ffrga0.png │ │ ├── fista0.png │ │ ├── iceca0.png │ │ ├── icecb0.png │ │ ├── icecc0.png │ │ ├── icecd0.png │ │ ├── impra0.png │ │ ├── incra0.png │ │ ├── lagga0.png │ │ ├── llama0.png │ │ ├── mimpa0.png │ │ ├── pfcta0.png │ │ ├── pista0.png │ │ ├── plyc │ │ │ ├── plyca1.lmp │ │ │ ├── plyca2a8.lmp │ │ │ ├── plyca3a7.lmp │ │ │ ├── plyca4a6.lmp │ │ │ ├── plyca5.lmp │ │ │ ├── plycb1.lmp │ │ │ ├── plycb2b8.lmp │ │ │ ├── plycb3b7.lmp │ │ │ ├── plycb4b6.lmp │ │ │ ├── plycb5.lmp │ │ │ ├── plycc1.lmp │ │ │ ├── plycc2c8.lmp │ │ │ ├── plycc3c7.lmp │ │ │ ├── plycc4c6.lmp │ │ │ ├── plycc5.lmp │ │ │ ├── plycd1.lmp │ │ │ ├── plycd2d8.lmp │ │ │ ├── plycd3d7.lmp │ │ │ ├── plycd4d6.lmp │ │ │ ├── plycd5.lmp │ │ │ ├── plyce1.lmp │ │ │ ├── plyce2e8.lmp │ │ │ ├── plyce3e7.lmp │ │ │ ├── plyce4e6.lmp │ │ │ ├── plyce5.lmp │ │ │ ├── plycf1.lmp │ │ │ ├── plycf2f8.lmp │ │ │ ├── plycf3f7.lmp │ │ │ ├── plycf4f6.lmp │ │ │ ├── plycf5.lmp │ │ │ ├── plycg1.lmp │ │ │ ├── plycg2g8.lmp │ │ │ ├── plycg3g7.lmp │ │ │ ├── plycg4g6.lmp │ │ │ ├── plycg5.lmp │ │ │ ├── plych0.lmp │ │ │ ├── plyci0.lmp │ │ │ ├── plycj0.lmp │ │ │ ├── plyck0.lmp │ │ │ ├── plycl0.lmp │ │ │ ├── plycm0.lmp │ │ │ ├── plycn0.lmp │ │ │ ├── plyco0.lmp │ │ │ ├── plycp0.lmp │ │ │ ├── plycq0.lmp │ │ │ ├── plycr0.lmp │ │ │ ├── plycs0.lmp │ │ │ ├── plyct0.lmp │ │ │ ├── plycu0.lmp │ │ │ ├── plycv0.lmp │ │ │ └── plycw0.lmp │ │ ├── pposa0.png │ │ ├── pposb0.png │ │ ├── pposc0.png │ │ ├── pposd0.png │ │ ├── ppose0.png │ │ ├── pposf0.png │ │ ├── preca0.png │ │ ├── rdytogo.png │ │ ├── rsmka0.png │ │ ├── rsmkb0.png │ │ ├── rsmkc0.png │ │ ├── rsmkd0.png │ │ ├── rsmke0.png │ │ ├── sgrna1.png │ │ ├── sgrna5.png │ │ ├── sgrna6a4.png │ │ ├── sgrna7a3.png │ │ ├── sgrna8a2.png │ │ ├── skila0.png │ │ ├── spama0.png │ │ ├── spkra0.png │ │ ├── staga0.png │ │ ├── talka0.png │ │ ├── tdoma0.png │ │ ├── tlgla0.png │ │ ├── tlglb0.png │ │ ├── tlglc0.png │ │ ├── tlgld0.png │ │ ├── tlgle0.png │ │ ├── tlkmini.png │ │ ├── tnt1a0.png │ │ ├── trmaa0.png │ │ ├── unkna0.png │ │ └── victa0.png │ ├── strfdefs.txt │ ├── teaminfo.txt │ ├── terrain.txt │ ├── textcolors.txt │ ├── textcolors.za │ ├── textures.txt │ ├── textures │ │ └── -noflat-.png │ ├── things.h.txt │ ├── vga-rom-font.16 │ ├── x11r6rgb.txt │ ├── xhairs.txt │ └── xlat │ │ ├── base.txt │ │ ├── defines.i │ │ ├── doom.txt │ │ ├── doom_base.txt │ │ ├── eternity.txt │ │ ├── heretic.txt │ │ ├── heretic_base.txt │ │ ├── strife.txt │ │ └── strife_base.txt └── wadsrc.vcproj ├── wadsrc_bm ├── CMakeLists.txt ├── brightmaps.vcproj └── static │ ├── brightmaps │ ├── doom │ │ ├── BON2B0.png │ │ ├── BON2C0.png │ │ ├── BON2D0.png │ │ ├── BOS2A6C4.png │ │ ├── BOS2A7C3.png │ │ ├── BOS2A8C2.png │ │ ├── BOS2B6D4.png │ │ ├── BOS2B7D3.png │ │ ├── BOS2B8D2.png │ │ ├── BOSSA1.png │ │ ├── BOSSA2A8.png │ │ ├── BOSSA3A7.png │ │ ├── BOSSA4A6.png │ │ ├── BOSSA5.png │ │ ├── BOSSB1.png │ │ ├── BOSSB2B8.png │ │ ├── BOSSB3B7.png │ │ ├── BOSSB4B6.png │ │ ├── BOSSB5.png │ │ ├── BOSSC1.png │ │ ├── BOSSC2C8.png │ │ ├── BOSSC3C7.png │ │ ├── BOSSC4C6.png │ │ ├── BOSSC5.png │ │ ├── BOSSD1.png │ │ ├── BOSSD2D8.png │ │ ├── BOSSD3D7.png │ │ ├── BOSSD4D6.png │ │ ├── BOSSD5.png │ │ ├── BOSSE1.png │ │ ├── BOSSE2.png │ │ ├── BOSSE3.png │ │ ├── BOSSE4.png │ │ ├── BOSSE5.png │ │ ├── BOSSE6.png │ │ ├── BOSSE7.png │ │ ├── BOSSE8.png │ │ ├── BOSSF1.png │ │ ├── BOSSF2.png │ │ ├── BOSSF3.png │ │ ├── BOSSF4.png │ │ ├── BOSSF5.png │ │ ├── BOSSF6.png │ │ ├── BOSSF7.png │ │ ├── BOSSF8.png │ │ ├── BOSSG1.png │ │ ├── BOSSG2.png │ │ ├── BOSSG3.png │ │ ├── BOSSG4.png │ │ ├── BOSSG5.png │ │ ├── BOSSG6.png │ │ ├── BOSSG7.png │ │ ├── BOSSG8.png │ │ ├── BOSSH1.png │ │ ├── BOSSH2.png │ │ ├── BOSSH3.png │ │ ├── BOSSH4.png │ │ ├── BOSSH5.png │ │ ├── BOSSH6.png │ │ ├── BOSSH7.png │ │ ├── BOSSH8.png │ │ ├── BOSSI0.png │ │ ├── BOSSJ0.png │ │ ├── BOSSK0.png │ │ ├── BOSSL0.png │ │ ├── BOSSM0.png │ │ ├── BSPIG1.png │ │ ├── BSPIG2G8.png │ │ ├── BSPIH1.png │ │ ├── BSPIH2H8.png │ │ ├── BSPIH3H7.png │ │ ├── BSPIH4H6.png │ │ ├── BSPIH5.png │ │ ├── CELLA0.png │ │ ├── CELPA0.png │ │ ├── CPOSE1.png │ │ ├── CPOSE2.png │ │ ├── CPOSE3.png │ │ ├── CPOSE5.png │ │ ├── CPOSE6.png │ │ ├── CPOSE7.png │ │ ├── CPOSE8.png │ │ ├── CPOSF1.png │ │ ├── CPOSF2.png │ │ ├── CPOSF3.png │ │ ├── CPOSF4.png │ │ ├── CPOSF5.png │ │ ├── CPOSF6.png │ │ ├── CPOSF7.png │ │ ├── CPOSF8.png │ │ ├── CYBRF1.png │ │ ├── CYBRF2.png │ │ ├── CYBRF3.png │ │ ├── CYBRF4.png │ │ ├── CYBRF5.png │ │ ├── CYBRF6.png │ │ ├── CYBRF7.png │ │ ├── CYBRF8.png │ │ ├── CYBRJ0.png │ │ ├── CYBRK0.png │ │ ├── CYBRL0.png │ │ ├── CYBRM0.png │ │ ├── CYBRN0.png │ │ ├── CYBRO0.png │ │ ├── FATTG1.png │ │ ├── FATTG2G8.png │ │ ├── FATTH1.png │ │ ├── FATTH2H8.png │ │ ├── FATTH3H7.png │ │ ├── FATTH4H6.png │ │ ├── FATTH5.png │ │ ├── FCANA0.png │ │ ├── FCANB0.png │ │ ├── FCANC0.png │ │ ├── HEADC1.png │ │ ├── HEADC2C8.png │ │ ├── HEADC3C7.png │ │ ├── HEADD1.png │ │ ├── HEADD2D8.png │ │ ├── HEADD3D7.png │ │ ├── PAINF1.png │ │ ├── PAINF2F8.png │ │ ├── PAINF3F7.png │ │ ├── PLAYF1.png │ │ ├── PLAYF2F8.png │ │ ├── PLAYF3F7.png │ │ ├── PLAYF4F6.png │ │ ├── PLAYF5.png │ │ ├── POSSE1.png │ │ ├── POSSE2E8.png │ │ ├── POSSE3E7.png │ │ ├── POSSF1.png │ │ ├── POSSF2F8.png │ │ ├── POSSF3F7.png │ │ ├── POSSF4F6.png │ │ ├── POSSF5.png │ │ ├── SKELJ1.png │ │ ├── SKELJ2.png │ │ ├── SKELJ3.png │ │ ├── SKELJ4.png │ │ ├── SKELJ5.png │ │ ├── SKELJ6.png │ │ ├── SKELJ7.png │ │ ├── SKELJ8.png │ │ ├── SMRTA0.png │ │ ├── SMRTB0.png │ │ ├── SMRTC0.png │ │ ├── SMRTD0.png │ │ ├── SPIDG1.png │ │ ├── SPIDG2G8.png │ │ ├── SPIDH1.png │ │ ├── SPIDH2H8.png │ │ ├── SPIDH3H7.png │ │ ├── SPIDL0.png │ │ ├── SPIDM0.png │ │ ├── SPIDN0.png │ │ ├── SPIDO0.png │ │ ├── SPIDP0.png │ │ ├── SPIDQ0.png │ │ ├── SPIDR0.png │ │ ├── SPOSE1.png │ │ ├── SPOSE2E8.png │ │ ├── SPOSE3E7.png │ │ ├── SPOSF1.png │ │ ├── SPOSF2F8.png │ │ ├── SPOSF3F7.png │ │ ├── SPOSF4F6.png │ │ ├── SPOSF5.png │ │ ├── TREDA0.png │ │ ├── TREDB0.png │ │ ├── TREDC0.png │ │ ├── TREDD0.png │ │ ├── TbluB0.png │ │ ├── TbluC0.png │ │ ├── sswvg0.png │ │ ├── vileg1.png │ │ ├── vileg2.png │ │ ├── vileg3.png │ │ ├── vileg4.png │ │ ├── vileg5.png │ │ ├── vileg6.png │ │ ├── vileg7.png │ │ ├── vileg8.png │ │ ├── vileh1.png │ │ ├── vileh2.png │ │ ├── vileh3.png │ │ ├── vileh4.png │ │ ├── vileh5.png │ │ ├── vileh6.png │ │ ├── vileh7.png │ │ ├── vileh8.png │ │ ├── vilei1.png │ │ ├── vilei2.png │ │ ├── vilei3.png │ │ ├── vilei4.png │ │ ├── vilei5.png │ │ ├── vilei6.png │ │ ├── vilei7.png │ │ ├── vilei8.png │ │ ├── vilej1.png │ │ ├── vilej2.png │ │ ├── vilej3.png │ │ ├── vilej4.png │ │ ├── vilej5.png │ │ ├── vilej6.png │ │ ├── vilej7.png │ │ ├── vilej8.png │ │ ├── vilek1.png │ │ ├── vilek2.png │ │ ├── vilek3.png │ │ ├── vilek4.png │ │ ├── vilek5.png │ │ ├── vilek6.png │ │ ├── vilek7.png │ │ ├── vilek8.png │ │ ├── vilel1.png │ │ ├── vilel2.png │ │ ├── vilel3.png │ │ ├── vilel4.png │ │ ├── vilel5.png │ │ ├── vilel6.png │ │ ├── vilel7.png │ │ ├── vilel8.png │ │ ├── vilem1.png │ │ ├── vilem2.png │ │ ├── vilem3.png │ │ ├── vilem4.png │ │ ├── vilem5.png │ │ ├── vilem6.png │ │ ├── vilem7.png │ │ ├── vilem8.png │ │ ├── vilen1.png │ │ ├── vilen2.png │ │ ├── vilen3.png │ │ ├── vilen4.png │ │ ├── vilen5.png │ │ ├── vilen6.png │ │ ├── vilen7.png │ │ ├── vilen8.png │ │ ├── vileo1.png │ │ ├── vileo2.png │ │ ├── vileo3.png │ │ ├── vileo4.png │ │ ├── vileo5.png │ │ ├── vileo6.png │ │ ├── vileo7.png │ │ ├── vileo8.png │ │ ├── vilep1.png │ │ ├── vilep2.png │ │ ├── vilep3.png │ │ ├── vilep4.png │ │ ├── vilep5.png │ │ ├── vilep6.png │ │ ├── vilep7.png │ │ └── vilep8.png │ ├── heretic │ │ ├── BEASI1.png │ │ ├── BEASI2I8.png │ │ ├── BEASI3I7.png │ │ ├── CHDLA0.png │ │ ├── CHDLB0.png │ │ ├── CHDLC0.png │ │ ├── CLNKI0.png │ │ ├── CLNKJ0.png │ │ ├── CLNKK0.png │ │ ├── CLNKL0.png │ │ ├── CLNKM0.png │ │ ├── CLNKN0.png │ │ ├── IMPXD1.png │ │ ├── IMPXD2.png │ │ ├── IMPXD3.png │ │ ├── IMPXD4.png │ │ ├── IMPXD5.png │ │ ├── IMPXD6.png │ │ ├── IMPXD7.png │ │ ├── IMPXD8.png │ │ ├── IMPXE1.png │ │ ├── IMPXE2.png │ │ ├── IMPXE3.png │ │ ├── IMPXE4.png │ │ ├── IMPXE5.png │ │ ├── IMPXE6.png │ │ ├── IMPXE7.png │ │ ├── IMPXE8.png │ │ ├── IMPXF1.png │ │ ├── IMPXF2.png │ │ ├── IMPXF3.png │ │ ├── IMPXF4.png │ │ ├── IMPXF5.png │ │ ├── IMPXF6.png │ │ ├── IMPXF7.png │ │ ├── IMPXF8.png │ │ ├── LICHB1.png │ │ ├── LICHB2B8.png │ │ ├── LICHB3B7.png │ │ ├── LICHC0.png │ │ ├── LICHD0.png │ │ ├── LICHE0.png │ │ ├── LICHF0.png │ │ ├── LICHG0.png │ │ ├── LICHH0.png │ │ ├── PLAYF1.png │ │ ├── PLAYF2F8.png │ │ ├── PLAYF3F7.png │ │ ├── PLAYF4F6.png │ │ ├── SDTHA0.png │ │ ├── SDTHB0.png │ │ ├── SDTHC0.png │ │ ├── SDTHD0.png │ │ ├── SDTHE0.png │ │ ├── SDTHF0.png │ │ ├── SDTHG0.png │ │ ├── SDTHH0.png │ │ ├── SOR2R1.png │ │ ├── SOR2R2.png │ │ ├── SOR2R3.png │ │ ├── SOR2R4.png │ │ ├── SOR2R5.png │ │ ├── SOR2R6.png │ │ ├── SOR2R7.png │ │ ├── SOR2R8.png │ │ ├── SOR2S1.png │ │ ├── SOR2S2.png │ │ ├── SOR2S3.png │ │ ├── SOR2S4.png │ │ ├── SOR2S5.png │ │ ├── SOR2S6.png │ │ ├── SOR2S7.png │ │ ├── SOR2S8.png │ │ ├── SOR2T1.png │ │ ├── SOR2T2.png │ │ ├── SOR2T3.png │ │ ├── SOR2T4.png │ │ ├── SOR2T5.png │ │ ├── SOR2T6.png │ │ ├── SOR2T7.png │ │ ├── SOR2T8.png │ │ ├── VLCOE0.png │ │ ├── WZRDC1.png │ │ ├── WZRDC2C8.png │ │ ├── WZRDC3C7.png │ │ ├── WZRDC4C6.png │ │ ├── WZRDC5.png │ │ ├── WZRDD1.png │ │ ├── WZRDD2D8.png │ │ ├── WZRDD3D7.png │ │ ├── WZRDD4D6.png │ │ ├── WZRDD5.png │ │ ├── WZRDF0.png │ │ ├── WZRDG0.png │ │ ├── WZRDH0.png │ │ ├── WZRDI0.png │ │ ├── WZRDJ0.png │ │ └── WZRDK0.png │ ├── hexen │ │ ├── CDLRA0.png │ │ ├── CDLRB0.png │ │ ├── CDLRC0.png │ │ ├── CENTF1.png │ │ ├── CENTF2.png │ │ ├── CENTF8.png │ │ ├── ICEYG1.png │ │ ├── ICEYG2G8.png │ │ ├── ICEYG3G7.png │ │ ├── ICEYG4G6.png │ │ ├── ICEYG5.png │ │ ├── MAGEF1.png │ │ ├── MAGEF2.png │ │ ├── MAGEF3.png │ │ ├── MAGEF4.png │ │ ├── MAGEF5.png │ │ ├── MAGEF6.png │ │ ├── MAGEF7.png │ │ ├── MAGEF8.png │ │ ├── WRTHE1.png │ │ ├── WRTHE2E8.png │ │ ├── WRTHE3E7.png │ │ ├── WRTHE4E6.png │ │ ├── WRTHE5.png │ │ ├── WRTHF1.png │ │ ├── WRTHF2F8.png │ │ ├── WRTHF3F7.png │ │ ├── WRTHF4F6.png │ │ ├── WRTHF5.png │ │ ├── WRTHG1.png │ │ ├── WRTHG2G8.png │ │ ├── WRTHG3G7.png │ │ ├── WRTHG4G6.png │ │ └── WRTHG5.png │ └── strife │ │ ├── MLDRE1.png │ │ ├── MLDRE2.png │ │ ├── MLDRE3.png │ │ ├── MLDRE4.png │ │ ├── MLDRE5.png │ │ ├── MLDRE6.png │ │ ├── MLDRE7.png │ │ ├── MLDRE8.png │ │ ├── PGRDG1.png │ │ ├── PGRDG2.png │ │ ├── PGRDG3.png │ │ ├── PGRDG4.png │ │ ├── PGRDG5.png │ │ ├── PGRDG6.png │ │ ├── PGRDG7.png │ │ ├── PGRDG8.png │ │ ├── PGRDI0.png │ │ ├── PGRDJ0.png │ │ ├── PGRDK0.png │ │ ├── PGRDL0.png │ │ ├── PGRDM0.png │ │ ├── PGRDN0.png │ │ ├── PRGRO0.png │ │ ├── RBB3A0.png │ │ ├── RBB3B0.png │ │ ├── ROB1J0.png │ │ ├── ROB1K0.png │ │ ├── ROB1L0.png │ │ ├── ROB1M0.png │ │ ├── ROB1N0.png │ │ ├── ROB1O0.png │ │ ├── ROB1P0.png │ │ ├── ROB2F1.png │ │ ├── ROB2F2.png │ │ ├── ROB2F3.png │ │ ├── ROB2F4.png │ │ ├── ROB2F5.png │ │ ├── ROB2F6.png │ │ ├── ROB2F7.png │ │ ├── ROB2F8.png │ │ ├── ROB2G0.png │ │ ├── ROB2H0.png │ │ ├── ROB2I0.png │ │ ├── ROB2J0.png │ │ ├── ROB2K0.png │ │ ├── ROB2L0.png │ │ ├── ROB2M0.png │ │ ├── ROB2N0.png │ │ ├── ROB2O0.png │ │ ├── ROB3F1.png │ │ ├── ROB3F2.png │ │ ├── ROB3F3.png │ │ ├── ROB3F4.png │ │ ├── ROB3F5.png │ │ ├── ROB3F6.png │ │ ├── ROB3F7.png │ │ ├── ROB3F8.png │ │ ├── ROB3H1.png │ │ ├── ROB3H2.png │ │ ├── ROB3H3.png │ │ ├── ROB3H4.png │ │ ├── ROB3H5.png │ │ ├── ROB3H6.png │ │ ├── ROB3H7.png │ │ ├── ROB3H8.png │ │ ├── ROB3I1.png │ │ ├── ROB3I2.png │ │ ├── ROB3I3.png │ │ ├── ROB3I4.png │ │ ├── ROB3I5.png │ │ ├── ROB3I6.png │ │ ├── ROB3I7.png │ │ ├── ROB3I8.png │ │ ├── ROB3J1.png │ │ ├── ROB3J2.png │ │ ├── ROB3J3.png │ │ ├── ROB3J4.png │ │ ├── ROB3J6.png │ │ ├── ROB3J7.png │ │ ├── ROB3J8.png │ │ ├── ROB3M0.png │ │ ├── ROB3N0.png │ │ ├── ROB3O0.png │ │ ├── ROB3P0.png │ │ ├── ROB3Q0.png │ │ ├── ROB3T0.png │ │ ├── ROB3U0.png │ │ ├── ROB3V0.png │ │ ├── ROB3W0.png │ │ ├── ROB3X0.png │ │ ├── ROB3Y0.png │ │ ├── ROB3Z0.png │ │ ├── ROB3[0.png │ │ ├── ROB3]0.png │ │ ├── ROB3^0.png │ │ ├── SEWRH0.png │ │ ├── STLKP0.png │ │ ├── STLKQ0.png │ │ ├── STLKR0.png │ │ ├── STLKS0.png │ │ ├── STLKT0.png │ │ ├── STLKU0.png │ │ ├── STLKV0.png │ │ ├── STLKW0.png │ │ ├── STLKX0.png │ │ ├── STLKY0.png │ │ ├── STLKZ0.png │ │ └── STLK[0.png │ ├── doomdefs.bm │ ├── hexndefs.bm │ ├── hticdefs.bm │ └── strfdefs.bm ├── wadsrc_lights ├── CMakeLists.txt └── lights.vcproj ├── wadsrc_st ├── CMakeLists.txt ├── skulltag_actors.vcproj └── static │ ├── actors │ ├── skulltagarmor.txt │ ├── skulltagdeadthings.txt │ ├── skulltagdecorations.txt │ ├── skulltagmisc.txt │ ├── skulltagmonsters.txt │ ├── skulltagrunes.txt │ ├── skulltagspawners.txt │ ├── skulltagstatues.txt │ └── skulltagweapons.txt │ ├── decaldef.txt │ ├── decorate.txt │ ├── doomdefs.txt │ ├── language.txt │ ├── sndinfo.txt │ ├── sndseq.txt │ ├── sprites │ ├── drara0.png │ ├── drarb0.png │ ├── drarc0.png │ ├── drard0.png │ ├── hasra0.png │ ├── hasrb0.png │ ├── hasrc0.png │ ├── hasrd0.png │ ├── hijra0.png │ ├── hijrb0.png │ ├── hijrc0.png │ ├── hijrd0.png │ ├── prsra0.png │ ├── prsrb0.png │ ├── prsrc0.png │ ├── prsrd0.png │ ├── prsre0.png │ ├── ragra0.png │ ├── ragrb0.png │ ├── ragrc0.png │ ├── ragrd0.png │ ├── ragre0.png │ ├── ragrf0.png │ ├── ragrg0.png │ ├── ragrh0.png │ ├── refra0.png │ ├── refrb0.png │ ├── regra0.png │ ├── regrb0.png │ ├── resra0.png │ ├── resrb0.png │ ├── resrc0.png │ ├── resrd0.png │ ├── resre0.png │ ├── resrf0.png │ ├── resrg0.png │ ├── resrh0.png │ ├── sprra0.png │ ├── sprrb0.png │ ├── sprrc0.png │ ├── sprrd0.png │ ├── strra0.png │ ├── strrb0.png │ ├── strrc0.png │ ├── strrd0.png │ └── strre0.png │ ├── textures.txt │ └── textures │ ├── Bouncy1.jpg │ ├── Bouncy2.jpg │ ├── Bouncy3.jpg │ ├── Bouncy4.jpg │ ├── Bouncy5.jpg │ ├── Bouncy6.jpg │ ├── Bouncy7.jpg │ └── Bouncy8.jpg ├── wikifiles ├── Unlagged_World.gif ├── zcommon.bcs ├── zdefs.acs └── zspecial.acs ├── zandronum.sln └── zlib ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── README ├── adler32.c ├── algorithm.txt ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── example.c ├── gzguts.h ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── win32 ├── zlib.def └── zlib1.rc ├── zconf.h ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.vcproj ├── zutil.c └── zutil.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CleanDirectoryList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/CleanDirectoryList.cmake -------------------------------------------------------------------------------- /CreateLaunchers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/CreateLaunchers.cmake -------------------------------------------------------------------------------- /FindDRPC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/FindDRPC.cmake -------------------------------------------------------------------------------- /FindFluidSynth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/FindFluidSynth.cmake -------------------------------------------------------------------------------- /FindMPG123.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/FindMPG123.cmake -------------------------------------------------------------------------------- /FindSndFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/FindSndFile.cmake -------------------------------------------------------------------------------- /GeoIP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/GeoIP/CMakeLists.txt -------------------------------------------------------------------------------- /GeoIP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/GeoIP/COPYING -------------------------------------------------------------------------------- /GeoIP/GeoIP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/GeoIP/GeoIP.c -------------------------------------------------------------------------------- /GeoIP/GeoIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/GeoIP/GeoIP.h -------------------------------------------------------------------------------- /GeoIP/GeoIP.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/GeoIP/GeoIP.vcproj -------------------------------------------------------------------------------- /GeoIP/GeoIP_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/GeoIP/GeoIP_internal.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/README.md -------------------------------------------------------------------------------- /bzip2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/CHANGES -------------------------------------------------------------------------------- /bzip2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/CMakeLists.txt -------------------------------------------------------------------------------- /bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/LICENSE -------------------------------------------------------------------------------- /bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/README -------------------------------------------------------------------------------- /bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/blocksort.c -------------------------------------------------------------------------------- /bzip2/bzip2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/bzip2.vcproj -------------------------------------------------------------------------------- /bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/bzlib.c -------------------------------------------------------------------------------- /bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/bzlib.h -------------------------------------------------------------------------------- /bzip2/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/bzlib_private.h -------------------------------------------------------------------------------- /bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/compress.c -------------------------------------------------------------------------------- /bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/crctable.c -------------------------------------------------------------------------------- /bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/decompress.c -------------------------------------------------------------------------------- /bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/huffman.c -------------------------------------------------------------------------------- /bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/bzip2/randtable.c -------------------------------------------------------------------------------- /docs/BUILDLIC.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/BUILDLIC.TXT -------------------------------------------------------------------------------- /docs/README.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/README.asm -------------------------------------------------------------------------------- /docs/README.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/README.gl -------------------------------------------------------------------------------- /docs/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/commands.txt -------------------------------------------------------------------------------- /docs/console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/console.css -------------------------------------------------------------------------------- /docs/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/console.html -------------------------------------------------------------------------------- /docs/doomlic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/doomlic.txt -------------------------------------------------------------------------------- /docs/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/history.txt -------------------------------------------------------------------------------- /docs/rh-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/rh-log.txt -------------------------------------------------------------------------------- /docs/zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/docs/zdoom.txt -------------------------------------------------------------------------------- /dumb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/CMakeLists.txt -------------------------------------------------------------------------------- /dumb/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/ChangeLog -------------------------------------------------------------------------------- /dumb/docs/deprec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/deprec.txt -------------------------------------------------------------------------------- /dumb/docs/duhspecs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/duhspecs.txt -------------------------------------------------------------------------------- /dumb/docs/dumb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/dumb.txt -------------------------------------------------------------------------------- /dumb/docs/dumbfull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/dumbfull.txt -------------------------------------------------------------------------------- /dumb/docs/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/faq.txt -------------------------------------------------------------------------------- /dumb/docs/fnptr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/fnptr.txt -------------------------------------------------------------------------------- /dumb/docs/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/howto.txt -------------------------------------------------------------------------------- /dumb/docs/modplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/modplug.txt -------------------------------------------------------------------------------- /dumb/docs/ptr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/ptr.txt -------------------------------------------------------------------------------- /dumb/docs/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/docs/tutorial.txt -------------------------------------------------------------------------------- /dumb/examples/dumb.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/examples/dumb.ini -------------------------------------------------------------------------------- /dumb/examples/dumb2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/examples/dumb2wav.c -------------------------------------------------------------------------------- /dumb/examples/dumbout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/examples/dumbout.c -------------------------------------------------------------------------------- /dumb/examples/dumbplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/examples/dumbplay.c -------------------------------------------------------------------------------- /dumb/examples/playduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/examples/playduh.c -------------------------------------------------------------------------------- /dumb/include/dumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/include/dumb.h -------------------------------------------------------------------------------- /dumb/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/licence.txt -------------------------------------------------------------------------------- /dumb/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/readme.txt -------------------------------------------------------------------------------- /dumb/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/release.txt -------------------------------------------------------------------------------- /dumb/src/core/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/atexit.c -------------------------------------------------------------------------------- /dumb/src/core/duhlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/duhlen.c -------------------------------------------------------------------------------- /dumb/src/core/duhtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/duhtag.c -------------------------------------------------------------------------------- /dumb/src/core/dumbfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/dumbfile.c -------------------------------------------------------------------------------- /dumb/src/core/loadduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/loadduh.c -------------------------------------------------------------------------------- /dumb/src/core/makeduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/makeduh.c -------------------------------------------------------------------------------- /dumb/src/core/rawsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/rawsig.c -------------------------------------------------------------------------------- /dumb/src/core/readduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/readduh.c -------------------------------------------------------------------------------- /dumb/src/core/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/register.c -------------------------------------------------------------------------------- /dumb/src/core/rendduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/rendduh.c -------------------------------------------------------------------------------- /dumb/src/core/rendsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/rendsig.c -------------------------------------------------------------------------------- /dumb/src/core/unload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/core/unload.c -------------------------------------------------------------------------------- /dumb/src/helpers/riff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/helpers/riff.c -------------------------------------------------------------------------------- /dumb/src/it/itload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itload.c -------------------------------------------------------------------------------- /dumb/src/it/itload2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itload2.c -------------------------------------------------------------------------------- /dumb/src/it/itmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itmisc.c -------------------------------------------------------------------------------- /dumb/src/it/itorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itorder.c -------------------------------------------------------------------------------- /dumb/src/it/itread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itread.c -------------------------------------------------------------------------------- /dumb/src/it/itread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itread2.c -------------------------------------------------------------------------------- /dumb/src/it/itrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itrender.c -------------------------------------------------------------------------------- /dumb/src/it/itunload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/itunload.c -------------------------------------------------------------------------------- /dumb/src/it/load669.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/load669.c -------------------------------------------------------------------------------- /dumb/src/it/load6692.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/load6692.c -------------------------------------------------------------------------------- /dumb/src/it/loadasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadasy.c -------------------------------------------------------------------------------- /dumb/src/it/loadasy2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadasy2.c -------------------------------------------------------------------------------- /dumb/src/it/loadmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadmod.c -------------------------------------------------------------------------------- /dumb/src/it/loadmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadmod2.c -------------------------------------------------------------------------------- /dumb/src/it/loadmtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadmtm.c -------------------------------------------------------------------------------- /dumb/src/it/loadmtm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadmtm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadokt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadokt.c -------------------------------------------------------------------------------- /dumb/src/it/loadokt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadokt2.c -------------------------------------------------------------------------------- /dumb/src/it/loadoldpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadoldpsm.c -------------------------------------------------------------------------------- /dumb/src/it/loadpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadpsm.c -------------------------------------------------------------------------------- /dumb/src/it/loadpsm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadpsm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadptm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadptm.c -------------------------------------------------------------------------------- /dumb/src/it/loadptm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadptm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadriff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadriff.c -------------------------------------------------------------------------------- /dumb/src/it/loadriff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadriff2.c -------------------------------------------------------------------------------- /dumb/src/it/loads3m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loads3m.c -------------------------------------------------------------------------------- /dumb/src/it/loads3m2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loads3m2.c -------------------------------------------------------------------------------- /dumb/src/it/loadstm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadstm.c -------------------------------------------------------------------------------- /dumb/src/it/loadstm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadstm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadxm.c -------------------------------------------------------------------------------- /dumb/src/it/loadxm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/loadxm2.c -------------------------------------------------------------------------------- /dumb/src/it/ptmeffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/ptmeffect.c -------------------------------------------------------------------------------- /dumb/src/it/read669.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/read669.c -------------------------------------------------------------------------------- /dumb/src/it/read6692.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dumb/src/it/readam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readam.c -------------------------------------------------------------------------------- /dumb/src/it/readasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readasy.c -------------------------------------------------------------------------------- /dumb/src/it/readdsmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readdsmf.c -------------------------------------------------------------------------------- /dumb/src/it/readmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readmod.c -------------------------------------------------------------------------------- /dumb/src/it/readmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readmod2.c -------------------------------------------------------------------------------- /dumb/src/it/readmtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readmtm.c -------------------------------------------------------------------------------- /dumb/src/it/readokt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readokt.c -------------------------------------------------------------------------------- /dumb/src/it/readokt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readokt2.c -------------------------------------------------------------------------------- /dumb/src/it/readoldpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readoldpsm.c -------------------------------------------------------------------------------- /dumb/src/it/readpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readpsm.c -------------------------------------------------------------------------------- /dumb/src/it/readptm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readptm.c -------------------------------------------------------------------------------- /dumb/src/it/readriff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readriff.c -------------------------------------------------------------------------------- /dumb/src/it/reads3m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/reads3m.c -------------------------------------------------------------------------------- /dumb/src/it/reads3m2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/reads3m2.c -------------------------------------------------------------------------------- /dumb/src/it/readstm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readstm.c -------------------------------------------------------------------------------- /dumb/src/it/readstm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readstm2.c -------------------------------------------------------------------------------- /dumb/src/it/readxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readxm.c -------------------------------------------------------------------------------- /dumb/src/it/readxm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/readxm2.c -------------------------------------------------------------------------------- /dumb/src/it/xmeffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/src/it/xmeffect.c -------------------------------------------------------------------------------- /dumb/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/dumb/todo.txt -------------------------------------------------------------------------------- /editors/GZDoom.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/editors/GZDoom.cfg -------------------------------------------------------------------------------- /editors/GZDoom_Hexen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/editors/GZDoom_Hexen.cfg -------------------------------------------------------------------------------- /game-music-emu/gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/game-music-emu/gme.txt -------------------------------------------------------------------------------- /game-music-emu/gme/gme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/game-music-emu/gme/gme.h -------------------------------------------------------------------------------- /gdtoa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/CMakeLists.txt -------------------------------------------------------------------------------- /gdtoa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/README -------------------------------------------------------------------------------- /gdtoa/arithchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/arithchk.c -------------------------------------------------------------------------------- /gdtoa/dmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/dmisc.c -------------------------------------------------------------------------------- /gdtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/dtoa.c -------------------------------------------------------------------------------- /gdtoa/g_Qfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/g_Qfmt.c -------------------------------------------------------------------------------- /gdtoa/g__fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/g__fmt.c -------------------------------------------------------------------------------- /gdtoa/g_ddfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/g_ddfmt.c -------------------------------------------------------------------------------- /gdtoa/g_dfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/g_dfmt.c -------------------------------------------------------------------------------- /gdtoa/g_ffmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/g_ffmt.c -------------------------------------------------------------------------------- /gdtoa/g_xLfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/g_xLfmt.c -------------------------------------------------------------------------------- /gdtoa/g_xfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/g_xfmt.c -------------------------------------------------------------------------------- /gdtoa/gdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/gdtoa.c -------------------------------------------------------------------------------- /gdtoa/gdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/gdtoa.h -------------------------------------------------------------------------------- /gdtoa/gdtoa.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/gdtoa.vcproj -------------------------------------------------------------------------------- /gdtoa/gdtoa_fltrnds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/gdtoa_fltrnds.h -------------------------------------------------------------------------------- /gdtoa/gdtoaimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/gdtoaimp.h -------------------------------------------------------------------------------- /gdtoa/gethex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/gethex.c -------------------------------------------------------------------------------- /gdtoa/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/gmisc.c -------------------------------------------------------------------------------- /gdtoa/hd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/hd_init.c -------------------------------------------------------------------------------- /gdtoa/hexnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/hexnan.c -------------------------------------------------------------------------------- /gdtoa/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/misc.c -------------------------------------------------------------------------------- /gdtoa/qnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/qnan.c -------------------------------------------------------------------------------- /gdtoa/smisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/smisc.c -------------------------------------------------------------------------------- /gdtoa/strtoIQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtoIQ.c -------------------------------------------------------------------------------- /gdtoa/strtoId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtoId.c -------------------------------------------------------------------------------- /gdtoa/strtoIdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtoIdd.c -------------------------------------------------------------------------------- /gdtoa/strtoIf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtoIf.c -------------------------------------------------------------------------------- /gdtoa/strtoIg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtoIg.c -------------------------------------------------------------------------------- /gdtoa/strtoIx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtoIx.c -------------------------------------------------------------------------------- /gdtoa/strtoIxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtoIxL.c -------------------------------------------------------------------------------- /gdtoa/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtod.c -------------------------------------------------------------------------------- /gdtoa/strtodI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtodI.c -------------------------------------------------------------------------------- /gdtoa/strtodg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtodg.c -------------------------------------------------------------------------------- /gdtoa/strtodnrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtodnrp.c -------------------------------------------------------------------------------- /gdtoa/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtof.c -------------------------------------------------------------------------------- /gdtoa/strtopQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtopQ.c -------------------------------------------------------------------------------- /gdtoa/strtopd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtopd.c -------------------------------------------------------------------------------- /gdtoa/strtopdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtopdd.c -------------------------------------------------------------------------------- /gdtoa/strtopf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtopf.c -------------------------------------------------------------------------------- /gdtoa/strtopx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtopx.c -------------------------------------------------------------------------------- /gdtoa/strtopxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtopxL.c -------------------------------------------------------------------------------- /gdtoa/strtorQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtorQ.c -------------------------------------------------------------------------------- /gdtoa/strtord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtord.c -------------------------------------------------------------------------------- /gdtoa/strtordd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtordd.c -------------------------------------------------------------------------------- /gdtoa/strtorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtorf.c -------------------------------------------------------------------------------- /gdtoa/strtorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtorx.c -------------------------------------------------------------------------------- /gdtoa/strtorxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/strtorxL.c -------------------------------------------------------------------------------- /gdtoa/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/sum.c -------------------------------------------------------------------------------- /gdtoa/ulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gdtoa/ulp.c -------------------------------------------------------------------------------- /getwad/GetWAD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/GetWAD.sln -------------------------------------------------------------------------------- /getwad/docs/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/docs/bg.jpg -------------------------------------------------------------------------------- /getwad/docs/getwad.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/docs/getwad.hhp -------------------------------------------------------------------------------- /getwad/docs/getwad.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/docs/getwad.htm -------------------------------------------------------------------------------- /getwad/docs/progref.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/docs/progref.htm -------------------------------------------------------------------------------- /getwad/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/readme.txt -------------------------------------------------------------------------------- /getwad/setup/getwad.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/setup/getwad.nsi -------------------------------------------------------------------------------- /getwad/src/GetWAD.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/GetWAD.vcproj -------------------------------------------------------------------------------- /getwad/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/base64.c -------------------------------------------------------------------------------- /getwad/src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/base64.h -------------------------------------------------------------------------------- /getwad/src/browse.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/browse.bmp -------------------------------------------------------------------------------- /getwad/src/del.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/del.bmp -------------------------------------------------------------------------------- /getwad/src/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/down.bmp -------------------------------------------------------------------------------- /getwad/src/getwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwad.c -------------------------------------------------------------------------------- /getwad/src/getwad.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwad.def -------------------------------------------------------------------------------- /getwad/src/getwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwad.h -------------------------------------------------------------------------------- /getwad/src/getwad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwad.ico -------------------------------------------------------------------------------- /getwad/src/getwad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwad.rc -------------------------------------------------------------------------------- /getwad/src/getwade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwade.c -------------------------------------------------------------------------------- /getwad/src/getwade.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwade.def -------------------------------------------------------------------------------- /getwad/src/getwade.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwade.rc -------------------------------------------------------------------------------- /getwad/src/getwadrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/getwadrc.h -------------------------------------------------------------------------------- /getwad/src/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/inet.c -------------------------------------------------------------------------------- /getwad/src/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/inet.h -------------------------------------------------------------------------------- /getwad/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/makefile -------------------------------------------------------------------------------- /getwad/src/makefile.unx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/makefile.unx -------------------------------------------------------------------------------- /getwad/src/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/makefile.win -------------------------------------------------------------------------------- /getwad/src/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/manifest -------------------------------------------------------------------------------- /getwad/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/misc.c -------------------------------------------------------------------------------- /getwad/src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/misc.h -------------------------------------------------------------------------------- /getwad/src/new.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/new.bmp -------------------------------------------------------------------------------- /getwad/src/prop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/prop.bmp -------------------------------------------------------------------------------- /getwad/src/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/unzip.c -------------------------------------------------------------------------------- /getwad/src/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/unzip.h -------------------------------------------------------------------------------- /getwad/src/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/src/up.bmp -------------------------------------------------------------------------------- /getwad/unix/getwad.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/getwad/unix/getwad.ini -------------------------------------------------------------------------------- /gzdoom.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/gzdoom.vcproj -------------------------------------------------------------------------------- /jpeg-6b/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/CMakeLists.txt -------------------------------------------------------------------------------- /jpeg-6b/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/README -------------------------------------------------------------------------------- /jpeg-6b/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jcomapi.c -------------------------------------------------------------------------------- /jpeg-6b/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jconfig.h -------------------------------------------------------------------------------- /jpeg-6b/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdapimin.c -------------------------------------------------------------------------------- /jpeg-6b/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdapistd.c -------------------------------------------------------------------------------- /jpeg-6b/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdatasrc.c -------------------------------------------------------------------------------- /jpeg-6b/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdcoefct.c -------------------------------------------------------------------------------- /jpeg-6b/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdcolor.c -------------------------------------------------------------------------------- /jpeg-6b/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdct.h -------------------------------------------------------------------------------- /jpeg-6b/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jddctmgr.c -------------------------------------------------------------------------------- /jpeg-6b/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdhuff.c -------------------------------------------------------------------------------- /jpeg-6b/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdhuff.h -------------------------------------------------------------------------------- /jpeg-6b/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdinput.c -------------------------------------------------------------------------------- /jpeg-6b/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdmainct.c -------------------------------------------------------------------------------- /jpeg-6b/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdmarker.c -------------------------------------------------------------------------------- /jpeg-6b/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdmaster.c -------------------------------------------------------------------------------- /jpeg-6b/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdmerge.c -------------------------------------------------------------------------------- /jpeg-6b/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdphuff.c -------------------------------------------------------------------------------- /jpeg-6b/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdpostct.c -------------------------------------------------------------------------------- /jpeg-6b/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jdsample.c -------------------------------------------------------------------------------- /jpeg-6b/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jerror.c -------------------------------------------------------------------------------- /jpeg-6b/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jerror.h -------------------------------------------------------------------------------- /jpeg-6b/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jidctint.c -------------------------------------------------------------------------------- /jpeg-6b/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jinclude.h -------------------------------------------------------------------------------- /jpeg-6b/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jmemmgr.c -------------------------------------------------------------------------------- /jpeg-6b/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jmorecfg.h -------------------------------------------------------------------------------- /jpeg-6b/jpeg-6b.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jpeg-6b.vcproj -------------------------------------------------------------------------------- /jpeg-6b/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jpegint.h -------------------------------------------------------------------------------- /jpeg-6b/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jpeglib.h -------------------------------------------------------------------------------- /jpeg-6b/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jutils.c -------------------------------------------------------------------------------- /jpeg-6b/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/jversion.h -------------------------------------------------------------------------------- /jpeg-6b/readme-zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/jpeg-6b/readme-zdoom.txt -------------------------------------------------------------------------------- /launcher-templates/launcher.env.cmd.in: -------------------------------------------------------------------------------- 1 | set @_arg@ 2 | -------------------------------------------------------------------------------- /lzma/C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7z.h -------------------------------------------------------------------------------- /lzma/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zBuf.c -------------------------------------------------------------------------------- /lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /lzma/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zCrcOpt.c -------------------------------------------------------------------------------- /lzma/C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zDec.c -------------------------------------------------------------------------------- /lzma/C/7zIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zIn.c -------------------------------------------------------------------------------- /lzma/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zStream.c -------------------------------------------------------------------------------- /lzma/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/7zVersion.h -------------------------------------------------------------------------------- /lzma/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Bcj2.c -------------------------------------------------------------------------------- /lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /lzma/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Bra.c -------------------------------------------------------------------------------- /lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Bra.h -------------------------------------------------------------------------------- /lzma/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Bra86.c -------------------------------------------------------------------------------- /lzma/C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/CpuArch.c -------------------------------------------------------------------------------- /lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/CpuArch.h -------------------------------------------------------------------------------- /lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzFind.c -------------------------------------------------------------------------------- /lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzFind.h -------------------------------------------------------------------------------- /lzma/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzFindMt.c -------------------------------------------------------------------------------- /lzma/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzFindMt.h -------------------------------------------------------------------------------- /lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzHash.h -------------------------------------------------------------------------------- /lzma/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Lzma2Dec.c -------------------------------------------------------------------------------- /lzma/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Lzma2Dec.h -------------------------------------------------------------------------------- /lzma/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzmaDec.c -------------------------------------------------------------------------------- /lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /lzma/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzmaEnc.c -------------------------------------------------------------------------------- /lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Threads.c -------------------------------------------------------------------------------- /lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Threads.h -------------------------------------------------------------------------------- /lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/C/Types.h -------------------------------------------------------------------------------- /lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/history.txt -------------------------------------------------------------------------------- /lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/lzma.txt -------------------------------------------------------------------------------- /lzma/lzmalib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/lzma/lzmalib.vcproj -------------------------------------------------------------------------------- /masterserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/masterserver/Makefile -------------------------------------------------------------------------------- /masterserver/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/masterserver/i_system.h -------------------------------------------------------------------------------- /masterserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/masterserver/main.cpp -------------------------------------------------------------------------------- /masterserver/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/masterserver/main.h -------------------------------------------------------------------------------- /masterserver/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/masterserver/network.cpp -------------------------------------------------------------------------------- /masterserver/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/masterserver/network.h -------------------------------------------------------------------------------- /output_sdl/output_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/output_sdl/output_sdl.c -------------------------------------------------------------------------------- /protocolspec/spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/protocolspec/spec.txt -------------------------------------------------------------------------------- /rcon_utility/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/rcon_utility/i_system.h -------------------------------------------------------------------------------- /rcon_utility/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/rcon_utility/main.cpp -------------------------------------------------------------------------------- /rcon_utility/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/rcon_utility/main.h -------------------------------------------------------------------------------- /rcon_utility/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/rcon_utility/resource.h -------------------------------------------------------------------------------- /rcon_utility/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/rcon_utility/resource.rc -------------------------------------------------------------------------------- /rcon_utility/zstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/rcon_utility/zstring.cpp -------------------------------------------------------------------------------- /rcon_utility/zstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/rcon_utility/zstring.h -------------------------------------------------------------------------------- /specs/fmod_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/specs/fmod_version.txt -------------------------------------------------------------------------------- /specs/udmf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/specs/udmf.txt -------------------------------------------------------------------------------- /specs/udmf_zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/specs/udmf_zdoom.txt -------------------------------------------------------------------------------- /specs/usdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/specs/usdf.txt -------------------------------------------------------------------------------- /specs/usdf_zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/specs/usdf_zdoom.txt -------------------------------------------------------------------------------- /sqlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/sqlite/CMakeLists.txt -------------------------------------------------------------------------------- /sqlite/sqlite3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/sqlite/sqlite3.vcproj -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/EnumToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/EnumToString.h -------------------------------------------------------------------------------- /src/Linux/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/Linux/platform.h -------------------------------------------------------------------------------- /src/__autostart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/__autostart.cpp -------------------------------------------------------------------------------- /src/actionspecials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/actionspecials.h -------------------------------------------------------------------------------- /src/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/actor.h -------------------------------------------------------------------------------- /src/actorptrselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/actorptrselect.cpp -------------------------------------------------------------------------------- /src/actorptrselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/actorptrselect.h -------------------------------------------------------------------------------- /src/am_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/am_map.cpp -------------------------------------------------------------------------------- /src/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/am_map.h -------------------------------------------------------------------------------- /src/announcer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/announcer.cpp -------------------------------------------------------------------------------- /src/announcer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/announcer.h -------------------------------------------------------------------------------- /src/asm_ia32/a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/asm_ia32/a.asm -------------------------------------------------------------------------------- /src/asm_ia32/misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/asm_ia32/misc.asm -------------------------------------------------------------------------------- /src/asm_ia32/tmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/asm_ia32/tmap.asm -------------------------------------------------------------------------------- /src/asm_ia32/tmap2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/asm_ia32/tmap2.asm -------------------------------------------------------------------------------- /src/asm_ia32/tmap3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/asm_ia32/tmap3.asm -------------------------------------------------------------------------------- /src/asm_x86_64/tmap3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/asm_x86_64/tmap3.asm -------------------------------------------------------------------------------- /src/asm_x86_64/tmap3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/asm_x86_64/tmap3.s -------------------------------------------------------------------------------- /src/astar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/astar.cpp -------------------------------------------------------------------------------- /src/astar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/astar.h -------------------------------------------------------------------------------- /src/autosegs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/autosegs.h -------------------------------------------------------------------------------- /src/basicinlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/basicinlines.h -------------------------------------------------------------------------------- /src/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/basictypes.h -------------------------------------------------------------------------------- /src/botcommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/botcommands.cpp -------------------------------------------------------------------------------- /src/botcommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/botcommands.h -------------------------------------------------------------------------------- /src/botpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/botpath.cpp -------------------------------------------------------------------------------- /src/botpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/botpath.h -------------------------------------------------------------------------------- /src/bots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/bots.cpp -------------------------------------------------------------------------------- /src/bots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/bots.h -------------------------------------------------------------------------------- /src/browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/browser.cpp -------------------------------------------------------------------------------- /src/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/browser.h -------------------------------------------------------------------------------- /src/c_bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_bind.cpp -------------------------------------------------------------------------------- /src/c_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_bind.h -------------------------------------------------------------------------------- /src/c_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_cmds.cpp -------------------------------------------------------------------------------- /src/c_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_console.cpp -------------------------------------------------------------------------------- /src/c_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_console.h -------------------------------------------------------------------------------- /src/c_cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_cvars.cpp -------------------------------------------------------------------------------- /src/c_cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_cvars.h -------------------------------------------------------------------------------- /src/c_dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_dispatch.cpp -------------------------------------------------------------------------------- /src/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_dispatch.h -------------------------------------------------------------------------------- /src/c_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/c_expr.cpp -------------------------------------------------------------------------------- /src/callvote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/callvote.cpp -------------------------------------------------------------------------------- /src/callvote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/callvote.h -------------------------------------------------------------------------------- /src/campaign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/campaign.cpp -------------------------------------------------------------------------------- /src/campaign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/campaign.h -------------------------------------------------------------------------------- /src/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/chat.cpp -------------------------------------------------------------------------------- /src/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/chat.h -------------------------------------------------------------------------------- /src/cl_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_commands.cpp -------------------------------------------------------------------------------- /src/cl_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_commands.h -------------------------------------------------------------------------------- /src/cl_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_demo.cpp -------------------------------------------------------------------------------- /src/cl_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_demo.h -------------------------------------------------------------------------------- /src/cl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_main.cpp -------------------------------------------------------------------------------- /src/cl_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_main.h -------------------------------------------------------------------------------- /src/cl_pred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_pred.cpp -------------------------------------------------------------------------------- /src/cl_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_statistics.cpp -------------------------------------------------------------------------------- /src/cl_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cl_statistics.h -------------------------------------------------------------------------------- /src/cmdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cmdlib.cpp -------------------------------------------------------------------------------- /src/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cmdlib.h -------------------------------------------------------------------------------- /src/colormatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/colormatcher.cpp -------------------------------------------------------------------------------- /src/colormatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/colormatcher.h -------------------------------------------------------------------------------- /src/compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/compatibility.cpp -------------------------------------------------------------------------------- /src/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/compatibility.h -------------------------------------------------------------------------------- /src/configfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/configfile.cpp -------------------------------------------------------------------------------- /src/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/configfile.h -------------------------------------------------------------------------------- /src/cooperative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cooperative.cpp -------------------------------------------------------------------------------- /src/cooperative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/cooperative.h -------------------------------------------------------------------------------- /src/d_dehacked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_dehacked.cpp -------------------------------------------------------------------------------- /src/d_dehacked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_dehacked.h -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_gui.h -------------------------------------------------------------------------------- /src/d_iwad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_iwad.cpp -------------------------------------------------------------------------------- /src/d_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_main.cpp -------------------------------------------------------------------------------- /src/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_main.h -------------------------------------------------------------------------------- /src/d_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_net.cpp -------------------------------------------------------------------------------- /src/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_net.h -------------------------------------------------------------------------------- /src/d_netinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_netinf.h -------------------------------------------------------------------------------- /src/d_netinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_netinfo.cpp -------------------------------------------------------------------------------- /src/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_player.h -------------------------------------------------------------------------------- /src/d_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_protocol.cpp -------------------------------------------------------------------------------- /src/d_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_protocol.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/deathmatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/deathmatch.cpp -------------------------------------------------------------------------------- /src/deathmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/deathmatch.h -------------------------------------------------------------------------------- /src/decallib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/decallib.cpp -------------------------------------------------------------------------------- /src/decallib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/decallib.h -------------------------------------------------------------------------------- /src/dobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dobject.cpp -------------------------------------------------------------------------------- /src/dobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dobject.h -------------------------------------------------------------------------------- /src/dobjgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dobjgc.cpp -------------------------------------------------------------------------------- /src/dobjtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dobjtype.cpp -------------------------------------------------------------------------------- /src/dobjtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dobjtype.h -------------------------------------------------------------------------------- /src/domination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/domination.cpp -------------------------------------------------------------------------------- /src/domination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/domination.h -------------------------------------------------------------------------------- /src/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/doomdata.h -------------------------------------------------------------------------------- /src/doomdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/doomdef.cpp -------------------------------------------------------------------------------- /src/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/doomdef.h -------------------------------------------------------------------------------- /src/doomerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/doomerrors.h -------------------------------------------------------------------------------- /src/doomstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/doomstat.cpp -------------------------------------------------------------------------------- /src/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/doomstat.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/dscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dscript.h -------------------------------------------------------------------------------- /src/dsectoreffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dsectoreffect.cpp -------------------------------------------------------------------------------- /src/dsectoreffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dsectoreffect.h -------------------------------------------------------------------------------- /src/dthinker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dthinker.cpp -------------------------------------------------------------------------------- /src/dthinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/dthinker.h -------------------------------------------------------------------------------- /src/duel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/duel.cpp -------------------------------------------------------------------------------- /src/duel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/duel.h -------------------------------------------------------------------------------- /src/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/empty.cpp -------------------------------------------------------------------------------- /src/errors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/f_wipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/f_wipe.cpp -------------------------------------------------------------------------------- /src/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/f_wipe.h -------------------------------------------------------------------------------- /src/farchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/farchive.cpp -------------------------------------------------------------------------------- /src/farchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/farchive.h -------------------------------------------------------------------------------- /src/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/files.cpp -------------------------------------------------------------------------------- /src/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/files.h -------------------------------------------------------------------------------- /src/g_doom/a_bruiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_doom/a_bruiser.cpp -------------------------------------------------------------------------------- /src/g_doom/a_demon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_doom/a_demon.cpp -------------------------------------------------------------------------------- /src/g_doom/a_doomimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_doom/a_doomimp.cpp -------------------------------------------------------------------------------- /src/g_doom/a_fatso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_doom/a_fatso.cpp -------------------------------------------------------------------------------- /src/g_doom/a_keen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_doom/a_keen.cpp -------------------------------------------------------------------------------- /src/g_doom/doom_sbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_doom/doom_sbar.cpp -------------------------------------------------------------------------------- /src/g_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_game.cpp -------------------------------------------------------------------------------- /src/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_game.h -------------------------------------------------------------------------------- /src/g_hexen/a_bats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_bats.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_bishop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_bishop.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_dragon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_dragon.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_fog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_fog.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_iceguy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_iceguy.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_korax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_korax.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_pig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_pig.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_spike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_spike.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_summon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_summon.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_wraith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hexen/a_wraith.cpp -------------------------------------------------------------------------------- /src/g_hub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hub.cpp -------------------------------------------------------------------------------- /src/g_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_hub.h -------------------------------------------------------------------------------- /src/g_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_level.cpp -------------------------------------------------------------------------------- /src/g_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_level.h -------------------------------------------------------------------------------- /src/g_mapinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_mapinfo.cpp -------------------------------------------------------------------------------- /src/g_shared/a_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_action.h -------------------------------------------------------------------------------- /src/g_shared/a_armor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_armor.cpp -------------------------------------------------------------------------------- /src/g_shared/a_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_flags.cpp -------------------------------------------------------------------------------- /src/g_shared/a_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_icon.cpp -------------------------------------------------------------------------------- /src/g_shared/a_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_keys.cpp -------------------------------------------------------------------------------- /src/g_shared/a_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_keys.h -------------------------------------------------------------------------------- /src/g_shared/a_morph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_morph.cpp -------------------------------------------------------------------------------- /src/g_shared/a_morph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_morph.h -------------------------------------------------------------------------------- /src/g_shared/a_pickups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_pickups.h -------------------------------------------------------------------------------- /src/g_shared/a_quake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_quake.cpp -------------------------------------------------------------------------------- /src/g_shared/a_skies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_skies.cpp -------------------------------------------------------------------------------- /src/g_shared/a_spark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/a_spark.cpp -------------------------------------------------------------------------------- /src/g_shared/pwo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/pwo.cpp -------------------------------------------------------------------------------- /src/g_shared/pwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/pwo.h -------------------------------------------------------------------------------- /src/g_shared/sbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/sbar.h -------------------------------------------------------------------------------- /src/g_shared/sbarinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/sbarinfo.h -------------------------------------------------------------------------------- /src/g_shared/st_hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/st_hud.cpp -------------------------------------------------------------------------------- /src/g_shared/st_hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_shared/st_hud.h -------------------------------------------------------------------------------- /src/g_skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_skill.cpp -------------------------------------------------------------------------------- /src/g_strife/a_coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/g_strife/a_coin.cpp -------------------------------------------------------------------------------- /src/gameconfigfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gameconfigfile.cpp -------------------------------------------------------------------------------- /src/gameconfigfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gameconfigfile.h -------------------------------------------------------------------------------- /src/gamemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gamemode.cpp -------------------------------------------------------------------------------- /src/gamemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gamemode.h -------------------------------------------------------------------------------- /src/gamemode_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gamemode_enums.h -------------------------------------------------------------------------------- /src/gametype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gametype.h -------------------------------------------------------------------------------- /src/gccinlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gccinlines.h -------------------------------------------------------------------------------- /src/gi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gi.cpp -------------------------------------------------------------------------------- /src/gi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gi.h -------------------------------------------------------------------------------- /src/gitinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gitinfo.cpp -------------------------------------------------------------------------------- /src/gl/api/gl_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/api/gl_api.cpp -------------------------------------------------------------------------------- /src/gl/api/gl_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/api/gl_api.h -------------------------------------------------------------------------------- /src/gl/api/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/api/glcorearb.h -------------------------------------------------------------------------------- /src/gl/api/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/api/glext.h -------------------------------------------------------------------------------- /src/gl/api/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/api/wglext.h -------------------------------------------------------------------------------- /src/gl/data/gl_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/data/gl_data.cpp -------------------------------------------------------------------------------- /src/gl/data/gl_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/data/gl_data.h -------------------------------------------------------------------------------- /src/gl/data/gl_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/data/gl_setup.cpp -------------------------------------------------------------------------------- /src/gl/gl_builddraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/gl_builddraw.cpp -------------------------------------------------------------------------------- /src/gl/gl_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/gl_functions.h -------------------------------------------------------------------------------- /src/gl/hqnx/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/common.h -------------------------------------------------------------------------------- /src/gl/hqnx/hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/hq2x.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/hq3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/hq3x.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/hq4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/hq4x.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/hqx.h -------------------------------------------------------------------------------- /src/gl/hqnx/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/init.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/license.txt -------------------------------------------------------------------------------- /src/gl/hqnx/mystdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/hqnx/mystdint.h -------------------------------------------------------------------------------- /src/gl/scene/gl_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/scene/gl_bsp.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/scene/gl_portal.h -------------------------------------------------------------------------------- /src/gl/scene/gl_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/scene/gl_sky.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_wall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/scene/gl_wall.h -------------------------------------------------------------------------------- /src/gl/system/gl_cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gl/system/gl_cvars.h -------------------------------------------------------------------------------- /src/gl/system/gl_threads.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/gstrings.h -------------------------------------------------------------------------------- /src/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/hu_stuff.h -------------------------------------------------------------------------------- /src/huffman/bitreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/huffman/bitreader.h -------------------------------------------------------------------------------- /src/huffman/bitwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/huffman/bitwriter.h -------------------------------------------------------------------------------- /src/huffman/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/huffman/codec.h -------------------------------------------------------------------------------- /src/huffman/huffcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/huffman/huffcodec.h -------------------------------------------------------------------------------- /src/huffman/huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/huffman/huffman.cpp -------------------------------------------------------------------------------- /src/huffman/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/huffman/huffman.h -------------------------------------------------------------------------------- /src/i_cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/i_cd.h -------------------------------------------------------------------------------- /src/i_movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/i_movie.h -------------------------------------------------------------------------------- /src/i_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/i_net.cpp -------------------------------------------------------------------------------- /src/i_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/i_net.h -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/info.cpp -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/info.h -------------------------------------------------------------------------------- /src/invasion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/invasion.cpp -------------------------------------------------------------------------------- /src/invasion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/invasion.h -------------------------------------------------------------------------------- /src/joinqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/joinqueue.cpp -------------------------------------------------------------------------------- /src/joinqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/joinqueue.h -------------------------------------------------------------------------------- /src/keysections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/keysections.cpp -------------------------------------------------------------------------------- /src/lastmanstanding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/lastmanstanding.cpp -------------------------------------------------------------------------------- /src/lastmanstanding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/lastmanstanding.h -------------------------------------------------------------------------------- /src/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/lists.h -------------------------------------------------------------------------------- /src/lumpconfigfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/lumpconfigfile.cpp -------------------------------------------------------------------------------- /src/lumpconfigfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/lumpconfigfile.h -------------------------------------------------------------------------------- /src/m_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_alloc.cpp -------------------------------------------------------------------------------- /src/m_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_alloc.h -------------------------------------------------------------------------------- /src/m_argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_argv.cpp -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_bbox.cpp -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_cheat.cpp -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_crc32.h -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_joy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_joy.cpp -------------------------------------------------------------------------------- /src/m_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_joy.h -------------------------------------------------------------------------------- /src/m_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_misc.cpp -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/m_oldrandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_oldrandom.cpp -------------------------------------------------------------------------------- /src/m_oldrandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_oldrandom.h -------------------------------------------------------------------------------- /src/m_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_png.cpp -------------------------------------------------------------------------------- /src/m_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_png.h -------------------------------------------------------------------------------- /src/m_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_random.cpp -------------------------------------------------------------------------------- /src/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_random.h -------------------------------------------------------------------------------- /src/m_specialpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_specialpaths.cpp -------------------------------------------------------------------------------- /src/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/m_swap.h -------------------------------------------------------------------------------- /src/maprotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/maprotation.cpp -------------------------------------------------------------------------------- /src/maprotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/maprotation.h -------------------------------------------------------------------------------- /src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/md5.cpp -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/medal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/medal.cpp -------------------------------------------------------------------------------- /src/medal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/medal.h -------------------------------------------------------------------------------- /src/memarena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/memarena.cpp -------------------------------------------------------------------------------- /src/memarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/memarena.h -------------------------------------------------------------------------------- /src/menu/browsermenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/browsermenu.cpp -------------------------------------------------------------------------------- /src/menu/listmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/listmenu.cpp -------------------------------------------------------------------------------- /src/menu/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/menu.cpp -------------------------------------------------------------------------------- /src/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/menu.h -------------------------------------------------------------------------------- /src/menu/menudef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/menudef.cpp -------------------------------------------------------------------------------- /src/menu/menuinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/menuinput.cpp -------------------------------------------------------------------------------- /src/menu/messagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/messagebox.cpp -------------------------------------------------------------------------------- /src/menu/optionmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/optionmenu.cpp -------------------------------------------------------------------------------- /src/menu/playermenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/playermenu.cpp -------------------------------------------------------------------------------- /src/menu/readthis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/readthis.cpp -------------------------------------------------------------------------------- /src/menu/videomenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/menu/videomenu.cpp -------------------------------------------------------------------------------- /src/mscinlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/mscinlines.h -------------------------------------------------------------------------------- /src/mus2midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/mus2midi.cpp -------------------------------------------------------------------------------- /src/mus2midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/mus2midi.h -------------------------------------------------------------------------------- /src/name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/name.cpp -------------------------------------------------------------------------------- /src/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/name.h -------------------------------------------------------------------------------- /src/namedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/namedef.h -------------------------------------------------------------------------------- /src/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network.cpp -------------------------------------------------------------------------------- /src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network.h -------------------------------------------------------------------------------- /src/network/cl_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/cl_auth.cpp -------------------------------------------------------------------------------- /src/network/cl_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/cl_auth.h -------------------------------------------------------------------------------- /src/network/netcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/netcommand.h -------------------------------------------------------------------------------- /src/network/nettraffic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/nettraffic.h -------------------------------------------------------------------------------- /src/network/srp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/srp.cpp -------------------------------------------------------------------------------- /src/network/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/srp.h -------------------------------------------------------------------------------- /src/network/sv_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/sv_auth.cpp -------------------------------------------------------------------------------- /src/network/sv_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network/sv_auth.h -------------------------------------------------------------------------------- /src/network_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/network_enums.h -------------------------------------------------------------------------------- /src/networkheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/networkheaders.h -------------------------------------------------------------------------------- /src/networkshared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/networkshared.cpp -------------------------------------------------------------------------------- /src/networkshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/networkshared.h -------------------------------------------------------------------------------- /src/nodebuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/nodebuild.cpp -------------------------------------------------------------------------------- /src/nodebuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/nodebuild.h -------------------------------------------------------------------------------- /src/nodebuild_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/nodebuild_events.cpp -------------------------------------------------------------------------------- /src/nodebuild_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/nodebuild_gl.cpp -------------------------------------------------------------------------------- /src/oplsynth/OPL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/oplsynth/OPL3.cpp -------------------------------------------------------------------------------- /src/oplsynth/deftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/oplsynth/deftypes.h -------------------------------------------------------------------------------- /src/oplsynth/fmopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/oplsynth/fmopl.cpp -------------------------------------------------------------------------------- /src/oplsynth/mlopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/oplsynth/mlopl.cpp -------------------------------------------------------------------------------- /src/oplsynth/muslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/oplsynth/muslib.h -------------------------------------------------------------------------------- /src/oplsynth/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/oplsynth/opl.h -------------------------------------------------------------------------------- /src/p_3dfloors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_3dfloors.cpp -------------------------------------------------------------------------------- /src/p_3dfloors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_3dfloors.h -------------------------------------------------------------------------------- /src/p_3dmidtex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_3dmidtex.cpp -------------------------------------------------------------------------------- /src/p_3dmidtex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_3dmidtex.h -------------------------------------------------------------------------------- /src/p_acs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_acs.cpp -------------------------------------------------------------------------------- /src/p_acs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_acs.h -------------------------------------------------------------------------------- /src/p_buildmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_buildmap.cpp -------------------------------------------------------------------------------- /src/p_ceiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_ceiling.cpp -------------------------------------------------------------------------------- /src/p_conversation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_conversation.cpp -------------------------------------------------------------------------------- /src/p_conversation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_conversation.h -------------------------------------------------------------------------------- /src/p_doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_doors.cpp -------------------------------------------------------------------------------- /src/p_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_effect.cpp -------------------------------------------------------------------------------- /src/p_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_effect.h -------------------------------------------------------------------------------- /src/p_enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_enemy.cpp -------------------------------------------------------------------------------- /src/p_enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_enemy.h -------------------------------------------------------------------------------- /src/p_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_floor.cpp -------------------------------------------------------------------------------- /src/p_glnodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_glnodes.cpp -------------------------------------------------------------------------------- /src/p_interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_interaction.cpp -------------------------------------------------------------------------------- /src/p_lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_lights.cpp -------------------------------------------------------------------------------- /src/p_linkedsectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_linkedsectors.cpp -------------------------------------------------------------------------------- /src/p_lnspec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_lnspec.cpp -------------------------------------------------------------------------------- /src/p_lnspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_lnspec.h -------------------------------------------------------------------------------- /src/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_local.h -------------------------------------------------------------------------------- /src/p_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_map.cpp -------------------------------------------------------------------------------- /src/p_maputl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_maputl.cpp -------------------------------------------------------------------------------- /src/p_mobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_mobj.cpp -------------------------------------------------------------------------------- /src/p_pillar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_pillar.cpp -------------------------------------------------------------------------------- /src/p_plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_plats.cpp -------------------------------------------------------------------------------- /src/p_pspr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_pspr.cpp -------------------------------------------------------------------------------- /src/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_pspr.h -------------------------------------------------------------------------------- /src/p_saveg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_saveg.cpp -------------------------------------------------------------------------------- /src/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_saveg.h -------------------------------------------------------------------------------- /src/p_sectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_sectors.cpp -------------------------------------------------------------------------------- /src/p_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_setup.cpp -------------------------------------------------------------------------------- /src/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_setup.h -------------------------------------------------------------------------------- /src/p_sight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_sight.cpp -------------------------------------------------------------------------------- /src/p_slopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_slopes.cpp -------------------------------------------------------------------------------- /src/p_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_spec.cpp -------------------------------------------------------------------------------- /src/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_spec.h -------------------------------------------------------------------------------- /src/p_states.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_states.cpp -------------------------------------------------------------------------------- /src/p_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_switch.cpp -------------------------------------------------------------------------------- /src/p_teleport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_teleport.cpp -------------------------------------------------------------------------------- /src/p_terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_terrain.cpp -------------------------------------------------------------------------------- /src/p_terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_terrain.h -------------------------------------------------------------------------------- /src/p_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_things.cpp -------------------------------------------------------------------------------- /src/p_tick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_tick.cpp -------------------------------------------------------------------------------- /src/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_tick.h -------------------------------------------------------------------------------- /src/p_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_trace.cpp -------------------------------------------------------------------------------- /src/p_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_trace.h -------------------------------------------------------------------------------- /src/p_udmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_udmf.cpp -------------------------------------------------------------------------------- /src/p_udmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_udmf.h -------------------------------------------------------------------------------- /src/p_usdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_usdf.cpp -------------------------------------------------------------------------------- /src/p_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_user.cpp -------------------------------------------------------------------------------- /src/p_writemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_writemap.cpp -------------------------------------------------------------------------------- /src/p_xlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/p_xlat.cpp -------------------------------------------------------------------------------- /src/parsecontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/parsecontext.cpp -------------------------------------------------------------------------------- /src/parsecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/parsecontext.h -------------------------------------------------------------------------------- /src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/platform.cpp -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/po_man.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/po_man.cpp -------------------------------------------------------------------------------- /src/po_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/po_man.h -------------------------------------------------------------------------------- /src/possession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/possession.cpp -------------------------------------------------------------------------------- /src/possession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/possession.h -------------------------------------------------------------------------------- /src/r_3dfloors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_3dfloors.cpp -------------------------------------------------------------------------------- /src/r_3dfloors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_3dfloors.h -------------------------------------------------------------------------------- /src/r_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_bsp.cpp -------------------------------------------------------------------------------- /src/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_bsp.h -------------------------------------------------------------------------------- /src/r_data/colormaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/colormaps.cpp -------------------------------------------------------------------------------- /src/r_data/colormaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/colormaps.h -------------------------------------------------------------------------------- /src/r_data/r_translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/r_translate.h -------------------------------------------------------------------------------- /src/r_data/renderstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/renderstyle.h -------------------------------------------------------------------------------- /src/r_data/sprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/sprites.cpp -------------------------------------------------------------------------------- /src/r_data/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/sprites.h -------------------------------------------------------------------------------- /src/r_data/voxels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/voxels.cpp -------------------------------------------------------------------------------- /src/r_data/voxels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_data/voxels.h -------------------------------------------------------------------------------- /src/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_defs.h -------------------------------------------------------------------------------- /src/r_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_draw.cpp -------------------------------------------------------------------------------- /src/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_draw.h -------------------------------------------------------------------------------- /src/r_drawt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_drawt.cpp -------------------------------------------------------------------------------- /src/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_local.h -------------------------------------------------------------------------------- /src/r_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_main.cpp -------------------------------------------------------------------------------- /src/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_main.h -------------------------------------------------------------------------------- /src/r_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_plane.cpp -------------------------------------------------------------------------------- /src/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_plane.h -------------------------------------------------------------------------------- /src/r_polymost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_polymost.cpp -------------------------------------------------------------------------------- /src/r_polymost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_polymost.h -------------------------------------------------------------------------------- /src/r_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_renderer.h -------------------------------------------------------------------------------- /src/r_segs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_segs.cpp -------------------------------------------------------------------------------- /src/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_segs.h -------------------------------------------------------------------------------- /src/r_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_sky.cpp -------------------------------------------------------------------------------- /src/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_sky.h -------------------------------------------------------------------------------- /src/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_state.h -------------------------------------------------------------------------------- /src/r_swrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_swrenderer.cpp -------------------------------------------------------------------------------- /src/r_swrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_swrenderer.h -------------------------------------------------------------------------------- /src/r_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_things.cpp -------------------------------------------------------------------------------- /src/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_things.h -------------------------------------------------------------------------------- /src/r_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_utility.cpp -------------------------------------------------------------------------------- /src/r_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/r_utility.h -------------------------------------------------------------------------------- /src/richpresence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/richpresence.cpp -------------------------------------------------------------------------------- /src/s_advsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_advsound.cpp -------------------------------------------------------------------------------- /src/s_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_environment.cpp -------------------------------------------------------------------------------- /src/s_playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_playlist.cpp -------------------------------------------------------------------------------- /src/s_playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_playlist.h -------------------------------------------------------------------------------- /src/s_sndseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_sndseq.cpp -------------------------------------------------------------------------------- /src/s_sndseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_sndseq.h -------------------------------------------------------------------------------- /src/s_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_sound.cpp -------------------------------------------------------------------------------- /src/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/s_sound.h -------------------------------------------------------------------------------- /src/sc_man.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sc_man.cpp -------------------------------------------------------------------------------- /src/sc_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sc_man.h -------------------------------------------------------------------------------- /src/sc_man_scanner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sc_man_scanner.re -------------------------------------------------------------------------------- /src/sc_man_tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sc_man_tokens.h -------------------------------------------------------------------------------- /src/scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/scoreboard.cpp -------------------------------------------------------------------------------- /src/scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/scoreboard.h -------------------------------------------------------------------------------- /src/sdl/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/SDLMain.m -------------------------------------------------------------------------------- /src/sdl/crashcatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/crashcatcher.c -------------------------------------------------------------------------------- /src/sdl/critsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/critsec.h -------------------------------------------------------------------------------- /src/sdl/dikeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/dikeys.h -------------------------------------------------------------------------------- /src/sdl/glstubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/glstubs.cpp -------------------------------------------------------------------------------- /src/sdl/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/hardware.cpp -------------------------------------------------------------------------------- /src/sdl/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/hardware.h -------------------------------------------------------------------------------- /src/sdl/i_cd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_cd.cpp -------------------------------------------------------------------------------- /src/sdl/i_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_input.cpp -------------------------------------------------------------------------------- /src/sdl/i_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_input.h -------------------------------------------------------------------------------- /src/sdl/i_joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_joystick.cpp -------------------------------------------------------------------------------- /src/sdl/i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_main.cpp -------------------------------------------------------------------------------- /src/sdl/i_movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_movie.cpp -------------------------------------------------------------------------------- /src/sdl/i_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_system.cpp -------------------------------------------------------------------------------- /src/sdl/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/i_system.h -------------------------------------------------------------------------------- /src/sdl/sdlglvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/sdlglvideo.cpp -------------------------------------------------------------------------------- /src/sdl/sdlglvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/sdlglvideo.h -------------------------------------------------------------------------------- /src/sdl/sdlvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/sdlvideo.cpp -------------------------------------------------------------------------------- /src/sdl/sdlvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/sdlvideo.h -------------------------------------------------------------------------------- /src/sdl/st_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sdl/st_start.cpp -------------------------------------------------------------------------------- /src/sectinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sectinfo.cpp -------------------------------------------------------------------------------- /src/sectinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sectinfo.h -------------------------------------------------------------------------------- /src/sfmt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sfmt/LICENSE.txt -------------------------------------------------------------------------------- /src/sfmt/SFMT-alti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sfmt/SFMT-alti.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sfmt/SFMT-params.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sfmt/SFMT-sse2.h -------------------------------------------------------------------------------- /src/sfmt/SFMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sfmt/SFMT.cpp -------------------------------------------------------------------------------- /src/sfmt/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sfmt/SFMT.h -------------------------------------------------------------------------------- /src/skins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/skins.cpp -------------------------------------------------------------------------------- /src/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/skins.h -------------------------------------------------------------------------------- /src/sound/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/efx.h -------------------------------------------------------------------------------- /src/sound/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/except.h -------------------------------------------------------------------------------- /src/sound/fmod_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/fmod_wrap.h -------------------------------------------------------------------------------- /src/sound/fmodsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/fmodsound.cpp -------------------------------------------------------------------------------- /src/sound/fmodsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/fmodsound.h -------------------------------------------------------------------------------- /src/sound/i_music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/i_music.cpp -------------------------------------------------------------------------------- /src/sound/i_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/i_music.h -------------------------------------------------------------------------------- /src/sound/i_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/i_sound.cpp -------------------------------------------------------------------------------- /src/sound/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/i_sound.h -------------------------------------------------------------------------------- /src/sound/music_cd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/music_cd.cpp -------------------------------------------------------------------------------- /src/sound/music_dumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/music_dumb.cpp -------------------------------------------------------------------------------- /src/sound/music_gme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/music_gme.cpp -------------------------------------------------------------------------------- /src/sound/oalsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/oalsound.cpp -------------------------------------------------------------------------------- /src/sound/oalsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sound/oalsound.h -------------------------------------------------------------------------------- /src/st_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/st_start.h -------------------------------------------------------------------------------- /src/st_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/st_stuff.cpp -------------------------------------------------------------------------------- /src/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/st_stuff.h -------------------------------------------------------------------------------- /src/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/statistics.cpp -------------------------------------------------------------------------------- /src/statnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/statnums.h -------------------------------------------------------------------------------- /src/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/stats.cpp -------------------------------------------------------------------------------- /src/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/stats.h -------------------------------------------------------------------------------- /src/stringtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/stringtable.cpp -------------------------------------------------------------------------------- /src/stringtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/stringtable.h -------------------------------------------------------------------------------- /src/strnatcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/strnatcmp.c -------------------------------------------------------------------------------- /src/strnatcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/strnatcmp.h -------------------------------------------------------------------------------- /src/survival.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/survival.cpp -------------------------------------------------------------------------------- /src/survival.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/survival.h -------------------------------------------------------------------------------- /src/sv_ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_ban.cpp -------------------------------------------------------------------------------- /src/sv_ban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_ban.h -------------------------------------------------------------------------------- /src/sv_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_commands.cpp -------------------------------------------------------------------------------- /src/sv_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_commands.h -------------------------------------------------------------------------------- /src/sv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_main.cpp -------------------------------------------------------------------------------- /src/sv_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_main.h -------------------------------------------------------------------------------- /src/sv_master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_master.cpp -------------------------------------------------------------------------------- /src/sv_rcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_rcon.cpp -------------------------------------------------------------------------------- /src/sv_rcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_rcon.h -------------------------------------------------------------------------------- /src/sv_save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_save.cpp -------------------------------------------------------------------------------- /src/sv_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/sv_save.h -------------------------------------------------------------------------------- /src/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/tables.cpp -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/tagitem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/tarray.h -------------------------------------------------------------------------------- /src/team.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/team.cpp -------------------------------------------------------------------------------- /src/team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/team.h -------------------------------------------------------------------------------- /src/teaminfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/teaminfo.cpp -------------------------------------------------------------------------------- /src/teaminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/teaminfo.h -------------------------------------------------------------------------------- /src/tempfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/tempfiles.cpp -------------------------------------------------------------------------------- /src/tempfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/tempfiles.h -------------------------------------------------------------------------------- /src/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/templates.h -------------------------------------------------------------------------------- /src/textures/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/textures/bitmap.cpp -------------------------------------------------------------------------------- /src/textures/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/textures/bitmap.h -------------------------------------------------------------------------------- /src/textures/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/textures/texture.cpp -------------------------------------------------------------------------------- /src/textures/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/textures/textures.h -------------------------------------------------------------------------------- /src/tflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/tflags.h -------------------------------------------------------------------------------- /src/thingdef/thingdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/thingdef/thingdef.h -------------------------------------------------------------------------------- /src/timidity/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/CHANGES -------------------------------------------------------------------------------- /src/timidity/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/COPYING -------------------------------------------------------------------------------- /src/timidity/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/FAQ -------------------------------------------------------------------------------- /src/timidity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/README -------------------------------------------------------------------------------- /src/timidity/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/common.cpp -------------------------------------------------------------------------------- /src/timidity/dls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/dls1.h -------------------------------------------------------------------------------- /src/timidity/dls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/dls2.h -------------------------------------------------------------------------------- /src/timidity/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/mix.cpp -------------------------------------------------------------------------------- /src/timidity/sf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/timidity/sf2.h -------------------------------------------------------------------------------- /src/unlagged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/unlagged.cpp -------------------------------------------------------------------------------- /src/unlagged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/unlagged.h -------------------------------------------------------------------------------- /src/v_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_blend.cpp -------------------------------------------------------------------------------- /src/v_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_collection.cpp -------------------------------------------------------------------------------- /src/v_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_collection.h -------------------------------------------------------------------------------- /src/v_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_draw.cpp -------------------------------------------------------------------------------- /src/v_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_font.cpp -------------------------------------------------------------------------------- /src/v_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_font.h -------------------------------------------------------------------------------- /src/v_palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_palette.cpp -------------------------------------------------------------------------------- /src/v_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_palette.h -------------------------------------------------------------------------------- /src/v_pfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_pfx.cpp -------------------------------------------------------------------------------- /src/v_pfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_pfx.h -------------------------------------------------------------------------------- /src/v_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_text.cpp -------------------------------------------------------------------------------- /src/v_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_text.h -------------------------------------------------------------------------------- /src/v_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_video.cpp -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/valgrind.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/valgrind.inc -------------------------------------------------------------------------------- /src/vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/vectors.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/version.h -------------------------------------------------------------------------------- /src/w_wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/w_wad.cpp -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/w_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/w_zip.h -------------------------------------------------------------------------------- /src/weightedlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/weightedlist.h -------------------------------------------------------------------------------- /src/wi_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/wi_stuff.cpp -------------------------------------------------------------------------------- /src/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/wi_stuff.h -------------------------------------------------------------------------------- /src/win32/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/afxres.h -------------------------------------------------------------------------------- /src/win32/critsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/critsec.h -------------------------------------------------------------------------------- /src/win32/deadguy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/deadguy.bmp -------------------------------------------------------------------------------- /src/win32/eaxedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/eaxedit.cpp -------------------------------------------------------------------------------- /src/win32/fb_d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/fb_d3d9.cpp -------------------------------------------------------------------------------- /src/win32/g15/g15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/g15/g15.cpp -------------------------------------------------------------------------------- /src/win32/g15/g15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/g15/g15.h -------------------------------------------------------------------------------- /src/win32/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/hardware.h -------------------------------------------------------------------------------- /src/win32/i_cd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_cd.cpp -------------------------------------------------------------------------------- /src/win32/i_crash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_crash.cpp -------------------------------------------------------------------------------- /src/win32/i_dijoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_dijoy.cpp -------------------------------------------------------------------------------- /src/win32/i_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_input.cpp -------------------------------------------------------------------------------- /src/win32/i_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_input.h -------------------------------------------------------------------------------- /src/win32/i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_main.cpp -------------------------------------------------------------------------------- /src/win32/i_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_mouse.cpp -------------------------------------------------------------------------------- /src/win32/i_movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_movie.cpp -------------------------------------------------------------------------------- /src/win32/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/i_system.h -------------------------------------------------------------------------------- /src/win32/rawinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/rawinput.h -------------------------------------------------------------------------------- /src/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/resource.h -------------------------------------------------------------------------------- /src/win32/setup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/setup.bmp -------------------------------------------------------------------------------- /src/win32/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/winres.h -------------------------------------------------------------------------------- /src/win32/zdoom.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/zdoom.RES -------------------------------------------------------------------------------- /src/win32/zdoom.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/zdoom.aps -------------------------------------------------------------------------------- /src/win32/zdoom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/win32/zdoom.rc -------------------------------------------------------------------------------- /src/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/x86.cpp -------------------------------------------------------------------------------- /src/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/x86.h -------------------------------------------------------------------------------- /src/xlat/xlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/xlat/xlat.h -------------------------------------------------------------------------------- /src/xs_Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/xs_Float.h -------------------------------------------------------------------------------- /src/za_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/za_database.cpp -------------------------------------------------------------------------------- /src/za_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/za_database.h -------------------------------------------------------------------------------- /src/za_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/za_misc.cpp -------------------------------------------------------------------------------- /src/za_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/za_misc.h -------------------------------------------------------------------------------- /src/zstrformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/zstrformat.cpp -------------------------------------------------------------------------------- /src/zstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/zstring.cpp -------------------------------------------------------------------------------- /src/zstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/zstring.h -------------------------------------------------------------------------------- /src/zzautozend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/src/zzautozend.cpp -------------------------------------------------------------------------------- /statsmaker/Script1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/Script1.rc -------------------------------------------------------------------------------- /statsmaker/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/gui.cpp -------------------------------------------------------------------------------- /statsmaker/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/gui.h -------------------------------------------------------------------------------- /statsmaker/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/i_system.h -------------------------------------------------------------------------------- /statsmaker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/main.cpp -------------------------------------------------------------------------------- /statsmaker/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/main.h -------------------------------------------------------------------------------- /statsmaker/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/network.h -------------------------------------------------------------------------------- /statsmaker/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/statsmaker/resource.h -------------------------------------------------------------------------------- /strifehelp.acs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/strifehelp.acs -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lemon/lemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/lemon/lemon.c -------------------------------------------------------------------------------- /tools/lemon/lempar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/lemon/lempar.c -------------------------------------------------------------------------------- /tools/re2c/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/CHANGELOG -------------------------------------------------------------------------------- /tools/re2c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/README -------------------------------------------------------------------------------- /tools/re2c/actions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/actions.cc -------------------------------------------------------------------------------- /tools/re2c/basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/basics.h -------------------------------------------------------------------------------- /tools/re2c/code.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/code.cc -------------------------------------------------------------------------------- /tools/re2c/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/code.h -------------------------------------------------------------------------------- /tools/re2c/dfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/dfa.cc -------------------------------------------------------------------------------- /tools/re2c/dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/dfa.h -------------------------------------------------------------------------------- /tools/re2c/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/globals.h -------------------------------------------------------------------------------- /tools/re2c/ins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/ins.h -------------------------------------------------------------------------------- /tools/re2c/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/main.cc -------------------------------------------------------------------------------- /tools/re2c/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/parser.cc -------------------------------------------------------------------------------- /tools/re2c/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/parser.h -------------------------------------------------------------------------------- /tools/re2c/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/parser.y -------------------------------------------------------------------------------- /tools/re2c/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/re.h -------------------------------------------------------------------------------- /tools/re2c/re2c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/re2c.1 -------------------------------------------------------------------------------- /tools/re2c/scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/scanner.cc -------------------------------------------------------------------------------- /tools/re2c/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/scanner.h -------------------------------------------------------------------------------- /tools/re2c/scanner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/scanner.re -------------------------------------------------------------------------------- /tools/re2c/substr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/substr.cc -------------------------------------------------------------------------------- /tools/re2c/substr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/substr.h -------------------------------------------------------------------------------- /tools/re2c/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/token.h -------------------------------------------------------------------------------- /tools/re2c/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/re2c/y.tab.h -------------------------------------------------------------------------------- /tools/zipdir/zipdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/tools/zipdir/zipdir.c -------------------------------------------------------------------------------- /upnpnat/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | g++ *.cpp -o upnp-test 3 | 4 | -------------------------------------------------------------------------------- /upnpnat/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/upnpnat/test.cpp -------------------------------------------------------------------------------- /upnpnat/upnp-test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/upnpnat/upnp-test.sln -------------------------------------------------------------------------------- /upnpnat/upnpnat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/upnpnat/upnpnat.cpp -------------------------------------------------------------------------------- /upnpnat/upnpnat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/upnpnat/upnpnat.h -------------------------------------------------------------------------------- /upnpnat/xmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/upnpnat/xmlParser.cpp -------------------------------------------------------------------------------- /upnpnat/xmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/upnpnat/xmlParser.h -------------------------------------------------------------------------------- /wadsrc/static/actors/shared/damagetypes.txt: -------------------------------------------------------------------------------- 1 | damagetype Drowning 2 | { 3 | NoArmor 4 | } 5 | -------------------------------------------------------------------------------- /wadsrc/static/actors/shared/decal.txt: -------------------------------------------------------------------------------- 1 | ACTOR Decal 9200 native 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /wadsrc/wadsrc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/wadsrc/wadsrc.vcproj -------------------------------------------------------------------------------- /wikifiles/zcommon.bcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/wikifiles/zcommon.bcs -------------------------------------------------------------------------------- /wikifiles/zdefs.acs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/wikifiles/zdefs.acs -------------------------------------------------------------------------------- /zandronum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zandronum.sln -------------------------------------------------------------------------------- /zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/algorithm.txt -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/example.c -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/win32/zlib.def -------------------------------------------------------------------------------- /zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/zlib.vcproj -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgeNiaI/Q-Zandronum/HEAD/zlib/zutil.h --------------------------------------------------------------------------------