├── .gitignore ├── CMakeLists.txt ├── CleanDirectoryList.cmake ├── CreateLaunchers.cmake ├── FindFluidSynth.cmake ├── FindMPG123.cmake ├── FindSDL2.cmake ├── FindSndFile.cmake ├── README.txt ├── acc ├── .gitignore ├── Don't distribute this folder with your game ├── Makefile ├── acc.c ├── common.h ├── error.c ├── error.h ├── misc.c ├── misc.h ├── parse.c ├── parse.h ├── pcode.c ├── pcode.h ├── strlist.c ├── strlist.h ├── symbol.c ├── symbol.h ├── token.c └── token.h ├── acs ├── gdefs.acs ├── gspecial.acs └── zcommon.acs ├── 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 ├── GNU GPL.txt ├── README.asm ├── README.gl ├── commands.txt ├── console.css ├── console.html ├── history.txt ├── rh-log.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 │ │ ├── filter.cpp │ │ ├── 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 ├── features.txt ├── 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 ├── qnan.obj ├── 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 ├── 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 ├── specs ├── fmod_version.txt ├── udmf.txt ├── udmf_zdoom.txt ├── usdf.txt └── usdf_zdoom.txt ├── src ├── CMakeLists.txt ├── __autostart.cpp ├── actionspecials.h ├── actor.h ├── actorptrselect.cpp ├── actorptrselect.h ├── am_map.cpp ├── am_map.h ├── announcer.h ├── autosegs.h ├── b_bot.cpp ├── b_bot.h ├── b_func.cpp ├── b_game.cpp ├── b_move.cpp ├── b_think.cpp ├── basicinlines.h ├── basictypes.h ├── bbannouncer.cpp ├── c_bind.cpp ├── c_bind.h ├── c_cmds.cpp ├── c_console.cpp ├── c_console.h ├── c_consolebuffer.cpp ├── c_consolebuffer.h ├── c_cvars.cpp ├── c_cvars.h ├── c_dispatch.cpp ├── c_dispatch.h ├── c_expr.cpp ├── cmdlib.cpp ├── cmdlib.h ├── colormatcher.cpp ├── colormatcher.h ├── compatibility.cpp ├── compatibility.h ├── configfile.cpp ├── configfile.h ├── ct_chat.cpp ├── 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 ├── decallib.cpp ├── decallib.h ├── dobject.cpp ├── dobject.h ├── dobjgc.cpp ├── dobjtype.cpp ├── dobjtype.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 ├── empty.cpp ├── errors.h ├── f_wipe.cpp ├── f_wipe.h ├── farchive.cpp ├── farchive.h ├── files.cpp ├── files.h ├── fragglescript │ ├── t_cmd.cpp │ ├── t_fs.h │ ├── t_fspic.cpp │ ├── t_func.cpp │ ├── t_load.cpp │ ├── t_oper.cpp │ ├── t_parse.cpp │ ├── t_prepro.cpp │ ├── t_script.cpp │ ├── t_script.h │ ├── t_spec.cpp │ └── t_variable.cpp ├── g_acsresponder.cpp ├── g_acsresponder.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_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 ├── g_game.cpp ├── g_game.h ├── g_gameproperties.cpp ├── g_gameproperties.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_debris.cpp │ ├── a_decals.cpp │ ├── a_fastprojectile.cpp │ ├── a_flashfader.cpp │ ├── a_fountain.cpp │ ├── a_hatetarget.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_pickups.cpp │ ├── a_pickups.h │ ├── a_puzzleitems.cpp │ ├── a_quake.cpp │ ├── a_randomspawner.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_waterzone.cpp │ ├── a_weaponpiece.cpp │ ├── a_weaponpiece.h │ ├── a_weapons.cpp │ ├── hudmessages.cpp │ ├── sbar.h │ ├── sbar_mugshot.cpp │ ├── sbarinfo.cpp │ ├── sbarinfo.h │ ├── sbarinfo_commands.cpp │ ├── shared_hud.cpp │ └── shared_sbar.cpp ├── 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 ├── gametype.h ├── gi.cpp ├── gi.h ├── gitinfo.cpp ├── gitinfo.h ├── gl │ ├── data │ │ ├── gl_data.cpp │ │ ├── gl_data.h │ │ ├── gl_portaldata.cpp │ │ ├── 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 │ │ └── mystdint.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_scores.cpp ├── hu_stuff.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 ├── keysections.cpp ├── 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_png.cpp ├── m_png.h ├── m_random.cpp ├── m_random.h ├── m_specialpaths.cpp ├── m_swap.h ├── md5.cpp ├── md5.h ├── memarena.cpp ├── memarena.h ├── menu │ ├── colorpickermenu.cpp │ ├── joystickmenu.cpp │ ├── listmenu.cpp │ ├── loadsavemenu.cpp │ ├── menu.cpp │ ├── menu.h │ ├── menudef.cpp │ ├── menuinput.cpp │ ├── messagebox.cpp │ ├── optionmenu.cpp │ ├── optionmenuitems.h │ ├── playerdisplay.cpp │ ├── playermenu.cpp │ ├── readthis.cpp │ └── videomenu.cpp ├── mus2midi.cpp ├── mus2midi.h ├── name.cpp ├── name.h ├── namedef.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 ├── 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 ├── po_man.cpp ├── po_man.h ├── posix │ ├── cocoa │ │ ├── critsec.cpp │ │ ├── critsec.h │ │ ├── hid │ │ │ ├── HID_Config_Utilities.c │ │ │ ├── HID_Error_Handler.c │ │ │ ├── HID_Name_Lookup.c │ │ │ ├── HID_Queue_Utilities.c │ │ │ ├── HID_Utilities.c │ │ │ ├── HID_Utilities_External.h │ │ │ ├── IOHIDDevice_.c │ │ │ ├── IOHIDDevice_.h │ │ │ ├── IOHIDElement_.c │ │ │ ├── IOHIDElement_.h │ │ │ ├── IOHIDLib_.h │ │ │ ├── ImmrHIDUtilAddOn.c │ │ │ └── ImmrHIDUtilAddOn.h │ │ ├── i_backend_cocoa.mm │ │ ├── i_joystick.cpp │ │ ├── i_osversion.h │ │ ├── i_rbopts.h │ │ └── i_timer.cpp │ ├── dikeys.h │ ├── hardware.h │ ├── i_cd.cpp │ ├── i_input.h │ ├── i_movie.cpp │ ├── i_steam.cpp │ ├── i_system.cpp │ ├── i_system.h │ ├── osx │ │ ├── iwadpicker_cocoa.mm │ │ ├── zdoom-info.plist │ │ └── zdoom.icns │ ├── readme.md │ ├── sdl │ │ ├── crashcatcher.c │ │ ├── critsec.h │ │ ├── hardware.cpp │ │ ├── i_gui.cpp │ │ ├── i_input.cpp │ │ ├── i_joystick.cpp │ │ ├── i_main.cpp │ │ ├── i_system.mm │ │ ├── i_timer.cpp │ │ ├── sdlglvideo.cpp │ │ ├── sdlglvideo.h │ │ ├── sdlvideo.cpp │ │ └── sdlvideo.h │ └── st_start.cpp ├── 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_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 ├── 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 ├── 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 │ ├── 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_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_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 ├── tables.cpp ├── tables.h ├── tagitem.h ├── tarray.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 ├── 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 ├── 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 │ ├── boing1.ico │ ├── boing2.ico │ ├── boing3.ico │ ├── boing4.ico │ ├── boing5.ico │ ├── boing6.ico │ ├── boing7.ico │ ├── boing8.ico │ ├── critsec.h │ ├── deadguy.bmp │ ├── eaxedit.cpp │ ├── fb_d3d9.cpp │ ├── fb_d3d9_wipe.cpp │ ├── fb_ddraw.cpp │ ├── 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 │ ├── icon1.ico │ ├── rawinput.h │ ├── resource.h │ ├── st_start.cpp │ ├── win32gliface.cpp │ ├── win32gliface.h │ ├── win32iface.h │ ├── win32video.cpp │ ├── winres.h │ ├── zdoom.RES │ ├── zdoom.exe.manifest │ └── zdoom.rc ├── x86.cpp ├── x86.h ├── xlat │ ├── parse_xlat.cpp │ ├── xlat.h │ └── xlat_parser.y ├── xs_Float.h ├── zstrformat.cpp ├── zstring.cpp ├── zstring.h └── zzautozend.cpp ├── strifehelp.acs ├── todo.md ├── 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 ├── wadsrc ├── CMakeLists.txt └── static │ ├── acs │ └── strfhelp.o │ ├── actors │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── botstuff.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 │ │ ├── strifestuff.txt │ │ ├── strifeweapons.txt │ │ ├── templar.txt │ │ ├── thingstoblowup.txt │ │ └── zombie.txt │ ├── althudcf.txt │ ├── animated.lmp │ ├── animdefs.txt │ ├── compatibility.txt │ ├── confont.lmp │ ├── dbigfont.lmp │ ├── decaldef.txt │ ├── decorate.txt │ ├── decorate.z │ ├── dehsupp.txt │ ├── etc.h.txt │ ├── fontdefs.txt │ ├── glstuff │ ├── gllight.png │ ├── glpart.png │ ├── glpart2.png │ └── mirror.png │ ├── graphics │ ├── -badpatc.png │ ├── artibox.png │ ├── bal7scr1.png │ ├── bal7scr2.png │ ├── bfglite1.png │ ├── bfglite2.png │ ├── bfgscrc1.png │ ├── bfgscrc2.png │ ├── blast1.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 │ ├── chip1.png │ ├── chip2.png │ ├── chip3.png │ ├── chip4.png │ ├── chip5.png │ ├── clerface.png │ ├── cursor.png │ ├── fiteface.png │ ├── hamoback.png │ ├── invgeml1.png │ ├── invgeml2.png │ ├── invgemr1.png │ ├── invgemr2.png │ ├── m_back_d.png │ ├── m_back_h.png │ ├── m_back_s.png │ ├── m_back_x.png │ ├── mageface.png │ ├── plasma1.png │ ├── plasma2.png │ ├── readyico.png │ ├── scorch1.png │ ├── selectbo.png │ ├── stfbany.png │ ├── stkeys6.png │ ├── stkeys7.png │ ├── stkeys8.png │ ├── stpbany.png │ ├── twirl.png │ ├── 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 │ ├── in_epi1.txt │ ├── in_epi2.txt │ ├── in_epi3.txt │ ├── in_htc1.txt │ ├── in_htc2.txt │ ├── in_htc3.txt │ ├── indexfont │ ├── iwadinfo.txt │ ├── keyconf.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 │ ├── mindefaults.txt │ ├── plutonia.txt │ ├── strife.txt │ ├── tnt.txt │ ├── ultdoom.txt │ └── urbanbrawl.txt │ ├── menudef.txt │ ├── menudef.z │ ├── netnotch.dat │ ├── notch.dat │ ├── reverbs.txt │ ├── 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.ogg │ ├── DSDGATK.ogg │ ├── DSDGDTH.ogg │ ├── DSDGPAIN.ogg │ ├── DSDGSIT.ogg │ ├── dsempty.lmp │ ├── dsquake.ogg │ ├── dssecret.ogg │ ├── icebrk1a.ogg │ ├── icedth1.ogg │ ├── railgf1.ogg │ ├── spark1.ogg │ ├── spark2.ogg │ └── spark3.ogg │ ├── spaldoom.lmp │ ├── spalhtic.lmp │ ├── sprites │ ├── GWANA0.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 │ ├── amrka0.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 │ ├── iceca0.png │ ├── icecb0.png │ ├── icecc0.png │ ├── icecd0.png │ ├── pista0.png │ ├── plyc │ │ ├── plyca1.png │ │ ├── plyca2a8.png │ │ ├── plyca3a7.png │ │ ├── plyca4a6.png │ │ ├── plyca5.png │ │ ├── plycb1.png │ │ ├── plycb2b8.png │ │ ├── plycb3b7.png │ │ ├── plycb4b6.png │ │ ├── plycb5.png │ │ ├── plycc1.png │ │ ├── plycc2c8.png │ │ ├── plycc3c7.png │ │ ├── plycc4c6.png │ │ ├── plycc5.png │ │ ├── plycd1.png │ │ ├── plycd2d8.png │ │ ├── plycd3d7.png │ │ ├── plycd4d6.png │ │ ├── plycd5.png │ │ ├── plyce1.png │ │ ├── plyce2e8.png │ │ ├── plyce3e7.png │ │ ├── plyce4e6.png │ │ ├── plyce5.png │ │ ├── plycf1.png │ │ ├── plycf2f8.png │ │ ├── plycf3f7.png │ │ ├── plycf4f6.png │ │ ├── plycf5.png │ │ ├── plycg1.png │ │ ├── plycg2g8.png │ │ ├── plycg3g7.png │ │ ├── plycg4g6.png │ │ ├── plycg5.png │ │ ├── plych0.png │ │ ├── plyci0.png │ │ ├── plycj0.png │ │ ├── plyck0.png │ │ ├── plycl0.png │ │ ├── plycm0.png │ │ ├── plycn0.png │ │ ├── plyco0.png │ │ ├── plycp0.png │ │ ├── plycq0.png │ │ ├── plycr0.png │ │ ├── plycs0.png │ │ ├── plyct0.png │ │ ├── plycu0.png │ │ ├── plycv0.png │ │ └── plycw0.png │ ├── rsmka0.png │ ├── rsmkb0.png │ ├── rsmkc0.png │ ├── rsmkd0.png │ ├── rsmke0.png │ ├── sgrna1.png │ ├── sgrna5.png │ ├── sgrna6a4.png │ ├── sgrna7a3.png │ ├── sgrna8a2.png │ ├── spkra0.png │ ├── tlgla0.png │ ├── tlglb0.png │ ├── tlglc0.png │ ├── tlgld0.png │ ├── tlgle0.png │ ├── tnt1a0.png │ ├── unkna0.png │ └── unknb0.png │ ├── teaminfo.txt │ ├── terrain.txt │ ├── textcolors.txt │ ├── 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_bm ├── CMakeLists.txt └── 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 └── static │ ├── doomdefs.txt │ ├── hexndefs.txt │ ├── hticdefs.txt │ └── strfdefs.txt └── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CleanDirectoryList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/CleanDirectoryList.cmake -------------------------------------------------------------------------------- /CreateLaunchers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/CreateLaunchers.cmake -------------------------------------------------------------------------------- /FindFluidSynth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/FindFluidSynth.cmake -------------------------------------------------------------------------------- /FindMPG123.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/FindMPG123.cmake -------------------------------------------------------------------------------- /FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/FindSDL2.cmake -------------------------------------------------------------------------------- /FindSndFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/FindSndFile.cmake -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/README.txt -------------------------------------------------------------------------------- /acc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/.gitignore -------------------------------------------------------------------------------- /acc/Don't distribute this folder with your game: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/Makefile -------------------------------------------------------------------------------- /acc/acc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/acc.c -------------------------------------------------------------------------------- /acc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/common.h -------------------------------------------------------------------------------- /acc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/error.c -------------------------------------------------------------------------------- /acc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/error.h -------------------------------------------------------------------------------- /acc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/misc.c -------------------------------------------------------------------------------- /acc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/misc.h -------------------------------------------------------------------------------- /acc/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/parse.c -------------------------------------------------------------------------------- /acc/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/parse.h -------------------------------------------------------------------------------- /acc/pcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/pcode.c -------------------------------------------------------------------------------- /acc/pcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/pcode.h -------------------------------------------------------------------------------- /acc/strlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/strlist.c -------------------------------------------------------------------------------- /acc/strlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/strlist.h -------------------------------------------------------------------------------- /acc/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/symbol.c -------------------------------------------------------------------------------- /acc/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/symbol.h -------------------------------------------------------------------------------- /acc/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/token.c -------------------------------------------------------------------------------- /acc/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acc/token.h -------------------------------------------------------------------------------- /acs/gdefs.acs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acs/gdefs.acs -------------------------------------------------------------------------------- /acs/gspecial.acs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acs/gspecial.acs -------------------------------------------------------------------------------- /acs/zcommon.acs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/acs/zcommon.acs -------------------------------------------------------------------------------- /bzip2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/CHANGES -------------------------------------------------------------------------------- /bzip2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/CMakeLists.txt -------------------------------------------------------------------------------- /bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/LICENSE -------------------------------------------------------------------------------- /bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/README -------------------------------------------------------------------------------- /bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/blocksort.c -------------------------------------------------------------------------------- /bzip2/bzip2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/bzip2.vcproj -------------------------------------------------------------------------------- /bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/bzlib.c -------------------------------------------------------------------------------- /bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/bzlib.h -------------------------------------------------------------------------------- /bzip2/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/bzlib_private.h -------------------------------------------------------------------------------- /bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/compress.c -------------------------------------------------------------------------------- /bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/crctable.c -------------------------------------------------------------------------------- /bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/decompress.c -------------------------------------------------------------------------------- /bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/huffman.c -------------------------------------------------------------------------------- /bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/bzip2/randtable.c -------------------------------------------------------------------------------- /docs/GNU GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/GNU GPL.txt -------------------------------------------------------------------------------- /docs/README.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/README.asm -------------------------------------------------------------------------------- /docs/README.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/README.gl -------------------------------------------------------------------------------- /docs/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/commands.txt -------------------------------------------------------------------------------- /docs/console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/console.css -------------------------------------------------------------------------------- /docs/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/console.html -------------------------------------------------------------------------------- /docs/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/history.txt -------------------------------------------------------------------------------- /docs/rh-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/rh-log.txt -------------------------------------------------------------------------------- /docs/zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/docs/zdoom.txt -------------------------------------------------------------------------------- /dumb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/CMakeLists.txt -------------------------------------------------------------------------------- /dumb/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/ChangeLog -------------------------------------------------------------------------------- /dumb/docs/deprec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/deprec.txt -------------------------------------------------------------------------------- /dumb/docs/duhspecs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/duhspecs.txt -------------------------------------------------------------------------------- /dumb/docs/dumb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/dumb.txt -------------------------------------------------------------------------------- /dumb/docs/dumbfull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/dumbfull.txt -------------------------------------------------------------------------------- /dumb/docs/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/faq.txt -------------------------------------------------------------------------------- /dumb/docs/fnptr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/fnptr.txt -------------------------------------------------------------------------------- /dumb/docs/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/howto.txt -------------------------------------------------------------------------------- /dumb/docs/modplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/modplug.txt -------------------------------------------------------------------------------- /dumb/docs/ptr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/ptr.txt -------------------------------------------------------------------------------- /dumb/docs/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/docs/tutorial.txt -------------------------------------------------------------------------------- /dumb/examples/dumb.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/examples/dumb.ini -------------------------------------------------------------------------------- /dumb/examples/dumb2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/examples/dumb2wav.c -------------------------------------------------------------------------------- /dumb/examples/dumbout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/examples/dumbout.c -------------------------------------------------------------------------------- /dumb/examples/dumbplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/examples/dumbplay.c -------------------------------------------------------------------------------- /dumb/examples/playduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/examples/playduh.c -------------------------------------------------------------------------------- /dumb/include/dumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/include/dumb.h -------------------------------------------------------------------------------- /dumb/include/internal/dumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/include/internal/dumb.h -------------------------------------------------------------------------------- /dumb/include/internal/it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/include/internal/it.h -------------------------------------------------------------------------------- /dumb/include/internal/riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/include/internal/riff.h -------------------------------------------------------------------------------- /dumb/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/licence.txt -------------------------------------------------------------------------------- /dumb/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/readme.txt -------------------------------------------------------------------------------- /dumb/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/release.txt -------------------------------------------------------------------------------- /dumb/src/core/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/atexit.c -------------------------------------------------------------------------------- /dumb/src/core/duhlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/duhlen.c -------------------------------------------------------------------------------- /dumb/src/core/duhtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/duhtag.c -------------------------------------------------------------------------------- /dumb/src/core/dumbfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/dumbfile.c -------------------------------------------------------------------------------- /dumb/src/core/loadduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/loadduh.c -------------------------------------------------------------------------------- /dumb/src/core/makeduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/makeduh.c -------------------------------------------------------------------------------- /dumb/src/core/rawsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/rawsig.c -------------------------------------------------------------------------------- /dumb/src/core/readduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/readduh.c -------------------------------------------------------------------------------- /dumb/src/core/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/register.c -------------------------------------------------------------------------------- /dumb/src/core/rendduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/rendduh.c -------------------------------------------------------------------------------- /dumb/src/core/rendsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/rendsig.c -------------------------------------------------------------------------------- /dumb/src/core/unload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/core/unload.c -------------------------------------------------------------------------------- /dumb/src/helpers/barray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/barray.c -------------------------------------------------------------------------------- /dumb/src/helpers/blip_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/blip_buf.c -------------------------------------------------------------------------------- /dumb/src/helpers/clickrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/clickrem.c -------------------------------------------------------------------------------- /dumb/src/helpers/memfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/memfile.c -------------------------------------------------------------------------------- /dumb/src/helpers/resamp2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/resamp2.inc -------------------------------------------------------------------------------- /dumb/src/helpers/resamp3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/resamp3.inc -------------------------------------------------------------------------------- /dumb/src/helpers/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/resample.c -------------------------------------------------------------------------------- /dumb/src/helpers/riff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/riff.c -------------------------------------------------------------------------------- /dumb/src/helpers/sampbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/sampbuf.c -------------------------------------------------------------------------------- /dumb/src/helpers/silence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/silence.c -------------------------------------------------------------------------------- /dumb/src/helpers/stdfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/helpers/stdfile.c -------------------------------------------------------------------------------- /dumb/src/it/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/filter.cpp -------------------------------------------------------------------------------- /dumb/src/it/itload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itload.c -------------------------------------------------------------------------------- /dumb/src/it/itload2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itload2.c -------------------------------------------------------------------------------- /dumb/src/it/itmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itmisc.c -------------------------------------------------------------------------------- /dumb/src/it/itorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itorder.c -------------------------------------------------------------------------------- /dumb/src/it/itread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itread.c -------------------------------------------------------------------------------- /dumb/src/it/itread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itread2.c -------------------------------------------------------------------------------- /dumb/src/it/itrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itrender.c -------------------------------------------------------------------------------- /dumb/src/it/itunload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/itunload.c -------------------------------------------------------------------------------- /dumb/src/it/load669.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/load669.c -------------------------------------------------------------------------------- /dumb/src/it/load6692.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/load6692.c -------------------------------------------------------------------------------- /dumb/src/it/loadasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadasy.c -------------------------------------------------------------------------------- /dumb/src/it/loadasy2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadasy2.c -------------------------------------------------------------------------------- /dumb/src/it/loadmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadmod.c -------------------------------------------------------------------------------- /dumb/src/it/loadmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadmod2.c -------------------------------------------------------------------------------- /dumb/src/it/loadmtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadmtm.c -------------------------------------------------------------------------------- /dumb/src/it/loadmtm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadmtm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadokt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadokt.c -------------------------------------------------------------------------------- /dumb/src/it/loadokt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadokt2.c -------------------------------------------------------------------------------- /dumb/src/it/loadoldpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadoldpsm.c -------------------------------------------------------------------------------- /dumb/src/it/loadoldpsm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadoldpsm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadpsm.c -------------------------------------------------------------------------------- /dumb/src/it/loadpsm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadpsm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadptm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadptm.c -------------------------------------------------------------------------------- /dumb/src/it/loadptm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadptm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadriff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadriff.c -------------------------------------------------------------------------------- /dumb/src/it/loadriff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadriff2.c -------------------------------------------------------------------------------- /dumb/src/it/loads3m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loads3m.c -------------------------------------------------------------------------------- /dumb/src/it/loads3m2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loads3m2.c -------------------------------------------------------------------------------- /dumb/src/it/loadstm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadstm.c -------------------------------------------------------------------------------- /dumb/src/it/loadstm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadstm2.c -------------------------------------------------------------------------------- /dumb/src/it/loadxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadxm.c -------------------------------------------------------------------------------- /dumb/src/it/loadxm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/loadxm2.c -------------------------------------------------------------------------------- /dumb/src/it/ptmeffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/ptmeffect.c -------------------------------------------------------------------------------- /dumb/src/it/read669.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/read669.c -------------------------------------------------------------------------------- /dumb/src/it/read6692.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dumb/src/it/readam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readam.c -------------------------------------------------------------------------------- /dumb/src/it/readasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readasy.c -------------------------------------------------------------------------------- /dumb/src/it/readdsmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readdsmf.c -------------------------------------------------------------------------------- /dumb/src/it/readmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readmod.c -------------------------------------------------------------------------------- /dumb/src/it/readmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readmod2.c -------------------------------------------------------------------------------- /dumb/src/it/readmtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readmtm.c -------------------------------------------------------------------------------- /dumb/src/it/readokt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readokt.c -------------------------------------------------------------------------------- /dumb/src/it/readokt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readokt2.c -------------------------------------------------------------------------------- /dumb/src/it/readoldpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readoldpsm.c -------------------------------------------------------------------------------- /dumb/src/it/readpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readpsm.c -------------------------------------------------------------------------------- /dumb/src/it/readptm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readptm.c -------------------------------------------------------------------------------- /dumb/src/it/readriff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readriff.c -------------------------------------------------------------------------------- /dumb/src/it/reads3m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/reads3m.c -------------------------------------------------------------------------------- /dumb/src/it/reads3m2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/reads3m2.c -------------------------------------------------------------------------------- /dumb/src/it/readstm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readstm.c -------------------------------------------------------------------------------- /dumb/src/it/readstm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readstm2.c -------------------------------------------------------------------------------- /dumb/src/it/readxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readxm.c -------------------------------------------------------------------------------- /dumb/src/it/readxm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/readxm2.c -------------------------------------------------------------------------------- /dumb/src/it/xmeffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/it/xmeffect.c -------------------------------------------------------------------------------- /dumb/src/sigtypes/combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/sigtypes/combine.c -------------------------------------------------------------------------------- /dumb/src/sigtypes/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/sigtypes/sample.c -------------------------------------------------------------------------------- /dumb/src/sigtypes/sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/src/sigtypes/sequence.c -------------------------------------------------------------------------------- /dumb/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/dumb/todo.txt -------------------------------------------------------------------------------- /features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/features.txt -------------------------------------------------------------------------------- /game-music-emu/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/game-music-emu/changes.txt -------------------------------------------------------------------------------- /game-music-emu/design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/game-music-emu/design.txt -------------------------------------------------------------------------------- /game-music-emu/gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/game-music-emu/gme.txt -------------------------------------------------------------------------------- /game-music-emu/gme/gme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/game-music-emu/gme/gme.cpp -------------------------------------------------------------------------------- /game-music-emu/gme/gme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/game-music-emu/gme/gme.h -------------------------------------------------------------------------------- /game-music-emu/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/game-music-emu/license.txt -------------------------------------------------------------------------------- /game-music-emu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/game-music-emu/readme.txt -------------------------------------------------------------------------------- /gdtoa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/CMakeLists.txt -------------------------------------------------------------------------------- /gdtoa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/README -------------------------------------------------------------------------------- /gdtoa/arithchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/arithchk.c -------------------------------------------------------------------------------- /gdtoa/dmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/dmisc.c -------------------------------------------------------------------------------- /gdtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/dtoa.c -------------------------------------------------------------------------------- /gdtoa/g_Qfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/g_Qfmt.c -------------------------------------------------------------------------------- /gdtoa/g__fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/g__fmt.c -------------------------------------------------------------------------------- /gdtoa/g_ddfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/g_ddfmt.c -------------------------------------------------------------------------------- /gdtoa/g_dfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/g_dfmt.c -------------------------------------------------------------------------------- /gdtoa/g_ffmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/g_ffmt.c -------------------------------------------------------------------------------- /gdtoa/g_xLfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/g_xLfmt.c -------------------------------------------------------------------------------- /gdtoa/g_xfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/g_xfmt.c -------------------------------------------------------------------------------- /gdtoa/gdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/gdtoa.c -------------------------------------------------------------------------------- /gdtoa/gdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/gdtoa.h -------------------------------------------------------------------------------- /gdtoa/gdtoa.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/gdtoa.vcproj -------------------------------------------------------------------------------- /gdtoa/gdtoa_fltrnds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/gdtoa_fltrnds.h -------------------------------------------------------------------------------- /gdtoa/gdtoaimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/gdtoaimp.h -------------------------------------------------------------------------------- /gdtoa/gethex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/gethex.c -------------------------------------------------------------------------------- /gdtoa/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/gmisc.c -------------------------------------------------------------------------------- /gdtoa/hd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/hd_init.c -------------------------------------------------------------------------------- /gdtoa/hexnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/hexnan.c -------------------------------------------------------------------------------- /gdtoa/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/misc.c -------------------------------------------------------------------------------- /gdtoa/qnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/qnan.c -------------------------------------------------------------------------------- /gdtoa/qnan.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/qnan.obj -------------------------------------------------------------------------------- /gdtoa/smisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/smisc.c -------------------------------------------------------------------------------- /gdtoa/strtoIQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtoIQ.c -------------------------------------------------------------------------------- /gdtoa/strtoId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtoId.c -------------------------------------------------------------------------------- /gdtoa/strtoIdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtoIdd.c -------------------------------------------------------------------------------- /gdtoa/strtoIf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtoIf.c -------------------------------------------------------------------------------- /gdtoa/strtoIg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtoIg.c -------------------------------------------------------------------------------- /gdtoa/strtoIx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtoIx.c -------------------------------------------------------------------------------- /gdtoa/strtoIxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtoIxL.c -------------------------------------------------------------------------------- /gdtoa/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtod.c -------------------------------------------------------------------------------- /gdtoa/strtodI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtodI.c -------------------------------------------------------------------------------- /gdtoa/strtodg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtodg.c -------------------------------------------------------------------------------- /gdtoa/strtodnrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtodnrp.c -------------------------------------------------------------------------------- /gdtoa/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtof.c -------------------------------------------------------------------------------- /gdtoa/strtopQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtopQ.c -------------------------------------------------------------------------------- /gdtoa/strtopd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtopd.c -------------------------------------------------------------------------------- /gdtoa/strtopdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtopdd.c -------------------------------------------------------------------------------- /gdtoa/strtopf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtopf.c -------------------------------------------------------------------------------- /gdtoa/strtopx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtopx.c -------------------------------------------------------------------------------- /gdtoa/strtopxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtopxL.c -------------------------------------------------------------------------------- /gdtoa/strtorQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtorQ.c -------------------------------------------------------------------------------- /gdtoa/strtord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtord.c -------------------------------------------------------------------------------- /gdtoa/strtordd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtordd.c -------------------------------------------------------------------------------- /gdtoa/strtorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtorf.c -------------------------------------------------------------------------------- /gdtoa/strtorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtorx.c -------------------------------------------------------------------------------- /gdtoa/strtorxL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/strtorxL.c -------------------------------------------------------------------------------- /gdtoa/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/sum.c -------------------------------------------------------------------------------- /gdtoa/ulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/gdtoa/ulp.c -------------------------------------------------------------------------------- /jpeg-6b/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/CMakeLists.txt -------------------------------------------------------------------------------- /jpeg-6b/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/README -------------------------------------------------------------------------------- /jpeg-6b/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jcomapi.c -------------------------------------------------------------------------------- /jpeg-6b/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jconfig.h -------------------------------------------------------------------------------- /jpeg-6b/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdapimin.c -------------------------------------------------------------------------------- /jpeg-6b/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdapistd.c -------------------------------------------------------------------------------- /jpeg-6b/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdatasrc.c -------------------------------------------------------------------------------- /jpeg-6b/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdcoefct.c -------------------------------------------------------------------------------- /jpeg-6b/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdcolor.c -------------------------------------------------------------------------------- /jpeg-6b/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdct.h -------------------------------------------------------------------------------- /jpeg-6b/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jddctmgr.c -------------------------------------------------------------------------------- /jpeg-6b/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdhuff.c -------------------------------------------------------------------------------- /jpeg-6b/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdhuff.h -------------------------------------------------------------------------------- /jpeg-6b/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdinput.c -------------------------------------------------------------------------------- /jpeg-6b/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdmainct.c -------------------------------------------------------------------------------- /jpeg-6b/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdmarker.c -------------------------------------------------------------------------------- /jpeg-6b/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdmaster.c -------------------------------------------------------------------------------- /jpeg-6b/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdmerge.c -------------------------------------------------------------------------------- /jpeg-6b/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdphuff.c -------------------------------------------------------------------------------- /jpeg-6b/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdpostct.c -------------------------------------------------------------------------------- /jpeg-6b/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jdsample.c -------------------------------------------------------------------------------- /jpeg-6b/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jerror.c -------------------------------------------------------------------------------- /jpeg-6b/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jerror.h -------------------------------------------------------------------------------- /jpeg-6b/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jidctint.c -------------------------------------------------------------------------------- /jpeg-6b/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jinclude.h -------------------------------------------------------------------------------- /jpeg-6b/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jmemmgr.c -------------------------------------------------------------------------------- /jpeg-6b/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jmorecfg.h -------------------------------------------------------------------------------- /jpeg-6b/jpeg-6b.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jpeg-6b.vcproj -------------------------------------------------------------------------------- /jpeg-6b/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jpegint.h -------------------------------------------------------------------------------- /jpeg-6b/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jpeglib.h -------------------------------------------------------------------------------- /jpeg-6b/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jutils.c -------------------------------------------------------------------------------- /jpeg-6b/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/jversion.h -------------------------------------------------------------------------------- /jpeg-6b/readme-zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/jpeg-6b/readme-zdoom.txt -------------------------------------------------------------------------------- /launcher-templates/launcher.env.cmd.in: -------------------------------------------------------------------------------- 1 | set @_arg@ 2 | -------------------------------------------------------------------------------- /lzma/C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7z.h -------------------------------------------------------------------------------- /lzma/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zBuf.c -------------------------------------------------------------------------------- /lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /lzma/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zCrcOpt.c -------------------------------------------------------------------------------- /lzma/C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zDec.c -------------------------------------------------------------------------------- /lzma/C/7zIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zIn.c -------------------------------------------------------------------------------- /lzma/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zStream.c -------------------------------------------------------------------------------- /lzma/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/7zVersion.h -------------------------------------------------------------------------------- /lzma/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Bcj2.c -------------------------------------------------------------------------------- /lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /lzma/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Bra.c -------------------------------------------------------------------------------- /lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Bra.h -------------------------------------------------------------------------------- /lzma/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Bra86.c -------------------------------------------------------------------------------- /lzma/C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/CpuArch.c -------------------------------------------------------------------------------- /lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/CpuArch.h -------------------------------------------------------------------------------- /lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzFind.c -------------------------------------------------------------------------------- /lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzFind.h -------------------------------------------------------------------------------- /lzma/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzFindMt.c -------------------------------------------------------------------------------- /lzma/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzFindMt.h -------------------------------------------------------------------------------- /lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzHash.h -------------------------------------------------------------------------------- /lzma/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Lzma2Dec.c -------------------------------------------------------------------------------- /lzma/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Lzma2Dec.h -------------------------------------------------------------------------------- /lzma/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzmaDec.c -------------------------------------------------------------------------------- /lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /lzma/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzmaEnc.c -------------------------------------------------------------------------------- /lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Threads.c -------------------------------------------------------------------------------- /lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Threads.h -------------------------------------------------------------------------------- /lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/C/Types.h -------------------------------------------------------------------------------- /lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/history.txt -------------------------------------------------------------------------------- /lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/lzma.txt -------------------------------------------------------------------------------- /lzma/lzmalib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/lzma/lzmalib.vcproj -------------------------------------------------------------------------------- /specs/fmod_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/specs/fmod_version.txt -------------------------------------------------------------------------------- /specs/udmf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/specs/udmf.txt -------------------------------------------------------------------------------- /specs/udmf_zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/specs/udmf_zdoom.txt -------------------------------------------------------------------------------- /specs/usdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/specs/usdf.txt -------------------------------------------------------------------------------- /specs/usdf_zdoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/specs/usdf_zdoom.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/__autostart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/__autostart.cpp -------------------------------------------------------------------------------- /src/actionspecials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/actionspecials.h -------------------------------------------------------------------------------- /src/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/actor.h -------------------------------------------------------------------------------- /src/actorptrselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/actorptrselect.cpp -------------------------------------------------------------------------------- /src/actorptrselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/actorptrselect.h -------------------------------------------------------------------------------- /src/am_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/am_map.cpp -------------------------------------------------------------------------------- /src/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/am_map.h -------------------------------------------------------------------------------- /src/announcer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/announcer.h -------------------------------------------------------------------------------- /src/autosegs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/autosegs.h -------------------------------------------------------------------------------- /src/b_bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/b_bot.cpp -------------------------------------------------------------------------------- /src/b_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/b_bot.h -------------------------------------------------------------------------------- /src/b_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/b_func.cpp -------------------------------------------------------------------------------- /src/b_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/b_game.cpp -------------------------------------------------------------------------------- /src/b_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/b_move.cpp -------------------------------------------------------------------------------- /src/b_think.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/b_think.cpp -------------------------------------------------------------------------------- /src/basicinlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/basicinlines.h -------------------------------------------------------------------------------- /src/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/basictypes.h -------------------------------------------------------------------------------- /src/bbannouncer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/bbannouncer.cpp -------------------------------------------------------------------------------- /src/c_bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_bind.cpp -------------------------------------------------------------------------------- /src/c_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_bind.h -------------------------------------------------------------------------------- /src/c_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_cmds.cpp -------------------------------------------------------------------------------- /src/c_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_console.cpp -------------------------------------------------------------------------------- /src/c_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_console.h -------------------------------------------------------------------------------- /src/c_consolebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_consolebuffer.cpp -------------------------------------------------------------------------------- /src/c_consolebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_consolebuffer.h -------------------------------------------------------------------------------- /src/c_cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_cvars.cpp -------------------------------------------------------------------------------- /src/c_cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_cvars.h -------------------------------------------------------------------------------- /src/c_dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_dispatch.cpp -------------------------------------------------------------------------------- /src/c_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_dispatch.h -------------------------------------------------------------------------------- /src/c_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/c_expr.cpp -------------------------------------------------------------------------------- /src/cmdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/cmdlib.cpp -------------------------------------------------------------------------------- /src/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/cmdlib.h -------------------------------------------------------------------------------- /src/colormatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/colormatcher.cpp -------------------------------------------------------------------------------- /src/colormatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/colormatcher.h -------------------------------------------------------------------------------- /src/compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/compatibility.cpp -------------------------------------------------------------------------------- /src/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/compatibility.h -------------------------------------------------------------------------------- /src/configfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/configfile.cpp -------------------------------------------------------------------------------- /src/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/configfile.h -------------------------------------------------------------------------------- /src/ct_chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/ct_chat.cpp -------------------------------------------------------------------------------- /src/d_dehacked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_dehacked.cpp -------------------------------------------------------------------------------- /src/d_dehacked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_dehacked.h -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_gui.h -------------------------------------------------------------------------------- /src/d_iwad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_iwad.cpp -------------------------------------------------------------------------------- /src/d_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_main.cpp -------------------------------------------------------------------------------- /src/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_main.h -------------------------------------------------------------------------------- /src/d_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_net.cpp -------------------------------------------------------------------------------- /src/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_net.h -------------------------------------------------------------------------------- /src/d_netinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_netinf.h -------------------------------------------------------------------------------- /src/d_netinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_netinfo.cpp -------------------------------------------------------------------------------- /src/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_player.h -------------------------------------------------------------------------------- /src/d_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_protocol.cpp -------------------------------------------------------------------------------- /src/d_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_protocol.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/decallib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/decallib.cpp -------------------------------------------------------------------------------- /src/decallib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/decallib.h -------------------------------------------------------------------------------- /src/dobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dobject.cpp -------------------------------------------------------------------------------- /src/dobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dobject.h -------------------------------------------------------------------------------- /src/dobjgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dobjgc.cpp -------------------------------------------------------------------------------- /src/dobjtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dobjtype.cpp -------------------------------------------------------------------------------- /src/dobjtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dobjtype.h -------------------------------------------------------------------------------- /src/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/doomdata.h -------------------------------------------------------------------------------- /src/doomdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/doomdef.cpp -------------------------------------------------------------------------------- /src/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/doomdef.h -------------------------------------------------------------------------------- /src/doomerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/doomerrors.h -------------------------------------------------------------------------------- /src/doomstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/doomstat.cpp -------------------------------------------------------------------------------- /src/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/doomstat.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/dscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dscript.h -------------------------------------------------------------------------------- /src/dsectoreffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dsectoreffect.cpp -------------------------------------------------------------------------------- /src/dsectoreffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dsectoreffect.h -------------------------------------------------------------------------------- /src/dthinker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dthinker.cpp -------------------------------------------------------------------------------- /src/dthinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/dthinker.h -------------------------------------------------------------------------------- /src/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/empty.cpp -------------------------------------------------------------------------------- /src/errors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/f_wipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/f_wipe.cpp -------------------------------------------------------------------------------- /src/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/f_wipe.h -------------------------------------------------------------------------------- /src/farchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/farchive.cpp -------------------------------------------------------------------------------- /src/farchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/farchive.h -------------------------------------------------------------------------------- /src/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/files.cpp -------------------------------------------------------------------------------- /src/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/files.h -------------------------------------------------------------------------------- /src/fragglescript/t_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/fragglescript/t_fs.h -------------------------------------------------------------------------------- /src/g_acsresponder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_acsresponder.cpp -------------------------------------------------------------------------------- /src/g_acsresponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_acsresponder.h -------------------------------------------------------------------------------- /src/g_doom/a_archvile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_archvile.cpp -------------------------------------------------------------------------------- /src/g_doom/a_bossbrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_bossbrain.cpp -------------------------------------------------------------------------------- /src/g_doom/a_bruiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_bruiser.cpp -------------------------------------------------------------------------------- /src/g_doom/a_cacodemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_cacodemon.cpp -------------------------------------------------------------------------------- /src/g_doom/a_demon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_demon.cpp -------------------------------------------------------------------------------- /src/g_doom/a_doomglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_doomglobal.h -------------------------------------------------------------------------------- /src/g_doom/a_doomimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_doomimp.cpp -------------------------------------------------------------------------------- /src/g_doom/a_doommisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_doommisc.cpp -------------------------------------------------------------------------------- /src/g_doom/a_doomweaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_doomweaps.cpp -------------------------------------------------------------------------------- /src/g_doom/a_fatso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_fatso.cpp -------------------------------------------------------------------------------- /src/g_doom/a_keen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_keen.cpp -------------------------------------------------------------------------------- /src/g_doom/a_lostsoul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_lostsoul.cpp -------------------------------------------------------------------------------- /src/g_doom/a_possessed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_possessed.cpp -------------------------------------------------------------------------------- /src/g_doom/a_revenant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_doom/a_revenant.cpp -------------------------------------------------------------------------------- /src/g_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_game.cpp -------------------------------------------------------------------------------- /src/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_game.h -------------------------------------------------------------------------------- /src/g_gameproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_gameproperties.cpp -------------------------------------------------------------------------------- /src/g_gameproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_gameproperties.h -------------------------------------------------------------------------------- /src/g_heretic/a_knight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_heretic/a_knight.cpp -------------------------------------------------------------------------------- /src/g_heretic/a_wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_heretic/a_wizard.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_bats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_bats.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_bishop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_bishop.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_centaur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_centaur.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_dragon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_dragon.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_fog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_fog.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_iceguy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_iceguy.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_korax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_korax.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_magecone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_magecone.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_pig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_pig.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_serpent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_serpent.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_spike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_spike.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_summon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_summon.cpp -------------------------------------------------------------------------------- /src/g_hexen/a_wraith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hexen/a_wraith.cpp -------------------------------------------------------------------------------- /src/g_hub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hub.cpp -------------------------------------------------------------------------------- /src/g_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_hub.h -------------------------------------------------------------------------------- /src/g_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_level.cpp -------------------------------------------------------------------------------- /src/g_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_level.h -------------------------------------------------------------------------------- /src/g_mapinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_mapinfo.cpp -------------------------------------------------------------------------------- /src/g_raven/a_artitele.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_raven/a_artitele.cpp -------------------------------------------------------------------------------- /src/g_raven/a_minotaur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_raven/a_minotaur.cpp -------------------------------------------------------------------------------- /src/g_raven/ravenshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_raven/ravenshared.h -------------------------------------------------------------------------------- /src/g_shared/a_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_action.cpp -------------------------------------------------------------------------------- /src/g_shared/a_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_action.h -------------------------------------------------------------------------------- /src/g_shared/a_armor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_armor.cpp -------------------------------------------------------------------------------- /src/g_shared/a_artifacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_artifacts.h -------------------------------------------------------------------------------- /src/g_shared/a_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_bridge.cpp -------------------------------------------------------------------------------- /src/g_shared/a_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_camera.cpp -------------------------------------------------------------------------------- /src/g_shared/a_debris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_debris.cpp -------------------------------------------------------------------------------- /src/g_shared/a_decals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_decals.cpp -------------------------------------------------------------------------------- /src/g_shared/a_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_keys.cpp -------------------------------------------------------------------------------- /src/g_shared/a_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_keys.h -------------------------------------------------------------------------------- /src/g_shared/a_lightning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_lightning.h -------------------------------------------------------------------------------- /src/g_shared/a_morph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_morph.cpp -------------------------------------------------------------------------------- /src/g_shared/a_morph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_morph.h -------------------------------------------------------------------------------- /src/g_shared/a_pickups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_pickups.cpp -------------------------------------------------------------------------------- /src/g_shared/a_pickups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_pickups.h -------------------------------------------------------------------------------- /src/g_shared/a_quake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_quake.cpp -------------------------------------------------------------------------------- /src/g_shared/a_skies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_skies.cpp -------------------------------------------------------------------------------- /src/g_shared/a_spark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_spark.cpp -------------------------------------------------------------------------------- /src/g_shared/a_weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/a_weapons.cpp -------------------------------------------------------------------------------- /src/g_shared/sbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/sbar.h -------------------------------------------------------------------------------- /src/g_shared/sbarinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/sbarinfo.cpp -------------------------------------------------------------------------------- /src/g_shared/sbarinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_shared/sbarinfo.h -------------------------------------------------------------------------------- /src/g_skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_skill.cpp -------------------------------------------------------------------------------- /src/g_strife/a_acolyte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_strife/a_acolyte.cpp -------------------------------------------------------------------------------- /src/g_strife/a_coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_strife/a_coin.cpp -------------------------------------------------------------------------------- /src/g_strife/a_oracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_strife/a_oracle.cpp -------------------------------------------------------------------------------- /src/g_strife/a_reaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_strife/a_reaver.cpp -------------------------------------------------------------------------------- /src/g_strife/a_rebels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_strife/a_rebels.cpp -------------------------------------------------------------------------------- /src/g_strife/a_stalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_strife/a_stalker.cpp -------------------------------------------------------------------------------- /src/g_strife/a_templar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/g_strife/a_templar.cpp -------------------------------------------------------------------------------- /src/gameconfigfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gameconfigfile.cpp -------------------------------------------------------------------------------- /src/gameconfigfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gameconfigfile.h -------------------------------------------------------------------------------- /src/gametype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gametype.h -------------------------------------------------------------------------------- /src/gi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gi.cpp -------------------------------------------------------------------------------- /src/gi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gi.h -------------------------------------------------------------------------------- /src/gitinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gitinfo.cpp -------------------------------------------------------------------------------- /src/gitinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gitinfo.h -------------------------------------------------------------------------------- /src/gl/data/gl_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/data/gl_data.cpp -------------------------------------------------------------------------------- /src/gl/data/gl_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/data/gl_data.h -------------------------------------------------------------------------------- /src/gl/data/gl_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/data/gl_setup.cpp -------------------------------------------------------------------------------- /src/gl/dynlights/gl_glow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/dynlights/gl_glow.h -------------------------------------------------------------------------------- /src/gl/gl_builddraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/gl_builddraw.cpp -------------------------------------------------------------------------------- /src/gl/gl_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/gl_functions.h -------------------------------------------------------------------------------- /src/gl/hqnx/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/hqnx/common.h -------------------------------------------------------------------------------- /src/gl/hqnx/hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/hqnx/hq2x.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/hq3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/hqnx/hq3x.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/hq4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/hqnx/hq4x.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/hqnx/hqx.h -------------------------------------------------------------------------------- /src/gl/hqnx/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/hqnx/init.cpp -------------------------------------------------------------------------------- /src/gl/hqnx/mystdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/hqnx/mystdint.h -------------------------------------------------------------------------------- /src/gl/models/gl_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/models/gl_models.h -------------------------------------------------------------------------------- /src/gl/models/tab_anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/models/tab_anorms.h -------------------------------------------------------------------------------- /src/gl/scene/gl_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_bsp.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_clipper.h -------------------------------------------------------------------------------- /src/gl/scene/gl_decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_decal.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_drawinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_drawinfo.h -------------------------------------------------------------------------------- /src/gl/scene/gl_flats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_flats.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_portal.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_portal.h -------------------------------------------------------------------------------- /src/gl/scene/gl_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_scene.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_sky.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_sprite.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_vertex.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_wall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_wall.h -------------------------------------------------------------------------------- /src/gl/scene/gl_walls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_walls.cpp -------------------------------------------------------------------------------- /src/gl/scene/gl_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/scene/gl_weapon.cpp -------------------------------------------------------------------------------- /src/gl/shaders/gl_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/shaders/gl_shader.h -------------------------------------------------------------------------------- /src/gl/system/gl_cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/system/gl_cvars.h -------------------------------------------------------------------------------- /src/gl/system/gl_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/system/gl_menu.cpp -------------------------------------------------------------------------------- /src/gl/system/gl_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/system/gl_system.h -------------------------------------------------------------------------------- /src/gl/system/gl_threads.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gl/system/gl_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/system/gl_threads.h -------------------------------------------------------------------------------- /src/gl/system/gl_wipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/system/gl_wipe.cpp -------------------------------------------------------------------------------- /src/gl/utility/gl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/utility/gl_clock.h -------------------------------------------------------------------------------- /src/gl/utility/gl_cycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gl/utility/gl_cycler.h -------------------------------------------------------------------------------- /src/gstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/gstrings.h -------------------------------------------------------------------------------- /src/hu_scores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/hu_scores.cpp -------------------------------------------------------------------------------- /src/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/hu_stuff.h -------------------------------------------------------------------------------- /src/i_cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/i_cd.h -------------------------------------------------------------------------------- /src/i_movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/i_movie.h -------------------------------------------------------------------------------- /src/i_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/i_net.cpp -------------------------------------------------------------------------------- /src/i_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/i_net.h -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/info.cpp -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/info.h -------------------------------------------------------------------------------- /src/keysections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/keysections.cpp -------------------------------------------------------------------------------- /src/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/lists.h -------------------------------------------------------------------------------- /src/lumpconfigfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/lumpconfigfile.cpp -------------------------------------------------------------------------------- /src/lumpconfigfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/lumpconfigfile.h -------------------------------------------------------------------------------- /src/m_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_alloc.cpp -------------------------------------------------------------------------------- /src/m_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_alloc.h -------------------------------------------------------------------------------- /src/m_argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_argv.cpp -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_bbox.cpp -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_cheat.cpp -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_crc32.h -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_joy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_joy.cpp -------------------------------------------------------------------------------- /src/m_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_joy.h -------------------------------------------------------------------------------- /src/m_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_misc.cpp -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/m_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_png.cpp -------------------------------------------------------------------------------- /src/m_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_png.h -------------------------------------------------------------------------------- /src/m_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_random.cpp -------------------------------------------------------------------------------- /src/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_random.h -------------------------------------------------------------------------------- /src/m_specialpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_specialpaths.cpp -------------------------------------------------------------------------------- /src/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/m_swap.h -------------------------------------------------------------------------------- /src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/md5.cpp -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/memarena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/memarena.cpp -------------------------------------------------------------------------------- /src/memarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/memarena.h -------------------------------------------------------------------------------- /src/menu/joystickmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/joystickmenu.cpp -------------------------------------------------------------------------------- /src/menu/listmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/listmenu.cpp -------------------------------------------------------------------------------- /src/menu/loadsavemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/loadsavemenu.cpp -------------------------------------------------------------------------------- /src/menu/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/menu.cpp -------------------------------------------------------------------------------- /src/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/menu.h -------------------------------------------------------------------------------- /src/menu/menudef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/menudef.cpp -------------------------------------------------------------------------------- /src/menu/menuinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/menuinput.cpp -------------------------------------------------------------------------------- /src/menu/messagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/messagebox.cpp -------------------------------------------------------------------------------- /src/menu/optionmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/optionmenu.cpp -------------------------------------------------------------------------------- /src/menu/optionmenuitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/optionmenuitems.h -------------------------------------------------------------------------------- /src/menu/playerdisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/playerdisplay.cpp -------------------------------------------------------------------------------- /src/menu/playermenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/playermenu.cpp -------------------------------------------------------------------------------- /src/menu/readthis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/readthis.cpp -------------------------------------------------------------------------------- /src/menu/videomenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/menu/videomenu.cpp -------------------------------------------------------------------------------- /src/mus2midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/mus2midi.cpp -------------------------------------------------------------------------------- /src/mus2midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/mus2midi.h -------------------------------------------------------------------------------- /src/name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/name.cpp -------------------------------------------------------------------------------- /src/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/name.h -------------------------------------------------------------------------------- /src/namedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/namedef.h -------------------------------------------------------------------------------- /src/nodebuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/nodebuild.cpp -------------------------------------------------------------------------------- /src/nodebuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/nodebuild.h -------------------------------------------------------------------------------- /src/nodebuild_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/nodebuild_events.cpp -------------------------------------------------------------------------------- /src/nodebuild_extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/nodebuild_extract.cpp -------------------------------------------------------------------------------- /src/nodebuild_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/nodebuild_gl.cpp -------------------------------------------------------------------------------- /src/nodebuild_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/nodebuild_utility.cpp -------------------------------------------------------------------------------- /src/p_3dfloors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_3dfloors.cpp -------------------------------------------------------------------------------- /src/p_3dfloors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_3dfloors.h -------------------------------------------------------------------------------- /src/p_3dmidtex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_3dmidtex.cpp -------------------------------------------------------------------------------- /src/p_3dmidtex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_3dmidtex.h -------------------------------------------------------------------------------- /src/p_acs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_acs.cpp -------------------------------------------------------------------------------- /src/p_acs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_acs.h -------------------------------------------------------------------------------- /src/p_buildmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_buildmap.cpp -------------------------------------------------------------------------------- /src/p_ceiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_ceiling.cpp -------------------------------------------------------------------------------- /src/p_conversation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_conversation.cpp -------------------------------------------------------------------------------- /src/p_conversation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_conversation.h -------------------------------------------------------------------------------- /src/p_doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_doors.cpp -------------------------------------------------------------------------------- /src/p_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_effect.cpp -------------------------------------------------------------------------------- /src/p_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_effect.h -------------------------------------------------------------------------------- /src/p_enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_enemy.cpp -------------------------------------------------------------------------------- /src/p_enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_enemy.h -------------------------------------------------------------------------------- /src/p_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_floor.cpp -------------------------------------------------------------------------------- /src/p_glnodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_glnodes.cpp -------------------------------------------------------------------------------- /src/p_interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_interaction.cpp -------------------------------------------------------------------------------- /src/p_lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_lights.cpp -------------------------------------------------------------------------------- /src/p_linkedsectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_linkedsectors.cpp -------------------------------------------------------------------------------- /src/p_lnspec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_lnspec.cpp -------------------------------------------------------------------------------- /src/p_lnspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_lnspec.h -------------------------------------------------------------------------------- /src/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_local.h -------------------------------------------------------------------------------- /src/p_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_map.cpp -------------------------------------------------------------------------------- /src/p_maputl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_maputl.cpp -------------------------------------------------------------------------------- /src/p_mobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_mobj.cpp -------------------------------------------------------------------------------- /src/p_pillar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_pillar.cpp -------------------------------------------------------------------------------- /src/p_plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_plats.cpp -------------------------------------------------------------------------------- /src/p_pspr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_pspr.cpp -------------------------------------------------------------------------------- /src/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_pspr.h -------------------------------------------------------------------------------- /src/p_saveg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_saveg.cpp -------------------------------------------------------------------------------- /src/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_saveg.h -------------------------------------------------------------------------------- /src/p_sectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_sectors.cpp -------------------------------------------------------------------------------- /src/p_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_setup.cpp -------------------------------------------------------------------------------- /src/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_setup.h -------------------------------------------------------------------------------- /src/p_sight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_sight.cpp -------------------------------------------------------------------------------- /src/p_slopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_slopes.cpp -------------------------------------------------------------------------------- /src/p_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_spec.cpp -------------------------------------------------------------------------------- /src/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_spec.h -------------------------------------------------------------------------------- /src/p_states.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_states.cpp -------------------------------------------------------------------------------- /src/p_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_switch.cpp -------------------------------------------------------------------------------- /src/p_teleport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_teleport.cpp -------------------------------------------------------------------------------- /src/p_terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_terrain.cpp -------------------------------------------------------------------------------- /src/p_terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_terrain.h -------------------------------------------------------------------------------- /src/p_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_things.cpp -------------------------------------------------------------------------------- /src/p_tick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_tick.cpp -------------------------------------------------------------------------------- /src/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_tick.h -------------------------------------------------------------------------------- /src/p_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_trace.cpp -------------------------------------------------------------------------------- /src/p_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_trace.h -------------------------------------------------------------------------------- /src/p_udmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_udmf.cpp -------------------------------------------------------------------------------- /src/p_udmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_udmf.h -------------------------------------------------------------------------------- /src/p_usdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_usdf.cpp -------------------------------------------------------------------------------- /src/p_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_user.cpp -------------------------------------------------------------------------------- /src/p_writemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_writemap.cpp -------------------------------------------------------------------------------- /src/p_xlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/p_xlat.cpp -------------------------------------------------------------------------------- /src/parsecontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/parsecontext.cpp -------------------------------------------------------------------------------- /src/parsecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/parsecontext.h -------------------------------------------------------------------------------- /src/po_man.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/po_man.cpp -------------------------------------------------------------------------------- /src/po_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/po_man.h -------------------------------------------------------------------------------- /src/posix/cocoa/critsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/cocoa/critsec.h -------------------------------------------------------------------------------- /src/posix/cocoa/i_rbopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/cocoa/i_rbopts.h -------------------------------------------------------------------------------- /src/posix/dikeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/dikeys.h -------------------------------------------------------------------------------- /src/posix/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/hardware.h -------------------------------------------------------------------------------- /src/posix/i_cd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/i_cd.cpp -------------------------------------------------------------------------------- /src/posix/i_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/i_input.h -------------------------------------------------------------------------------- /src/posix/i_movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/i_movie.cpp -------------------------------------------------------------------------------- /src/posix/i_steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/i_steam.cpp -------------------------------------------------------------------------------- /src/posix/i_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/i_system.cpp -------------------------------------------------------------------------------- /src/posix/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/i_system.h -------------------------------------------------------------------------------- /src/posix/osx/zdoom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/osx/zdoom.icns -------------------------------------------------------------------------------- /src/posix/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/readme.md -------------------------------------------------------------------------------- /src/posix/sdl/critsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/critsec.h -------------------------------------------------------------------------------- /src/posix/sdl/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/hardware.cpp -------------------------------------------------------------------------------- /src/posix/sdl/i_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/i_gui.cpp -------------------------------------------------------------------------------- /src/posix/sdl/i_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/i_input.cpp -------------------------------------------------------------------------------- /src/posix/sdl/i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/i_main.cpp -------------------------------------------------------------------------------- /src/posix/sdl/i_system.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/i_system.mm -------------------------------------------------------------------------------- /src/posix/sdl/i_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/i_timer.cpp -------------------------------------------------------------------------------- /src/posix/sdl/sdlglvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/sdlglvideo.h -------------------------------------------------------------------------------- /src/posix/sdl/sdlvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/sdlvideo.cpp -------------------------------------------------------------------------------- /src/posix/sdl/sdlvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/sdl/sdlvideo.h -------------------------------------------------------------------------------- /src/posix/st_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/posix/st_start.cpp -------------------------------------------------------------------------------- /src/r_3dfloors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_3dfloors.cpp -------------------------------------------------------------------------------- /src/r_3dfloors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_3dfloors.h -------------------------------------------------------------------------------- /src/r_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_bsp.cpp -------------------------------------------------------------------------------- /src/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_bsp.h -------------------------------------------------------------------------------- /src/r_data/colormaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/colormaps.cpp -------------------------------------------------------------------------------- /src/r_data/colormaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/colormaps.h -------------------------------------------------------------------------------- /src/r_data/r_interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/r_interpolate.h -------------------------------------------------------------------------------- /src/r_data/r_translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/r_translate.cpp -------------------------------------------------------------------------------- /src/r_data/r_translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/r_translate.h -------------------------------------------------------------------------------- /src/r_data/renderstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/renderstyle.cpp -------------------------------------------------------------------------------- /src/r_data/renderstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/renderstyle.h -------------------------------------------------------------------------------- /src/r_data/sprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/sprites.cpp -------------------------------------------------------------------------------- /src/r_data/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/sprites.h -------------------------------------------------------------------------------- /src/r_data/voxels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/voxels.cpp -------------------------------------------------------------------------------- /src/r_data/voxels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_data/voxels.h -------------------------------------------------------------------------------- /src/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_defs.h -------------------------------------------------------------------------------- /src/r_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_draw.cpp -------------------------------------------------------------------------------- /src/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_draw.h -------------------------------------------------------------------------------- /src/r_drawt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_drawt.cpp -------------------------------------------------------------------------------- /src/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_local.h -------------------------------------------------------------------------------- /src/r_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_main.cpp -------------------------------------------------------------------------------- /src/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_main.h -------------------------------------------------------------------------------- /src/r_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_plane.cpp -------------------------------------------------------------------------------- /src/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_plane.h -------------------------------------------------------------------------------- /src/r_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_renderer.h -------------------------------------------------------------------------------- /src/r_segs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_segs.cpp -------------------------------------------------------------------------------- /src/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_segs.h -------------------------------------------------------------------------------- /src/r_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_sky.cpp -------------------------------------------------------------------------------- /src/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_sky.h -------------------------------------------------------------------------------- /src/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_state.h -------------------------------------------------------------------------------- /src/r_swrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_swrenderer.cpp -------------------------------------------------------------------------------- /src/r_swrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_swrenderer.h -------------------------------------------------------------------------------- /src/r_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_things.cpp -------------------------------------------------------------------------------- /src/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_things.h -------------------------------------------------------------------------------- /src/r_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_utility.cpp -------------------------------------------------------------------------------- /src/r_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/r_utility.h -------------------------------------------------------------------------------- /src/s_advsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_advsound.cpp -------------------------------------------------------------------------------- /src/s_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_environment.cpp -------------------------------------------------------------------------------- /src/s_playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_playlist.cpp -------------------------------------------------------------------------------- /src/s_playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_playlist.h -------------------------------------------------------------------------------- /src/s_sndseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_sndseq.cpp -------------------------------------------------------------------------------- /src/s_sndseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_sndseq.h -------------------------------------------------------------------------------- /src/s_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_sound.cpp -------------------------------------------------------------------------------- /src/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/s_sound.h -------------------------------------------------------------------------------- /src/sc_man.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sc_man.cpp -------------------------------------------------------------------------------- /src/sc_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sc_man.h -------------------------------------------------------------------------------- /src/sc_man_scanner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sc_man_scanner.re -------------------------------------------------------------------------------- /src/sc_man_tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sc_man_tokens.h -------------------------------------------------------------------------------- /src/sfmt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/LICENSE.txt -------------------------------------------------------------------------------- /src/sfmt/SFMT-alti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT-alti.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT-params.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-params1279.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT-params1279.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-params2281.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT-params2281.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-params4253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT-params4253.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-params607.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT-params607.h -------------------------------------------------------------------------------- /src/sfmt/SFMT-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT-sse2.h -------------------------------------------------------------------------------- /src/sfmt/SFMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT.cpp -------------------------------------------------------------------------------- /src/sfmt/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sfmt/SFMT.h -------------------------------------------------------------------------------- /src/skins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/skins.cpp -------------------------------------------------------------------------------- /src/skins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/skins.h -------------------------------------------------------------------------------- /src/sound/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/efx.h -------------------------------------------------------------------------------- /src/sound/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/except.h -------------------------------------------------------------------------------- /src/sound/i_music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/i_music.cpp -------------------------------------------------------------------------------- /src/sound/i_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/i_music.h -------------------------------------------------------------------------------- /src/sound/i_musicinterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/i_musicinterns.h -------------------------------------------------------------------------------- /src/sound/i_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/i_sound.cpp -------------------------------------------------------------------------------- /src/sound/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/i_sound.h -------------------------------------------------------------------------------- /src/sound/mpg123_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/mpg123_decoder.h -------------------------------------------------------------------------------- /src/sound/music_cd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/music_cd.cpp -------------------------------------------------------------------------------- /src/sound/music_dumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/music_dumb.cpp -------------------------------------------------------------------------------- /src/sound/music_gme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/music_gme.cpp -------------------------------------------------------------------------------- /src/sound/music_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/music_stream.cpp -------------------------------------------------------------------------------- /src/sound/oalsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/oalsound.cpp -------------------------------------------------------------------------------- /src/sound/oalsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/sound/oalsound.h -------------------------------------------------------------------------------- /src/st_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/st_start.h -------------------------------------------------------------------------------- /src/st_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/st_stuff.cpp -------------------------------------------------------------------------------- /src/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/st_stuff.h -------------------------------------------------------------------------------- /src/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/statistics.cpp -------------------------------------------------------------------------------- /src/statnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/statnums.h -------------------------------------------------------------------------------- /src/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/stats.cpp -------------------------------------------------------------------------------- /src/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/stats.h -------------------------------------------------------------------------------- /src/stringtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/stringtable.cpp -------------------------------------------------------------------------------- /src/stringtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/stringtable.h -------------------------------------------------------------------------------- /src/strnatcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/strnatcmp.c -------------------------------------------------------------------------------- /src/strnatcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/strnatcmp.h -------------------------------------------------------------------------------- /src/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/tables.cpp -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/tagitem.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/tarray.h -------------------------------------------------------------------------------- /src/teaminfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/teaminfo.cpp -------------------------------------------------------------------------------- /src/teaminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/teaminfo.h -------------------------------------------------------------------------------- /src/tempfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/tempfiles.cpp -------------------------------------------------------------------------------- /src/tempfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/tempfiles.h -------------------------------------------------------------------------------- /src/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/templates.h -------------------------------------------------------------------------------- /src/textures/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/textures/bitmap.cpp -------------------------------------------------------------------------------- /src/textures/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/textures/bitmap.h -------------------------------------------------------------------------------- /src/textures/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/textures/texture.cpp -------------------------------------------------------------------------------- /src/textures/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/textures/textures.h -------------------------------------------------------------------------------- /src/thingdef/thingdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/thingdef/thingdef.cpp -------------------------------------------------------------------------------- /src/thingdef/thingdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/thingdef/thingdef.h -------------------------------------------------------------------------------- /src/timidity/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/CHANGES -------------------------------------------------------------------------------- /src/timidity/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/COPYING -------------------------------------------------------------------------------- /src/timidity/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/FAQ -------------------------------------------------------------------------------- /src/timidity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/README -------------------------------------------------------------------------------- /src/timidity/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/common.cpp -------------------------------------------------------------------------------- /src/timidity/dls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/dls1.h -------------------------------------------------------------------------------- /src/timidity/dls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/dls2.h -------------------------------------------------------------------------------- /src/timidity/gf1patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/gf1patch.h -------------------------------------------------------------------------------- /src/timidity/instrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/instrum.cpp -------------------------------------------------------------------------------- /src/timidity/instrum.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/instrum.obj -------------------------------------------------------------------------------- /src/timidity/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/mix.cpp -------------------------------------------------------------------------------- /src/timidity/playmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/playmidi.cpp -------------------------------------------------------------------------------- /src/timidity/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/resample.cpp -------------------------------------------------------------------------------- /src/timidity/sf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/sf2.h -------------------------------------------------------------------------------- /src/timidity/timidity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/timidity.cpp -------------------------------------------------------------------------------- /src/timidity/timidity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/timidity/timidity.h -------------------------------------------------------------------------------- /src/v_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_blend.cpp -------------------------------------------------------------------------------- /src/v_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_collection.cpp -------------------------------------------------------------------------------- /src/v_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_collection.h -------------------------------------------------------------------------------- /src/v_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_draw.cpp -------------------------------------------------------------------------------- /src/v_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_font.cpp -------------------------------------------------------------------------------- /src/v_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_font.h -------------------------------------------------------------------------------- /src/v_palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_palette.cpp -------------------------------------------------------------------------------- /src/v_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_palette.h -------------------------------------------------------------------------------- /src/v_pfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_pfx.cpp -------------------------------------------------------------------------------- /src/v_pfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_pfx.h -------------------------------------------------------------------------------- /src/v_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_text.cpp -------------------------------------------------------------------------------- /src/v_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_text.h -------------------------------------------------------------------------------- /src/v_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_video.cpp -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/valgrind.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/valgrind.inc -------------------------------------------------------------------------------- /src/vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/vectors.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/version.h -------------------------------------------------------------------------------- /src/w_wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/w_wad.cpp -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/w_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/w_zip.h -------------------------------------------------------------------------------- /src/weightedlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/weightedlist.h -------------------------------------------------------------------------------- /src/wi_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/wi_stuff.cpp -------------------------------------------------------------------------------- /src/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/wi_stuff.h -------------------------------------------------------------------------------- /src/win32/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/afxres.h -------------------------------------------------------------------------------- /src/win32/boing1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing1.ico -------------------------------------------------------------------------------- /src/win32/boing2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing2.ico -------------------------------------------------------------------------------- /src/win32/boing3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing3.ico -------------------------------------------------------------------------------- /src/win32/boing4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing4.ico -------------------------------------------------------------------------------- /src/win32/boing5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing5.ico -------------------------------------------------------------------------------- /src/win32/boing6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing6.ico -------------------------------------------------------------------------------- /src/win32/boing7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing7.ico -------------------------------------------------------------------------------- /src/win32/boing8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/boing8.ico -------------------------------------------------------------------------------- /src/win32/critsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/critsec.h -------------------------------------------------------------------------------- /src/win32/deadguy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/deadguy.bmp -------------------------------------------------------------------------------- /src/win32/eaxedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/eaxedit.cpp -------------------------------------------------------------------------------- /src/win32/fb_d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/fb_d3d9.cpp -------------------------------------------------------------------------------- /src/win32/fb_d3d9_wipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/fb_d3d9_wipe.cpp -------------------------------------------------------------------------------- /src/win32/fb_ddraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/fb_ddraw.cpp -------------------------------------------------------------------------------- /src/win32/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/hardware.cpp -------------------------------------------------------------------------------- /src/win32/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/hardware.h -------------------------------------------------------------------------------- /src/win32/helperthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/helperthread.cpp -------------------------------------------------------------------------------- /src/win32/helperthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/helperthread.h -------------------------------------------------------------------------------- /src/win32/i_cd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_cd.cpp -------------------------------------------------------------------------------- /src/win32/i_crash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_crash.cpp -------------------------------------------------------------------------------- /src/win32/i_dijoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_dijoy.cpp -------------------------------------------------------------------------------- /src/win32/i_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_input.cpp -------------------------------------------------------------------------------- /src/win32/i_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_input.h -------------------------------------------------------------------------------- /src/win32/i_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_keyboard.cpp -------------------------------------------------------------------------------- /src/win32/i_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_main.cpp -------------------------------------------------------------------------------- /src/win32/i_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_mouse.cpp -------------------------------------------------------------------------------- /src/win32/i_movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_movie.cpp -------------------------------------------------------------------------------- /src/win32/i_rawps2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_rawps2.cpp -------------------------------------------------------------------------------- /src/win32/i_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_system.cpp -------------------------------------------------------------------------------- /src/win32/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_system.h -------------------------------------------------------------------------------- /src/win32/i_xinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/i_xinput.cpp -------------------------------------------------------------------------------- /src/win32/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/icon1.ico -------------------------------------------------------------------------------- /src/win32/rawinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/rawinput.h -------------------------------------------------------------------------------- /src/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/resource.h -------------------------------------------------------------------------------- /src/win32/st_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/st_start.cpp -------------------------------------------------------------------------------- /src/win32/win32gliface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/win32gliface.cpp -------------------------------------------------------------------------------- /src/win32/win32gliface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/win32gliface.h -------------------------------------------------------------------------------- /src/win32/win32iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/win32iface.h -------------------------------------------------------------------------------- /src/win32/win32video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/win32video.cpp -------------------------------------------------------------------------------- /src/win32/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/winres.h -------------------------------------------------------------------------------- /src/win32/zdoom.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/zdoom.RES -------------------------------------------------------------------------------- /src/win32/zdoom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/win32/zdoom.rc -------------------------------------------------------------------------------- /src/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/x86.cpp -------------------------------------------------------------------------------- /src/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/x86.h -------------------------------------------------------------------------------- /src/xlat/parse_xlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/xlat/parse_xlat.cpp -------------------------------------------------------------------------------- /src/xlat/xlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/xlat/xlat.h -------------------------------------------------------------------------------- /src/xlat/xlat_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/xlat/xlat_parser.y -------------------------------------------------------------------------------- /src/xs_Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/xs_Float.h -------------------------------------------------------------------------------- /src/zstrformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/zstrformat.cpp -------------------------------------------------------------------------------- /src/zstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/zstring.cpp -------------------------------------------------------------------------------- /src/zstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/zstring.h -------------------------------------------------------------------------------- /src/zzautozend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/src/zzautozend.cpp -------------------------------------------------------------------------------- /strifehelp.acs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/strifehelp.acs -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/todo.md -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/fixrtext/fixrtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/fixrtext/fixrtext.c -------------------------------------------------------------------------------- /tools/lemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/lemon/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lemon/lemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/lemon/lemon.c -------------------------------------------------------------------------------- /tools/lemon/lemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/lemon/lemon.html -------------------------------------------------------------------------------- /tools/lemon/lemon.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/lemon/lemon.vcproj -------------------------------------------------------------------------------- /tools/lemon/lempar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/lemon/lempar.c -------------------------------------------------------------------------------- /tools/re2c/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/CHANGELOG -------------------------------------------------------------------------------- /tools/re2c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/CMakeLists.txt -------------------------------------------------------------------------------- /tools/re2c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/README -------------------------------------------------------------------------------- /tools/re2c/actions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/actions.cc -------------------------------------------------------------------------------- /tools/re2c/basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/basics.h -------------------------------------------------------------------------------- /tools/re2c/code.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/code.cc -------------------------------------------------------------------------------- /tools/re2c/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/code.h -------------------------------------------------------------------------------- /tools/re2c/code_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/code_names.h -------------------------------------------------------------------------------- /tools/re2c/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/config.h.in -------------------------------------------------------------------------------- /tools/re2c/config_w32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/config_w32.h -------------------------------------------------------------------------------- /tools/re2c/dfa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/dfa.cc -------------------------------------------------------------------------------- /tools/re2c/dfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/dfa.h -------------------------------------------------------------------------------- /tools/re2c/doc/loplas.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/doc/loplas.ps -------------------------------------------------------------------------------- /tools/re2c/doc/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/doc/sample.bib -------------------------------------------------------------------------------- /tools/re2c/examples/c.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/examples/c.re -------------------------------------------------------------------------------- /tools/re2c/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/globals.h -------------------------------------------------------------------------------- /tools/re2c/ins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/ins.h -------------------------------------------------------------------------------- /tools/re2c/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/main.cc -------------------------------------------------------------------------------- /tools/re2c/mbo_getopt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/mbo_getopt.cc -------------------------------------------------------------------------------- /tools/re2c/mbo_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/mbo_getopt.h -------------------------------------------------------------------------------- /tools/re2c/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/parser.cc -------------------------------------------------------------------------------- /tools/re2c/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/parser.h -------------------------------------------------------------------------------- /tools/re2c/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/parser.y -------------------------------------------------------------------------------- /tools/re2c/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/re.h -------------------------------------------------------------------------------- /tools/re2c/re2c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/re2c.1 -------------------------------------------------------------------------------- /tools/re2c/re2c.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/re2c.vcproj -------------------------------------------------------------------------------- /tools/re2c/scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/scanner.cc -------------------------------------------------------------------------------- /tools/re2c/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/scanner.h -------------------------------------------------------------------------------- /tools/re2c/scanner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/scanner.re -------------------------------------------------------------------------------- /tools/re2c/stream_lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/stream_lc.h -------------------------------------------------------------------------------- /tools/re2c/substr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/substr.cc -------------------------------------------------------------------------------- /tools/re2c/substr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/substr.h -------------------------------------------------------------------------------- /tools/re2c/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/token.h -------------------------------------------------------------------------------- /tools/re2c/translate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/translate.cc -------------------------------------------------------------------------------- /tools/re2c/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/re2c/y.tab.h -------------------------------------------------------------------------------- /tools/zipdir/zipdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/zipdir/zipdir.c -------------------------------------------------------------------------------- /tools/zipdir/zipdir.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/tools/zipdir/zipdir.vcproj -------------------------------------------------------------------------------- /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/static/althudcf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/althudcf.txt -------------------------------------------------------------------------------- /wadsrc/static/animated.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/animated.lmp -------------------------------------------------------------------------------- /wadsrc/static/animdefs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/animdefs.txt -------------------------------------------------------------------------------- /wadsrc/static/confont.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/confont.lmp -------------------------------------------------------------------------------- /wadsrc/static/dbigfont.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/dbigfont.lmp -------------------------------------------------------------------------------- /wadsrc/static/decaldef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/decaldef.txt -------------------------------------------------------------------------------- /wadsrc/static/decorate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/decorate.txt -------------------------------------------------------------------------------- /wadsrc/static/decorate.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/decorate.z -------------------------------------------------------------------------------- /wadsrc/static/dehsupp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/dehsupp.txt -------------------------------------------------------------------------------- /wadsrc/static/etc.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/etc.h.txt -------------------------------------------------------------------------------- /wadsrc/static/fontdefs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/fontdefs.txt -------------------------------------------------------------------------------- /wadsrc/static/in_epi1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/in_epi1.txt -------------------------------------------------------------------------------- /wadsrc/static/in_epi2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/in_epi2.txt -------------------------------------------------------------------------------- /wadsrc/static/in_epi3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/in_epi3.txt -------------------------------------------------------------------------------- /wadsrc/static/in_htc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/in_htc1.txt -------------------------------------------------------------------------------- /wadsrc/static/in_htc2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/in_htc2.txt -------------------------------------------------------------------------------- /wadsrc/static/in_htc3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/in_htc3.txt -------------------------------------------------------------------------------- /wadsrc/static/indexfont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/indexfont -------------------------------------------------------------------------------- /wadsrc/static/iwadinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/iwadinfo.txt -------------------------------------------------------------------------------- /wadsrc/static/keyconf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/keyconf.txt -------------------------------------------------------------------------------- /wadsrc/static/language.enu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/language.enu -------------------------------------------------------------------------------- /wadsrc/static/language.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/language.fr -------------------------------------------------------------------------------- /wadsrc/static/language.ita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/language.ita -------------------------------------------------------------------------------- /wadsrc/static/language.ptb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/language.ptb -------------------------------------------------------------------------------- /wadsrc/static/lockdefs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/lockdefs.txt -------------------------------------------------------------------------------- /wadsrc/static/menudef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/menudef.txt -------------------------------------------------------------------------------- /wadsrc/static/menudef.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/menudef.z -------------------------------------------------------------------------------- /wadsrc/static/netnotch.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/netnotch.dat -------------------------------------------------------------------------------- /wadsrc/static/notch.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/notch.dat -------------------------------------------------------------------------------- /wadsrc/static/reverbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/reverbs.txt -------------------------------------------------------------------------------- /wadsrc/static/sbarinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/sbarinfo.txt -------------------------------------------------------------------------------- /wadsrc/static/sbigfont.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/sbigfont.lmp -------------------------------------------------------------------------------- /wadsrc/static/sndinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/sndinfo.txt -------------------------------------------------------------------------------- /wadsrc/static/sndseq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/sndseq.txt -------------------------------------------------------------------------------- /wadsrc/static/spaldoom.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/spaldoom.lmp -------------------------------------------------------------------------------- /wadsrc/static/spalhtic.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/spalhtic.lmp -------------------------------------------------------------------------------- /wadsrc/static/teaminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/teaminfo.txt -------------------------------------------------------------------------------- /wadsrc/static/terrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/terrain.txt -------------------------------------------------------------------------------- /wadsrc/static/textures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/textures.txt -------------------------------------------------------------------------------- /wadsrc/static/things.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/things.h.txt -------------------------------------------------------------------------------- /wadsrc/static/x11r6rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/x11r6rgb.txt -------------------------------------------------------------------------------- /wadsrc/static/xhairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/wadsrc/static/xhairs.txt -------------------------------------------------------------------------------- /zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/algorithm.txt -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/example.c -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/win32/zlib.def -------------------------------------------------------------------------------- /zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/zlib.vcproj -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marrub--/GLOOME/HEAD/zlib/zutil.h --------------------------------------------------------------------------------