├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .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 ├── 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 ├── ext ├── cimguiglue │ ├── cimguiglue.cpp │ ├── cimguiglue.h │ └── cimguiglue_config.h └── glad │ ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h │ └── src │ └── glad.c ├── 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 ├── msvc ├── config.h ├── doom.vcxproj ├── doom.vcxproj.filters ├── ext.vcxproj ├── ext.vcxproj.filters ├── include-doom.props ├── include-ext.props ├── include-opl.props ├── include-pcsound.props ├── include-textscreen.props ├── opl.vcxproj ├── opl.vcxproj.filters ├── pcsound.vcxproj ├── pcsound.vcxproj.filters ├── profiling-build.props ├── rum-and-raisin-doom.natvis ├── rum-and-raisin-doom.rc ├── rum-and-raisin-doom.vcxproj ├── rum-and-raisin-doom.vcxproj.filters ├── textscreen.vcxproj ├── textscreen.vcxproj.filters └── vcpkg-libs.props ├── 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 ├── rum-and-raisin-doom.sln ├── 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 ├── d_dedicated.c ├── d_demoloop.cpp ├── d_demoloop.h ├── d_event.c ├── d_event.h ├── d_gameconf.cpp ├── d_gameconf.h ├── d_gameflow.cpp ├── d_gameflow.h ├── d_gameflow_dmapinfo.cpp ├── d_gameflow_umapinfo.cpp ├── d_iwad.cpp ├── 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.cpp ├── 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.cpp │ ├── am_map.h │ ├── d_englsh.h │ ├── d_gameflow_chex.cpp │ ├── d_gameflow_doom.cpp │ ├── d_gameflow_doom2.cpp │ ├── d_gameflow_hacx.cpp │ ├── d_gameflow_plutonia.cpp │ ├── d_gameflow_tnt.cpp │ ├── d_gamesim.cpp │ ├── d_gamesim.h │ ├── d_items.cpp │ ├── d_items.h │ ├── d_main.cpp │ ├── d_main.h │ ├── d_net.c │ ├── d_player.h │ ├── d_think.h │ ├── deh_ammo.cpp │ ├── deh_bexbits.cpp │ ├── deh_bexpars.cpp │ ├── deh_bexptr.cpp │ ├── deh_bexstr.cpp │ ├── deh_bexstrings.cpp │ ├── deh_cheat.cpp │ ├── deh_doom.cpp │ ├── deh_dsdsounds.cpp │ ├── deh_dsdsprites.cpp │ ├── deh_frame.cpp │ ├── deh_misc.cpp │ ├── deh_misc.h │ ├── deh_ptr.cpp │ ├── deh_sound.cpp │ ├── deh_thing.cpp │ ├── deh_weapon.cpp │ ├── doomdata.h │ ├── doomdef.c │ ├── doomdef.h │ ├── doomstat.c │ ├── doomstat.h │ ├── dstrings.c │ ├── dstrings.h │ ├── f_finale.cpp │ ├── f_finale.h │ ├── f_wipe.c │ ├── f_wipe.h │ ├── g_game.cpp │ ├── g_game.h │ ├── hu_lib.c │ ├── hu_lib.h │ ├── hu_stuff.c │ ├── hu_stuff.h │ ├── info.cpp │ ├── info.h │ ├── m_menu.c │ ├── m_menu.h │ ├── m_random.c │ ├── m_random.h │ ├── p_actionsmbf.cpp │ ├── p_actionsmbf21.cpp │ ├── p_ceilng.cpp │ ├── p_doors.cpp │ ├── p_enemy.cpp │ ├── p_floor.cpp │ ├── p_genericactions.cpp │ ├── p_inter.cpp │ ├── p_inter.h │ ├── p_lights.cpp │ ├── p_lineaction.cpp │ ├── p_lineaction.h │ ├── p_local.h │ ├── p_map.cpp │ ├── p_maputl.cpp │ ├── p_mobj.cpp │ ├── p_mobj.h │ ├── p_plats.cpp │ ├── p_pspr.cpp │ ├── p_pspr.h │ ├── p_saveg.cpp │ ├── p_saveg.h │ ├── p_sectoraction.h │ ├── p_setup.cpp │ ├── p_setup.h │ ├── p_sight.cpp │ ├── p_spec.cpp │ ├── p_spec.h │ ├── p_switch.cpp │ ├── p_telept.cpp │ ├── p_tick.cpp │ ├── p_tick.h │ ├── p_user.cpp │ ├── r_bsp.cpp │ ├── r_bsp.h │ ├── r_data.cpp │ ├── r_data.h │ ├── r_defs.h │ ├── r_draw.cpp │ ├── r_draw.h │ ├── r_local.h │ ├── r_main.cpp │ ├── r_main.h │ ├── r_plane.cpp │ ├── r_plane.h │ ├── r_raster.cpp │ ├── r_raster.h │ ├── r_segs.cpp │ ├── r_segs.h │ ├── r_sky.cpp │ ├── r_sky.h │ ├── r_state.h │ ├── r_things.cpp │ ├── r_things.h │ ├── s_sound.cpp │ ├── s_sound.h │ ├── sounds.cpp │ ├── sounds.h │ ├── st_lib.cpp │ ├── st_lib.h │ ├── st_stuff.cpp │ ├── st_stuff.h │ ├── wi_stuff.cpp │ └── 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_error.cpp ├── i_error.h ├── i_glob.c ├── i_glob.h ├── i_input.c ├── i_input.h ├── i_joystick.c ├── i_joystick.h ├── i_log.cpp ├── i_log.h ├── i_main.c ├── i_midipipe.c ├── i_midipipe.h ├── i_musicpack.c ├── i_oplmusic.c ├── i_pcsound.c ├── i_sdlmusic.c ├── i_sdlsound.cpp ├── i_sound.c ├── i_sound.h ├── i_swap.h ├── i_system.c ├── i_system.h ├── i_terminal.cpp ├── i_terminal.h ├── i_thread.cpp ├── i_thread.h ├── i_timer.c ├── i_timer.h ├── i_vbuffer.h ├── i_video.c ├── i_video.h ├── i_video_gl.cpp ├── i_videohr.c ├── i_videohr.h ├── icon.c ├── m_argv.cpp ├── m_argv.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_config.c ├── m_config.h ├── m_container.h ├── m_controls.c ├── m_controls.h ├── m_conv.h ├── m_dashboard.cpp ├── m_dashboard.h ├── m_dashboard_font_inconsolata.cpp ├── m_dashboard_launcher.cpp ├── m_fixed.c ├── m_fixed.h ├── m_fixed.inl ├── m_json.cpp ├── m_json.h ├── m_jsonlump.cpp ├── m_jsonlump.h ├── m_launcher.cpp ├── m_launcher.h ├── m_misc.c ├── m_misc.h ├── m_profile.cpp ├── m_profile.h ├── m_url.cpp ├── m_url.h ├── m_zipfile.cpp ├── m_zipfile.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_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.cpp ├── w_wad.h ├── z_native.c ├── z_zone.cpp └── 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 ├── wads └── boomtest.wad └── win32 ├── win_opendir.c └── win_opendir.h /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/.lvimrc -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/COPYING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/ChangeLog -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/HACKING.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/NEWS.md -------------------------------------------------------------------------------- /NOT-BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/NOT-BUGS.md -------------------------------------------------------------------------------- /PHILOSOPHY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/PHILOSOPHY.md -------------------------------------------------------------------------------- /README.Music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/README.Music.md -------------------------------------------------------------------------------- /README.Strife.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/README.Strife.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/TODO.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/autogen.sh -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/cmake/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2_net.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/cmake/FindSDL2_net.cmake -------------------------------------------------------------------------------- /cmake/Findm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/cmake/Findm.cmake -------------------------------------------------------------------------------- /cmake/Findsamplerate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/cmake/Findsamplerate.cmake -------------------------------------------------------------------------------- /cmake/config.h.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/cmake/config.h.cin -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/configure.ac -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/README -------------------------------------------------------------------------------- /data/convert-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/convert-icon -------------------------------------------------------------------------------- /data/doom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/doom.ico -------------------------------------------------------------------------------- /data/doom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/doom.png -------------------------------------------------------------------------------- /data/doom8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/doom8.ico -------------------------------------------------------------------------------- /data/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/setup.ico -------------------------------------------------------------------------------- /data/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/setup.png -------------------------------------------------------------------------------- /data/setup8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/data/setup8.ico -------------------------------------------------------------------------------- /ext/cimguiglue/cimguiglue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/ext/cimguiglue/cimguiglue.cpp -------------------------------------------------------------------------------- /ext/cimguiglue/cimguiglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/ext/cimguiglue/cimguiglue.h -------------------------------------------------------------------------------- /ext/cimguiglue/cimguiglue_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/ext/cimguiglue/cimguiglue_config.h -------------------------------------------------------------------------------- /ext/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/ext/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /ext/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/ext/glad/include/glad/glad.h -------------------------------------------------------------------------------- /ext/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/ext/glad/src/glad.c -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/.gitignore -------------------------------------------------------------------------------- /man/CMDLINE.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/CMDLINE.template -------------------------------------------------------------------------------- /man/CMDLINE.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/CMDLINE.template.md -------------------------------------------------------------------------------- /man/INSTALL.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/INSTALL.template -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/bash-completion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/bash-completion/.gitignore -------------------------------------------------------------------------------- /man/bash-completion/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/bash-completion/Makefile.am -------------------------------------------------------------------------------- /man/bash-completion/doom.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/bash-completion/doom.template.in -------------------------------------------------------------------------------- /man/bash-completion/heretic.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/bash-completion/heretic.template.in -------------------------------------------------------------------------------- /man/bash-completion/hexen.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/bash-completion/hexen.template.in -------------------------------------------------------------------------------- /man/bash-completion/strife.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/bash-completion/strife.template.in -------------------------------------------------------------------------------- /man/default.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/default.cfg.template -------------------------------------------------------------------------------- /man/docgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/docgen -------------------------------------------------------------------------------- /man/doom.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/doom.template -------------------------------------------------------------------------------- /man/environ.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/environ.man -------------------------------------------------------------------------------- /man/extra.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/extra.cfg.template -------------------------------------------------------------------------------- /man/heretic.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/heretic.template -------------------------------------------------------------------------------- /man/hexen.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/hexen.template -------------------------------------------------------------------------------- /man/iwad_paths.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/iwad_paths.man -------------------------------------------------------------------------------- /man/server.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/server.template -------------------------------------------------------------------------------- /man/setup.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/setup.template -------------------------------------------------------------------------------- /man/simplecpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/simplecpp -------------------------------------------------------------------------------- /man/strife.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/strife.template -------------------------------------------------------------------------------- /man/wikipages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/man/wikipages -------------------------------------------------------------------------------- /midiproc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/midiproc/.gitignore -------------------------------------------------------------------------------- /midiproc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/midiproc/CMakeLists.txt -------------------------------------------------------------------------------- /midiproc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/midiproc/Makefile.am -------------------------------------------------------------------------------- /midiproc/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/midiproc/buffer.c -------------------------------------------------------------------------------- /midiproc/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/midiproc/buffer.h -------------------------------------------------------------------------------- /midiproc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/midiproc/main.c -------------------------------------------------------------------------------- /midiproc/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/midiproc/proto.h -------------------------------------------------------------------------------- /msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/config.h -------------------------------------------------------------------------------- /msvc/doom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/doom.vcxproj -------------------------------------------------------------------------------- /msvc/doom.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/doom.vcxproj.filters -------------------------------------------------------------------------------- /msvc/ext.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/ext.vcxproj -------------------------------------------------------------------------------- /msvc/ext.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/ext.vcxproj.filters -------------------------------------------------------------------------------- /msvc/include-doom.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/include-doom.props -------------------------------------------------------------------------------- /msvc/include-ext.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/include-ext.props -------------------------------------------------------------------------------- /msvc/include-opl.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/include-opl.props -------------------------------------------------------------------------------- /msvc/include-pcsound.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/include-pcsound.props -------------------------------------------------------------------------------- /msvc/include-textscreen.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/include-textscreen.props -------------------------------------------------------------------------------- /msvc/opl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/opl.vcxproj -------------------------------------------------------------------------------- /msvc/opl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/opl.vcxproj.filters -------------------------------------------------------------------------------- /msvc/pcsound.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/pcsound.vcxproj -------------------------------------------------------------------------------- /msvc/pcsound.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/pcsound.vcxproj.filters -------------------------------------------------------------------------------- /msvc/profiling-build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/profiling-build.props -------------------------------------------------------------------------------- /msvc/rum-and-raisin-doom.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/rum-and-raisin-doom.natvis -------------------------------------------------------------------------------- /msvc/rum-and-raisin-doom.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/rum-and-raisin-doom.rc -------------------------------------------------------------------------------- /msvc/rum-and-raisin-doom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/rum-and-raisin-doom.vcxproj -------------------------------------------------------------------------------- /msvc/rum-and-raisin-doom.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/rum-and-raisin-doom.vcxproj.filters -------------------------------------------------------------------------------- /msvc/textscreen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/textscreen.vcxproj -------------------------------------------------------------------------------- /msvc/textscreen.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/textscreen.vcxproj.filters -------------------------------------------------------------------------------- /msvc/vcpkg-libs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/msvc/vcpkg-libs.props -------------------------------------------------------------------------------- /opl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/.gitignore -------------------------------------------------------------------------------- /opl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/CMakeLists.txt -------------------------------------------------------------------------------- /opl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/Makefile.am -------------------------------------------------------------------------------- /opl/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/examples/.gitignore -------------------------------------------------------------------------------- /opl/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/examples/Makefile.am -------------------------------------------------------------------------------- /opl/examples/droplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/examples/droplay.c -------------------------------------------------------------------------------- /opl/ioperm_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/ioperm_sys.c -------------------------------------------------------------------------------- /opl/ioperm_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/ioperm_sys.h -------------------------------------------------------------------------------- /opl/opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl.c -------------------------------------------------------------------------------- /opl/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl.h -------------------------------------------------------------------------------- /opl/opl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl3.c -------------------------------------------------------------------------------- /opl/opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl3.h -------------------------------------------------------------------------------- /opl/opl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_internal.h -------------------------------------------------------------------------------- /opl/opl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_linux.c -------------------------------------------------------------------------------- /opl/opl_obsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_obsd.c -------------------------------------------------------------------------------- /opl/opl_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_queue.c -------------------------------------------------------------------------------- /opl/opl_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_queue.h -------------------------------------------------------------------------------- /opl/opl_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_sdl.c -------------------------------------------------------------------------------- /opl/opl_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_timer.c -------------------------------------------------------------------------------- /opl/opl_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_timer.h -------------------------------------------------------------------------------- /opl/opl_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/opl/opl_win32.c -------------------------------------------------------------------------------- /pcsound/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/.gitignore -------------------------------------------------------------------------------- /pcsound/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/CMakeLists.txt -------------------------------------------------------------------------------- /pcsound/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/Makefile.am -------------------------------------------------------------------------------- /pcsound/pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/pcsound.c -------------------------------------------------------------------------------- /pcsound/pcsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/pcsound.h -------------------------------------------------------------------------------- /pcsound/pcsound_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/pcsound_bsd.c -------------------------------------------------------------------------------- /pcsound/pcsound_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/pcsound_internal.h -------------------------------------------------------------------------------- /pcsound/pcsound_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/pcsound_linux.c -------------------------------------------------------------------------------- /pcsound/pcsound_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/pcsound_sdl.c -------------------------------------------------------------------------------- /pcsound/pcsound_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pcsound/pcsound_win32.c -------------------------------------------------------------------------------- /pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/.gitignore -------------------------------------------------------------------------------- /pkg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/Makefile.am -------------------------------------------------------------------------------- /pkg/config.make.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/config.make.in -------------------------------------------------------------------------------- /pkg/osx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/.gitignore -------------------------------------------------------------------------------- /pkg/osx/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/AppController.h -------------------------------------------------------------------------------- /pkg/osx/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/AppController.m -------------------------------------------------------------------------------- /pkg/osx/Execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Execute.h -------------------------------------------------------------------------------- /pkg/osx/Execute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Execute.m -------------------------------------------------------------------------------- /pkg/osx/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/GNUmakefile -------------------------------------------------------------------------------- /pkg/osx/IWADController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/IWADController.h -------------------------------------------------------------------------------- /pkg/osx/IWADController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/IWADController.m -------------------------------------------------------------------------------- /pkg/osx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Info.plist.in -------------------------------------------------------------------------------- /pkg/osx/LauncherManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/LauncherManager.h -------------------------------------------------------------------------------- /pkg/osx/LauncherManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/LauncherManager.m -------------------------------------------------------------------------------- /pkg/osx/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /pkg/osx/Resources/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Resources/128x128.png -------------------------------------------------------------------------------- /pkg/osx/Resources/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Resources/app.icns -------------------------------------------------------------------------------- /pkg/osx/Resources/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Resources/app.png -------------------------------------------------------------------------------- /pkg/osx/Resources/launcher.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Resources/launcher.nib/designable.nib -------------------------------------------------------------------------------- /pkg/osx/Resources/launcher.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Resources/launcher.nib/keyedobjects.nib -------------------------------------------------------------------------------- /pkg/osx/Resources/wadfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Resources/wadfile.icns -------------------------------------------------------------------------------- /pkg/osx/Resources/wadfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/Resources/wadfile.png -------------------------------------------------------------------------------- /pkg/osx/cp-with-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/cp-with-libs -------------------------------------------------------------------------------- /pkg/osx/disk/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/disk/background.png -------------------------------------------------------------------------------- /pkg/osx/disk/dir.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/disk/dir.DS_Store -------------------------------------------------------------------------------- /pkg/osx/dmgfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/dmgfix -------------------------------------------------------------------------------- /pkg/osx/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/osx/main.m -------------------------------------------------------------------------------- /pkg/win32/.gitignore: -------------------------------------------------------------------------------- 1 | staging-* 2 | *.zip 3 | -------------------------------------------------------------------------------- /pkg/win32/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/win32/GNUmakefile -------------------------------------------------------------------------------- /pkg/win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/win32/README -------------------------------------------------------------------------------- /pkg/win32/cp-with-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/pkg/win32/cp-with-libs -------------------------------------------------------------------------------- /rpm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/rpm.spec.in -------------------------------------------------------------------------------- /rum-and-raisin-doom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/rum-and-raisin-doom.sln -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Doom.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Doom.desktop.in -------------------------------------------------------------------------------- /src/Doom.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Doom.metainfo.xml.in -------------------------------------------------------------------------------- /src/Doom_Screensaver.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Doom_Screensaver.desktop.in -------------------------------------------------------------------------------- /src/Heretic.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Heretic.desktop.in -------------------------------------------------------------------------------- /src/Heretic.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Heretic.metainfo.xml.in -------------------------------------------------------------------------------- /src/Hexen.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Hexen.desktop.in -------------------------------------------------------------------------------- /src/Hexen.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Hexen.metainfo.xml.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Strife.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Strife.desktop.in -------------------------------------------------------------------------------- /src/Strife.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/Strife.metainfo.xml.in -------------------------------------------------------------------------------- /src/aes_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/aes_prng.c -------------------------------------------------------------------------------- /src/aes_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/aes_prng.h -------------------------------------------------------------------------------- /src/d_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_dedicated.c -------------------------------------------------------------------------------- /src/d_demoloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_demoloop.cpp -------------------------------------------------------------------------------- /src/d_demoloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_demoloop.h -------------------------------------------------------------------------------- /src/d_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_event.c -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_gameconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_gameconf.cpp -------------------------------------------------------------------------------- /src/d_gameconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_gameconf.h -------------------------------------------------------------------------------- /src/d_gameflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_gameflow.cpp -------------------------------------------------------------------------------- /src/d_gameflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_gameflow.h -------------------------------------------------------------------------------- /src/d_gameflow_dmapinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_gameflow_dmapinfo.cpp -------------------------------------------------------------------------------- /src/d_gameflow_umapinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_gameflow_umapinfo.cpp -------------------------------------------------------------------------------- /src/d_iwad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_iwad.cpp -------------------------------------------------------------------------------- /src/d_iwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_iwad.h -------------------------------------------------------------------------------- /src/d_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_loop.c -------------------------------------------------------------------------------- /src/d_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_loop.h -------------------------------------------------------------------------------- /src/d_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_mode.c -------------------------------------------------------------------------------- /src/d_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_mode.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/deh_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_defs.h -------------------------------------------------------------------------------- /src/deh_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_io.c -------------------------------------------------------------------------------- /src/deh_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_io.h -------------------------------------------------------------------------------- /src/deh_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_main.cpp -------------------------------------------------------------------------------- /src/deh_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_main.h -------------------------------------------------------------------------------- /src/deh_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_mapping.c -------------------------------------------------------------------------------- /src/deh_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_mapping.h -------------------------------------------------------------------------------- /src/deh_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_str.c -------------------------------------------------------------------------------- /src/deh_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_str.h -------------------------------------------------------------------------------- /src/deh_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/deh_text.c -------------------------------------------------------------------------------- /src/doom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/.gitignore -------------------------------------------------------------------------------- /src/doom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/CMakeLists.txt -------------------------------------------------------------------------------- /src/doom/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/Makefile.am -------------------------------------------------------------------------------- /src/doom/am_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/am_map.cpp -------------------------------------------------------------------------------- /src/doom/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/am_map.h -------------------------------------------------------------------------------- /src/doom/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_englsh.h -------------------------------------------------------------------------------- /src/doom/d_gameflow_chex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gameflow_chex.cpp -------------------------------------------------------------------------------- /src/doom/d_gameflow_doom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gameflow_doom.cpp -------------------------------------------------------------------------------- /src/doom/d_gameflow_doom2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gameflow_doom2.cpp -------------------------------------------------------------------------------- /src/doom/d_gameflow_hacx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gameflow_hacx.cpp -------------------------------------------------------------------------------- /src/doom/d_gameflow_plutonia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gameflow_plutonia.cpp -------------------------------------------------------------------------------- /src/doom/d_gameflow_tnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gameflow_tnt.cpp -------------------------------------------------------------------------------- /src/doom/d_gamesim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gamesim.cpp -------------------------------------------------------------------------------- /src/doom/d_gamesim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_gamesim.h -------------------------------------------------------------------------------- /src/doom/d_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_items.cpp -------------------------------------------------------------------------------- /src/doom/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_items.h -------------------------------------------------------------------------------- /src/doom/d_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_main.cpp -------------------------------------------------------------------------------- /src/doom/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_main.h -------------------------------------------------------------------------------- /src/doom/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_net.c -------------------------------------------------------------------------------- /src/doom/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_player.h -------------------------------------------------------------------------------- /src/doom/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/d_think.h -------------------------------------------------------------------------------- /src/doom/deh_ammo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_ammo.cpp -------------------------------------------------------------------------------- /src/doom/deh_bexbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_bexbits.cpp -------------------------------------------------------------------------------- /src/doom/deh_bexpars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_bexpars.cpp -------------------------------------------------------------------------------- /src/doom/deh_bexptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_bexptr.cpp -------------------------------------------------------------------------------- /src/doom/deh_bexstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_bexstr.cpp -------------------------------------------------------------------------------- /src/doom/deh_bexstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_bexstrings.cpp -------------------------------------------------------------------------------- /src/doom/deh_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_cheat.cpp -------------------------------------------------------------------------------- /src/doom/deh_doom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_doom.cpp -------------------------------------------------------------------------------- /src/doom/deh_dsdsounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_dsdsounds.cpp -------------------------------------------------------------------------------- /src/doom/deh_dsdsprites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_dsdsprites.cpp -------------------------------------------------------------------------------- /src/doom/deh_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_frame.cpp -------------------------------------------------------------------------------- /src/doom/deh_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_misc.cpp -------------------------------------------------------------------------------- /src/doom/deh_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_misc.h -------------------------------------------------------------------------------- /src/doom/deh_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_ptr.cpp -------------------------------------------------------------------------------- /src/doom/deh_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_sound.cpp -------------------------------------------------------------------------------- /src/doom/deh_thing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_thing.cpp -------------------------------------------------------------------------------- /src/doom/deh_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/deh_weapon.cpp -------------------------------------------------------------------------------- /src/doom/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/doomdata.h -------------------------------------------------------------------------------- /src/doom/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/doomdef.c -------------------------------------------------------------------------------- /src/doom/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/doomdef.h -------------------------------------------------------------------------------- /src/doom/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/doomstat.c -------------------------------------------------------------------------------- /src/doom/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/doomstat.h -------------------------------------------------------------------------------- /src/doom/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/dstrings.c -------------------------------------------------------------------------------- /src/doom/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/dstrings.h -------------------------------------------------------------------------------- /src/doom/f_finale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/f_finale.cpp -------------------------------------------------------------------------------- /src/doom/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/f_finale.h -------------------------------------------------------------------------------- /src/doom/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/f_wipe.c -------------------------------------------------------------------------------- /src/doom/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/f_wipe.h -------------------------------------------------------------------------------- /src/doom/g_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/g_game.cpp -------------------------------------------------------------------------------- /src/doom/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/g_game.h -------------------------------------------------------------------------------- /src/doom/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/hu_lib.c -------------------------------------------------------------------------------- /src/doom/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/hu_lib.h -------------------------------------------------------------------------------- /src/doom/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/hu_stuff.c -------------------------------------------------------------------------------- /src/doom/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/hu_stuff.h -------------------------------------------------------------------------------- /src/doom/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/info.cpp -------------------------------------------------------------------------------- /src/doom/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/info.h -------------------------------------------------------------------------------- /src/doom/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/m_menu.c -------------------------------------------------------------------------------- /src/doom/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/m_menu.h -------------------------------------------------------------------------------- /src/doom/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/m_random.c -------------------------------------------------------------------------------- /src/doom/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/m_random.h -------------------------------------------------------------------------------- /src/doom/p_actionsmbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_actionsmbf.cpp -------------------------------------------------------------------------------- /src/doom/p_actionsmbf21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_actionsmbf21.cpp -------------------------------------------------------------------------------- /src/doom/p_ceilng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_ceilng.cpp -------------------------------------------------------------------------------- /src/doom/p_doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_doors.cpp -------------------------------------------------------------------------------- /src/doom/p_enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_enemy.cpp -------------------------------------------------------------------------------- /src/doom/p_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_floor.cpp -------------------------------------------------------------------------------- /src/doom/p_genericactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_genericactions.cpp -------------------------------------------------------------------------------- /src/doom/p_inter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_inter.cpp -------------------------------------------------------------------------------- /src/doom/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_inter.h -------------------------------------------------------------------------------- /src/doom/p_lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_lights.cpp -------------------------------------------------------------------------------- /src/doom/p_lineaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_lineaction.cpp -------------------------------------------------------------------------------- /src/doom/p_lineaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_lineaction.h -------------------------------------------------------------------------------- /src/doom/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_local.h -------------------------------------------------------------------------------- /src/doom/p_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_map.cpp -------------------------------------------------------------------------------- /src/doom/p_maputl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_maputl.cpp -------------------------------------------------------------------------------- /src/doom/p_mobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_mobj.cpp -------------------------------------------------------------------------------- /src/doom/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_mobj.h -------------------------------------------------------------------------------- /src/doom/p_plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_plats.cpp -------------------------------------------------------------------------------- /src/doom/p_pspr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_pspr.cpp -------------------------------------------------------------------------------- /src/doom/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_pspr.h -------------------------------------------------------------------------------- /src/doom/p_saveg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_saveg.cpp -------------------------------------------------------------------------------- /src/doom/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_saveg.h -------------------------------------------------------------------------------- /src/doom/p_sectoraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_sectoraction.h -------------------------------------------------------------------------------- /src/doom/p_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_setup.cpp -------------------------------------------------------------------------------- /src/doom/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_setup.h -------------------------------------------------------------------------------- /src/doom/p_sight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_sight.cpp -------------------------------------------------------------------------------- /src/doom/p_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_spec.cpp -------------------------------------------------------------------------------- /src/doom/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_spec.h -------------------------------------------------------------------------------- /src/doom/p_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_switch.cpp -------------------------------------------------------------------------------- /src/doom/p_telept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_telept.cpp -------------------------------------------------------------------------------- /src/doom/p_tick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_tick.cpp -------------------------------------------------------------------------------- /src/doom/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_tick.h -------------------------------------------------------------------------------- /src/doom/p_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/p_user.cpp -------------------------------------------------------------------------------- /src/doom/r_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_bsp.cpp -------------------------------------------------------------------------------- /src/doom/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_bsp.h -------------------------------------------------------------------------------- /src/doom/r_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_data.cpp -------------------------------------------------------------------------------- /src/doom/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_data.h -------------------------------------------------------------------------------- /src/doom/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_defs.h -------------------------------------------------------------------------------- /src/doom/r_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_draw.cpp -------------------------------------------------------------------------------- /src/doom/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_draw.h -------------------------------------------------------------------------------- /src/doom/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_local.h -------------------------------------------------------------------------------- /src/doom/r_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_main.cpp -------------------------------------------------------------------------------- /src/doom/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_main.h -------------------------------------------------------------------------------- /src/doom/r_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_plane.cpp -------------------------------------------------------------------------------- /src/doom/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_plane.h -------------------------------------------------------------------------------- /src/doom/r_raster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_raster.cpp -------------------------------------------------------------------------------- /src/doom/r_raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_raster.h -------------------------------------------------------------------------------- /src/doom/r_segs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_segs.cpp -------------------------------------------------------------------------------- /src/doom/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_segs.h -------------------------------------------------------------------------------- /src/doom/r_sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_sky.cpp -------------------------------------------------------------------------------- /src/doom/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_sky.h -------------------------------------------------------------------------------- /src/doom/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_state.h -------------------------------------------------------------------------------- /src/doom/r_things.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_things.cpp -------------------------------------------------------------------------------- /src/doom/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/r_things.h -------------------------------------------------------------------------------- /src/doom/s_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/s_sound.cpp -------------------------------------------------------------------------------- /src/doom/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/s_sound.h -------------------------------------------------------------------------------- /src/doom/sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/sounds.cpp -------------------------------------------------------------------------------- /src/doom/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/sounds.h -------------------------------------------------------------------------------- /src/doom/st_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/st_lib.cpp -------------------------------------------------------------------------------- /src/doom/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/st_lib.h -------------------------------------------------------------------------------- /src/doom/st_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/st_stuff.cpp -------------------------------------------------------------------------------- /src/doom/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/st_stuff.h -------------------------------------------------------------------------------- /src/doom/wi_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/wi_stuff.cpp -------------------------------------------------------------------------------- /src/doom/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doom/wi_stuff.h -------------------------------------------------------------------------------- /src/doomkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doomkeys.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/gusconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/gusconf.c -------------------------------------------------------------------------------- /src/gusconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/gusconf.h -------------------------------------------------------------------------------- /src/heretic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/.gitignore -------------------------------------------------------------------------------- /src/heretic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/CMakeLists.txt -------------------------------------------------------------------------------- /src/heretic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/Makefile.am -------------------------------------------------------------------------------- /src/heretic/am_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/am_data.h -------------------------------------------------------------------------------- /src/heretic/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/am_map.c -------------------------------------------------------------------------------- /src/heretic/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/am_map.h -------------------------------------------------------------------------------- /src/heretic/ct_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/ct_chat.c -------------------------------------------------------------------------------- /src/heretic/ct_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/ct_chat.h -------------------------------------------------------------------------------- /src/heretic/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/d_main.c -------------------------------------------------------------------------------- /src/heretic/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/d_net.c -------------------------------------------------------------------------------- /src/heretic/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_ammo.c -------------------------------------------------------------------------------- /src/heretic/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_frame.c -------------------------------------------------------------------------------- /src/heretic/deh_htext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_htext.c -------------------------------------------------------------------------------- /src/heretic/deh_htic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_htic.c -------------------------------------------------------------------------------- /src/heretic/deh_htic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_htic.h -------------------------------------------------------------------------------- /src/heretic/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_sound.c -------------------------------------------------------------------------------- /src/heretic/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_thing.c -------------------------------------------------------------------------------- /src/heretic/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/deh_weapon.c -------------------------------------------------------------------------------- /src/heretic/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/doomdata.h -------------------------------------------------------------------------------- /src/heretic/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/doomdef.h -------------------------------------------------------------------------------- /src/heretic/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/dstrings.h -------------------------------------------------------------------------------- /src/heretic/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/f_finale.c -------------------------------------------------------------------------------- /src/heretic/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/g_game.c -------------------------------------------------------------------------------- /src/heretic/in_lude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/in_lude.c -------------------------------------------------------------------------------- /src/heretic/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/info.c -------------------------------------------------------------------------------- /src/heretic/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/info.h -------------------------------------------------------------------------------- /src/heretic/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/m_random.c -------------------------------------------------------------------------------- /src/heretic/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/m_random.h -------------------------------------------------------------------------------- /src/heretic/mn_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/mn_menu.c -------------------------------------------------------------------------------- /src/heretic/p_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_action.h -------------------------------------------------------------------------------- /src/heretic/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_ceilng.c -------------------------------------------------------------------------------- /src/heretic/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_doors.c -------------------------------------------------------------------------------- /src/heretic/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_enemy.c -------------------------------------------------------------------------------- /src/heretic/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_floor.c -------------------------------------------------------------------------------- /src/heretic/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_inter.c -------------------------------------------------------------------------------- /src/heretic/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_lights.c -------------------------------------------------------------------------------- /src/heretic/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_local.h -------------------------------------------------------------------------------- /src/heretic/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_map.c -------------------------------------------------------------------------------- /src/heretic/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_maputl.c -------------------------------------------------------------------------------- /src/heretic/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_mobj.c -------------------------------------------------------------------------------- /src/heretic/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_plats.c -------------------------------------------------------------------------------- /src/heretic/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_pspr.c -------------------------------------------------------------------------------- /src/heretic/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_saveg.c -------------------------------------------------------------------------------- /src/heretic/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_setup.c -------------------------------------------------------------------------------- /src/heretic/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_sight.c -------------------------------------------------------------------------------- /src/heretic/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_spec.c -------------------------------------------------------------------------------- /src/heretic/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_spec.h -------------------------------------------------------------------------------- /src/heretic/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_switch.c -------------------------------------------------------------------------------- /src/heretic/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_telept.c -------------------------------------------------------------------------------- /src/heretic/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_tick.c -------------------------------------------------------------------------------- /src/heretic/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/p_user.c -------------------------------------------------------------------------------- /src/heretic/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_bsp.c -------------------------------------------------------------------------------- /src/heretic/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_data.c -------------------------------------------------------------------------------- /src/heretic/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_draw.c -------------------------------------------------------------------------------- /src/heretic/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_local.h -------------------------------------------------------------------------------- /src/heretic/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_main.c -------------------------------------------------------------------------------- /src/heretic/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_plane.c -------------------------------------------------------------------------------- /src/heretic/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_segs.c -------------------------------------------------------------------------------- /src/heretic/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/r_things.c -------------------------------------------------------------------------------- /src/heretic/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/s_sound.c -------------------------------------------------------------------------------- /src/heretic/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/s_sound.h -------------------------------------------------------------------------------- /src/heretic/sb_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/sb_bar.c -------------------------------------------------------------------------------- /src/heretic/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/sounds.c -------------------------------------------------------------------------------- /src/heretic/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/heretic/sounds.h -------------------------------------------------------------------------------- /src/hexen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/.gitignore -------------------------------------------------------------------------------- /src/hexen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/CMakeLists.txt -------------------------------------------------------------------------------- /src/hexen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/Makefile.am -------------------------------------------------------------------------------- /src/hexen/a_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/a_action.c -------------------------------------------------------------------------------- /src/hexen/am_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/am_data.h -------------------------------------------------------------------------------- /src/hexen/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/am_map.c -------------------------------------------------------------------------------- /src/hexen/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/am_map.h -------------------------------------------------------------------------------- /src/hexen/ct_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/ct_chat.c -------------------------------------------------------------------------------- /src/hexen/ct_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/ct_chat.h -------------------------------------------------------------------------------- /src/hexen/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/d_net.c -------------------------------------------------------------------------------- /src/hexen/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/f_finale.c -------------------------------------------------------------------------------- /src/hexen/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/g_game.c -------------------------------------------------------------------------------- /src/hexen/h2_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/h2_main.c -------------------------------------------------------------------------------- /src/hexen/h2def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/h2def.h -------------------------------------------------------------------------------- /src/hexen/in_lude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/in_lude.c -------------------------------------------------------------------------------- /src/hexen/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/info.c -------------------------------------------------------------------------------- /src/hexen/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/info.h -------------------------------------------------------------------------------- /src/hexen/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/m_random.c -------------------------------------------------------------------------------- /src/hexen/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/m_random.h -------------------------------------------------------------------------------- /src/hexen/mn_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/mn_menu.c -------------------------------------------------------------------------------- /src/hexen/p_acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_acs.c -------------------------------------------------------------------------------- /src/hexen/p_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_anim.c -------------------------------------------------------------------------------- /src/hexen/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_ceilng.c -------------------------------------------------------------------------------- /src/hexen/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_doors.c -------------------------------------------------------------------------------- /src/hexen/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_enemy.c -------------------------------------------------------------------------------- /src/hexen/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_floor.c -------------------------------------------------------------------------------- /src/hexen/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_inter.c -------------------------------------------------------------------------------- /src/hexen/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_lights.c -------------------------------------------------------------------------------- /src/hexen/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_local.h -------------------------------------------------------------------------------- /src/hexen/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_map.c -------------------------------------------------------------------------------- /src/hexen/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_maputl.c -------------------------------------------------------------------------------- /src/hexen/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_mobj.c -------------------------------------------------------------------------------- /src/hexen/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_plats.c -------------------------------------------------------------------------------- /src/hexen/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_pspr.c -------------------------------------------------------------------------------- /src/hexen/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_setup.c -------------------------------------------------------------------------------- /src/hexen/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_sight.c -------------------------------------------------------------------------------- /src/hexen/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_spec.c -------------------------------------------------------------------------------- /src/hexen/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_spec.h -------------------------------------------------------------------------------- /src/hexen/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_switch.c -------------------------------------------------------------------------------- /src/hexen/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_telept.c -------------------------------------------------------------------------------- /src/hexen/p_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_things.c -------------------------------------------------------------------------------- /src/hexen/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_tick.c -------------------------------------------------------------------------------- /src/hexen/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/p_user.c -------------------------------------------------------------------------------- /src/hexen/po_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/po_man.c -------------------------------------------------------------------------------- /src/hexen/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_bsp.c -------------------------------------------------------------------------------- /src/hexen/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_data.c -------------------------------------------------------------------------------- /src/hexen/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_draw.c -------------------------------------------------------------------------------- /src/hexen/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_local.h -------------------------------------------------------------------------------- /src/hexen/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_main.c -------------------------------------------------------------------------------- /src/hexen/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_plane.c -------------------------------------------------------------------------------- /src/hexen/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_segs.c -------------------------------------------------------------------------------- /src/hexen/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/r_things.c -------------------------------------------------------------------------------- /src/hexen/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/s_sound.c -------------------------------------------------------------------------------- /src/hexen/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/s_sound.h -------------------------------------------------------------------------------- /src/hexen/sb_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/sb_bar.c -------------------------------------------------------------------------------- /src/hexen/sc_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/sc_man.c -------------------------------------------------------------------------------- /src/hexen/sn_sonix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/sn_sonix.c -------------------------------------------------------------------------------- /src/hexen/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/sounds.c -------------------------------------------------------------------------------- /src/hexen/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/sounds.h -------------------------------------------------------------------------------- /src/hexen/st_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/st_start.c -------------------------------------------------------------------------------- /src/hexen/st_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/st_start.h -------------------------------------------------------------------------------- /src/hexen/sv_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/sv_save.c -------------------------------------------------------------------------------- /src/hexen/textdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/textdefs.h -------------------------------------------------------------------------------- /src/hexen/xddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/hexen/xddefs.h -------------------------------------------------------------------------------- /src/i_cdmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_cdmus.c -------------------------------------------------------------------------------- /src/i_cdmus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_cdmus.h -------------------------------------------------------------------------------- /src/i_endoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_endoom.c -------------------------------------------------------------------------------- /src/i_endoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_endoom.h -------------------------------------------------------------------------------- /src/i_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_error.cpp -------------------------------------------------------------------------------- /src/i_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_error.h -------------------------------------------------------------------------------- /src/i_glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_glob.c -------------------------------------------------------------------------------- /src/i_glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_glob.h -------------------------------------------------------------------------------- /src/i_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_input.c -------------------------------------------------------------------------------- /src/i_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_input.h -------------------------------------------------------------------------------- /src/i_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_joystick.c -------------------------------------------------------------------------------- /src/i_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_joystick.h -------------------------------------------------------------------------------- /src/i_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_log.cpp -------------------------------------------------------------------------------- /src/i_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_log.h -------------------------------------------------------------------------------- /src/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_main.c -------------------------------------------------------------------------------- /src/i_midipipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_midipipe.c -------------------------------------------------------------------------------- /src/i_midipipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_midipipe.h -------------------------------------------------------------------------------- /src/i_musicpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_musicpack.c -------------------------------------------------------------------------------- /src/i_oplmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_oplmusic.c -------------------------------------------------------------------------------- /src/i_pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_pcsound.c -------------------------------------------------------------------------------- /src/i_sdlmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_sdlmusic.c -------------------------------------------------------------------------------- /src/i_sdlsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_sdlsound.cpp -------------------------------------------------------------------------------- /src/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_sound.c -------------------------------------------------------------------------------- /src/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_sound.h -------------------------------------------------------------------------------- /src/i_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_swap.h -------------------------------------------------------------------------------- /src/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_system.c -------------------------------------------------------------------------------- /src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_system.h -------------------------------------------------------------------------------- /src/i_terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_terminal.cpp -------------------------------------------------------------------------------- /src/i_terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_terminal.h -------------------------------------------------------------------------------- /src/i_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_thread.cpp -------------------------------------------------------------------------------- /src/i_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_thread.h -------------------------------------------------------------------------------- /src/i_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_timer.c -------------------------------------------------------------------------------- /src/i_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_timer.h -------------------------------------------------------------------------------- /src/i_vbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_vbuffer.h -------------------------------------------------------------------------------- /src/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_video.c -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/i_video_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_video_gl.cpp -------------------------------------------------------------------------------- /src/i_videohr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_videohr.c -------------------------------------------------------------------------------- /src/i_videohr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/i_videohr.h -------------------------------------------------------------------------------- /src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/icon.c -------------------------------------------------------------------------------- /src/m_argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_argv.cpp -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_bbox.c -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_cheat.c -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_config.c -------------------------------------------------------------------------------- /src/m_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_config.h -------------------------------------------------------------------------------- /src/m_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_container.h -------------------------------------------------------------------------------- /src/m_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_controls.c -------------------------------------------------------------------------------- /src/m_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_controls.h -------------------------------------------------------------------------------- /src/m_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_conv.h -------------------------------------------------------------------------------- /src/m_dashboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_dashboard.cpp -------------------------------------------------------------------------------- /src/m_dashboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_dashboard.h -------------------------------------------------------------------------------- /src/m_dashboard_font_inconsolata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_dashboard_font_inconsolata.cpp -------------------------------------------------------------------------------- /src/m_dashboard_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_dashboard_launcher.cpp -------------------------------------------------------------------------------- /src/m_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_fixed.c -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_fixed.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_fixed.inl -------------------------------------------------------------------------------- /src/m_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_json.cpp -------------------------------------------------------------------------------- /src/m_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_json.h -------------------------------------------------------------------------------- /src/m_jsonlump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_jsonlump.cpp -------------------------------------------------------------------------------- /src/m_jsonlump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_jsonlump.h -------------------------------------------------------------------------------- /src/m_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_launcher.cpp -------------------------------------------------------------------------------- /src/m_launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_launcher.h -------------------------------------------------------------------------------- /src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_misc.c -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/m_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_profile.cpp -------------------------------------------------------------------------------- /src/m_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_profile.h -------------------------------------------------------------------------------- /src/m_url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_url.cpp -------------------------------------------------------------------------------- /src/m_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_url.h -------------------------------------------------------------------------------- /src/m_zipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_zipfile.cpp -------------------------------------------------------------------------------- /src/m_zipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/m_zipfile.h -------------------------------------------------------------------------------- /src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/manifest.xml -------------------------------------------------------------------------------- /src/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/memio.c -------------------------------------------------------------------------------- /src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/memio.h -------------------------------------------------------------------------------- /src/midifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/midifile.c -------------------------------------------------------------------------------- /src/midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/midifile.h -------------------------------------------------------------------------------- /src/mus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/mus2mid.c -------------------------------------------------------------------------------- /src/mus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/mus2mid.h -------------------------------------------------------------------------------- /src/net_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_client.c -------------------------------------------------------------------------------- /src/net_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_client.h -------------------------------------------------------------------------------- /src/net_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_common.c -------------------------------------------------------------------------------- /src/net_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_common.h -------------------------------------------------------------------------------- /src/net_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_dedicated.c -------------------------------------------------------------------------------- /src/net_dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_dedicated.h -------------------------------------------------------------------------------- /src/net_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_defs.h -------------------------------------------------------------------------------- /src/net_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_gui.c -------------------------------------------------------------------------------- /src/net_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_gui.h -------------------------------------------------------------------------------- /src/net_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_io.c -------------------------------------------------------------------------------- /src/net_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_io.h -------------------------------------------------------------------------------- /src/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_loop.c -------------------------------------------------------------------------------- /src/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_loop.h -------------------------------------------------------------------------------- /src/net_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_packet.c -------------------------------------------------------------------------------- /src/net_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_packet.h -------------------------------------------------------------------------------- /src/net_petname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_petname.c -------------------------------------------------------------------------------- /src/net_petname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_petname.h -------------------------------------------------------------------------------- /src/net_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_query.c -------------------------------------------------------------------------------- /src/net_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_query.h -------------------------------------------------------------------------------- /src/net_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_sdl.c -------------------------------------------------------------------------------- /src/net_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_sdl.h -------------------------------------------------------------------------------- /src/net_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_server.c -------------------------------------------------------------------------------- /src/net_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_server.h -------------------------------------------------------------------------------- /src/net_structrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_structrw.c -------------------------------------------------------------------------------- /src/net_structrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/net_structrw.h -------------------------------------------------------------------------------- /src/resource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/resource.rc.in -------------------------------------------------------------------------------- /src/setup-res.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup-res.rc.in -------------------------------------------------------------------------------- /src/setup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/.gitignore -------------------------------------------------------------------------------- /src/setup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/CMakeLists.txt -------------------------------------------------------------------------------- /src/setup/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/Makefile.am -------------------------------------------------------------------------------- /src/setup/Setup.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/Setup.desktop.in -------------------------------------------------------------------------------- /src/setup/compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/compatibility.c -------------------------------------------------------------------------------- /src/setup/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/compatibility.h -------------------------------------------------------------------------------- /src/setup/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/display.c -------------------------------------------------------------------------------- /src/setup/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/display.h -------------------------------------------------------------------------------- /src/setup/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/execute.c -------------------------------------------------------------------------------- /src/setup/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/execute.h -------------------------------------------------------------------------------- /src/setup/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/joystick.c -------------------------------------------------------------------------------- /src/setup/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/joystick.h -------------------------------------------------------------------------------- /src/setup/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/keyboard.c -------------------------------------------------------------------------------- /src/setup/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/keyboard.h -------------------------------------------------------------------------------- /src/setup/mainmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/mainmenu.c -------------------------------------------------------------------------------- /src/setup/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/mode.c -------------------------------------------------------------------------------- /src/setup/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/mode.h -------------------------------------------------------------------------------- /src/setup/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/mouse.c -------------------------------------------------------------------------------- /src/setup/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/mouse.h -------------------------------------------------------------------------------- /src/setup/multiplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/multiplayer.c -------------------------------------------------------------------------------- /src/setup/multiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/multiplayer.h -------------------------------------------------------------------------------- /src/setup/setup-manifest.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/setup-manifest.xml.in -------------------------------------------------------------------------------- /src/setup/setup_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/setup_icon.c -------------------------------------------------------------------------------- /src/setup/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/sound.c -------------------------------------------------------------------------------- /src/setup/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/sound.h -------------------------------------------------------------------------------- /src/setup/txt_joyaxis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_joyaxis.c -------------------------------------------------------------------------------- /src/setup/txt_joyaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_joyaxis.h -------------------------------------------------------------------------------- /src/setup/txt_joybinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_joybinput.c -------------------------------------------------------------------------------- /src/setup/txt_joybinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_joybinput.h -------------------------------------------------------------------------------- /src/setup/txt_keyinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_keyinput.c -------------------------------------------------------------------------------- /src/setup/txt_keyinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_keyinput.h -------------------------------------------------------------------------------- /src/setup/txt_mouseinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_mouseinput.c -------------------------------------------------------------------------------- /src/setup/txt_mouseinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/setup/txt_mouseinput.h -------------------------------------------------------------------------------- /src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/sha1.c -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/strife/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/.gitignore -------------------------------------------------------------------------------- /src/strife/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/CMakeLists.txt -------------------------------------------------------------------------------- /src/strife/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/Makefile.am -------------------------------------------------------------------------------- /src/strife/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/am_map.c -------------------------------------------------------------------------------- /src/strife/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/am_map.h -------------------------------------------------------------------------------- /src/strife/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_englsh.h -------------------------------------------------------------------------------- /src/strife/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_items.c -------------------------------------------------------------------------------- /src/strife/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_items.h -------------------------------------------------------------------------------- /src/strife/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_main.c -------------------------------------------------------------------------------- /src/strife/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_main.h -------------------------------------------------------------------------------- /src/strife/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_net.c -------------------------------------------------------------------------------- /src/strife/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_player.h -------------------------------------------------------------------------------- /src/strife/d_textur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_textur.h -------------------------------------------------------------------------------- /src/strife/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/d_think.h -------------------------------------------------------------------------------- /src/strife/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_ammo.c -------------------------------------------------------------------------------- /src/strife/deh_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_cheat.c -------------------------------------------------------------------------------- /src/strife/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_frame.c -------------------------------------------------------------------------------- /src/strife/deh_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_misc.c -------------------------------------------------------------------------------- /src/strife/deh_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_misc.h -------------------------------------------------------------------------------- /src/strife/deh_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_ptr.c -------------------------------------------------------------------------------- /src/strife/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_sound.c -------------------------------------------------------------------------------- /src/strife/deh_strife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_strife.c -------------------------------------------------------------------------------- /src/strife/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_thing.c -------------------------------------------------------------------------------- /src/strife/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/deh_weapon.c -------------------------------------------------------------------------------- /src/strife/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/doomdata.h -------------------------------------------------------------------------------- /src/strife/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/doomdef.c -------------------------------------------------------------------------------- /src/strife/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/doomdef.h -------------------------------------------------------------------------------- /src/strife/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/doomstat.c -------------------------------------------------------------------------------- /src/strife/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/doomstat.h -------------------------------------------------------------------------------- /src/strife/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/dstrings.c -------------------------------------------------------------------------------- /src/strife/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/dstrings.h -------------------------------------------------------------------------------- /src/strife/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/f_finale.c -------------------------------------------------------------------------------- /src/strife/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/f_finale.h -------------------------------------------------------------------------------- /src/strife/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/f_wipe.c -------------------------------------------------------------------------------- /src/strife/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/f_wipe.h -------------------------------------------------------------------------------- /src/strife/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/g_game.c -------------------------------------------------------------------------------- /src/strife/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/g_game.h -------------------------------------------------------------------------------- /src/strife/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/hu_lib.c -------------------------------------------------------------------------------- /src/strife/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/hu_lib.h -------------------------------------------------------------------------------- /src/strife/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/hu_stuff.c -------------------------------------------------------------------------------- /src/strife/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/hu_stuff.h -------------------------------------------------------------------------------- /src/strife/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/info.c -------------------------------------------------------------------------------- /src/strife/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/info.h -------------------------------------------------------------------------------- /src/strife/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/m_menu.c -------------------------------------------------------------------------------- /src/strife/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/m_menu.h -------------------------------------------------------------------------------- /src/strife/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/m_random.c -------------------------------------------------------------------------------- /src/strife/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/m_random.h -------------------------------------------------------------------------------- /src/strife/m_saves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/m_saves.c -------------------------------------------------------------------------------- /src/strife/m_saves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/m_saves.h -------------------------------------------------------------------------------- /src/strife/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_ceilng.c -------------------------------------------------------------------------------- /src/strife/p_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_dialog.c -------------------------------------------------------------------------------- /src/strife/p_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_dialog.h -------------------------------------------------------------------------------- /src/strife/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_doors.c -------------------------------------------------------------------------------- /src/strife/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_enemy.c -------------------------------------------------------------------------------- /src/strife/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_floor.c -------------------------------------------------------------------------------- /src/strife/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_inter.c -------------------------------------------------------------------------------- /src/strife/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_inter.h -------------------------------------------------------------------------------- /src/strife/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_lights.c -------------------------------------------------------------------------------- /src/strife/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_local.h -------------------------------------------------------------------------------- /src/strife/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_map.c -------------------------------------------------------------------------------- /src/strife/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_maputl.c -------------------------------------------------------------------------------- /src/strife/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_mobj.c -------------------------------------------------------------------------------- /src/strife/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_mobj.h -------------------------------------------------------------------------------- /src/strife/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_plats.c -------------------------------------------------------------------------------- /src/strife/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_pspr.c -------------------------------------------------------------------------------- /src/strife/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_pspr.h -------------------------------------------------------------------------------- /src/strife/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_saveg.c -------------------------------------------------------------------------------- /src/strife/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_saveg.h -------------------------------------------------------------------------------- /src/strife/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_setup.c -------------------------------------------------------------------------------- /src/strife/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_setup.h -------------------------------------------------------------------------------- /src/strife/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_sight.c -------------------------------------------------------------------------------- /src/strife/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_spec.c -------------------------------------------------------------------------------- /src/strife/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_spec.h -------------------------------------------------------------------------------- /src/strife/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_switch.c -------------------------------------------------------------------------------- /src/strife/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_telept.c -------------------------------------------------------------------------------- /src/strife/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_tick.c -------------------------------------------------------------------------------- /src/strife/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_tick.h -------------------------------------------------------------------------------- /src/strife/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/p_user.c -------------------------------------------------------------------------------- /src/strife/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_bsp.c -------------------------------------------------------------------------------- /src/strife/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_bsp.h -------------------------------------------------------------------------------- /src/strife/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_data.c -------------------------------------------------------------------------------- /src/strife/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_data.h -------------------------------------------------------------------------------- /src/strife/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_defs.h -------------------------------------------------------------------------------- /src/strife/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_draw.c -------------------------------------------------------------------------------- /src/strife/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_draw.h -------------------------------------------------------------------------------- /src/strife/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_local.h -------------------------------------------------------------------------------- /src/strife/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_main.c -------------------------------------------------------------------------------- /src/strife/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_main.h -------------------------------------------------------------------------------- /src/strife/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_plane.c -------------------------------------------------------------------------------- /src/strife/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_plane.h -------------------------------------------------------------------------------- /src/strife/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_segs.c -------------------------------------------------------------------------------- /src/strife/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_segs.h -------------------------------------------------------------------------------- /src/strife/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_sky.c -------------------------------------------------------------------------------- /src/strife/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_sky.h -------------------------------------------------------------------------------- /src/strife/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_state.h -------------------------------------------------------------------------------- /src/strife/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_things.c -------------------------------------------------------------------------------- /src/strife/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/r_things.h -------------------------------------------------------------------------------- /src/strife/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/s_sound.c -------------------------------------------------------------------------------- /src/strife/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/s_sound.h -------------------------------------------------------------------------------- /src/strife/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/sounds.c -------------------------------------------------------------------------------- /src/strife/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/sounds.h -------------------------------------------------------------------------------- /src/strife/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/st_lib.c -------------------------------------------------------------------------------- /src/strife/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/st_lib.h -------------------------------------------------------------------------------- /src/strife/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/st_stuff.c -------------------------------------------------------------------------------- /src/strife/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/st_stuff.h -------------------------------------------------------------------------------- /src/strife/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/wi_stuff.c -------------------------------------------------------------------------------- /src/strife/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/strife/wi_stuff.h -------------------------------------------------------------------------------- /src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/tables.c -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/v_diskicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/v_diskicon.c -------------------------------------------------------------------------------- /src/v_diskicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/v_diskicon.h -------------------------------------------------------------------------------- /src/v_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/v_patch.h -------------------------------------------------------------------------------- /src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/v_video.c -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/w_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_checksum.c -------------------------------------------------------------------------------- /src/w_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_checksum.h -------------------------------------------------------------------------------- /src/w_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_file.c -------------------------------------------------------------------------------- /src/w_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_file.h -------------------------------------------------------------------------------- /src/w_file_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_file_posix.c -------------------------------------------------------------------------------- /src/w_file_stdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_file_stdc.c -------------------------------------------------------------------------------- /src/w_file_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_file_win32.c -------------------------------------------------------------------------------- /src/w_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_main.c -------------------------------------------------------------------------------- /src/w_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_main.h -------------------------------------------------------------------------------- /src/w_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_merge.c -------------------------------------------------------------------------------- /src/w_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_merge.h -------------------------------------------------------------------------------- /src/w_wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_wad.cpp -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/z_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/z_native.c -------------------------------------------------------------------------------- /src/z_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/z_zone.cpp -------------------------------------------------------------------------------- /src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/src/z_zone.h -------------------------------------------------------------------------------- /textscreen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/.gitignore -------------------------------------------------------------------------------- /textscreen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/CMakeLists.txt -------------------------------------------------------------------------------- /textscreen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/Doxyfile -------------------------------------------------------------------------------- /textscreen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/Makefile.am -------------------------------------------------------------------------------- /textscreen/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/examples/.gitignore -------------------------------------------------------------------------------- /textscreen/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/examples/Makefile.am -------------------------------------------------------------------------------- /textscreen/examples/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/examples/calculator.c -------------------------------------------------------------------------------- /textscreen/examples/guitest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/examples/guitest.c -------------------------------------------------------------------------------- /textscreen/fonts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/Makefile.am -------------------------------------------------------------------------------- /textscreen/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/README -------------------------------------------------------------------------------- /textscreen/fonts/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/codepage.h -------------------------------------------------------------------------------- /textscreen/fonts/convert-font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/convert-font -------------------------------------------------------------------------------- /textscreen/fonts/large.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/large.h -------------------------------------------------------------------------------- /textscreen/fonts/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/large.png -------------------------------------------------------------------------------- /textscreen/fonts/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/normal.h -------------------------------------------------------------------------------- /textscreen/fonts/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/normal.png -------------------------------------------------------------------------------- /textscreen/fonts/small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/small.h -------------------------------------------------------------------------------- /textscreen/fonts/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/fonts/small.png -------------------------------------------------------------------------------- /textscreen/textscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/textscreen.h -------------------------------------------------------------------------------- /textscreen/txt_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_button.c -------------------------------------------------------------------------------- /textscreen/txt_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_button.h -------------------------------------------------------------------------------- /textscreen/txt_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_checkbox.c -------------------------------------------------------------------------------- /textscreen/txt_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_checkbox.h -------------------------------------------------------------------------------- /textscreen/txt_conditional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_conditional.c -------------------------------------------------------------------------------- /textscreen/txt_conditional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_conditional.h -------------------------------------------------------------------------------- /textscreen/txt_desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_desktop.c -------------------------------------------------------------------------------- /textscreen/txt_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_desktop.h -------------------------------------------------------------------------------- /textscreen/txt_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_dropdown.c -------------------------------------------------------------------------------- /textscreen/txt_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_dropdown.h -------------------------------------------------------------------------------- /textscreen/txt_fileselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_fileselect.c -------------------------------------------------------------------------------- /textscreen/txt_fileselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_fileselect.h -------------------------------------------------------------------------------- /textscreen/txt_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_gui.c -------------------------------------------------------------------------------- /textscreen/txt_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_gui.h -------------------------------------------------------------------------------- /textscreen/txt_inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_inputbox.c -------------------------------------------------------------------------------- /textscreen/txt_inputbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_inputbox.h -------------------------------------------------------------------------------- /textscreen/txt_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_io.c -------------------------------------------------------------------------------- /textscreen/txt_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_io.h -------------------------------------------------------------------------------- /textscreen/txt_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_label.c -------------------------------------------------------------------------------- /textscreen/txt_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_label.h -------------------------------------------------------------------------------- /textscreen/txt_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_main.h -------------------------------------------------------------------------------- /textscreen/txt_radiobutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_radiobutton.c -------------------------------------------------------------------------------- /textscreen/txt_radiobutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_radiobutton.h -------------------------------------------------------------------------------- /textscreen/txt_scrollpane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_scrollpane.c -------------------------------------------------------------------------------- /textscreen/txt_scrollpane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_scrollpane.h -------------------------------------------------------------------------------- /textscreen/txt_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_sdl.c -------------------------------------------------------------------------------- /textscreen/txt_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_sdl.h -------------------------------------------------------------------------------- /textscreen/txt_separator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_separator.c -------------------------------------------------------------------------------- /textscreen/txt_separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_separator.h -------------------------------------------------------------------------------- /textscreen/txt_spinctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_spinctrl.c -------------------------------------------------------------------------------- /textscreen/txt_spinctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_spinctrl.h -------------------------------------------------------------------------------- /textscreen/txt_strut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_strut.c -------------------------------------------------------------------------------- /textscreen/txt_strut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_strut.h -------------------------------------------------------------------------------- /textscreen/txt_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_table.c -------------------------------------------------------------------------------- /textscreen/txt_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_table.h -------------------------------------------------------------------------------- /textscreen/txt_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_utf8.c -------------------------------------------------------------------------------- /textscreen/txt_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_utf8.h -------------------------------------------------------------------------------- /textscreen/txt_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_widget.c -------------------------------------------------------------------------------- /textscreen/txt_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_widget.h -------------------------------------------------------------------------------- /textscreen/txt_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_window.c -------------------------------------------------------------------------------- /textscreen/txt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_window.h -------------------------------------------------------------------------------- /textscreen/txt_window_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_window_action.c -------------------------------------------------------------------------------- /textscreen/txt_window_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/textscreen/txt_window_action.h -------------------------------------------------------------------------------- /wads/boomtest.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/wads/boomtest.wad -------------------------------------------------------------------------------- /win32/win_opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/win32/win_opendir.c -------------------------------------------------------------------------------- /win32/win_opendir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooberMan/rum-and-raisin-doom/HEAD/win32/win_opendir.h --------------------------------------------------------------------------------