├── .editorconfig ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── .name ├── encodings.xml ├── marshmallow-doom.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── .lvimrc ├── .travis.sh ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── COPYING.md ├── ChangeLog ├── HACKING.md ├── Makefile.am ├── NEWS.md ├── NOT-BUGS.md ├── PHILOSOPHY.md ├── README.Music.md ├── README.Strife.md ├── README.md ├── TODO.md ├── autogen.sh ├── cmake-build-default └── src │ ├── resource.rc │ └── setup-res.rc ├── cmake-build-release └── src │ ├── resource.rc │ └── setup-res.rc ├── cmake ├── FindSDL2.cmake ├── FindSDL2_mixer.cmake ├── FindSDL2_net.cmake ├── Findm.cmake ├── Findsamplerate.cmake └── config.h.cin ├── configure.ac ├── data ├── .gitignore ├── Makefile.am ├── README ├── convert-icon ├── doom.ico ├── doom.png ├── doom8.ico ├── setup.ico ├── setup.png └── setup8.ico ├── man ├── .gitignore ├── CMDLINE.template ├── CMDLINE.template.md ├── INSTALL.template ├── Makefile.am ├── bash-completion │ ├── .gitignore │ ├── Makefile.am │ ├── doom.template.in │ ├── heretic.template.in │ ├── hexen.template.in │ └── strife.template.in ├── default.cfg.template ├── docgen ├── doom.template ├── environ.man ├── extra.cfg.template ├── heretic.template ├── hexen.template ├── iwad_paths.man ├── server.template ├── setup.template ├── simplecpp ├── strife.template └── wikipages ├── midiproc ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── buffer.c ├── buffer.h ├── main.c └── proto.h ├── opl ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── examples │ ├── .gitignore │ ├── Makefile.am │ └── droplay.c ├── ioperm_sys.c ├── ioperm_sys.h ├── opl.c ├── opl.h ├── opl3.c ├── opl3.h ├── opl_internal.h ├── opl_linux.c ├── opl_obsd.c ├── opl_queue.c ├── opl_queue.h ├── opl_sdl.c ├── opl_timer.c ├── opl_timer.h └── opl_win32.c ├── pcsound ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── pcsound.c ├── pcsound.h ├── pcsound_bsd.c ├── pcsound_internal.h ├── pcsound_linux.c ├── pcsound_sdl.c └── pcsound_win32.c ├── pkg ├── .gitignore ├── Makefile.am ├── config.make.in ├── osx │ ├── .gitignore │ ├── AppController.h │ ├── AppController.m │ ├── Execute.h │ ├── Execute.m │ ├── GNUmakefile │ ├── IWADController.h │ ├── IWADController.m │ ├── Info.plist.in │ ├── LauncherManager.h │ ├── LauncherManager.m │ ├── PkgInfo │ ├── Resources │ │ ├── 128x128.png │ │ ├── app.icns │ │ ├── app.png │ │ ├── launcher.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── wadfile.icns │ │ └── wadfile.png │ ├── cp-with-libs │ ├── disk │ │ ├── background.png │ │ └── dir.DS_Store │ ├── dmgfix │ └── main.m └── win32 │ ├── .gitignore │ ├── GNUmakefile │ ├── README │ └── cp-with-libs ├── rpm.spec.in ├── src ├── .gitignore ├── CMakeLists.txt ├── Doom.desktop.in ├── Doom.metainfo.xml.in ├── Doom_Screensaver.desktop.in ├── Heretic.desktop.in ├── Heretic.metainfo.xml.in ├── Hexen.desktop.in ├── Hexen.metainfo.xml.in ├── Makefile.am ├── Strife.desktop.in ├── Strife.metainfo.xml.in ├── aes_prng.c ├── aes_prng.h ├── crispy.c ├── crispy.h ├── d_dedicated.c ├── d_event.c ├── d_event.h ├── d_iwad.c ├── d_iwad.h ├── d_loop.c ├── d_loop.h ├── d_mode.c ├── d_mode.h ├── d_ticcmd.h ├── deh_defs.h ├── deh_io.c ├── deh_io.h ├── deh_main.c ├── deh_main.h ├── deh_mapping.c ├── deh_mapping.h ├── deh_str.c ├── deh_str.h ├── deh_text.c ├── doom │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── am_map.c │ ├── am_map.h │ ├── backpack.h │ ├── bot.c │ ├── bot.h │ ├── bot_dm.c │ ├── bot_lib.c │ ├── d_englsh.h │ ├── d_items.c │ ├── d_items.h │ ├── d_main.c │ ├── d_main.h │ ├── d_net.c │ ├── d_player.h │ ├── d_pwad.c │ ├── d_pwad.h │ ├── d_textur.h │ ├── d_think.h │ ├── datapad.c │ ├── datapad.h │ ├── defs.h │ ├── deh_ammo.c │ ├── deh_bexincl.c │ ├── deh_bexpars.c │ ├── deh_bexpars.h │ ├── deh_bexptr.c │ ├── deh_bexstr.c │ ├── deh_cheat.c │ ├── deh_doom.c │ ├── deh_frame.c │ ├── deh_misc.c │ ├── deh_misc.h │ ├── deh_ptr.c │ ├── deh_sound.c │ ├── deh_thing.c │ ├── deh_weapon.c │ ├── dj.c │ ├── dj.h │ ├── doomdata.h │ ├── doomdef.c │ ├── doomdef.h │ ├── doomstat.c │ ├── doomstat.h │ ├── dstrings.c │ ├── dstrings.h │ ├── f_finale.c │ ├── f_finale.h │ ├── f_wipe.c │ ├── f_wipe.h │ ├── fileio.c │ ├── g_game.c │ ├── g_game.h │ ├── gibs.c │ ├── hu_lib.c │ ├── hu_lib.h │ ├── hu_stuff.c │ ├── hu_stuff.h │ ├── hud.c │ ├── hud.h │ ├── imports.h │ ├── info.c │ ├── info.h │ ├── inventory.c │ ├── lib.c │ ├── m_background.h │ ├── m_crispy.c │ ├── m_crispy.h │ ├── m_menu.c │ ├── m_menu.h │ ├── m_random.c │ ├── m_random.h │ ├── macros.h │ ├── marshmallow.c │ ├── marshmallow.h │ ├── marshmenu.h │ ├── math.c │ ├── navigation.c │ ├── navigation.h │ ├── network.c │ ├── p_bexptr.c │ ├── p_blockmap.c │ ├── p_ceilng.c │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_extnodes.c │ ├── p_extnodes.h │ ├── p_extsaveg.c │ ├── p_extsaveg.h │ ├── p_floor.c │ ├── p_inter.c │ ├── p_inter.h │ ├── p_lights.c │ ├── p_local.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_mobj.h │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_pspr.h │ ├── p_saveg.c │ ├── p_saveg.h │ ├── p_setup.c │ ├── p_setup.h │ ├── p_sight.c │ ├── p_spec.c │ ├── p_spec.h │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_tick.h │ ├── p_user.c │ ├── particle.c │ ├── pkemeter.c │ ├── pkemeter.h │ ├── profile.c │ ├── profile.h │ ├── r_bmaps.c │ ├── r_bmaps.h │ ├── r_bsp.c │ ├── r_bsp.h │ ├── r_data.c │ ├── r_data.h │ ├── r_defs.h │ ├── r_draw.c │ ├── r_draw.h │ ├── r_local.h │ ├── r_main.c │ ├── r_main.h │ ├── r_plane.c │ ├── r_plane.h │ ├── r_segs.c │ ├── r_segs.h │ ├── r_sky.c │ ├── r_sky.h │ ├── r_state.h │ ├── r_swirl.c │ ├── r_swirl.h │ ├── r_things.c │ ├── r_things.h │ ├── s_musinfo.c │ ├── s_musinfo.h │ ├── s_sound.c │ ├── s_sound.h │ ├── sandbox.c │ ├── songs.h │ ├── sounds.c │ ├── sounds.h │ ├── st_lib.c │ ├── st_lib.h │ ├── st_stuff.c │ ├── st_stuff.h │ ├── statdump.c │ ├── statdump.h │ ├── strings.h │ ├── tweaks.c │ ├── wi_stuff.c │ └── wi_stuff.h ├── doomkeys.h ├── doomtype.h ├── gusconf.c ├── gusconf.h ├── heretic │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── am_data.h │ ├── am_map.c │ ├── am_map.h │ ├── ct_chat.c │ ├── ct_chat.h │ ├── d_main.c │ ├── d_net.c │ ├── deh_ammo.c │ ├── deh_frame.c │ ├── deh_htext.c │ ├── deh_htic.c │ ├── deh_htic.h │ ├── deh_sound.c │ ├── deh_thing.c │ ├── deh_weapon.c │ ├── doomdata.h │ ├── doomdef.h │ ├── dstrings.h │ ├── f_finale.c │ ├── g_game.c │ ├── in_lude.c │ ├── info.c │ ├── info.h │ ├── m_random.c │ ├── m_random.h │ ├── mn_menu.c │ ├── p_action.h │ ├── p_ceilng.c │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_inter.c │ ├── p_lights.c │ ├── p_local.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_saveg.c │ ├── p_setup.c │ ├── p_sight.c │ ├── p_spec.c │ ├── p_spec.h │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_user.c │ ├── r_bsp.c │ ├── r_data.c │ ├── r_draw.c │ ├── r_local.h │ ├── r_main.c │ ├── r_plane.c │ ├── r_segs.c │ ├── r_things.c │ ├── s_sound.c │ ├── s_sound.h │ ├── sb_bar.c │ ├── sounds.c │ └── sounds.h ├── hexen │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── a_action.c │ ├── am_data.h │ ├── am_map.c │ ├── am_map.h │ ├── ct_chat.c │ ├── ct_chat.h │ ├── d_net.c │ ├── f_finale.c │ ├── g_game.c │ ├── h2_main.c │ ├── h2def.h │ ├── in_lude.c │ ├── info.c │ ├── info.h │ ├── m_random.c │ ├── m_random.h │ ├── mn_menu.c │ ├── p_acs.c │ ├── p_anim.c │ ├── p_ceilng.c │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_inter.c │ ├── p_lights.c │ ├── p_local.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_setup.c │ ├── p_sight.c │ ├── p_spec.c │ ├── p_spec.h │ ├── p_switch.c │ ├── p_telept.c │ ├── p_things.c │ ├── p_tick.c │ ├── p_user.c │ ├── po_man.c │ ├── r_bsp.c │ ├── r_data.c │ ├── r_draw.c │ ├── r_local.h │ ├── r_main.c │ ├── r_plane.c │ ├── r_segs.c │ ├── r_things.c │ ├── s_sound.c │ ├── s_sound.h │ ├── sb_bar.c │ ├── sc_man.c │ ├── sn_sonix.c │ ├── sounds.c │ ├── sounds.h │ ├── st_start.c │ ├── st_start.h │ ├── sv_save.c │ ├── textdefs.h │ └── xddefs.h ├── i_cdmus.c ├── i_cdmus.h ├── i_endoom.c ├── i_endoom.h ├── i_glob.c ├── i_glob.h ├── i_input.c ├── i_input.h ├── i_joystick.c ├── i_joystick.h ├── i_main.c ├── i_midipipe.c ├── i_midipipe.h ├── i_musicpack.c ├── i_oplmusic.c ├── i_pcsound.c ├── i_sdlmusic.c ├── i_sdlsound.c ├── i_sound.c ├── i_sound.h ├── i_swap.h ├── i_system.c ├── i_system.h ├── i_timer.c ├── i_timer.h ├── i_video.c ├── i_video.h ├── i_videohr.c ├── i_videohr.h ├── icon.c ├── m_argv.c ├── m_argv.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_config.c ├── m_config.h ├── m_controls.c ├── m_controls.h ├── m_fixed.c ├── m_fixed.h ├── m_misc.c ├── m_misc.h ├── manifest.xml ├── memio.c ├── memio.h ├── midifile.c ├── midifile.h ├── mus2mid.c ├── mus2mid.h ├── net_client.c ├── net_client.h ├── net_common.c ├── net_common.h ├── net_dedicated.c ├── net_dedicated.h ├── net_defs.h ├── net_gui.c ├── net_gui.h ├── net_io.c ├── net_io.h ├── net_loop.c ├── net_loop.h ├── net_packet.c ├── net_packet.h ├── net_petname.c ├── net_petname.h ├── net_query.c ├── net_query.h ├── net_sdl.c ├── net_sdl.h ├── net_server.c ├── net_server.h ├── net_structrw.c ├── net_structrw.h ├── resource.rc.in ├── setup-res.rc.in ├── setup │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Setup.desktop.in │ ├── compatibility.c │ ├── compatibility.h │ ├── display.c │ ├── display.h │ ├── execute.c │ ├── execute.h │ ├── joystick.c │ ├── joystick.h │ ├── keyboard.c │ ├── keyboard.h │ ├── mainmenu.c │ ├── mode.c │ ├── mode.h │ ├── mouse.c │ ├── mouse.h │ ├── multiplayer.c │ ├── multiplayer.h │ ├── setup-manifest.xml.in │ ├── setup_icon.c │ ├── sound.c │ ├── sound.h │ ├── txt_joyaxis.c │ ├── txt_joyaxis.h │ ├── txt_joybinput.c │ ├── txt_joybinput.h │ ├── txt_keyinput.c │ ├── txt_keyinput.h │ ├── txt_mouseinput.c │ └── txt_mouseinput.h ├── sha1.c ├── sha1.h ├── strife │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── am_map.c │ ├── am_map.h │ ├── d_englsh.h │ ├── d_items.c │ ├── d_items.h │ ├── d_main.c │ ├── d_main.h │ ├── d_net.c │ ├── d_player.h │ ├── d_textur.h │ ├── d_think.h │ ├── deh_ammo.c │ ├── deh_cheat.c │ ├── deh_frame.c │ ├── deh_misc.c │ ├── deh_misc.h │ ├── deh_ptr.c │ ├── deh_sound.c │ ├── deh_strife.c │ ├── deh_thing.c │ ├── deh_weapon.c │ ├── doomdata.h │ ├── doomdef.c │ ├── doomdef.h │ ├── doomstat.c │ ├── doomstat.h │ ├── dstrings.c │ ├── dstrings.h │ ├── f_finale.c │ ├── f_finale.h │ ├── f_wipe.c │ ├── f_wipe.h │ ├── g_game.c │ ├── g_game.h │ ├── hu_lib.c │ ├── hu_lib.h │ ├── hu_stuff.c │ ├── hu_stuff.h │ ├── info.c │ ├── info.h │ ├── m_menu.c │ ├── m_menu.h │ ├── m_random.c │ ├── m_random.h │ ├── m_saves.c │ ├── m_saves.h │ ├── p_ceilng.c │ ├── p_dialog.c │ ├── p_dialog.h │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_inter.c │ ├── p_inter.h │ ├── p_lights.c │ ├── p_local.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_mobj.h │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_pspr.h │ ├── p_saveg.c │ ├── p_saveg.h │ ├── p_setup.c │ ├── p_setup.h │ ├── p_sight.c │ ├── p_spec.c │ ├── p_spec.h │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_tick.h │ ├── p_user.c │ ├── r_bsp.c │ ├── r_bsp.h │ ├── r_data.c │ ├── r_data.h │ ├── r_defs.h │ ├── r_draw.c │ ├── r_draw.h │ ├── r_local.h │ ├── r_main.c │ ├── r_main.h │ ├── r_plane.c │ ├── r_plane.h │ ├── r_segs.c │ ├── r_segs.h │ ├── r_sky.c │ ├── r_sky.h │ ├── r_state.h │ ├── r_things.c │ ├── r_things.h │ ├── s_sound.c │ ├── s_sound.h │ ├── sounds.c │ ├── sounds.h │ ├── st_lib.c │ ├── st_lib.h │ ├── st_stuff.c │ ├── st_stuff.h │ ├── wi_stuff.c │ └── wi_stuff.h ├── tables.c ├── tables.h ├── v_diskicon.c ├── v_diskicon.h ├── v_patch.h ├── v_trans.c ├── v_trans.h ├── v_video.c ├── v_video.h ├── w_checksum.c ├── w_checksum.h ├── w_file.c ├── w_file.h ├── w_file_posix.c ├── w_file_stdc.c ├── w_file_win32.c ├── w_main.c ├── w_main.h ├── w_merge.c ├── w_merge.h ├── w_wad.c ├── w_wad.h ├── z_native.c ├── z_zone.c └── z_zone.h ├── textscreen ├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── Makefile.am ├── examples │ ├── .gitignore │ ├── Makefile.am │ ├── calculator.c │ └── guitest.c ├── fonts │ ├── Makefile.am │ ├── README │ ├── codepage.h │ ├── convert-font │ ├── large.h │ ├── large.png │ ├── normal.h │ ├── normal.png │ ├── small.h │ └── small.png ├── textscreen.h ├── txt_button.c ├── txt_button.h ├── txt_checkbox.c ├── txt_checkbox.h ├── txt_conditional.c ├── txt_conditional.h ├── txt_desktop.c ├── txt_desktop.h ├── txt_dropdown.c ├── txt_dropdown.h ├── txt_fileselect.c ├── txt_fileselect.h ├── txt_gui.c ├── txt_gui.h ├── txt_inputbox.c ├── txt_inputbox.h ├── txt_io.c ├── txt_io.h ├── txt_label.c ├── txt_label.h ├── txt_main.h ├── txt_radiobutton.c ├── txt_radiobutton.h ├── txt_scrollpane.c ├── txt_scrollpane.h ├── txt_sdl.c ├── txt_sdl.h ├── txt_separator.c ├── txt_separator.h ├── txt_spinctrl.c ├── txt_spinctrl.h ├── txt_strut.c ├── txt_strut.h ├── txt_table.c ├── txt_table.h ├── txt_utf8.c ├── txt_utf8.h ├── txt_widget.c ├── txt_widget.h ├── txt_window.c ├── txt_window.h ├── txt_window_action.c └── txt_window_action.h └── win32 ├── win_opendir.c └── win_opendir.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Crispy Doom -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/marshmallow-doom.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.idea/marshmallow-doom.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.lvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.lvimrc -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/COPYING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/ChangeLog -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/HACKING.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/NEWS.md -------------------------------------------------------------------------------- /NOT-BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/NOT-BUGS.md -------------------------------------------------------------------------------- /PHILOSOPHY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/PHILOSOPHY.md -------------------------------------------------------------------------------- /README.Music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/README.Music.md -------------------------------------------------------------------------------- /README.Strife.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/README.Strife.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/TODO.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/autogen.sh -------------------------------------------------------------------------------- /cmake-build-default/src/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake-build-default/src/resource.rc -------------------------------------------------------------------------------- /cmake-build-default/src/setup-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake-build-default/src/setup-res.rc -------------------------------------------------------------------------------- /cmake-build-release/src/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake-build-release/src/resource.rc -------------------------------------------------------------------------------- /cmake-build-release/src/setup-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake-build-release/src/setup-res.rc -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2_net.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake/FindSDL2_net.cmake -------------------------------------------------------------------------------- /cmake/Findm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake/Findm.cmake -------------------------------------------------------------------------------- /cmake/Findsamplerate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake/Findsamplerate.cmake -------------------------------------------------------------------------------- /cmake/config.h.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/cmake/config.h.cin -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/configure.ac -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/README -------------------------------------------------------------------------------- /data/convert-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/convert-icon -------------------------------------------------------------------------------- /data/doom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/doom.ico -------------------------------------------------------------------------------- /data/doom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/doom.png -------------------------------------------------------------------------------- /data/doom8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/doom8.ico -------------------------------------------------------------------------------- /data/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/setup.ico -------------------------------------------------------------------------------- /data/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/setup.png -------------------------------------------------------------------------------- /data/setup8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/data/setup8.ico -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/.gitignore -------------------------------------------------------------------------------- /man/CMDLINE.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/CMDLINE.template -------------------------------------------------------------------------------- /man/CMDLINE.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/CMDLINE.template.md -------------------------------------------------------------------------------- /man/INSTALL.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/INSTALL.template -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/bash-completion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/bash-completion/.gitignore -------------------------------------------------------------------------------- /man/bash-completion/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/bash-completion/Makefile.am -------------------------------------------------------------------------------- /man/bash-completion/doom.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/bash-completion/doom.template.in -------------------------------------------------------------------------------- /man/bash-completion/heretic.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/bash-completion/heretic.template.in -------------------------------------------------------------------------------- /man/bash-completion/hexen.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/bash-completion/hexen.template.in -------------------------------------------------------------------------------- /man/bash-completion/strife.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/bash-completion/strife.template.in -------------------------------------------------------------------------------- /man/default.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/default.cfg.template -------------------------------------------------------------------------------- /man/docgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/docgen -------------------------------------------------------------------------------- /man/doom.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/doom.template -------------------------------------------------------------------------------- /man/environ.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/environ.man -------------------------------------------------------------------------------- /man/extra.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/extra.cfg.template -------------------------------------------------------------------------------- /man/heretic.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/heretic.template -------------------------------------------------------------------------------- /man/hexen.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/hexen.template -------------------------------------------------------------------------------- /man/iwad_paths.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/iwad_paths.man -------------------------------------------------------------------------------- /man/server.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/server.template -------------------------------------------------------------------------------- /man/setup.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/setup.template -------------------------------------------------------------------------------- /man/simplecpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/simplecpp -------------------------------------------------------------------------------- /man/strife.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/strife.template -------------------------------------------------------------------------------- /man/wikipages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/man/wikipages -------------------------------------------------------------------------------- /midiproc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/midiproc/.gitignore -------------------------------------------------------------------------------- /midiproc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/midiproc/CMakeLists.txt -------------------------------------------------------------------------------- /midiproc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/midiproc/Makefile.am -------------------------------------------------------------------------------- /midiproc/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/midiproc/buffer.c -------------------------------------------------------------------------------- /midiproc/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/midiproc/buffer.h -------------------------------------------------------------------------------- /midiproc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/midiproc/main.c -------------------------------------------------------------------------------- /midiproc/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/midiproc/proto.h -------------------------------------------------------------------------------- /opl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/.gitignore -------------------------------------------------------------------------------- /opl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/CMakeLists.txt -------------------------------------------------------------------------------- /opl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/Makefile.am -------------------------------------------------------------------------------- /opl/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/examples/.gitignore -------------------------------------------------------------------------------- /opl/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/examples/Makefile.am -------------------------------------------------------------------------------- /opl/examples/droplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/examples/droplay.c -------------------------------------------------------------------------------- /opl/ioperm_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/ioperm_sys.c -------------------------------------------------------------------------------- /opl/ioperm_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/ioperm_sys.h -------------------------------------------------------------------------------- /opl/opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl.c -------------------------------------------------------------------------------- /opl/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl.h -------------------------------------------------------------------------------- /opl/opl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl3.c -------------------------------------------------------------------------------- /opl/opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl3.h -------------------------------------------------------------------------------- /opl/opl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_internal.h -------------------------------------------------------------------------------- /opl/opl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_linux.c -------------------------------------------------------------------------------- /opl/opl_obsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_obsd.c -------------------------------------------------------------------------------- /opl/opl_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_queue.c -------------------------------------------------------------------------------- /opl/opl_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_queue.h -------------------------------------------------------------------------------- /opl/opl_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_sdl.c -------------------------------------------------------------------------------- /opl/opl_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_timer.c -------------------------------------------------------------------------------- /opl/opl_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_timer.h -------------------------------------------------------------------------------- /opl/opl_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/opl/opl_win32.c -------------------------------------------------------------------------------- /pcsound/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/.gitignore -------------------------------------------------------------------------------- /pcsound/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/CMakeLists.txt -------------------------------------------------------------------------------- /pcsound/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/Makefile.am -------------------------------------------------------------------------------- /pcsound/pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/pcsound.c -------------------------------------------------------------------------------- /pcsound/pcsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/pcsound.h -------------------------------------------------------------------------------- /pcsound/pcsound_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/pcsound_bsd.c -------------------------------------------------------------------------------- /pcsound/pcsound_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/pcsound_internal.h -------------------------------------------------------------------------------- /pcsound/pcsound_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/pcsound_linux.c -------------------------------------------------------------------------------- /pcsound/pcsound_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/pcsound_sdl.c -------------------------------------------------------------------------------- /pcsound/pcsound_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pcsound/pcsound_win32.c -------------------------------------------------------------------------------- /pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/.gitignore -------------------------------------------------------------------------------- /pkg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/Makefile.am -------------------------------------------------------------------------------- /pkg/config.make.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/config.make.in -------------------------------------------------------------------------------- /pkg/osx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/.gitignore -------------------------------------------------------------------------------- /pkg/osx/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/AppController.h -------------------------------------------------------------------------------- /pkg/osx/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/AppController.m -------------------------------------------------------------------------------- /pkg/osx/Execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Execute.h -------------------------------------------------------------------------------- /pkg/osx/Execute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Execute.m -------------------------------------------------------------------------------- /pkg/osx/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/GNUmakefile -------------------------------------------------------------------------------- /pkg/osx/IWADController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/IWADController.h -------------------------------------------------------------------------------- /pkg/osx/IWADController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/IWADController.m -------------------------------------------------------------------------------- /pkg/osx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Info.plist.in -------------------------------------------------------------------------------- /pkg/osx/LauncherManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/LauncherManager.h -------------------------------------------------------------------------------- /pkg/osx/LauncherManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/LauncherManager.m -------------------------------------------------------------------------------- /pkg/osx/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /pkg/osx/Resources/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Resources/128x128.png -------------------------------------------------------------------------------- /pkg/osx/Resources/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Resources/app.icns -------------------------------------------------------------------------------- /pkg/osx/Resources/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Resources/app.png -------------------------------------------------------------------------------- /pkg/osx/Resources/launcher.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Resources/launcher.nib/designable.nib -------------------------------------------------------------------------------- /pkg/osx/Resources/launcher.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Resources/launcher.nib/keyedobjects.nib -------------------------------------------------------------------------------- /pkg/osx/Resources/wadfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Resources/wadfile.icns -------------------------------------------------------------------------------- /pkg/osx/Resources/wadfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/Resources/wadfile.png -------------------------------------------------------------------------------- /pkg/osx/cp-with-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/cp-with-libs -------------------------------------------------------------------------------- /pkg/osx/disk/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/disk/background.png -------------------------------------------------------------------------------- /pkg/osx/disk/dir.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/disk/dir.DS_Store -------------------------------------------------------------------------------- /pkg/osx/dmgfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/dmgfix -------------------------------------------------------------------------------- /pkg/osx/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/osx/main.m -------------------------------------------------------------------------------- /pkg/win32/.gitignore: -------------------------------------------------------------------------------- 1 | staging-* 2 | *.zip 3 | -------------------------------------------------------------------------------- /pkg/win32/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/win32/GNUmakefile -------------------------------------------------------------------------------- /pkg/win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/win32/README -------------------------------------------------------------------------------- /pkg/win32/cp-with-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/pkg/win32/cp-with-libs -------------------------------------------------------------------------------- /rpm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/rpm.spec.in -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Doom.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Doom.desktop.in -------------------------------------------------------------------------------- /src/Doom.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Doom.metainfo.xml.in -------------------------------------------------------------------------------- /src/Doom_Screensaver.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Doom_Screensaver.desktop.in -------------------------------------------------------------------------------- /src/Heretic.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Heretic.desktop.in -------------------------------------------------------------------------------- /src/Heretic.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Heretic.metainfo.xml.in -------------------------------------------------------------------------------- /src/Hexen.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Hexen.desktop.in -------------------------------------------------------------------------------- /src/Hexen.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Hexen.metainfo.xml.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Strife.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Strife.desktop.in -------------------------------------------------------------------------------- /src/Strife.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/Strife.metainfo.xml.in -------------------------------------------------------------------------------- /src/aes_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/aes_prng.c -------------------------------------------------------------------------------- /src/aes_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/aes_prng.h -------------------------------------------------------------------------------- /src/crispy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/crispy.c -------------------------------------------------------------------------------- /src/crispy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/crispy.h -------------------------------------------------------------------------------- /src/d_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_dedicated.c -------------------------------------------------------------------------------- /src/d_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_event.c -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_iwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_iwad.c -------------------------------------------------------------------------------- /src/d_iwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_iwad.h -------------------------------------------------------------------------------- /src/d_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_loop.c -------------------------------------------------------------------------------- /src/d_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_loop.h -------------------------------------------------------------------------------- /src/d_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_mode.c -------------------------------------------------------------------------------- /src/d_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_mode.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/deh_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_defs.h -------------------------------------------------------------------------------- /src/deh_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_io.c -------------------------------------------------------------------------------- /src/deh_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_io.h -------------------------------------------------------------------------------- /src/deh_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_main.c -------------------------------------------------------------------------------- /src/deh_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_main.h -------------------------------------------------------------------------------- /src/deh_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_mapping.c -------------------------------------------------------------------------------- /src/deh_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_mapping.h -------------------------------------------------------------------------------- /src/deh_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_str.c -------------------------------------------------------------------------------- /src/deh_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_str.h -------------------------------------------------------------------------------- /src/deh_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/deh_text.c -------------------------------------------------------------------------------- /src/doom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/.gitignore -------------------------------------------------------------------------------- /src/doom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/CMakeLists.txt -------------------------------------------------------------------------------- /src/doom/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/Makefile.am -------------------------------------------------------------------------------- /src/doom/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/am_map.c -------------------------------------------------------------------------------- /src/doom/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/am_map.h -------------------------------------------------------------------------------- /src/doom/backpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/backpack.h -------------------------------------------------------------------------------- /src/doom/bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/bot.c -------------------------------------------------------------------------------- /src/doom/bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/bot.h -------------------------------------------------------------------------------- /src/doom/bot_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/bot_dm.c -------------------------------------------------------------------------------- /src/doom/bot_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/bot_lib.c -------------------------------------------------------------------------------- /src/doom/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_englsh.h -------------------------------------------------------------------------------- /src/doom/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_items.c -------------------------------------------------------------------------------- /src/doom/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_items.h -------------------------------------------------------------------------------- /src/doom/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_main.c -------------------------------------------------------------------------------- /src/doom/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_main.h -------------------------------------------------------------------------------- /src/doom/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_net.c -------------------------------------------------------------------------------- /src/doom/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_player.h -------------------------------------------------------------------------------- /src/doom/d_pwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_pwad.c -------------------------------------------------------------------------------- /src/doom/d_pwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_pwad.h -------------------------------------------------------------------------------- /src/doom/d_textur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_textur.h -------------------------------------------------------------------------------- /src/doom/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/d_think.h -------------------------------------------------------------------------------- /src/doom/datapad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/datapad.c -------------------------------------------------------------------------------- /src/doom/datapad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/datapad.h -------------------------------------------------------------------------------- /src/doom/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/defs.h -------------------------------------------------------------------------------- /src/doom/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_ammo.c -------------------------------------------------------------------------------- /src/doom/deh_bexincl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_bexincl.c -------------------------------------------------------------------------------- /src/doom/deh_bexpars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_bexpars.c -------------------------------------------------------------------------------- /src/doom/deh_bexpars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_bexpars.h -------------------------------------------------------------------------------- /src/doom/deh_bexptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_bexptr.c -------------------------------------------------------------------------------- /src/doom/deh_bexstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_bexstr.c -------------------------------------------------------------------------------- /src/doom/deh_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_cheat.c -------------------------------------------------------------------------------- /src/doom/deh_doom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_doom.c -------------------------------------------------------------------------------- /src/doom/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_frame.c -------------------------------------------------------------------------------- /src/doom/deh_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_misc.c -------------------------------------------------------------------------------- /src/doom/deh_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_misc.h -------------------------------------------------------------------------------- /src/doom/deh_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_ptr.c -------------------------------------------------------------------------------- /src/doom/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_sound.c -------------------------------------------------------------------------------- /src/doom/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_thing.c -------------------------------------------------------------------------------- /src/doom/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/deh_weapon.c -------------------------------------------------------------------------------- /src/doom/dj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/dj.c -------------------------------------------------------------------------------- /src/doom/dj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/dj.h -------------------------------------------------------------------------------- /src/doom/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/doomdata.h -------------------------------------------------------------------------------- /src/doom/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/doomdef.c -------------------------------------------------------------------------------- /src/doom/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/doomdef.h -------------------------------------------------------------------------------- /src/doom/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/doomstat.c -------------------------------------------------------------------------------- /src/doom/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/doomstat.h -------------------------------------------------------------------------------- /src/doom/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/dstrings.c -------------------------------------------------------------------------------- /src/doom/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/dstrings.h -------------------------------------------------------------------------------- /src/doom/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/f_finale.c -------------------------------------------------------------------------------- /src/doom/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/f_finale.h -------------------------------------------------------------------------------- /src/doom/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/f_wipe.c -------------------------------------------------------------------------------- /src/doom/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/f_wipe.h -------------------------------------------------------------------------------- /src/doom/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/fileio.c -------------------------------------------------------------------------------- /src/doom/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/g_game.c -------------------------------------------------------------------------------- /src/doom/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/g_game.h -------------------------------------------------------------------------------- /src/doom/gibs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/gibs.c -------------------------------------------------------------------------------- /src/doom/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/hu_lib.c -------------------------------------------------------------------------------- /src/doom/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/hu_lib.h -------------------------------------------------------------------------------- /src/doom/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/hu_stuff.c -------------------------------------------------------------------------------- /src/doom/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/hu_stuff.h -------------------------------------------------------------------------------- /src/doom/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/hud.c -------------------------------------------------------------------------------- /src/doom/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/hud.h -------------------------------------------------------------------------------- /src/doom/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/imports.h -------------------------------------------------------------------------------- /src/doom/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/info.c -------------------------------------------------------------------------------- /src/doom/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/info.h -------------------------------------------------------------------------------- /src/doom/inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/inventory.c -------------------------------------------------------------------------------- /src/doom/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/lib.c -------------------------------------------------------------------------------- /src/doom/m_background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/m_background.h -------------------------------------------------------------------------------- /src/doom/m_crispy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/m_crispy.c -------------------------------------------------------------------------------- /src/doom/m_crispy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/m_crispy.h -------------------------------------------------------------------------------- /src/doom/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/m_menu.c -------------------------------------------------------------------------------- /src/doom/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/m_menu.h -------------------------------------------------------------------------------- /src/doom/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/m_random.c -------------------------------------------------------------------------------- /src/doom/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/m_random.h -------------------------------------------------------------------------------- /src/doom/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/macros.h -------------------------------------------------------------------------------- /src/doom/marshmallow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/marshmallow.c -------------------------------------------------------------------------------- /src/doom/marshmallow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/marshmallow.h -------------------------------------------------------------------------------- /src/doom/marshmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/marshmenu.h -------------------------------------------------------------------------------- /src/doom/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/math.c -------------------------------------------------------------------------------- /src/doom/navigation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/navigation.c -------------------------------------------------------------------------------- /src/doom/navigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/navigation.h -------------------------------------------------------------------------------- /src/doom/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/network.c -------------------------------------------------------------------------------- /src/doom/p_bexptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_bexptr.c -------------------------------------------------------------------------------- /src/doom/p_blockmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_blockmap.c -------------------------------------------------------------------------------- /src/doom/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_ceilng.c -------------------------------------------------------------------------------- /src/doom/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_doors.c -------------------------------------------------------------------------------- /src/doom/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_enemy.c -------------------------------------------------------------------------------- /src/doom/p_extnodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_extnodes.c -------------------------------------------------------------------------------- /src/doom/p_extnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_extnodes.h -------------------------------------------------------------------------------- /src/doom/p_extsaveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_extsaveg.c -------------------------------------------------------------------------------- /src/doom/p_extsaveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_extsaveg.h -------------------------------------------------------------------------------- /src/doom/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_floor.c -------------------------------------------------------------------------------- /src/doom/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_inter.c -------------------------------------------------------------------------------- /src/doom/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_inter.h -------------------------------------------------------------------------------- /src/doom/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_lights.c -------------------------------------------------------------------------------- /src/doom/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_local.h -------------------------------------------------------------------------------- /src/doom/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_map.c -------------------------------------------------------------------------------- /src/doom/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_maputl.c -------------------------------------------------------------------------------- /src/doom/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_mobj.c -------------------------------------------------------------------------------- /src/doom/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_mobj.h -------------------------------------------------------------------------------- /src/doom/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_plats.c -------------------------------------------------------------------------------- /src/doom/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_pspr.c -------------------------------------------------------------------------------- /src/doom/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_pspr.h -------------------------------------------------------------------------------- /src/doom/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_saveg.c -------------------------------------------------------------------------------- /src/doom/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_saveg.h -------------------------------------------------------------------------------- /src/doom/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_setup.c -------------------------------------------------------------------------------- /src/doom/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_setup.h -------------------------------------------------------------------------------- /src/doom/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_sight.c -------------------------------------------------------------------------------- /src/doom/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_spec.c -------------------------------------------------------------------------------- /src/doom/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_spec.h -------------------------------------------------------------------------------- /src/doom/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_switch.c -------------------------------------------------------------------------------- /src/doom/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_telept.c -------------------------------------------------------------------------------- /src/doom/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_tick.c -------------------------------------------------------------------------------- /src/doom/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_tick.h -------------------------------------------------------------------------------- /src/doom/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/p_user.c -------------------------------------------------------------------------------- /src/doom/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/particle.c -------------------------------------------------------------------------------- /src/doom/pkemeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/pkemeter.c -------------------------------------------------------------------------------- /src/doom/pkemeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/pkemeter.h -------------------------------------------------------------------------------- /src/doom/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/profile.c -------------------------------------------------------------------------------- /src/doom/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/profile.h -------------------------------------------------------------------------------- /src/doom/r_bmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_bmaps.c -------------------------------------------------------------------------------- /src/doom/r_bmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_bmaps.h -------------------------------------------------------------------------------- /src/doom/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_bsp.c -------------------------------------------------------------------------------- /src/doom/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_bsp.h -------------------------------------------------------------------------------- /src/doom/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_data.c -------------------------------------------------------------------------------- /src/doom/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_data.h -------------------------------------------------------------------------------- /src/doom/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_defs.h -------------------------------------------------------------------------------- /src/doom/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_draw.c -------------------------------------------------------------------------------- /src/doom/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_draw.h -------------------------------------------------------------------------------- /src/doom/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_local.h -------------------------------------------------------------------------------- /src/doom/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_main.c -------------------------------------------------------------------------------- /src/doom/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_main.h -------------------------------------------------------------------------------- /src/doom/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_plane.c -------------------------------------------------------------------------------- /src/doom/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_plane.h -------------------------------------------------------------------------------- /src/doom/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_segs.c -------------------------------------------------------------------------------- /src/doom/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_segs.h -------------------------------------------------------------------------------- /src/doom/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_sky.c -------------------------------------------------------------------------------- /src/doom/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_sky.h -------------------------------------------------------------------------------- /src/doom/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_state.h -------------------------------------------------------------------------------- /src/doom/r_swirl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_swirl.c -------------------------------------------------------------------------------- /src/doom/r_swirl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_swirl.h -------------------------------------------------------------------------------- /src/doom/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_things.c -------------------------------------------------------------------------------- /src/doom/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/r_things.h -------------------------------------------------------------------------------- /src/doom/s_musinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/s_musinfo.c -------------------------------------------------------------------------------- /src/doom/s_musinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/s_musinfo.h -------------------------------------------------------------------------------- /src/doom/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/s_sound.c -------------------------------------------------------------------------------- /src/doom/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/s_sound.h -------------------------------------------------------------------------------- /src/doom/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/sandbox.c -------------------------------------------------------------------------------- /src/doom/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/songs.h -------------------------------------------------------------------------------- /src/doom/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/sounds.c -------------------------------------------------------------------------------- /src/doom/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/sounds.h -------------------------------------------------------------------------------- /src/doom/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/st_lib.c -------------------------------------------------------------------------------- /src/doom/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/st_lib.h -------------------------------------------------------------------------------- /src/doom/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/st_stuff.c -------------------------------------------------------------------------------- /src/doom/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/st_stuff.h -------------------------------------------------------------------------------- /src/doom/statdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/statdump.c -------------------------------------------------------------------------------- /src/doom/statdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/statdump.h -------------------------------------------------------------------------------- /src/doom/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/strings.h -------------------------------------------------------------------------------- /src/doom/tweaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/tweaks.c -------------------------------------------------------------------------------- /src/doom/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/wi_stuff.c -------------------------------------------------------------------------------- /src/doom/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doom/wi_stuff.h -------------------------------------------------------------------------------- /src/doomkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doomkeys.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/gusconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/gusconf.c -------------------------------------------------------------------------------- /src/gusconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/gusconf.h -------------------------------------------------------------------------------- /src/heretic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/.gitignore -------------------------------------------------------------------------------- /src/heretic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/CMakeLists.txt -------------------------------------------------------------------------------- /src/heretic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/Makefile.am -------------------------------------------------------------------------------- /src/heretic/am_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/am_data.h -------------------------------------------------------------------------------- /src/heretic/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/am_map.c -------------------------------------------------------------------------------- /src/heretic/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/am_map.h -------------------------------------------------------------------------------- /src/heretic/ct_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/ct_chat.c -------------------------------------------------------------------------------- /src/heretic/ct_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/ct_chat.h -------------------------------------------------------------------------------- /src/heretic/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/d_main.c -------------------------------------------------------------------------------- /src/heretic/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/d_net.c -------------------------------------------------------------------------------- /src/heretic/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_ammo.c -------------------------------------------------------------------------------- /src/heretic/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_frame.c -------------------------------------------------------------------------------- /src/heretic/deh_htext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_htext.c -------------------------------------------------------------------------------- /src/heretic/deh_htic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_htic.c -------------------------------------------------------------------------------- /src/heretic/deh_htic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_htic.h -------------------------------------------------------------------------------- /src/heretic/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_sound.c -------------------------------------------------------------------------------- /src/heretic/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_thing.c -------------------------------------------------------------------------------- /src/heretic/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/deh_weapon.c -------------------------------------------------------------------------------- /src/heretic/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/doomdata.h -------------------------------------------------------------------------------- /src/heretic/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/doomdef.h -------------------------------------------------------------------------------- /src/heretic/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/dstrings.h -------------------------------------------------------------------------------- /src/heretic/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/f_finale.c -------------------------------------------------------------------------------- /src/heretic/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/g_game.c -------------------------------------------------------------------------------- /src/heretic/in_lude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/in_lude.c -------------------------------------------------------------------------------- /src/heretic/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/info.c -------------------------------------------------------------------------------- /src/heretic/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/info.h -------------------------------------------------------------------------------- /src/heretic/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/m_random.c -------------------------------------------------------------------------------- /src/heretic/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/m_random.h -------------------------------------------------------------------------------- /src/heretic/mn_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/mn_menu.c -------------------------------------------------------------------------------- /src/heretic/p_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_action.h -------------------------------------------------------------------------------- /src/heretic/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_ceilng.c -------------------------------------------------------------------------------- /src/heretic/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_doors.c -------------------------------------------------------------------------------- /src/heretic/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_enemy.c -------------------------------------------------------------------------------- /src/heretic/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_floor.c -------------------------------------------------------------------------------- /src/heretic/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_inter.c -------------------------------------------------------------------------------- /src/heretic/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_lights.c -------------------------------------------------------------------------------- /src/heretic/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_local.h -------------------------------------------------------------------------------- /src/heretic/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_map.c -------------------------------------------------------------------------------- /src/heretic/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_maputl.c -------------------------------------------------------------------------------- /src/heretic/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_mobj.c -------------------------------------------------------------------------------- /src/heretic/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_plats.c -------------------------------------------------------------------------------- /src/heretic/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_pspr.c -------------------------------------------------------------------------------- /src/heretic/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_saveg.c -------------------------------------------------------------------------------- /src/heretic/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_setup.c -------------------------------------------------------------------------------- /src/heretic/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_sight.c -------------------------------------------------------------------------------- /src/heretic/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_spec.c -------------------------------------------------------------------------------- /src/heretic/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_spec.h -------------------------------------------------------------------------------- /src/heretic/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_switch.c -------------------------------------------------------------------------------- /src/heretic/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_telept.c -------------------------------------------------------------------------------- /src/heretic/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_tick.c -------------------------------------------------------------------------------- /src/heretic/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/p_user.c -------------------------------------------------------------------------------- /src/heretic/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_bsp.c -------------------------------------------------------------------------------- /src/heretic/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_data.c -------------------------------------------------------------------------------- /src/heretic/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_draw.c -------------------------------------------------------------------------------- /src/heretic/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_local.h -------------------------------------------------------------------------------- /src/heretic/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_main.c -------------------------------------------------------------------------------- /src/heretic/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_plane.c -------------------------------------------------------------------------------- /src/heretic/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_segs.c -------------------------------------------------------------------------------- /src/heretic/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/r_things.c -------------------------------------------------------------------------------- /src/heretic/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/s_sound.c -------------------------------------------------------------------------------- /src/heretic/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/s_sound.h -------------------------------------------------------------------------------- /src/heretic/sb_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/sb_bar.c -------------------------------------------------------------------------------- /src/heretic/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/sounds.c -------------------------------------------------------------------------------- /src/heretic/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/heretic/sounds.h -------------------------------------------------------------------------------- /src/hexen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/.gitignore -------------------------------------------------------------------------------- /src/hexen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/CMakeLists.txt -------------------------------------------------------------------------------- /src/hexen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/Makefile.am -------------------------------------------------------------------------------- /src/hexen/a_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/a_action.c -------------------------------------------------------------------------------- /src/hexen/am_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/am_data.h -------------------------------------------------------------------------------- /src/hexen/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/am_map.c -------------------------------------------------------------------------------- /src/hexen/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/am_map.h -------------------------------------------------------------------------------- /src/hexen/ct_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/ct_chat.c -------------------------------------------------------------------------------- /src/hexen/ct_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/ct_chat.h -------------------------------------------------------------------------------- /src/hexen/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/d_net.c -------------------------------------------------------------------------------- /src/hexen/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/f_finale.c -------------------------------------------------------------------------------- /src/hexen/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/g_game.c -------------------------------------------------------------------------------- /src/hexen/h2_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/h2_main.c -------------------------------------------------------------------------------- /src/hexen/h2def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/h2def.h -------------------------------------------------------------------------------- /src/hexen/in_lude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/in_lude.c -------------------------------------------------------------------------------- /src/hexen/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/info.c -------------------------------------------------------------------------------- /src/hexen/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/info.h -------------------------------------------------------------------------------- /src/hexen/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/m_random.c -------------------------------------------------------------------------------- /src/hexen/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/m_random.h -------------------------------------------------------------------------------- /src/hexen/mn_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/mn_menu.c -------------------------------------------------------------------------------- /src/hexen/p_acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_acs.c -------------------------------------------------------------------------------- /src/hexen/p_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_anim.c -------------------------------------------------------------------------------- /src/hexen/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_ceilng.c -------------------------------------------------------------------------------- /src/hexen/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_doors.c -------------------------------------------------------------------------------- /src/hexen/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_enemy.c -------------------------------------------------------------------------------- /src/hexen/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_floor.c -------------------------------------------------------------------------------- /src/hexen/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_inter.c -------------------------------------------------------------------------------- /src/hexen/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_lights.c -------------------------------------------------------------------------------- /src/hexen/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_local.h -------------------------------------------------------------------------------- /src/hexen/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_map.c -------------------------------------------------------------------------------- /src/hexen/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_maputl.c -------------------------------------------------------------------------------- /src/hexen/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_mobj.c -------------------------------------------------------------------------------- /src/hexen/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_plats.c -------------------------------------------------------------------------------- /src/hexen/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_pspr.c -------------------------------------------------------------------------------- /src/hexen/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_setup.c -------------------------------------------------------------------------------- /src/hexen/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_sight.c -------------------------------------------------------------------------------- /src/hexen/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_spec.c -------------------------------------------------------------------------------- /src/hexen/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_spec.h -------------------------------------------------------------------------------- /src/hexen/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_switch.c -------------------------------------------------------------------------------- /src/hexen/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_telept.c -------------------------------------------------------------------------------- /src/hexen/p_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_things.c -------------------------------------------------------------------------------- /src/hexen/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_tick.c -------------------------------------------------------------------------------- /src/hexen/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/p_user.c -------------------------------------------------------------------------------- /src/hexen/po_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/po_man.c -------------------------------------------------------------------------------- /src/hexen/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_bsp.c -------------------------------------------------------------------------------- /src/hexen/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_data.c -------------------------------------------------------------------------------- /src/hexen/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_draw.c -------------------------------------------------------------------------------- /src/hexen/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_local.h -------------------------------------------------------------------------------- /src/hexen/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_main.c -------------------------------------------------------------------------------- /src/hexen/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_plane.c -------------------------------------------------------------------------------- /src/hexen/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_segs.c -------------------------------------------------------------------------------- /src/hexen/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/r_things.c -------------------------------------------------------------------------------- /src/hexen/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/s_sound.c -------------------------------------------------------------------------------- /src/hexen/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/s_sound.h -------------------------------------------------------------------------------- /src/hexen/sb_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/sb_bar.c -------------------------------------------------------------------------------- /src/hexen/sc_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/sc_man.c -------------------------------------------------------------------------------- /src/hexen/sn_sonix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/sn_sonix.c -------------------------------------------------------------------------------- /src/hexen/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/sounds.c -------------------------------------------------------------------------------- /src/hexen/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/sounds.h -------------------------------------------------------------------------------- /src/hexen/st_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/st_start.c -------------------------------------------------------------------------------- /src/hexen/st_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/st_start.h -------------------------------------------------------------------------------- /src/hexen/sv_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/sv_save.c -------------------------------------------------------------------------------- /src/hexen/textdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/textdefs.h -------------------------------------------------------------------------------- /src/hexen/xddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/hexen/xddefs.h -------------------------------------------------------------------------------- /src/i_cdmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_cdmus.c -------------------------------------------------------------------------------- /src/i_cdmus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_cdmus.h -------------------------------------------------------------------------------- /src/i_endoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_endoom.c -------------------------------------------------------------------------------- /src/i_endoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_endoom.h -------------------------------------------------------------------------------- /src/i_glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_glob.c -------------------------------------------------------------------------------- /src/i_glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_glob.h -------------------------------------------------------------------------------- /src/i_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_input.c -------------------------------------------------------------------------------- /src/i_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_input.h -------------------------------------------------------------------------------- /src/i_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_joystick.c -------------------------------------------------------------------------------- /src/i_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_joystick.h -------------------------------------------------------------------------------- /src/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_main.c -------------------------------------------------------------------------------- /src/i_midipipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_midipipe.c -------------------------------------------------------------------------------- /src/i_midipipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_midipipe.h -------------------------------------------------------------------------------- /src/i_musicpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_musicpack.c -------------------------------------------------------------------------------- /src/i_oplmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_oplmusic.c -------------------------------------------------------------------------------- /src/i_pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_pcsound.c -------------------------------------------------------------------------------- /src/i_sdlmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_sdlmusic.c -------------------------------------------------------------------------------- /src/i_sdlsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_sdlsound.c -------------------------------------------------------------------------------- /src/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_sound.c -------------------------------------------------------------------------------- /src/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_sound.h -------------------------------------------------------------------------------- /src/i_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_swap.h -------------------------------------------------------------------------------- /src/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_system.c -------------------------------------------------------------------------------- /src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_system.h -------------------------------------------------------------------------------- /src/i_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_timer.c -------------------------------------------------------------------------------- /src/i_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_timer.h -------------------------------------------------------------------------------- /src/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_video.c -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/i_videohr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_videohr.c -------------------------------------------------------------------------------- /src/i_videohr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/i_videohr.h -------------------------------------------------------------------------------- /src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/icon.c -------------------------------------------------------------------------------- /src/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_argv.c -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_bbox.c -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_cheat.c -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_config.c -------------------------------------------------------------------------------- /src/m_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_config.h -------------------------------------------------------------------------------- /src/m_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_controls.c -------------------------------------------------------------------------------- /src/m_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_controls.h -------------------------------------------------------------------------------- /src/m_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_fixed.c -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_misc.c -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/manifest.xml -------------------------------------------------------------------------------- /src/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/memio.c -------------------------------------------------------------------------------- /src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/memio.h -------------------------------------------------------------------------------- /src/midifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/midifile.c -------------------------------------------------------------------------------- /src/midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/midifile.h -------------------------------------------------------------------------------- /src/mus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/mus2mid.c -------------------------------------------------------------------------------- /src/mus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/mus2mid.h -------------------------------------------------------------------------------- /src/net_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_client.c -------------------------------------------------------------------------------- /src/net_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_client.h -------------------------------------------------------------------------------- /src/net_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_common.c -------------------------------------------------------------------------------- /src/net_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_common.h -------------------------------------------------------------------------------- /src/net_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_dedicated.c -------------------------------------------------------------------------------- /src/net_dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_dedicated.h -------------------------------------------------------------------------------- /src/net_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_defs.h -------------------------------------------------------------------------------- /src/net_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_gui.c -------------------------------------------------------------------------------- /src/net_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_gui.h -------------------------------------------------------------------------------- /src/net_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_io.c -------------------------------------------------------------------------------- /src/net_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_io.h -------------------------------------------------------------------------------- /src/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_loop.c -------------------------------------------------------------------------------- /src/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_loop.h -------------------------------------------------------------------------------- /src/net_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_packet.c -------------------------------------------------------------------------------- /src/net_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_packet.h -------------------------------------------------------------------------------- /src/net_petname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_petname.c -------------------------------------------------------------------------------- /src/net_petname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_petname.h -------------------------------------------------------------------------------- /src/net_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_query.c -------------------------------------------------------------------------------- /src/net_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_query.h -------------------------------------------------------------------------------- /src/net_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_sdl.c -------------------------------------------------------------------------------- /src/net_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_sdl.h -------------------------------------------------------------------------------- /src/net_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_server.c -------------------------------------------------------------------------------- /src/net_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_server.h -------------------------------------------------------------------------------- /src/net_structrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_structrw.c -------------------------------------------------------------------------------- /src/net_structrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/net_structrw.h -------------------------------------------------------------------------------- /src/resource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/resource.rc.in -------------------------------------------------------------------------------- /src/setup-res.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup-res.rc.in -------------------------------------------------------------------------------- /src/setup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/.gitignore -------------------------------------------------------------------------------- /src/setup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/CMakeLists.txt -------------------------------------------------------------------------------- /src/setup/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/Makefile.am -------------------------------------------------------------------------------- /src/setup/Setup.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/Setup.desktop.in -------------------------------------------------------------------------------- /src/setup/compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/compatibility.c -------------------------------------------------------------------------------- /src/setup/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/compatibility.h -------------------------------------------------------------------------------- /src/setup/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/display.c -------------------------------------------------------------------------------- /src/setup/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/display.h -------------------------------------------------------------------------------- /src/setup/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/execute.c -------------------------------------------------------------------------------- /src/setup/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/execute.h -------------------------------------------------------------------------------- /src/setup/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/joystick.c -------------------------------------------------------------------------------- /src/setup/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/joystick.h -------------------------------------------------------------------------------- /src/setup/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/keyboard.c -------------------------------------------------------------------------------- /src/setup/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/keyboard.h -------------------------------------------------------------------------------- /src/setup/mainmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/mainmenu.c -------------------------------------------------------------------------------- /src/setup/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/mode.c -------------------------------------------------------------------------------- /src/setup/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/mode.h -------------------------------------------------------------------------------- /src/setup/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/mouse.c -------------------------------------------------------------------------------- /src/setup/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/mouse.h -------------------------------------------------------------------------------- /src/setup/multiplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/multiplayer.c -------------------------------------------------------------------------------- /src/setup/multiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/multiplayer.h -------------------------------------------------------------------------------- /src/setup/setup-manifest.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/setup-manifest.xml.in -------------------------------------------------------------------------------- /src/setup/setup_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/setup_icon.c -------------------------------------------------------------------------------- /src/setup/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/sound.c -------------------------------------------------------------------------------- /src/setup/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/sound.h -------------------------------------------------------------------------------- /src/setup/txt_joyaxis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_joyaxis.c -------------------------------------------------------------------------------- /src/setup/txt_joyaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_joyaxis.h -------------------------------------------------------------------------------- /src/setup/txt_joybinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_joybinput.c -------------------------------------------------------------------------------- /src/setup/txt_joybinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_joybinput.h -------------------------------------------------------------------------------- /src/setup/txt_keyinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_keyinput.c -------------------------------------------------------------------------------- /src/setup/txt_keyinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_keyinput.h -------------------------------------------------------------------------------- /src/setup/txt_mouseinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_mouseinput.c -------------------------------------------------------------------------------- /src/setup/txt_mouseinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/setup/txt_mouseinput.h -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/strife/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/.gitignore -------------------------------------------------------------------------------- /src/strife/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/CMakeLists.txt -------------------------------------------------------------------------------- /src/strife/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/Makefile.am -------------------------------------------------------------------------------- /src/strife/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/am_map.c -------------------------------------------------------------------------------- /src/strife/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/am_map.h -------------------------------------------------------------------------------- /src/strife/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_englsh.h -------------------------------------------------------------------------------- /src/strife/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_items.c -------------------------------------------------------------------------------- /src/strife/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_items.h -------------------------------------------------------------------------------- /src/strife/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_main.c -------------------------------------------------------------------------------- /src/strife/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_main.h -------------------------------------------------------------------------------- /src/strife/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_net.c -------------------------------------------------------------------------------- /src/strife/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_player.h -------------------------------------------------------------------------------- /src/strife/d_textur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_textur.h -------------------------------------------------------------------------------- /src/strife/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/d_think.h -------------------------------------------------------------------------------- /src/strife/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_ammo.c -------------------------------------------------------------------------------- /src/strife/deh_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_cheat.c -------------------------------------------------------------------------------- /src/strife/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_frame.c -------------------------------------------------------------------------------- /src/strife/deh_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_misc.c -------------------------------------------------------------------------------- /src/strife/deh_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_misc.h -------------------------------------------------------------------------------- /src/strife/deh_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_ptr.c -------------------------------------------------------------------------------- /src/strife/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_sound.c -------------------------------------------------------------------------------- /src/strife/deh_strife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_strife.c -------------------------------------------------------------------------------- /src/strife/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_thing.c -------------------------------------------------------------------------------- /src/strife/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/deh_weapon.c -------------------------------------------------------------------------------- /src/strife/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/doomdata.h -------------------------------------------------------------------------------- /src/strife/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/doomdef.c -------------------------------------------------------------------------------- /src/strife/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/doomdef.h -------------------------------------------------------------------------------- /src/strife/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/doomstat.c -------------------------------------------------------------------------------- /src/strife/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/doomstat.h -------------------------------------------------------------------------------- /src/strife/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/dstrings.c -------------------------------------------------------------------------------- /src/strife/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/dstrings.h -------------------------------------------------------------------------------- /src/strife/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/f_finale.c -------------------------------------------------------------------------------- /src/strife/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/f_finale.h -------------------------------------------------------------------------------- /src/strife/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/f_wipe.c -------------------------------------------------------------------------------- /src/strife/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/f_wipe.h -------------------------------------------------------------------------------- /src/strife/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/g_game.c -------------------------------------------------------------------------------- /src/strife/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/g_game.h -------------------------------------------------------------------------------- /src/strife/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/hu_lib.c -------------------------------------------------------------------------------- /src/strife/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/hu_lib.h -------------------------------------------------------------------------------- /src/strife/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/hu_stuff.c -------------------------------------------------------------------------------- /src/strife/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/hu_stuff.h -------------------------------------------------------------------------------- /src/strife/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/info.c -------------------------------------------------------------------------------- /src/strife/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/info.h -------------------------------------------------------------------------------- /src/strife/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/m_menu.c -------------------------------------------------------------------------------- /src/strife/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/m_menu.h -------------------------------------------------------------------------------- /src/strife/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/m_random.c -------------------------------------------------------------------------------- /src/strife/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/m_random.h -------------------------------------------------------------------------------- /src/strife/m_saves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/m_saves.c -------------------------------------------------------------------------------- /src/strife/m_saves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/m_saves.h -------------------------------------------------------------------------------- /src/strife/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_ceilng.c -------------------------------------------------------------------------------- /src/strife/p_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_dialog.c -------------------------------------------------------------------------------- /src/strife/p_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_dialog.h -------------------------------------------------------------------------------- /src/strife/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_doors.c -------------------------------------------------------------------------------- /src/strife/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_enemy.c -------------------------------------------------------------------------------- /src/strife/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_floor.c -------------------------------------------------------------------------------- /src/strife/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_inter.c -------------------------------------------------------------------------------- /src/strife/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_inter.h -------------------------------------------------------------------------------- /src/strife/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_lights.c -------------------------------------------------------------------------------- /src/strife/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_local.h -------------------------------------------------------------------------------- /src/strife/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_map.c -------------------------------------------------------------------------------- /src/strife/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_maputl.c -------------------------------------------------------------------------------- /src/strife/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_mobj.c -------------------------------------------------------------------------------- /src/strife/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_mobj.h -------------------------------------------------------------------------------- /src/strife/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_plats.c -------------------------------------------------------------------------------- /src/strife/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_pspr.c -------------------------------------------------------------------------------- /src/strife/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_pspr.h -------------------------------------------------------------------------------- /src/strife/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_saveg.c -------------------------------------------------------------------------------- /src/strife/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_saveg.h -------------------------------------------------------------------------------- /src/strife/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_setup.c -------------------------------------------------------------------------------- /src/strife/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_setup.h -------------------------------------------------------------------------------- /src/strife/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_sight.c -------------------------------------------------------------------------------- /src/strife/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_spec.c -------------------------------------------------------------------------------- /src/strife/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_spec.h -------------------------------------------------------------------------------- /src/strife/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_switch.c -------------------------------------------------------------------------------- /src/strife/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_telept.c -------------------------------------------------------------------------------- /src/strife/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_tick.c -------------------------------------------------------------------------------- /src/strife/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_tick.h -------------------------------------------------------------------------------- /src/strife/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/p_user.c -------------------------------------------------------------------------------- /src/strife/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_bsp.c -------------------------------------------------------------------------------- /src/strife/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_bsp.h -------------------------------------------------------------------------------- /src/strife/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_data.c -------------------------------------------------------------------------------- /src/strife/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_data.h -------------------------------------------------------------------------------- /src/strife/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_defs.h -------------------------------------------------------------------------------- /src/strife/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_draw.c -------------------------------------------------------------------------------- /src/strife/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_draw.h -------------------------------------------------------------------------------- /src/strife/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_local.h -------------------------------------------------------------------------------- /src/strife/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_main.c -------------------------------------------------------------------------------- /src/strife/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_main.h -------------------------------------------------------------------------------- /src/strife/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_plane.c -------------------------------------------------------------------------------- /src/strife/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_plane.h -------------------------------------------------------------------------------- /src/strife/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_segs.c -------------------------------------------------------------------------------- /src/strife/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_segs.h -------------------------------------------------------------------------------- /src/strife/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_sky.c -------------------------------------------------------------------------------- /src/strife/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_sky.h -------------------------------------------------------------------------------- /src/strife/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_state.h -------------------------------------------------------------------------------- /src/strife/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_things.c -------------------------------------------------------------------------------- /src/strife/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/r_things.h -------------------------------------------------------------------------------- /src/strife/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/s_sound.c -------------------------------------------------------------------------------- /src/strife/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/s_sound.h -------------------------------------------------------------------------------- /src/strife/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/sounds.c -------------------------------------------------------------------------------- /src/strife/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/sounds.h -------------------------------------------------------------------------------- /src/strife/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/st_lib.c -------------------------------------------------------------------------------- /src/strife/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/st_lib.h -------------------------------------------------------------------------------- /src/strife/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/st_stuff.c -------------------------------------------------------------------------------- /src/strife/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/st_stuff.h -------------------------------------------------------------------------------- /src/strife/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/wi_stuff.c -------------------------------------------------------------------------------- /src/strife/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/strife/wi_stuff.h -------------------------------------------------------------------------------- /src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/tables.c -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/v_diskicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/v_diskicon.c -------------------------------------------------------------------------------- /src/v_diskicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/v_diskicon.h -------------------------------------------------------------------------------- /src/v_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/v_patch.h -------------------------------------------------------------------------------- /src/v_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/v_trans.c -------------------------------------------------------------------------------- /src/v_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/v_trans.h -------------------------------------------------------------------------------- /src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/v_video.c -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/w_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_checksum.c -------------------------------------------------------------------------------- /src/w_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_checksum.h -------------------------------------------------------------------------------- /src/w_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_file.c -------------------------------------------------------------------------------- /src/w_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_file.h -------------------------------------------------------------------------------- /src/w_file_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_file_posix.c -------------------------------------------------------------------------------- /src/w_file_stdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_file_stdc.c -------------------------------------------------------------------------------- /src/w_file_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_file_win32.c -------------------------------------------------------------------------------- /src/w_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_main.c -------------------------------------------------------------------------------- /src/w_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_main.h -------------------------------------------------------------------------------- /src/w_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_merge.c -------------------------------------------------------------------------------- /src/w_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_merge.h -------------------------------------------------------------------------------- /src/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_wad.c -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/z_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/z_native.c -------------------------------------------------------------------------------- /src/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/z_zone.c -------------------------------------------------------------------------------- /src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/src/z_zone.h -------------------------------------------------------------------------------- /textscreen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/.gitignore -------------------------------------------------------------------------------- /textscreen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/CMakeLists.txt -------------------------------------------------------------------------------- /textscreen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/Doxyfile -------------------------------------------------------------------------------- /textscreen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/Makefile.am -------------------------------------------------------------------------------- /textscreen/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/examples/.gitignore -------------------------------------------------------------------------------- /textscreen/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/examples/Makefile.am -------------------------------------------------------------------------------- /textscreen/examples/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/examples/calculator.c -------------------------------------------------------------------------------- /textscreen/examples/guitest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/examples/guitest.c -------------------------------------------------------------------------------- /textscreen/fonts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/Makefile.am -------------------------------------------------------------------------------- /textscreen/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/README -------------------------------------------------------------------------------- /textscreen/fonts/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/codepage.h -------------------------------------------------------------------------------- /textscreen/fonts/convert-font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/convert-font -------------------------------------------------------------------------------- /textscreen/fonts/large.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/large.h -------------------------------------------------------------------------------- /textscreen/fonts/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/large.png -------------------------------------------------------------------------------- /textscreen/fonts/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/normal.h -------------------------------------------------------------------------------- /textscreen/fonts/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/normal.png -------------------------------------------------------------------------------- /textscreen/fonts/small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/small.h -------------------------------------------------------------------------------- /textscreen/fonts/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/fonts/small.png -------------------------------------------------------------------------------- /textscreen/textscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/textscreen.h -------------------------------------------------------------------------------- /textscreen/txt_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_button.c -------------------------------------------------------------------------------- /textscreen/txt_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_button.h -------------------------------------------------------------------------------- /textscreen/txt_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_checkbox.c -------------------------------------------------------------------------------- /textscreen/txt_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_checkbox.h -------------------------------------------------------------------------------- /textscreen/txt_conditional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_conditional.c -------------------------------------------------------------------------------- /textscreen/txt_conditional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_conditional.h -------------------------------------------------------------------------------- /textscreen/txt_desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_desktop.c -------------------------------------------------------------------------------- /textscreen/txt_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_desktop.h -------------------------------------------------------------------------------- /textscreen/txt_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_dropdown.c -------------------------------------------------------------------------------- /textscreen/txt_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_dropdown.h -------------------------------------------------------------------------------- /textscreen/txt_fileselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_fileselect.c -------------------------------------------------------------------------------- /textscreen/txt_fileselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_fileselect.h -------------------------------------------------------------------------------- /textscreen/txt_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_gui.c -------------------------------------------------------------------------------- /textscreen/txt_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_gui.h -------------------------------------------------------------------------------- /textscreen/txt_inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_inputbox.c -------------------------------------------------------------------------------- /textscreen/txt_inputbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_inputbox.h -------------------------------------------------------------------------------- /textscreen/txt_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_io.c -------------------------------------------------------------------------------- /textscreen/txt_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_io.h -------------------------------------------------------------------------------- /textscreen/txt_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_label.c -------------------------------------------------------------------------------- /textscreen/txt_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_label.h -------------------------------------------------------------------------------- /textscreen/txt_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_main.h -------------------------------------------------------------------------------- /textscreen/txt_radiobutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_radiobutton.c -------------------------------------------------------------------------------- /textscreen/txt_radiobutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_radiobutton.h -------------------------------------------------------------------------------- /textscreen/txt_scrollpane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_scrollpane.c -------------------------------------------------------------------------------- /textscreen/txt_scrollpane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_scrollpane.h -------------------------------------------------------------------------------- /textscreen/txt_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_sdl.c -------------------------------------------------------------------------------- /textscreen/txt_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_sdl.h -------------------------------------------------------------------------------- /textscreen/txt_separator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_separator.c -------------------------------------------------------------------------------- /textscreen/txt_separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_separator.h -------------------------------------------------------------------------------- /textscreen/txt_spinctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_spinctrl.c -------------------------------------------------------------------------------- /textscreen/txt_spinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_spinctrl.h -------------------------------------------------------------------------------- /textscreen/txt_strut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_strut.c -------------------------------------------------------------------------------- /textscreen/txt_strut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_strut.h -------------------------------------------------------------------------------- /textscreen/txt_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_table.c -------------------------------------------------------------------------------- /textscreen/txt_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_table.h -------------------------------------------------------------------------------- /textscreen/txt_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_utf8.c -------------------------------------------------------------------------------- /textscreen/txt_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_utf8.h -------------------------------------------------------------------------------- /textscreen/txt_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_widget.c -------------------------------------------------------------------------------- /textscreen/txt_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_widget.h -------------------------------------------------------------------------------- /textscreen/txt_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_window.c -------------------------------------------------------------------------------- /textscreen/txt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_window.h -------------------------------------------------------------------------------- /textscreen/txt_window_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_window_action.c -------------------------------------------------------------------------------- /textscreen/txt_window_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/textscreen/txt_window_action.h -------------------------------------------------------------------------------- /win32/win_opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/win32/win_opendir.c -------------------------------------------------------------------------------- /win32/win_opendir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drbelljazz/marshmallow-doom/HEAD/win32/win_opendir.h --------------------------------------------------------------------------------