├── CMakeLists.txt ├── README.md ├── SciTech ├── include │ ├── debug.h │ ├── mgldos.h │ ├── mglwin.h │ └── mgraph.h └── lib │ └── win32 │ └── vc │ └── mgllt.lib ├── WinQuake ├── COPYING ├── Makefile.Solaris ├── Makefile.linuxi386 ├── WinQuake.dsp ├── WinQuake.dsw ├── WinQuake_lcc.rc ├── WinQuake_vc.rc ├── adivtab.h ├── amidi.c ├── anorm_dots.h ├── anorms.h ├── block8.h ├── bot.c ├── bot.h ├── bspfile.h ├── cd_audio.c ├── cd_linux.c ├── cd_null.c ├── cd_win.c ├── cdaudio.h ├── chase.c ├── cl_demo.c ├── cl_input.c ├── cl_main.c ├── cl_parse.c ├── cl_tent.c ├── clean.bat ├── client.h ├── cmd.c ├── cmd.h ├── common.c ├── common.h ├── conproc.c ├── conproc.h ├── console.c ├── console.h ├── crc.c ├── crc.h ├── cvar.c ├── cvar.h ├── d_edge.c ├── d_fill.c ├── d_iface.h ├── d_init.c ├── d_local.h ├── d_modech.c ├── d_part.c ├── d_polyse.c ├── d_scan.c ├── d_sky.c ├── d_sprite.c ├── d_surf.c ├── d_vars.c ├── d_zpoint.c ├── djmake.bat ├── dos_v2.c ├── dosisms.h ├── draw.c ├── draw.h ├── engoo.bmp ├── gl_draw.c ├── gl_mesh.c ├── gl_model.c ├── gl_model.h ├── gl_refrag.c ├── gl_rlight.c ├── gl_rmain.c ├── gl_rmisc.c ├── gl_rsurf.c ├── gl_screen.c ├── gl_test.c ├── gl_vidlinux.c ├── gl_vidlinuxglx.c ├── gl_vidnt.c ├── gl_warp.c ├── gl_warp_sin.h ├── glquake.h ├── glquake2.h ├── host.c ├── host_cmd.c ├── in_dos.c ├── in_null.c ├── in_sun.c ├── in_win.c ├── input.h ├── keys.c ├── keys.h ├── lcc_glquake.prj ├── lcc_info.txt ├── lcc_winquake.prj ├── makefile.djgpp ├── mathlib.c ├── mathlib.h ├── matrixlib.c ├── matrixlib.h ├── menu.c ├── menu.h ├── model.c ├── model.h ├── model_common.c ├── model_common.h ├── modelgen.h ├── mpdosock.h ├── mplib.c ├── mplpc.c ├── net.h ├── net_bsd.c ├── net_bw.c ├── net_bw.h ├── net_comx.c ├── net_dgrm.c ├── net_dgrm.h ├── net_dos.c ├── net_ipx.c ├── net_ipx.h ├── net_loop.c ├── net_loop.h ├── net_main.c ├── net_mp.c ├── net_mp.h ├── net_none.c ├── net_ser.c ├── net_ser.h ├── net_udp.c ├── net_udp.h ├── net_vcr.c ├── net_vcr.h ├── net_win.c ├── net_wins.c ├── net_wins.h ├── net_wipx.c ├── net_wipx.h ├── net_wso.c ├── nonintel.c ├── nvs_client.c ├── nvs_client.h ├── nvs_common.c ├── nvs_common.h ├── nvs_server.c ├── nvs_server.h ├── nvs_server_data.c ├── pr_cmds.c ├── pr_comp.h ├── pr_edict.c ├── pr_exec.c ├── progdefs.h ├── progdefs.q1 ├── progdefs.q2 ├── progs.h ├── protocol.h ├── quake-data.spec.sh ├── quake-hipnotic.spec.sh ├── quake-rogue.spec.sh ├── quake-shareware.spec.sh ├── quake.spec.sh ├── quakedef.h ├── r_aclip.c ├── r_alias.c ├── r_bsp.c ├── r_draw.c ├── r_edge.c ├── r_efrag.c ├── r_light.c ├── r_local.h ├── r_main.c ├── r_misc.c ├── r_part.c ├── r_shared.h ├── r_sky.c ├── r_sprite.c ├── r_surf.c ├── r_vars.c ├── render.h ├── resource.h ├── sbar.c ├── sbar.h ├── screen.c ├── screen.h ├── server.h ├── snd_dma.c ├── snd_dos.c ├── snd_gus.c ├── snd_linux.c ├── snd_mem.c ├── snd_mix.c ├── snd_next.c ├── snd_null.c ├── snd_sun.c ├── snd_win.c ├── sound.h ├── spritegn.h ├── sv_main.c ├── sv_move.c ├── sv_phys.c ├── sv_user.c ├── sys.h ├── sys_dos.c ├── sys_linux.c ├── sys_null.c ├── sys_sun.c ├── sys_win.c ├── sys_wind.c ├── version.h ├── vgamodes.h ├── vid.h ├── vid_dos.c ├── vid_dos.h ├── vid_ega.c ├── vid_ext.c ├── vid_null.c ├── vid_sunx.c ├── vid_sunxil.c ├── vid_svgalib.c ├── vid_vga.c ├── vid_win.c ├── vid_win_old.c ├── vid_x.c ├── view.c ├── view.h ├── vregset.c ├── vregset.h ├── wad.c ├── wad.h ├── winquake.h ├── world.c ├── world.h ├── zone.c └── zone.h ├── asm ├── asm_changelog.txt ├── asm_draw.h ├── asm_i386.h ├── block16.h ├── d_copy.s ├── d_draw.s ├── d_draw16.s ├── d_fog16.s ├── d_ifacea.h ├── d_parta.s ├── d_polysa.s ├── d_scana.s ├── d_spr8.s ├── d_varsa.s ├── dosasm.s ├── lcc_lib_gl_step1.bat ├── lcc_lib_gl_step2.bat ├── lcc_lib_gl_step3.bat ├── lcc_lib_gl_step4.bat ├── lcc_lib_gl_step5.bat ├── lcc_lib_wq_step1.bat ├── lcc_lib_wq_step2.bat ├── lcc_lib_wq_step3.bat ├── lcc_lib_wq_step4.bat ├── lcc_lib_wq_step5.bat ├── math.s ├── quakeasm.h ├── r_aclipa.s ├── r_aliasa.s ├── r_drawa.s ├── r_edgea.s ├── r_varsa.s ├── snd_mixa.s ├── surf16.s ├── surf8.s ├── surf8b.s ├── surf8fst.s ├── surf8g.s ├── surf8r.s ├── surf8rgb.s ├── sys_dosa.s ├── sys_wina.s ├── ue_replace.mac └── worlda.s ├── gas2masm ├── CMakeLists.txt ├── gas2masm.c ├── gas2masm.dsp ├── gas2masm.dsw ├── lcc_gas2masm.prj └── lcc_info.txt ├── gnu.txt ├── icons └── k.ico ├── midilib ├── _midi.h ├── midi.c ├── midi.h ├── mpu401.c ├── mpu401.h ├── music.c ├── music.h ├── standard.h └── usrhooks.h ├── readme.id └── vpsplit ├── lcc_info.txt ├── lcc_vpsplit.prj ├── vpsplit.c └── vpsplit.txt /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/README.md -------------------------------------------------------------------------------- /SciTech/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/SciTech/include/debug.h -------------------------------------------------------------------------------- /SciTech/include/mgldos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/SciTech/include/mgldos.h -------------------------------------------------------------------------------- /SciTech/include/mglwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/SciTech/include/mglwin.h -------------------------------------------------------------------------------- /SciTech/include/mgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/SciTech/include/mgraph.h -------------------------------------------------------------------------------- /SciTech/lib/win32/vc/mgllt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/SciTech/lib/win32/vc/mgllt.lib -------------------------------------------------------------------------------- /WinQuake/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/COPYING -------------------------------------------------------------------------------- /WinQuake/Makefile.Solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/Makefile.Solaris -------------------------------------------------------------------------------- /WinQuake/Makefile.linuxi386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/Makefile.linuxi386 -------------------------------------------------------------------------------- /WinQuake/WinQuake.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/WinQuake.dsp -------------------------------------------------------------------------------- /WinQuake/WinQuake.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/WinQuake.dsw -------------------------------------------------------------------------------- /WinQuake/WinQuake_lcc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/WinQuake_lcc.rc -------------------------------------------------------------------------------- /WinQuake/WinQuake_vc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/WinQuake_vc.rc -------------------------------------------------------------------------------- /WinQuake/adivtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/adivtab.h -------------------------------------------------------------------------------- /WinQuake/amidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/amidi.c -------------------------------------------------------------------------------- /WinQuake/anorm_dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/anorm_dots.h -------------------------------------------------------------------------------- /WinQuake/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/anorms.h -------------------------------------------------------------------------------- /WinQuake/block8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/block8.h -------------------------------------------------------------------------------- /WinQuake/bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/bot.c -------------------------------------------------------------------------------- /WinQuake/bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/bot.h -------------------------------------------------------------------------------- /WinQuake/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/bspfile.h -------------------------------------------------------------------------------- /WinQuake/cd_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cd_audio.c -------------------------------------------------------------------------------- /WinQuake/cd_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cd_linux.c -------------------------------------------------------------------------------- /WinQuake/cd_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cd_null.c -------------------------------------------------------------------------------- /WinQuake/cd_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cd_win.c -------------------------------------------------------------------------------- /WinQuake/cdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cdaudio.h -------------------------------------------------------------------------------- /WinQuake/chase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/chase.c -------------------------------------------------------------------------------- /WinQuake/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cl_demo.c -------------------------------------------------------------------------------- /WinQuake/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cl_input.c -------------------------------------------------------------------------------- /WinQuake/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cl_main.c -------------------------------------------------------------------------------- /WinQuake/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cl_parse.c -------------------------------------------------------------------------------- /WinQuake/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cl_tent.c -------------------------------------------------------------------------------- /WinQuake/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/clean.bat -------------------------------------------------------------------------------- /WinQuake/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/client.h -------------------------------------------------------------------------------- /WinQuake/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cmd.c -------------------------------------------------------------------------------- /WinQuake/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cmd.h -------------------------------------------------------------------------------- /WinQuake/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/common.c -------------------------------------------------------------------------------- /WinQuake/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/common.h -------------------------------------------------------------------------------- /WinQuake/conproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/conproc.c -------------------------------------------------------------------------------- /WinQuake/conproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/conproc.h -------------------------------------------------------------------------------- /WinQuake/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/console.c -------------------------------------------------------------------------------- /WinQuake/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/console.h -------------------------------------------------------------------------------- /WinQuake/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/crc.c -------------------------------------------------------------------------------- /WinQuake/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/crc.h -------------------------------------------------------------------------------- /WinQuake/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cvar.c -------------------------------------------------------------------------------- /WinQuake/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/cvar.h -------------------------------------------------------------------------------- /WinQuake/d_edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_edge.c -------------------------------------------------------------------------------- /WinQuake/d_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_fill.c -------------------------------------------------------------------------------- /WinQuake/d_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_iface.h -------------------------------------------------------------------------------- /WinQuake/d_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_init.c -------------------------------------------------------------------------------- /WinQuake/d_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_local.h -------------------------------------------------------------------------------- /WinQuake/d_modech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_modech.c -------------------------------------------------------------------------------- /WinQuake/d_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_part.c -------------------------------------------------------------------------------- /WinQuake/d_polyse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_polyse.c -------------------------------------------------------------------------------- /WinQuake/d_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_scan.c -------------------------------------------------------------------------------- /WinQuake/d_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_sky.c -------------------------------------------------------------------------------- /WinQuake/d_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_sprite.c -------------------------------------------------------------------------------- /WinQuake/d_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_surf.c -------------------------------------------------------------------------------- /WinQuake/d_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_vars.c -------------------------------------------------------------------------------- /WinQuake/d_zpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/d_zpoint.c -------------------------------------------------------------------------------- /WinQuake/djmake.bat: -------------------------------------------------------------------------------- 1 | make -f makefile.djgpp 2 | -------------------------------------------------------------------------------- /WinQuake/dos_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/dos_v2.c -------------------------------------------------------------------------------- /WinQuake/dosisms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/dosisms.h -------------------------------------------------------------------------------- /WinQuake/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/draw.c -------------------------------------------------------------------------------- /WinQuake/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/draw.h -------------------------------------------------------------------------------- /WinQuake/engoo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/engoo.bmp -------------------------------------------------------------------------------- /WinQuake/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_draw.c -------------------------------------------------------------------------------- /WinQuake/gl_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_mesh.c -------------------------------------------------------------------------------- /WinQuake/gl_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_model.c -------------------------------------------------------------------------------- /WinQuake/gl_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_model.h -------------------------------------------------------------------------------- /WinQuake/gl_refrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_refrag.c -------------------------------------------------------------------------------- /WinQuake/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_rlight.c -------------------------------------------------------------------------------- /WinQuake/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_rmain.c -------------------------------------------------------------------------------- /WinQuake/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_rmisc.c -------------------------------------------------------------------------------- /WinQuake/gl_rsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_rsurf.c -------------------------------------------------------------------------------- /WinQuake/gl_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_screen.c -------------------------------------------------------------------------------- /WinQuake/gl_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_test.c -------------------------------------------------------------------------------- /WinQuake/gl_vidlinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_vidlinux.c -------------------------------------------------------------------------------- /WinQuake/gl_vidlinuxglx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_vidlinuxglx.c -------------------------------------------------------------------------------- /WinQuake/gl_vidnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_vidnt.c -------------------------------------------------------------------------------- /WinQuake/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_warp.c -------------------------------------------------------------------------------- /WinQuake/gl_warp_sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/gl_warp_sin.h -------------------------------------------------------------------------------- /WinQuake/glquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/glquake.h -------------------------------------------------------------------------------- /WinQuake/glquake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/glquake2.h -------------------------------------------------------------------------------- /WinQuake/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/host.c -------------------------------------------------------------------------------- /WinQuake/host_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/host_cmd.c -------------------------------------------------------------------------------- /WinQuake/in_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/in_dos.c -------------------------------------------------------------------------------- /WinQuake/in_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/in_null.c -------------------------------------------------------------------------------- /WinQuake/in_sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/in_sun.c -------------------------------------------------------------------------------- /WinQuake/in_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/in_win.c -------------------------------------------------------------------------------- /WinQuake/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/input.h -------------------------------------------------------------------------------- /WinQuake/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/keys.c -------------------------------------------------------------------------------- /WinQuake/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/keys.h -------------------------------------------------------------------------------- /WinQuake/lcc_glquake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/lcc_glquake.prj -------------------------------------------------------------------------------- /WinQuake/lcc_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/lcc_info.txt -------------------------------------------------------------------------------- /WinQuake/lcc_winquake.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/lcc_winquake.prj -------------------------------------------------------------------------------- /WinQuake/makefile.djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/makefile.djgpp -------------------------------------------------------------------------------- /WinQuake/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/mathlib.c -------------------------------------------------------------------------------- /WinQuake/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/mathlib.h -------------------------------------------------------------------------------- /WinQuake/matrixlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/matrixlib.c -------------------------------------------------------------------------------- /WinQuake/matrixlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/matrixlib.h -------------------------------------------------------------------------------- /WinQuake/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/menu.c -------------------------------------------------------------------------------- /WinQuake/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/menu.h -------------------------------------------------------------------------------- /WinQuake/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/model.c -------------------------------------------------------------------------------- /WinQuake/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/model.h -------------------------------------------------------------------------------- /WinQuake/model_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/model_common.c -------------------------------------------------------------------------------- /WinQuake/model_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/model_common.h -------------------------------------------------------------------------------- /WinQuake/modelgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/modelgen.h -------------------------------------------------------------------------------- /WinQuake/mpdosock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/mpdosock.h -------------------------------------------------------------------------------- /WinQuake/mplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/mplib.c -------------------------------------------------------------------------------- /WinQuake/mplpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/mplpc.c -------------------------------------------------------------------------------- /WinQuake/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net.h -------------------------------------------------------------------------------- /WinQuake/net_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_bsd.c -------------------------------------------------------------------------------- /WinQuake/net_bw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_bw.c -------------------------------------------------------------------------------- /WinQuake/net_bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_bw.h -------------------------------------------------------------------------------- /WinQuake/net_comx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_comx.c -------------------------------------------------------------------------------- /WinQuake/net_dgrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_dgrm.c -------------------------------------------------------------------------------- /WinQuake/net_dgrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_dgrm.h -------------------------------------------------------------------------------- /WinQuake/net_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_dos.c -------------------------------------------------------------------------------- /WinQuake/net_ipx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_ipx.c -------------------------------------------------------------------------------- /WinQuake/net_ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_ipx.h -------------------------------------------------------------------------------- /WinQuake/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_loop.c -------------------------------------------------------------------------------- /WinQuake/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_loop.h -------------------------------------------------------------------------------- /WinQuake/net_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_main.c -------------------------------------------------------------------------------- /WinQuake/net_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_mp.c -------------------------------------------------------------------------------- /WinQuake/net_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_mp.h -------------------------------------------------------------------------------- /WinQuake/net_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_none.c -------------------------------------------------------------------------------- /WinQuake/net_ser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_ser.c -------------------------------------------------------------------------------- /WinQuake/net_ser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_ser.h -------------------------------------------------------------------------------- /WinQuake/net_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_udp.c -------------------------------------------------------------------------------- /WinQuake/net_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_udp.h -------------------------------------------------------------------------------- /WinQuake/net_vcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_vcr.c -------------------------------------------------------------------------------- /WinQuake/net_vcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_vcr.h -------------------------------------------------------------------------------- /WinQuake/net_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_win.c -------------------------------------------------------------------------------- /WinQuake/net_wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_wins.c -------------------------------------------------------------------------------- /WinQuake/net_wins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_wins.h -------------------------------------------------------------------------------- /WinQuake/net_wipx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_wipx.c -------------------------------------------------------------------------------- /WinQuake/net_wipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/net_wipx.h -------------------------------------------------------------------------------- /WinQuake/net_wso.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WinQuake/nonintel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nonintel.c -------------------------------------------------------------------------------- /WinQuake/nvs_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nvs_client.c -------------------------------------------------------------------------------- /WinQuake/nvs_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nvs_client.h -------------------------------------------------------------------------------- /WinQuake/nvs_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nvs_common.c -------------------------------------------------------------------------------- /WinQuake/nvs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nvs_common.h -------------------------------------------------------------------------------- /WinQuake/nvs_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nvs_server.c -------------------------------------------------------------------------------- /WinQuake/nvs_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nvs_server.h -------------------------------------------------------------------------------- /WinQuake/nvs_server_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/nvs_server_data.c -------------------------------------------------------------------------------- /WinQuake/pr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/pr_cmds.c -------------------------------------------------------------------------------- /WinQuake/pr_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/pr_comp.h -------------------------------------------------------------------------------- /WinQuake/pr_edict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/pr_edict.c -------------------------------------------------------------------------------- /WinQuake/pr_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/pr_exec.c -------------------------------------------------------------------------------- /WinQuake/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/progdefs.h -------------------------------------------------------------------------------- /WinQuake/progdefs.q1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/progdefs.q1 -------------------------------------------------------------------------------- /WinQuake/progdefs.q2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/progdefs.q2 -------------------------------------------------------------------------------- /WinQuake/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/progs.h -------------------------------------------------------------------------------- /WinQuake/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/protocol.h -------------------------------------------------------------------------------- /WinQuake/quake-data.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/quake-data.spec.sh -------------------------------------------------------------------------------- /WinQuake/quake-hipnotic.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/quake-hipnotic.spec.sh -------------------------------------------------------------------------------- /WinQuake/quake-rogue.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/quake-rogue.spec.sh -------------------------------------------------------------------------------- /WinQuake/quake-shareware.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/quake-shareware.spec.sh -------------------------------------------------------------------------------- /WinQuake/quake.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/quake.spec.sh -------------------------------------------------------------------------------- /WinQuake/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/quakedef.h -------------------------------------------------------------------------------- /WinQuake/r_aclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_aclip.c -------------------------------------------------------------------------------- /WinQuake/r_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_alias.c -------------------------------------------------------------------------------- /WinQuake/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_bsp.c -------------------------------------------------------------------------------- /WinQuake/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_draw.c -------------------------------------------------------------------------------- /WinQuake/r_edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_edge.c -------------------------------------------------------------------------------- /WinQuake/r_efrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_efrag.c -------------------------------------------------------------------------------- /WinQuake/r_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_light.c -------------------------------------------------------------------------------- /WinQuake/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_local.h -------------------------------------------------------------------------------- /WinQuake/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_main.c -------------------------------------------------------------------------------- /WinQuake/r_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_misc.c -------------------------------------------------------------------------------- /WinQuake/r_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_part.c -------------------------------------------------------------------------------- /WinQuake/r_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_shared.h -------------------------------------------------------------------------------- /WinQuake/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_sky.c -------------------------------------------------------------------------------- /WinQuake/r_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_sprite.c -------------------------------------------------------------------------------- /WinQuake/r_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_surf.c -------------------------------------------------------------------------------- /WinQuake/r_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/r_vars.c -------------------------------------------------------------------------------- /WinQuake/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/render.h -------------------------------------------------------------------------------- /WinQuake/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/resource.h -------------------------------------------------------------------------------- /WinQuake/sbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sbar.c -------------------------------------------------------------------------------- /WinQuake/sbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sbar.h -------------------------------------------------------------------------------- /WinQuake/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/screen.c -------------------------------------------------------------------------------- /WinQuake/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/screen.h -------------------------------------------------------------------------------- /WinQuake/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/server.h -------------------------------------------------------------------------------- /WinQuake/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_dma.c -------------------------------------------------------------------------------- /WinQuake/snd_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_dos.c -------------------------------------------------------------------------------- /WinQuake/snd_gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_gus.c -------------------------------------------------------------------------------- /WinQuake/snd_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_linux.c -------------------------------------------------------------------------------- /WinQuake/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_mem.c -------------------------------------------------------------------------------- /WinQuake/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_mix.c -------------------------------------------------------------------------------- /WinQuake/snd_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_next.c -------------------------------------------------------------------------------- /WinQuake/snd_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_null.c -------------------------------------------------------------------------------- /WinQuake/snd_sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_sun.c -------------------------------------------------------------------------------- /WinQuake/snd_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/snd_win.c -------------------------------------------------------------------------------- /WinQuake/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sound.h -------------------------------------------------------------------------------- /WinQuake/spritegn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/spritegn.h -------------------------------------------------------------------------------- /WinQuake/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sv_main.c -------------------------------------------------------------------------------- /WinQuake/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sv_move.c -------------------------------------------------------------------------------- /WinQuake/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sv_phys.c -------------------------------------------------------------------------------- /WinQuake/sv_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sv_user.c -------------------------------------------------------------------------------- /WinQuake/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sys.h -------------------------------------------------------------------------------- /WinQuake/sys_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sys_dos.c -------------------------------------------------------------------------------- /WinQuake/sys_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sys_linux.c -------------------------------------------------------------------------------- /WinQuake/sys_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sys_null.c -------------------------------------------------------------------------------- /WinQuake/sys_sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sys_sun.c -------------------------------------------------------------------------------- /WinQuake/sys_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sys_win.c -------------------------------------------------------------------------------- /WinQuake/sys_wind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/sys_wind.c -------------------------------------------------------------------------------- /WinQuake/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/version.h -------------------------------------------------------------------------------- /WinQuake/vgamodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vgamodes.h -------------------------------------------------------------------------------- /WinQuake/vid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid.h -------------------------------------------------------------------------------- /WinQuake/vid_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_dos.c -------------------------------------------------------------------------------- /WinQuake/vid_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_dos.h -------------------------------------------------------------------------------- /WinQuake/vid_ega.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_ega.c -------------------------------------------------------------------------------- /WinQuake/vid_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_ext.c -------------------------------------------------------------------------------- /WinQuake/vid_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_null.c -------------------------------------------------------------------------------- /WinQuake/vid_sunx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_sunx.c -------------------------------------------------------------------------------- /WinQuake/vid_sunxil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_sunxil.c -------------------------------------------------------------------------------- /WinQuake/vid_svgalib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_svgalib.c -------------------------------------------------------------------------------- /WinQuake/vid_vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_vga.c -------------------------------------------------------------------------------- /WinQuake/vid_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_win.c -------------------------------------------------------------------------------- /WinQuake/vid_win_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_win_old.c -------------------------------------------------------------------------------- /WinQuake/vid_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vid_x.c -------------------------------------------------------------------------------- /WinQuake/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/view.c -------------------------------------------------------------------------------- /WinQuake/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/view.h -------------------------------------------------------------------------------- /WinQuake/vregset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vregset.c -------------------------------------------------------------------------------- /WinQuake/vregset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/vregset.h -------------------------------------------------------------------------------- /WinQuake/wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/wad.c -------------------------------------------------------------------------------- /WinQuake/wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/wad.h -------------------------------------------------------------------------------- /WinQuake/winquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/winquake.h -------------------------------------------------------------------------------- /WinQuake/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/world.c -------------------------------------------------------------------------------- /WinQuake/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/world.h -------------------------------------------------------------------------------- /WinQuake/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/zone.c -------------------------------------------------------------------------------- /WinQuake/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/WinQuake/zone.h -------------------------------------------------------------------------------- /asm/asm_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/asm_changelog.txt -------------------------------------------------------------------------------- /asm/asm_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/asm_draw.h -------------------------------------------------------------------------------- /asm/asm_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/asm_i386.h -------------------------------------------------------------------------------- /asm/block16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/block16.h -------------------------------------------------------------------------------- /asm/d_copy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_copy.s -------------------------------------------------------------------------------- /asm/d_draw.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_draw.s -------------------------------------------------------------------------------- /asm/d_draw16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_draw16.s -------------------------------------------------------------------------------- /asm/d_fog16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_fog16.s -------------------------------------------------------------------------------- /asm/d_ifacea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_ifacea.h -------------------------------------------------------------------------------- /asm/d_parta.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_parta.s -------------------------------------------------------------------------------- /asm/d_polysa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_polysa.s -------------------------------------------------------------------------------- /asm/d_scana.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_scana.s -------------------------------------------------------------------------------- /asm/d_spr8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_spr8.s -------------------------------------------------------------------------------- /asm/d_varsa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/d_varsa.s -------------------------------------------------------------------------------- /asm/dosasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/dosasm.s -------------------------------------------------------------------------------- /asm/lcc_lib_gl_step1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_gl_step1.bat -------------------------------------------------------------------------------- /asm/lcc_lib_gl_step2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_gl_step2.bat -------------------------------------------------------------------------------- /asm/lcc_lib_gl_step3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_gl_step3.bat -------------------------------------------------------------------------------- /asm/lcc_lib_gl_step4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_gl_step4.bat -------------------------------------------------------------------------------- /asm/lcc_lib_gl_step5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_gl_step5.bat -------------------------------------------------------------------------------- /asm/lcc_lib_wq_step1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_wq_step1.bat -------------------------------------------------------------------------------- /asm/lcc_lib_wq_step2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_wq_step2.bat -------------------------------------------------------------------------------- /asm/lcc_lib_wq_step3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_wq_step3.bat -------------------------------------------------------------------------------- /asm/lcc_lib_wq_step4.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_wq_step4.bat -------------------------------------------------------------------------------- /asm/lcc_lib_wq_step5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/lcc_lib_wq_step5.bat -------------------------------------------------------------------------------- /asm/math.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/math.s -------------------------------------------------------------------------------- /asm/quakeasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/quakeasm.h -------------------------------------------------------------------------------- /asm/r_aclipa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/r_aclipa.s -------------------------------------------------------------------------------- /asm/r_aliasa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/r_aliasa.s -------------------------------------------------------------------------------- /asm/r_drawa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/r_drawa.s -------------------------------------------------------------------------------- /asm/r_edgea.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/r_edgea.s -------------------------------------------------------------------------------- /asm/r_varsa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/r_varsa.s -------------------------------------------------------------------------------- /asm/snd_mixa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/snd_mixa.s -------------------------------------------------------------------------------- /asm/surf16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/surf16.s -------------------------------------------------------------------------------- /asm/surf8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/surf8.s -------------------------------------------------------------------------------- /asm/surf8b.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/surf8b.s -------------------------------------------------------------------------------- /asm/surf8fst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/surf8fst.s -------------------------------------------------------------------------------- /asm/surf8g.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/surf8g.s -------------------------------------------------------------------------------- /asm/surf8r.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/surf8r.s -------------------------------------------------------------------------------- /asm/surf8rgb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/surf8rgb.s -------------------------------------------------------------------------------- /asm/sys_dosa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/sys_dosa.s -------------------------------------------------------------------------------- /asm/sys_wina.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/sys_wina.s -------------------------------------------------------------------------------- /asm/ue_replace.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/ue_replace.mac -------------------------------------------------------------------------------- /asm/worlda.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/asm/worlda.s -------------------------------------------------------------------------------- /gas2masm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/gas2masm/CMakeLists.txt -------------------------------------------------------------------------------- /gas2masm/gas2masm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/gas2masm/gas2masm.c -------------------------------------------------------------------------------- /gas2masm/gas2masm.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/gas2masm/gas2masm.dsp -------------------------------------------------------------------------------- /gas2masm/gas2masm.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/gas2masm/gas2masm.dsw -------------------------------------------------------------------------------- /gas2masm/lcc_gas2masm.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/gas2masm/lcc_gas2masm.prj -------------------------------------------------------------------------------- /gas2masm/lcc_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/gas2masm/lcc_info.txt -------------------------------------------------------------------------------- /gnu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/gnu.txt -------------------------------------------------------------------------------- /icons/k.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/icons/k.ico -------------------------------------------------------------------------------- /midilib/_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/_midi.h -------------------------------------------------------------------------------- /midilib/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/midi.c -------------------------------------------------------------------------------- /midilib/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/midi.h -------------------------------------------------------------------------------- /midilib/mpu401.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/mpu401.c -------------------------------------------------------------------------------- /midilib/mpu401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/mpu401.h -------------------------------------------------------------------------------- /midilib/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/music.c -------------------------------------------------------------------------------- /midilib/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/music.h -------------------------------------------------------------------------------- /midilib/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/standard.h -------------------------------------------------------------------------------- /midilib/usrhooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/midilib/usrhooks.h -------------------------------------------------------------------------------- /readme.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/readme.id -------------------------------------------------------------------------------- /vpsplit/lcc_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/vpsplit/lcc_info.txt -------------------------------------------------------------------------------- /vpsplit/lcc_vpsplit.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/vpsplit/lcc_vpsplit.prj -------------------------------------------------------------------------------- /vpsplit/vpsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/vpsplit/vpsplit.c -------------------------------------------------------------------------------- /vpsplit/vpsplit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leilei-/Engoo/HEAD/vpsplit/vpsplit.txt --------------------------------------------------------------------------------