├── .gitattributes ├── .gitignore ├── README.md ├── changelog.txt ├── docs ├── demolition_derby_review.md ├── elimination_mode.md ├── investigations │ └── team_modes_entity_overflow.md ├── ladder-service.md ├── q3rally_handbuch_de.md ├── q3rally_patch_notes_v0.6.x.md ├── racing_gamemode_review.md └── update_check.md ├── engine ├── Makefile ├── README.md ├── code │ ├── AL │ │ ├── VERSION │ │ ├── al.h │ │ ├── alc.h │ │ ├── alext.h │ │ ├── efx-creative.h │ │ ├── efx-presets.h │ │ └── efx.h │ ├── SDL2 │ │ ├── include-2.0.22 │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.cmake │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_emscripten.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_revision.h.cmake │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── include-macppc │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_psp.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ └── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.cmake │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_emscripten.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_ngage.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wingdk.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_xbox.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_revision.h.cmake │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ ├── asm │ │ ├── ftola.asm │ │ ├── ftola.c │ │ ├── matha.s │ │ ├── qasm-inline.h │ │ ├── qasm.h │ │ ├── snapvector.asm │ │ ├── snapvector.c │ │ ├── snd_mixa.s │ │ └── vm_x86_64.asm │ ├── autoupdater │ │ ├── autoupdater.c │ │ └── rsa_tools │ │ │ ├── .gitignore │ │ │ ├── build-libtom-unix.sh │ │ │ ├── build-rsa-tools.sh │ │ │ ├── rsa_common.c │ │ │ ├── rsa_common.h │ │ │ ├── rsa_make_keys.c │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_verify.c │ │ │ └── test-rsa-tools.sh │ ├── botlib │ │ ├── aasfile.h │ │ ├── be_aas.h │ │ ├── be_aas_bsp.h │ │ ├── be_aas_bspq3.c │ │ ├── be_aas_cluster.c │ │ ├── be_aas_cluster.h │ │ ├── be_aas_debug.c │ │ ├── be_aas_debug.h │ │ ├── be_aas_def.h │ │ ├── be_aas_entity.c │ │ ├── be_aas_entity.h │ │ ├── be_aas_file.c │ │ ├── be_aas_file.h │ │ ├── be_aas_funcs.h │ │ ├── be_aas_main.c │ │ ├── be_aas_main.h │ │ ├── be_aas_move.c │ │ ├── be_aas_move.h │ │ ├── be_aas_optimize.c │ │ ├── be_aas_optimize.h │ │ ├── be_aas_reach.c │ │ ├── be_aas_reach.h │ │ ├── be_aas_route.c │ │ ├── be_aas_route.h │ │ ├── be_aas_routealt.c │ │ ├── be_aas_routealt.h │ │ ├── be_aas_sample.c │ │ ├── be_aas_sample.h │ │ ├── be_ai_char.c │ │ ├── be_ai_char.h │ │ ├── be_ai_chat.c │ │ ├── be_ai_chat.h │ │ ├── be_ai_gen.c │ │ ├── be_ai_gen.h │ │ ├── be_ai_goal.c │ │ ├── be_ai_goal.h │ │ ├── be_ai_move.c │ │ ├── be_ai_move.h │ │ ├── be_ai_weap.c │ │ ├── be_ai_weap.h │ │ ├── be_ai_weight.c │ │ ├── be_ai_weight.h │ │ ├── be_ea.c │ │ ├── be_ea.h │ │ ├── be_interface.c │ │ ├── be_interface.h │ │ ├── botlib.h │ │ ├── l_crc.c │ │ ├── l_crc.h │ │ ├── l_libvar.c │ │ ├── l_libvar.h │ │ ├── l_log.c │ │ ├── l_log.h │ │ ├── l_memory.c │ │ ├── l_memory.h │ │ ├── l_precomp.c │ │ ├── l_precomp.h │ │ ├── l_script.c │ │ ├── l_script.h │ │ ├── l_struct.c │ │ ├── l_struct.h │ │ └── l_utils.h │ ├── cgame │ │ ├── cg_atmospheric.c │ │ ├── cg_consolecmds.c │ │ ├── cg_draw.c │ │ ├── cg_drawtools.c │ │ ├── cg_effects.c │ │ ├── cg_ents.c │ │ ├── cg_event.c │ │ ├── cg_info.c │ │ ├── cg_jukebox.c │ │ ├── cg_ladder.c │ │ ├── cg_local.h │ │ ├── cg_localents.c │ │ ├── cg_main.c │ │ ├── cg_marks.c │ │ ├── cg_newdraw.c │ │ ├── cg_particles.c │ │ ├── cg_players.c │ │ ├── cg_playerstate.c │ │ ├── cg_predict.c │ │ ├── cg_public.h │ │ ├── cg_rally_draw.c │ │ ├── cg_rally_drawtools.c │ │ ├── cg_rally_hud.c │ │ ├── cg_rally_hud2.c │ │ ├── cg_rally_platetools.c │ │ ├── cg_rally_racetools.c │ │ ├── cg_rally_rearweapons.c │ │ ├── cg_rally_scripted_objects.c │ │ ├── cg_rally_tools.c │ │ ├── cg_rankings.c │ │ ├── cg_scoreboard.c │ │ ├── cg_servercmds.c │ │ ├── cg_snapshot.c │ │ ├── cg_syscalls.asm │ │ ├── cg_syscalls.c │ │ ├── cg_view.c │ │ └── cg_weapons.c │ ├── client │ │ ├── cl_avi.c │ │ ├── cl_cgame.c │ │ ├── cl_cin.c │ │ ├── cl_cin_ogm.c │ │ ├── cl_console.c │ │ ├── cl_curl.c │ │ ├── cl_curl.h │ │ ├── cl_input.c │ │ ├── cl_keys.c │ │ ├── cl_main.c │ │ ├── cl_net_chan.c │ │ ├── cl_parse.c │ │ ├── cl_scrn.c │ │ ├── cl_ui.c │ │ ├── cl_update.c │ │ ├── cl_update.h │ │ ├── client.h │ │ ├── keycodes.h │ │ ├── keys.h │ │ ├── libmumblelink.c │ │ ├── libmumblelink.h │ │ ├── qal.c │ │ ├── qal.h │ │ ├── snd_adpcm.c │ │ ├── snd_altivec.c │ │ ├── snd_codec.c │ │ ├── snd_codec.h │ │ ├── snd_codec_ogg.c │ │ ├── snd_codec_opus.c │ │ ├── snd_codec_wav.c │ │ ├── snd_dma.c │ │ ├── snd_local.h │ │ ├── snd_main.c │ │ ├── snd_mem.c │ │ ├── snd_mix.c │ │ ├── snd_openal.c │ │ ├── snd_public.h │ │ └── snd_wavelet.c │ ├── curl-7.54.0 │ │ └── include │ │ │ ├── README │ │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlbuild.h │ │ │ ├── curlrules.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ └── typecheck-gcc.h │ ├── game │ │ ├── ai_chat.c │ │ ├── ai_chat.h │ │ ├── ai_cmd.c │ │ ├── ai_cmd.h │ │ ├── ai_dmnet.c │ │ ├── ai_dmnet.h │ │ ├── ai_dmq3.c │ │ ├── ai_dmq3.h │ │ ├── ai_main.c │ │ ├── ai_main.h │ │ ├── ai_team.c │ │ ├── ai_team.h │ │ ├── ai_vcmd.c │ │ ├── ai_vcmd.h │ │ ├── bg_achievements.c │ │ ├── bg_achievements.h │ │ ├── bg_ladder.h │ │ ├── bg_lib.c │ │ ├── bg_lib.h │ │ ├── bg_local.h │ │ ├── bg_misc.c │ │ ├── bg_physics.c │ │ ├── bg_physics.h │ │ ├── bg_pmove.c │ │ ├── bg_public.h │ │ ├── bg_slidemove.c │ │ ├── bg_wheel_forces.c │ │ ├── chars.h │ │ ├── g_active.c │ │ ├── g_arenas.c │ │ ├── g_bot.c │ │ ├── g_client.c │ │ ├── g_client_userinfo.c │ │ ├── g_client_userinfo.h │ │ ├── g_cmds.c │ │ ├── g_combat.c │ │ ├── g_ghost.c │ │ ├── g_items.c │ │ ├── g_local.h │ │ ├── g_main.c │ │ ├── g_mem.c │ │ ├── g_misc.c │ │ ├── g_missile.c │ │ ├── g_mover.c │ │ ├── g_profile.c │ │ ├── g_profile.h │ │ ├── g_public.h │ │ ├── g_rally_hazard.c │ │ ├── g_rally_mapents.c │ │ ├── g_rally_mapobjects.c │ │ ├── g_rally_object_physics.c │ │ ├── g_rally_observer_cams.c │ │ ├── g_rally_racetools.c │ │ ├── g_rally_rearweapon.c │ │ ├── g_rally_scripted_objects.c │ │ ├── g_rally_tools.c │ │ ├── g_rankings.c │ │ ├── g_rankings.h │ │ ├── g_session.c │ │ ├── g_spawn.c │ │ ├── g_svcmds.c │ │ ├── g_syscalls.asm │ │ ├── g_syscalls.c │ │ ├── g_target.c │ │ ├── g_team.c │ │ ├── g_team.h │ │ ├── g_trigger.c │ │ ├── g_utils.c │ │ ├── g_weapon.c │ │ ├── inv.h │ │ ├── match.h │ │ ├── profile_shared.h │ │ ├── syn.h │ │ └── tests │ │ │ ├── Makefile │ │ │ └── test_g_frictioncalc.c │ ├── jpeg-8c │ │ ├── README │ │ ├── ioquake3-changes.diff │ │ ├── jaricom.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jcarith.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdarith.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jinclude.h │ │ ├── jmemmgr.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ └── jversion.h │ ├── libogg-1.3.3 │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ └── src │ │ │ ├── bitwise.c │ │ │ └── framing.c │ ├── libs │ │ ├── linux-x86 │ │ │ └── libSDL2-2.0.so.0 │ │ ├── linux-x86_64 │ │ │ ├── libSDL2-2.0.so.0 │ │ │ └── libSDL2.so │ │ ├── macosx-ub │ │ │ ├── libSDL2-2.0.0.dylib │ │ │ └── libSDL2main.a │ │ ├── macosx-ub2 │ │ │ ├── libSDL2-2.0.0.dylib │ │ │ └── libSDL2main.a │ │ ├── win32 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2main.lib │ │ │ ├── libSDL2.dll.a │ │ │ ├── libSDL2main.a │ │ │ └── libcurl.a │ │ └── win64 │ │ │ ├── SDL264.dll │ │ │ ├── SDL264.lib │ │ │ ├── SDL264main.lib │ │ │ ├── libSDL264.dll.a │ │ │ ├── libSDL264main.a │ │ │ └── libcurl.a │ ├── libtheora-1.1.1 │ │ ├── include │ │ │ └── theora │ │ │ │ ├── codec.h │ │ │ │ ├── theora.h │ │ │ │ ├── theoradec.h │ │ │ │ └── theoraenc.h │ │ └── lib │ │ │ ├── apiwrapper.c │ │ │ ├── apiwrapper.h │ │ │ ├── bitpack.c │ │ │ ├── bitpack.h │ │ │ ├── dct.h │ │ │ ├── decapiwrapper.c │ │ │ ├── decinfo.c │ │ │ ├── decint.h │ │ │ ├── decode.c │ │ │ ├── dequant.c │ │ │ ├── dequant.h │ │ │ ├── fragment.c │ │ │ ├── huffdec.c │ │ │ ├── huffdec.h │ │ │ ├── huffman.h │ │ │ ├── idct.c │ │ │ ├── info.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── ocintrin.h │ │ │ ├── quant.c │ │ │ ├── quant.h │ │ │ ├── state.c │ │ │ ├── x86 │ │ │ ├── mmxfrag.c │ │ │ ├── mmxfrag.h │ │ │ ├── mmxidct.c │ │ │ ├── mmxloop.h │ │ │ ├── mmxstate.c │ │ │ ├── x86int.h │ │ │ └── x86state.c │ │ │ └── x86_vc │ │ │ ├── mmxfrag.c │ │ │ ├── mmxfrag.h │ │ │ ├── mmxidct.c │ │ │ ├── mmxloop.h │ │ │ ├── mmxstate.c │ │ │ ├── x86int.h │ │ │ └── x86state.c │ ├── libvorbis-1.3.6 │ │ ├── include │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ └── lib │ │ │ ├── analysis.c │ │ │ ├── backends.h │ │ │ ├── bitrate.c │ │ │ ├── bitrate.h │ │ │ ├── block.c │ │ │ ├── books │ │ │ ├── coupled │ │ │ │ ├── res_books_51.h │ │ │ │ └── res_books_stereo.h │ │ │ ├── floor │ │ │ │ └── floor_books.h │ │ │ └── uncoupled │ │ │ │ └── res_books_uncoupled.h │ │ │ ├── codebook.c │ │ │ ├── codebook.h │ │ │ ├── codec_internal.h │ │ │ ├── envelope.c │ │ │ ├── envelope.h │ │ │ ├── floor0.c │ │ │ ├── floor1.c │ │ │ ├── highlevel.h │ │ │ ├── info.c │ │ │ ├── lookup.c │ │ │ ├── lookup.h │ │ │ ├── lookup_data.h │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── mapping0.c │ │ │ ├── masking.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── misc.h │ │ │ ├── modes │ │ │ ├── floor_all.h │ │ │ ├── psych_11.h │ │ │ ├── psych_16.h │ │ │ ├── psych_44.h │ │ │ ├── psych_8.h │ │ │ ├── residue_16.h │ │ │ ├── residue_44.h │ │ │ ├── residue_44p51.h │ │ │ ├── residue_44u.h │ │ │ ├── residue_8.h │ │ │ ├── setup_11.h │ │ │ ├── setup_16.h │ │ │ ├── setup_22.h │ │ │ ├── setup_32.h │ │ │ ├── setup_44.h │ │ │ ├── setup_44p51.h │ │ │ ├── setup_44u.h │ │ │ ├── setup_8.h │ │ │ └── setup_X.h │ │ │ ├── os.h │ │ │ ├── psy.c │ │ │ ├── psy.h │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── res0.c │ │ │ ├── scales.h │ │ │ ├── sharedbook.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── synthesis.c │ │ │ ├── vorbisenc.c │ │ │ ├── vorbisfile.c │ │ │ ├── window.c │ │ │ └── window.h │ ├── null │ │ ├── mac_net.c │ │ ├── null_client.c │ │ ├── null_glimp.c │ │ ├── null_input.c │ │ ├── null_main.c │ │ ├── null_net.c │ │ └── null_snddma.c │ ├── opus-1.2.1 │ │ ├── celt │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── arm │ │ │ │ ├── arm2gnu.pl │ │ │ │ ├── arm_celt_map.c │ │ │ │ ├── armcpu.c │ │ │ │ ├── armcpu.h │ │ │ │ ├── armopts.s.in │ │ │ │ ├── celt_ne10_fft.c │ │ │ │ ├── celt_ne10_mdct.c │ │ │ │ ├── celt_neon_intr.c │ │ │ │ ├── celt_pitch_xcorr_arm-gnu.S │ │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ │ ├── fft_arm.h │ │ │ │ ├── fixed_arm64.h │ │ │ │ ├── fixed_armv4.h │ │ │ │ ├── fixed_armv5e.h │ │ │ │ ├── kiss_fft_armv4.h │ │ │ │ ├── kiss_fft_armv5e.h │ │ │ │ ├── mdct_arm.h │ │ │ │ ├── pitch_arm.h │ │ │ │ └── pitch_neon_intr.c │ │ │ ├── bands.c │ │ │ ├── bands.h │ │ │ ├── celt.c │ │ │ ├── celt.h │ │ │ ├── celt_decoder.c │ │ │ ├── celt_encoder.c │ │ │ ├── celt_lpc.c │ │ │ ├── celt_lpc.h │ │ │ ├── cpu_support.h │ │ │ ├── cwrs.c │ │ │ ├── cwrs.h │ │ │ ├── ecintrin.h │ │ │ ├── entcode.c │ │ │ ├── entcode.h │ │ │ ├── entdec.c │ │ │ ├── entdec.h │ │ │ ├── entenc.c │ │ │ ├── entenc.h │ │ │ ├── fixed_debug.h │ │ │ ├── fixed_generic.h │ │ │ ├── float_cast.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── laplace.c │ │ │ ├── laplace.h │ │ │ ├── mathops.c │ │ │ ├── mathops.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── mfrngcod.h │ │ │ ├── mips │ │ │ │ ├── celt_mipsr1.h │ │ │ │ ├── fixed_generic_mipsr1.h │ │ │ │ ├── kiss_fft_mipsr1.h │ │ │ │ ├── mdct_mipsr1.h │ │ │ │ ├── pitch_mipsr1.h │ │ │ │ └── vq_mipsr1.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── opus_custom_demo.c │ │ │ ├── os_support.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── quant_bands.c │ │ │ ├── quant_bands.h │ │ │ ├── rate.c │ │ │ ├── rate.h │ │ │ ├── stack_alloc.h │ │ │ ├── static_modes_fixed.h │ │ │ ├── static_modes_fixed_arm_ne10.h │ │ │ ├── static_modes_float.h │ │ │ ├── static_modes_float_arm_ne10.h │ │ │ ├── vq.c │ │ │ ├── vq.h │ │ │ └── x86 │ │ │ │ ├── celt_lpc_sse.c │ │ │ │ ├── celt_lpc_sse.h │ │ │ │ ├── pitch_sse.c │ │ │ │ ├── pitch_sse.h │ │ │ │ ├── pitch_sse2.c │ │ │ │ ├── pitch_sse4_1.c │ │ │ │ ├── vq_sse.h │ │ │ │ ├── vq_sse2.c │ │ │ │ ├── x86_celt_map.c │ │ │ │ ├── x86cpu.c │ │ │ │ └── x86cpu.h │ │ ├── include │ │ │ ├── opus.h │ │ │ ├── opus_custom.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ └── opus_types.h │ │ ├── silk │ │ │ ├── A2NLSF.c │ │ │ ├── API.h │ │ │ ├── CNG.c │ │ │ ├── HP_variable_cutoff.c │ │ │ ├── Inlines.h │ │ │ ├── LPC_analysis_filter.c │ │ │ ├── LPC_fit.c │ │ │ ├── LPC_inv_pred_gain.c │ │ │ ├── LP_variable_cutoff.c │ │ │ ├── MacroCount.h │ │ │ ├── MacroDebug.h │ │ │ ├── NLSF2A.c │ │ │ ├── NLSF_VQ.c │ │ │ ├── NLSF_VQ_weights_laroia.c │ │ │ ├── NLSF_decode.c │ │ │ ├── NLSF_del_dec_quant.c │ │ │ ├── NLSF_encode.c │ │ │ ├── NLSF_stabilize.c │ │ │ ├── NLSF_unpack.c │ │ │ ├── NSQ.c │ │ │ ├── NSQ.h │ │ │ ├── NSQ_del_dec.c │ │ │ ├── PLC.c │ │ │ ├── PLC.h │ │ │ ├── SigProc_FIX.h │ │ │ ├── VAD.c │ │ │ ├── VQ_WMat_EC.c │ │ │ ├── ana_filt_bank_1.c │ │ │ ├── arm │ │ │ │ ├── LPC_inv_pred_gain_arm.h │ │ │ │ ├── LPC_inv_pred_gain_neon_intr.c │ │ │ │ ├── NSQ_del_dec_arm.h │ │ │ │ ├── NSQ_del_dec_neon_intr.c │ │ │ │ ├── NSQ_neon.c │ │ │ │ ├── NSQ_neon.h │ │ │ │ ├── SigProc_FIX_armv4.h │ │ │ │ ├── SigProc_FIX_armv5e.h │ │ │ │ ├── arm_silk_map.c │ │ │ │ ├── biquad_alt_arm.h │ │ │ │ ├── biquad_alt_neon_intr.c │ │ │ │ ├── macros_arm64.h │ │ │ │ ├── macros_armv4.h │ │ │ │ └── macros_armv5e.h │ │ │ ├── biquad_alt.c │ │ │ ├── bwexpander.c │ │ │ ├── bwexpander_32.c │ │ │ ├── check_control_input.c │ │ │ ├── code_signs.c │ │ │ ├── control.h │ │ │ ├── control_SNR.c │ │ │ ├── control_audio_bandwidth.c │ │ │ ├── control_codec.c │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── dec_API.c │ │ │ ├── decode_core.c │ │ │ ├── decode_frame.c │ │ │ ├── decode_indices.c │ │ │ ├── decode_parameters.c │ │ │ ├── decode_pitch.c │ │ │ ├── decode_pulses.c │ │ │ ├── decoder_set_fs.c │ │ │ ├── define.h │ │ │ ├── enc_API.c │ │ │ ├── encode_indices.c │ │ │ ├── encode_pulses.c │ │ │ ├── errors.h │ │ │ ├── fixed │ │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ │ ├── apply_sine_window_FIX.c │ │ │ │ ├── autocorr_FIX.c │ │ │ │ ├── burg_modified_FIX.c │ │ │ │ ├── corrMatrix_FIX.c │ │ │ │ ├── encode_frame_FIX.c │ │ │ │ ├── find_LPC_FIX.c │ │ │ │ ├── find_LTP_FIX.c │ │ │ │ ├── find_pitch_lags_FIX.c │ │ │ │ ├── find_pred_coefs_FIX.c │ │ │ │ ├── k2a_FIX.c │ │ │ │ ├── k2a_Q16_FIX.c │ │ │ │ ├── main_FIX.h │ │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ │ ├── process_gains_FIX.c │ │ │ │ ├── regularize_correlations_FIX.c │ │ │ │ ├── residual_energy16_FIX.c │ │ │ │ ├── residual_energy_FIX.c │ │ │ │ ├── schur64_FIX.c │ │ │ │ ├── schur_FIX.c │ │ │ │ ├── structs_FIX.h │ │ │ │ ├── vector_ops_FIX.c │ │ │ │ └── warped_autocorrelation_FIX.c │ │ │ ├── float │ │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ │ ├── SigProc_FLP.h │ │ │ │ ├── apply_sine_window_FLP.c │ │ │ │ ├── autocorrelation_FLP.c │ │ │ │ ├── burg_modified_FLP.c │ │ │ │ ├── bwexpander_FLP.c │ │ │ │ ├── corrMatrix_FLP.c │ │ │ │ ├── encode_frame_FLP.c │ │ │ │ ├── energy_FLP.c │ │ │ │ ├── find_LPC_FLP.c │ │ │ │ ├── find_LTP_FLP.c │ │ │ │ ├── find_pitch_lags_FLP.c │ │ │ │ ├── find_pred_coefs_FLP.c │ │ │ │ ├── inner_product_FLP.c │ │ │ │ ├── k2a_FLP.c │ │ │ │ ├── main_FLP.h │ │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ │ ├── process_gains_FLP.c │ │ │ │ ├── regularize_correlations_FLP.c │ │ │ │ ├── residual_energy_FLP.c │ │ │ │ ├── scale_copy_vector_FLP.c │ │ │ │ ├── scale_vector_FLP.c │ │ │ │ ├── schur_FLP.c │ │ │ │ ├── sort_FLP.c │ │ │ │ ├── structs_FLP.h │ │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ │ └── wrappers_FLP.c │ │ │ ├── gain_quant.c │ │ │ ├── init_decoder.c │ │ │ ├── init_encoder.c │ │ │ ├── inner_prod_aligned.c │ │ │ ├── interpolate.c │ │ │ ├── lin2log.c │ │ │ ├── log2lin.c │ │ │ ├── macros.h │ │ │ ├── main.h │ │ │ ├── mips │ │ │ │ ├── NSQ_del_dec_mipsr1.h │ │ │ │ ├── macros_mipsr1.h │ │ │ │ └── sigproc_fix_mipsr1.h │ │ │ ├── pitch_est_defines.h │ │ │ ├── pitch_est_tables.c │ │ │ ├── process_NLSFs.c │ │ │ ├── quant_LTP_gains.c │ │ │ ├── resampler.c │ │ │ ├── resampler_down2.c │ │ │ ├── resampler_down2_3.c │ │ │ ├── resampler_private.h │ │ │ ├── resampler_private_AR2.c │ │ │ ├── resampler_private_IIR_FIR.c │ │ │ ├── resampler_private_down_FIR.c │ │ │ ├── resampler_private_up2_HQ.c │ │ │ ├── resampler_rom.c │ │ │ ├── resampler_rom.h │ │ │ ├── resampler_structs.h │ │ │ ├── shell_coder.c │ │ │ ├── sigm_Q15.c │ │ │ ├── sort.c │ │ │ ├── stereo_LR_to_MS.c │ │ │ ├── stereo_MS_to_LR.c │ │ │ ├── stereo_decode_pred.c │ │ │ ├── stereo_encode_pred.c │ │ │ ├── stereo_find_predictor.c │ │ │ ├── stereo_quant_pred.c │ │ │ ├── structs.h │ │ │ ├── sum_sqr_shift.c │ │ │ ├── table_LSF_cos.c │ │ │ ├── tables.h │ │ │ ├── tables_LTP.c │ │ │ ├── tables_NLSF_CB_NB_MB.c │ │ │ ├── tables_NLSF_CB_WB.c │ │ │ ├── tables_gain.c │ │ │ ├── tables_other.c │ │ │ ├── tables_pitch_lag.c │ │ │ ├── tables_pulses_per_block.c │ │ │ ├── tuning_parameters.h │ │ │ ├── typedef.h │ │ │ └── x86 │ │ │ │ ├── NSQ_del_dec_sse.c │ │ │ │ ├── NSQ_sse.c │ │ │ │ ├── SigProc_FIX_sse.h │ │ │ │ ├── VAD_sse.c │ │ │ │ ├── VQ_WMat_EC_sse.c │ │ │ │ ├── main_sse.h │ │ │ │ └── x86_silk_map.c │ │ └── src │ │ │ ├── analysis.c │ │ │ ├── analysis.h │ │ │ ├── mlp.c │ │ │ ├── mlp.h │ │ │ ├── mlp_data.c │ │ │ ├── opus.c │ │ │ ├── opus_decoder.c │ │ │ ├── opus_encoder.c │ │ │ ├── opus_multistream.c │ │ │ ├── opus_multistream_decoder.c │ │ │ ├── opus_multistream_encoder.c │ │ │ ├── opus_private.h │ │ │ ├── repacketizer.c │ │ │ └── tansig_table.h │ ├── opusfile-0.9 │ │ ├── include │ │ │ └── opusfile.h │ │ └── src │ │ │ ├── http.c │ │ │ ├── info.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── opusfile.c │ │ │ ├── stream.c │ │ │ ├── wincerts.c │ │ │ └── winerrno.h │ ├── q3_ui │ │ ├── ui.def │ │ ├── ui_addbots.c │ │ ├── ui_atoms.c │ │ ├── ui_cdkey.c │ │ ├── ui_cinematics.c │ │ ├── ui_common.c │ │ ├── ui_confirm.c │ │ ├── ui_connect.c │ │ ├── ui_controls2.c │ │ ├── ui_credits.c │ │ ├── ui_demo2.c │ │ ├── ui_display.c │ │ ├── ui_gameinfo.c │ │ ├── ui_ingame.c │ │ ├── ui_ladder.c │ │ ├── ui_loadconfig.c │ │ ├── ui_local.h │ │ ├── ui_login.c │ │ ├── ui_main.c │ │ ├── ui_menu.c │ │ ├── ui_mfield.c │ │ ├── ui_mods.c │ │ ├── ui_network.c │ │ ├── ui_options.c │ │ ├── ui_playermodel.c │ │ ├── ui_players.c │ │ ├── ui_playersettings.c │ │ ├── ui_preferences.c │ │ ├── ui_public.h │ │ ├── ui_qmenu.c │ │ ├── ui_rally_bots.c │ │ ├── ui_rally_controls.c │ │ ├── ui_rally_credits.c │ │ ├── ui_rally_favorites.c │ │ ├── ui_rally_gfxloading.c │ │ ├── ui_rally_options.c │ │ ├── ui_rally_profiles.c │ │ ├── ui_rally_servers.c │ │ ├── ui_rally_startserver.c │ │ ├── ui_rally_tools.c │ │ ├── ui_rankings.c │ │ ├── ui_rankstatus.c │ │ ├── ui_removebots.c │ │ ├── ui_saveconfig.c │ │ ├── ui_serverinfo.c │ │ ├── ui_servers2.c │ │ ├── ui_setup.c │ │ ├── ui_signup.c │ │ ├── ui_sound.c │ │ ├── ui_sparena.c │ │ ├── ui_specifyleague.c │ │ ├── ui_specifyserver.c │ │ ├── ui_splevel.c │ │ ├── ui_sppostgame.c │ │ ├── ui_spreset.c │ │ ├── ui_spskill.c │ │ ├── ui_startserver.c │ │ ├── ui_team.c │ │ ├── ui_teamorders.c │ │ └── ui_video.c │ ├── qcommon │ │ ├── cm_load.c │ │ ├── cm_local.h │ │ ├── cm_patch.c │ │ ├── cm_patch.h │ │ ├── cm_polylib.c │ │ ├── cm_polylib.h │ │ ├── cm_public.h │ │ ├── cm_test.c │ │ ├── cm_trace.c │ │ ├── cmd.c │ │ ├── common.c │ │ ├── cvar.c │ │ ├── files.c │ │ ├── huffman.c │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── json.h │ │ ├── json_shared.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── msg.c │ │ ├── net_chan.c │ │ ├── net_ip.c │ │ ├── puff.c │ │ ├── puff.h │ │ ├── q_math.c │ │ ├── q_platform.h │ │ ├── q_shared.c │ │ ├── q_shared.h │ │ ├── qcommon.h │ │ ├── qfiles.h │ │ ├── surfaceflags.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── vm.c │ │ ├── vm_armv7l.c │ │ ├── vm_interpreted.c │ │ ├── vm_local.h │ │ ├── vm_none.c │ │ ├── vm_powerpc.c │ │ ├── vm_powerpc_asm.c │ │ ├── vm_powerpc_asm.h │ │ ├── vm_sparc.c │ │ ├── vm_sparc.h │ │ └── vm_x86.c │ ├── renderercommon │ │ ├── iqm.h │ │ ├── qgl.h │ │ ├── tr_common.h │ │ ├── tr_font.c │ │ ├── tr_image_bmp.c │ │ ├── tr_image_jpg.c │ │ ├── tr_image_pcx.c │ │ ├── tr_image_png.c │ │ ├── tr_image_tga.c │ │ ├── tr_noise.c │ │ ├── tr_public.h │ │ └── tr_types.h │ ├── renderergl1 │ │ ├── tr_altivec.c │ │ ├── tr_animation.c │ │ ├── tr_backend.c │ │ ├── tr_bsp.c │ │ ├── tr_cmds.c │ │ ├── tr_curve.c │ │ ├── tr_flares.c │ │ ├── tr_image.c │ │ ├── tr_init.c │ │ ├── tr_light.c │ │ ├── tr_local.h │ │ ├── tr_main.c │ │ ├── tr_marks.c │ │ ├── tr_mesh.c │ │ ├── tr_model.c │ │ ├── tr_model_iqm.c │ │ ├── tr_scene.c │ │ ├── tr_shade.c │ │ ├── tr_shade_calc.c │ │ ├── tr_shader.c │ │ ├── tr_shadows.c │ │ ├── tr_sky.c │ │ ├── tr_subs.c │ │ ├── tr_surface.c │ │ └── tr_world.c │ ├── renderergl2 │ │ ├── glsl │ │ │ ├── bokeh_fp.glsl │ │ │ ├── bokeh_vp.glsl │ │ │ ├── calclevels4x_fp.glsl │ │ │ ├── calclevels4x_vp.glsl │ │ │ ├── depthblur_fp.glsl │ │ │ ├── depthblur_vp.glsl │ │ │ ├── dlight_fp.glsl │ │ │ ├── dlight_vp.glsl │ │ │ ├── down4x_fp.glsl │ │ │ ├── down4x_vp.glsl │ │ │ ├── fogpass_fp.glsl │ │ │ ├── fogpass_vp.glsl │ │ │ ├── generic_fp.glsl │ │ │ ├── generic_vp.glsl │ │ │ ├── lightall_fp.glsl │ │ │ ├── lightall_vp.glsl │ │ │ ├── pshadow_fp.glsl │ │ │ ├── pshadow_vp.glsl │ │ │ ├── shadowfill_fp.glsl │ │ │ ├── shadowfill_vp.glsl │ │ │ ├── shadowmask_fp.glsl │ │ │ ├── shadowmask_vp.glsl │ │ │ ├── ssao_fp.glsl │ │ │ ├── ssao_vp.glsl │ │ │ ├── texturecolor_fp.glsl │ │ │ ├── texturecolor_vp.glsl │ │ │ ├── tonemap_fp.glsl │ │ │ └── tonemap_vp.glsl │ │ ├── tr_animation.c │ │ ├── tr_backend.c │ │ ├── tr_bsp.c │ │ ├── tr_cmds.c │ │ ├── tr_curve.c │ │ ├── tr_dsa.c │ │ ├── tr_dsa.h │ │ ├── tr_extensions.c │ │ ├── tr_extramath.c │ │ ├── tr_extramath.h │ │ ├── tr_extratypes.h │ │ ├── tr_fbo.c │ │ ├── tr_fbo.h │ │ ├── tr_flares.c │ │ ├── tr_glsl.c │ │ ├── tr_image.c │ │ ├── tr_image_dds.c │ │ ├── tr_init.c │ │ ├── tr_light.c │ │ ├── tr_local.h │ │ ├── tr_main.c │ │ ├── tr_marks.c │ │ ├── tr_mesh.c │ │ ├── tr_model.c │ │ ├── tr_model_iqm.c │ │ ├── tr_postprocess.c │ │ ├── tr_postprocess.h │ │ ├── tr_scene.c │ │ ├── tr_shade.c │ │ ├── tr_shade_calc.c │ │ ├── tr_shader.c │ │ ├── tr_shadows.c │ │ ├── tr_sky.c │ │ ├── tr_subs.c │ │ ├── tr_surface.c │ │ ├── tr_vbo.c │ │ └── tr_world.c │ ├── sdl │ │ ├── sdl_gamma.c │ │ ├── sdl_glimp.c │ │ ├── sdl_icon.h │ │ ├── sdl_input.c │ │ └── sdl_snd.c │ ├── server │ │ ├── server.h │ │ ├── sv_bot.c │ │ ├── sv_ccmds.c │ │ ├── sv_client.c │ │ ├── sv_game.c │ │ ├── sv_init.c │ │ ├── sv_ladder.c │ │ ├── sv_main.c │ │ ├── sv_net_chan.c │ │ ├── sv_rankings.c │ │ ├── sv_snapshot.c │ │ └── sv_world.c │ ├── sys │ │ ├── con_log.c │ │ ├── con_passive.c │ │ ├── con_tty.c │ │ ├── con_win32.c │ │ ├── sys_autoupdater.c │ │ ├── sys_loadlib.h │ │ ├── sys_local.h │ │ ├── sys_main.c │ │ ├── sys_osx.m │ │ ├── sys_unix.c │ │ ├── sys_win32.c │ │ ├── win_manifest.xml │ │ ├── win_resource.h │ │ └── win_resource.rc │ ├── tools │ │ ├── asm │ │ │ ├── README.Id │ │ │ ├── cmdlib.c │ │ │ ├── cmdlib.h │ │ │ ├── lib.txt │ │ │ ├── mathlib.h │ │ │ ├── notes.txt │ │ │ ├── ops.txt │ │ │ ├── opstrings.h │ │ │ └── q3asm.c │ │ ├── lcc │ │ │ ├── COPYRIGHT │ │ │ ├── LOG │ │ │ ├── README │ │ │ ├── README.id │ │ │ ├── cpp │ │ │ │ ├── cpp.c │ │ │ │ ├── cpp.h │ │ │ │ ├── eval.c │ │ │ │ ├── getopt.c │ │ │ │ ├── hideset.c │ │ │ │ ├── include.c │ │ │ │ ├── lex.c │ │ │ │ ├── macro.c │ │ │ │ ├── nlist.c │ │ │ │ ├── tokens.c │ │ │ │ └── unix.c │ │ │ ├── doc │ │ │ │ ├── 4.html │ │ │ │ ├── bprint.1 │ │ │ │ ├── bprint.pdf │ │ │ │ ├── install.html │ │ │ │ ├── lcc.1 │ │ │ │ └── lcc.pdf │ │ │ ├── etc │ │ │ │ ├── bytecode.c │ │ │ │ └── lcc.c │ │ │ ├── lburg │ │ │ │ ├── gram.c │ │ │ │ ├── gram.y │ │ │ │ ├── lburg.1 │ │ │ │ ├── lburg.c │ │ │ │ └── lburg.h │ │ │ ├── q3cpp │ │ │ └── src │ │ │ │ ├── alloc.c │ │ │ │ ├── bind.c │ │ │ │ ├── bytecode.c │ │ │ │ ├── c.h │ │ │ │ ├── config.h │ │ │ │ ├── dag.c │ │ │ │ ├── dagcheck.md │ │ │ │ ├── decl.c │ │ │ │ ├── enode.c │ │ │ │ ├── error.c │ │ │ │ ├── event.c │ │ │ │ ├── expr.c │ │ │ │ ├── gen.c │ │ │ │ ├── init.c │ │ │ │ ├── inits.c │ │ │ │ ├── input.c │ │ │ │ ├── lex.c │ │ │ │ ├── list.c │ │ │ │ ├── main.c │ │ │ │ ├── null.c │ │ │ │ ├── output.c │ │ │ │ ├── prof.c │ │ │ │ ├── profio.c │ │ │ │ ├── simp.c │ │ │ │ ├── stmt.c │ │ │ │ ├── string.c │ │ │ │ ├── sym.c │ │ │ │ ├── symbolic.c │ │ │ │ ├── token.h │ │ │ │ ├── trace.c │ │ │ │ ├── tree.c │ │ │ │ └── types.c │ │ └── stringify.c │ ├── ui │ │ ├── ui_atoms.c │ │ ├── ui_common.c │ │ ├── ui_gameinfo.c │ │ ├── ui_local.h │ │ ├── ui_main.c │ │ ├── ui_players.c │ │ ├── ui_public.h │ │ ├── ui_shared.c │ │ ├── ui_shared.h │ │ ├── ui_syscalls.asm │ │ └── ui_syscalls.c │ ├── web │ │ ├── client-config.json │ │ └── client.html │ └── zlib │ │ ├── adler32.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── docs │ ├── COPYING.txt │ ├── ChangeLog │ ├── README.md │ ├── TODO │ ├── autoupdater-readme.txt │ ├── id-readme.txt │ ├── md4-readme.txt │ ├── opengl2-readme.md │ ├── version_history.txt │ └── voip-readme.txt ├── make-linux-portable.sh ├── make-macosx-app.sh ├── make-macosx-ub.sh ├── make-macosx-ub2.sh ├── make-macosx.sh ├── misc │ ├── ReadMe-OSX.rtf │ ├── msvc │ │ ├── .gitignore │ │ ├── cgame.def │ │ ├── cgame.vcproj │ │ ├── game.def │ │ ├── game.vcproj │ │ ├── glsl_stringify.vbs │ │ ├── ioq3.sln │ │ ├── opengl1.vcproj │ │ ├── opengl2.vcproj │ │ ├── q3_ui.def │ │ ├── q3_ui.vcproj │ │ ├── quake3.vcproj │ │ ├── ui.def │ │ └── ui.vcproj │ ├── msvc10 │ │ ├── .gitignore │ │ ├── cgame.vcxproj │ │ ├── cgame.vcxproj.filters │ │ ├── game.vcxproj │ │ ├── game.vcxproj.filters │ │ ├── ioq3.sln │ │ ├── q3_ui.vcxproj │ │ ├── q3_ui.vcxproj.filters │ │ ├── quake3.vcxproj │ │ ├── quake3.vcxproj.filters │ │ ├── ui.vcxproj │ │ └── ui.vcxproj.filters │ ├── msvc142 │ │ ├── .gitignore │ │ ├── cgame.def │ │ ├── cgame.vcxproj │ │ ├── game.def │ │ ├── game.vcxproj │ │ ├── glsl_stringify.vbs │ │ ├── ioq3.sln │ │ ├── opengl1.vcxproj │ │ ├── opengl1.vcxproj.filters │ │ ├── opengl2.vcxproj │ │ ├── opengl2.vcxproj.filters │ │ ├── q3_ui.def │ │ ├── q3_ui.vcxproj │ │ ├── quake3.vcxproj │ │ ├── quake3.vcxproj.filters │ │ ├── ui.def │ │ └── ui.vcxproj │ ├── nsis │ │ ├── Makefile │ │ ├── q3rally-q3ctc.nsi │ │ └── q3rally.nsi.in │ ├── osxfe │ │ └── ioquake3fe │ │ │ ├── Controller.h │ │ │ ├── Controller.m │ │ │ ├── English.lproj │ │ │ ├── ErrorWindow.xib │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── MainMenu.xib │ │ │ ├── ErrorWindow.h │ │ │ ├── ErrorWindow.m │ │ │ ├── ErrorWindowController.h │ │ │ ├── ErrorWindowController.m │ │ │ ├── Info.plist │ │ │ ├── ioquake3.icns │ │ │ ├── ioquake3fe.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── bw.mode1v3 │ │ │ ├── bw.pbxuser │ │ │ └── project.pbxproj │ │ │ ├── ioquake3fe_Prefix.pch │ │ │ └── main.m │ ├── q3r_ded_icon.ico │ ├── q3r_icon.ico │ ├── quake3-tango.png │ ├── quake3-tango.xcf │ ├── quake3.icns │ ├── quake3.ico │ ├── quake3.png │ ├── quake3.svg │ └── setup │ │ ├── MacOSX │ │ └── SLA-dmg.sh │ │ ├── Makefile │ │ ├── Solaris_pkg.sh │ │ ├── com.q3rally.Q3Rally.metainfo.xml │ │ ├── doit │ │ ├── install-desktop-files.sh │ │ ├── ioquake3.SlackBuild │ │ ├── pkg │ │ ├── ioq3ded.sh │ │ ├── ioquake3.sh │ │ ├── ioquake3 │ │ │ ├── depend │ │ │ ├── pkginfo.template │ │ │ ├── postinstall │ │ │ ├── postremove │ │ │ ├── preinstall │ │ │ ├── preremove │ │ │ ├── prototype.template │ │ │ └── space │ │ ├── ioquake3d │ │ │ ├── depend │ │ │ ├── pkginfo.template │ │ │ ├── postinstall │ │ │ ├── postremove │ │ │ ├── preinstall │ │ │ ├── preremove │ │ │ ├── prototype.template │ │ │ └── space │ │ └── ioquake3m │ │ │ ├── depend │ │ │ ├── pkginfo.template │ │ │ ├── postinstall │ │ │ ├── postremove │ │ │ ├── preinstall │ │ │ ├── preremove │ │ │ ├── prototype.template │ │ │ └── space │ │ ├── preuninstall.sh │ │ ├── q3rally.desktop │ │ ├── q3rally.sh │ │ ├── setup.xml.in │ │ ├── setup.xml.mod │ │ ├── slack-desc │ │ ├── splash.xcf │ │ └── splash.xpm ├── resync_ioq3.sh └── ui │ ├── hud.txt │ ├── hud2.txt │ ├── ingame.txt │ ├── menudef.h │ └── menus.txt ├── ladder_service ├── .gitignore ├── README.md ├── __init__.py ├── ladder_service │ ├── __init__.py │ ├── db.py │ ├── main.py │ ├── models.py │ └── schemas.py ├── php_webservice │ ├── LICENSE │ ├── README.md │ ├── data │ │ ├── .gitignore │ │ └── .gitkeep │ ├── de.png │ ├── en.png │ ├── index.php │ ├── logo.png │ └── version.txt ├── requirements.txt └── tests │ └── test_api.py ├── q3rallycode.ppr ├── roadmap.txt ├── roadmap_0.5.txt ├── run-debug.sh ├── run.sh ├── scoring.txt └── tests ├── botlib_missing_entity_data_test.c ├── clientuserinfochanged_test.c ├── ctf4_team_score_test.c ├── ladder_json_test.c ├── rally_state_machine_test.c ├── server.h ├── test_botlib_missing_entity_data.py ├── test_clientuserinfochanged.py ├── test_ctf4_team_score.py ├── test_gametype_cli.py ├── test_ladder_json.py └── test_rally_state_machine.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/changelog.txt -------------------------------------------------------------------------------- /docs/demolition_derby_review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/docs/demolition_derby_review.md -------------------------------------------------------------------------------- /docs/elimination_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/docs/elimination_mode.md -------------------------------------------------------------------------------- /docs/ladder-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/docs/ladder-service.md -------------------------------------------------------------------------------- /docs/q3rally_handbuch_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/docs/q3rally_handbuch_de.md -------------------------------------------------------------------------------- /docs/q3rally_patch_notes_v0.6.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/docs/q3rally_patch_notes_v0.6.x.md -------------------------------------------------------------------------------- /docs/racing_gamemode_review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/docs/racing_gamemode_review.md -------------------------------------------------------------------------------- /docs/update_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/docs/update_check.md -------------------------------------------------------------------------------- /engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/Makefile -------------------------------------------------------------------------------- /engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/README.md -------------------------------------------------------------------------------- /engine/code/AL/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/AL/VERSION -------------------------------------------------------------------------------- /engine/code/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/AL/al.h -------------------------------------------------------------------------------- /engine/code/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/AL/alc.h -------------------------------------------------------------------------------- /engine/code/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/AL/alext.h -------------------------------------------------------------------------------- /engine/code/AL/efx-creative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/AL/efx-creative.h -------------------------------------------------------------------------------- /engine/code/AL/efx-presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/AL/efx-presets.h -------------------------------------------------------------------------------- /engine/code/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/AL/efx.h -------------------------------------------------------------------------------- /engine/code/SDL2/include-2.0.22/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include-2.0.22/SDL.h -------------------------------------------------------------------------------- /engine/code/SDL2/include-macppc/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include-macppc/SDL.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_assert.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_atomic.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_config.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_copying.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_endian.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_events.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_gesture.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_guid.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_haptic.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_hidapi.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_keycode.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_loadso.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_locale.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_metal.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_misc.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_opengl.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_pixels.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_render.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_sensor.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_stdinc.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_surface.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_system.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_thread.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_version.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/SDL_vulkan.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/begin_code.h -------------------------------------------------------------------------------- /engine/code/SDL2/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/SDL2/include/close_code.h -------------------------------------------------------------------------------- /engine/code/asm/ftola.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/ftola.asm -------------------------------------------------------------------------------- /engine/code/asm/ftola.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/ftola.c -------------------------------------------------------------------------------- /engine/code/asm/matha.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/matha.s -------------------------------------------------------------------------------- /engine/code/asm/qasm-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/qasm-inline.h -------------------------------------------------------------------------------- /engine/code/asm/qasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/qasm.h -------------------------------------------------------------------------------- /engine/code/asm/snapvector.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/snapvector.asm -------------------------------------------------------------------------------- /engine/code/asm/snapvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/snapvector.c -------------------------------------------------------------------------------- /engine/code/asm/snd_mixa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/snd_mixa.s -------------------------------------------------------------------------------- /engine/code/asm/vm_x86_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/asm/vm_x86_64.asm -------------------------------------------------------------------------------- /engine/code/autoupdater/autoupdater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/autoupdater/autoupdater.c -------------------------------------------------------------------------------- /engine/code/botlib/aasfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/aasfile.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_bsp.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_bspq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_bspq3.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_cluster.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_cluster.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_debug.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_debug.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_def.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_entity.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_entity.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_file.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_file.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_funcs.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_main.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_main.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_move.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_move.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_optimize.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_optimize.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_reach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_reach.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_reach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_reach.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_route.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_route.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_routealt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_routealt.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_routealt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_routealt.h -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_sample.c -------------------------------------------------------------------------------- /engine/code/botlib/be_aas_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_aas_sample.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_char.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_char.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_chat.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_chat.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_gen.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_gen.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_goal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_goal.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_goal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_goal.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_move.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_move.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_weap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_weap.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_weap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_weap.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_weight.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ai_weight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ai_weight.h -------------------------------------------------------------------------------- /engine/code/botlib/be_ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ea.c -------------------------------------------------------------------------------- /engine/code/botlib/be_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_ea.h -------------------------------------------------------------------------------- /engine/code/botlib/be_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_interface.c -------------------------------------------------------------------------------- /engine/code/botlib/be_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/be_interface.h -------------------------------------------------------------------------------- /engine/code/botlib/botlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/botlib.h -------------------------------------------------------------------------------- /engine/code/botlib/l_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_crc.c -------------------------------------------------------------------------------- /engine/code/botlib/l_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_crc.h -------------------------------------------------------------------------------- /engine/code/botlib/l_libvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_libvar.c -------------------------------------------------------------------------------- /engine/code/botlib/l_libvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_libvar.h -------------------------------------------------------------------------------- /engine/code/botlib/l_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_log.c -------------------------------------------------------------------------------- /engine/code/botlib/l_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_log.h -------------------------------------------------------------------------------- /engine/code/botlib/l_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_memory.c -------------------------------------------------------------------------------- /engine/code/botlib/l_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_memory.h -------------------------------------------------------------------------------- /engine/code/botlib/l_precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_precomp.c -------------------------------------------------------------------------------- /engine/code/botlib/l_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_precomp.h -------------------------------------------------------------------------------- /engine/code/botlib/l_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_script.c -------------------------------------------------------------------------------- /engine/code/botlib/l_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_script.h -------------------------------------------------------------------------------- /engine/code/botlib/l_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_struct.c -------------------------------------------------------------------------------- /engine/code/botlib/l_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_struct.h -------------------------------------------------------------------------------- /engine/code/botlib/l_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/botlib/l_utils.h -------------------------------------------------------------------------------- /engine/code/cgame/cg_atmospheric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_atmospheric.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_consolecmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_consolecmds.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_draw.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_drawtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_drawtools.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_effects.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_ents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_ents.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_event.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_info.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_jukebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_jukebox.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_ladder.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_local.h -------------------------------------------------------------------------------- /engine/code/cgame/cg_localents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_localents.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_main.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_marks.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_newdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_newdraw.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_particles.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_players.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_playerstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_playerstate.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_predict.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_public.h -------------------------------------------------------------------------------- /engine/code/cgame/cg_rally_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_rally_draw.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_rally_drawtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_rally_drawtools.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_rally_hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_rally_hud.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_rally_hud2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_rally_hud2.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_rally_racetools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_rally_racetools.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_rally_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_rally_tools.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_rankings.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_scoreboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_scoreboard.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_servercmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_servercmds.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_snapshot.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_syscalls.asm -------------------------------------------------------------------------------- /engine/code/cgame/cg_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_syscalls.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_view.c -------------------------------------------------------------------------------- /engine/code/cgame/cg_weapons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/cgame/cg_weapons.c -------------------------------------------------------------------------------- /engine/code/client/cl_avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_avi.c -------------------------------------------------------------------------------- /engine/code/client/cl_cgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_cgame.c -------------------------------------------------------------------------------- /engine/code/client/cl_cin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_cin.c -------------------------------------------------------------------------------- /engine/code/client/cl_cin_ogm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_cin_ogm.c -------------------------------------------------------------------------------- /engine/code/client/cl_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_console.c -------------------------------------------------------------------------------- /engine/code/client/cl_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_curl.c -------------------------------------------------------------------------------- /engine/code/client/cl_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_curl.h -------------------------------------------------------------------------------- /engine/code/client/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_input.c -------------------------------------------------------------------------------- /engine/code/client/cl_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_keys.c -------------------------------------------------------------------------------- /engine/code/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_main.c -------------------------------------------------------------------------------- /engine/code/client/cl_net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_net_chan.c -------------------------------------------------------------------------------- /engine/code/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_parse.c -------------------------------------------------------------------------------- /engine/code/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_scrn.c -------------------------------------------------------------------------------- /engine/code/client/cl_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_ui.c -------------------------------------------------------------------------------- /engine/code/client/cl_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_update.c -------------------------------------------------------------------------------- /engine/code/client/cl_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/cl_update.h -------------------------------------------------------------------------------- /engine/code/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/client.h -------------------------------------------------------------------------------- /engine/code/client/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/keycodes.h -------------------------------------------------------------------------------- /engine/code/client/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/keys.h -------------------------------------------------------------------------------- /engine/code/client/libmumblelink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/libmumblelink.c -------------------------------------------------------------------------------- /engine/code/client/libmumblelink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/libmumblelink.h -------------------------------------------------------------------------------- /engine/code/client/qal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/qal.c -------------------------------------------------------------------------------- /engine/code/client/qal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/qal.h -------------------------------------------------------------------------------- /engine/code/client/snd_adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_adpcm.c -------------------------------------------------------------------------------- /engine/code/client/snd_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_altivec.c -------------------------------------------------------------------------------- /engine/code/client/snd_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_codec.c -------------------------------------------------------------------------------- /engine/code/client/snd_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_codec.h -------------------------------------------------------------------------------- /engine/code/client/snd_codec_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_codec_ogg.c -------------------------------------------------------------------------------- /engine/code/client/snd_codec_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_codec_opus.c -------------------------------------------------------------------------------- /engine/code/client/snd_codec_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_codec_wav.c -------------------------------------------------------------------------------- /engine/code/client/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_dma.c -------------------------------------------------------------------------------- /engine/code/client/snd_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_local.h -------------------------------------------------------------------------------- /engine/code/client/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_main.c -------------------------------------------------------------------------------- /engine/code/client/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_mem.c -------------------------------------------------------------------------------- /engine/code/client/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_mix.c -------------------------------------------------------------------------------- /engine/code/client/snd_openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_openal.c -------------------------------------------------------------------------------- /engine/code/client/snd_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_public.h -------------------------------------------------------------------------------- /engine/code/client/snd_wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/client/snd_wavelet.c -------------------------------------------------------------------------------- /engine/code/curl-7.54.0/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/curl-7.54.0/include/README -------------------------------------------------------------------------------- /engine/code/game/ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_chat.c -------------------------------------------------------------------------------- /engine/code/game/ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_chat.h -------------------------------------------------------------------------------- /engine/code/game/ai_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_cmd.c -------------------------------------------------------------------------------- /engine/code/game/ai_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_cmd.h -------------------------------------------------------------------------------- /engine/code/game/ai_dmnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_dmnet.c -------------------------------------------------------------------------------- /engine/code/game/ai_dmnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_dmnet.h -------------------------------------------------------------------------------- /engine/code/game/ai_dmq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_dmq3.c -------------------------------------------------------------------------------- /engine/code/game/ai_dmq3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_dmq3.h -------------------------------------------------------------------------------- /engine/code/game/ai_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_main.c -------------------------------------------------------------------------------- /engine/code/game/ai_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_main.h -------------------------------------------------------------------------------- /engine/code/game/ai_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_team.c -------------------------------------------------------------------------------- /engine/code/game/ai_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_team.h -------------------------------------------------------------------------------- /engine/code/game/ai_vcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_vcmd.c -------------------------------------------------------------------------------- /engine/code/game/ai_vcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/ai_vcmd.h -------------------------------------------------------------------------------- /engine/code/game/bg_achievements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_achievements.c -------------------------------------------------------------------------------- /engine/code/game/bg_achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_achievements.h -------------------------------------------------------------------------------- /engine/code/game/bg_ladder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_ladder.h -------------------------------------------------------------------------------- /engine/code/game/bg_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_lib.c -------------------------------------------------------------------------------- /engine/code/game/bg_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_lib.h -------------------------------------------------------------------------------- /engine/code/game/bg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_local.h -------------------------------------------------------------------------------- /engine/code/game/bg_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_misc.c -------------------------------------------------------------------------------- /engine/code/game/bg_physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_physics.c -------------------------------------------------------------------------------- /engine/code/game/bg_physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_physics.h -------------------------------------------------------------------------------- /engine/code/game/bg_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_pmove.c -------------------------------------------------------------------------------- /engine/code/game/bg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_public.h -------------------------------------------------------------------------------- /engine/code/game/bg_slidemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_slidemove.c -------------------------------------------------------------------------------- /engine/code/game/bg_wheel_forces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/bg_wheel_forces.c -------------------------------------------------------------------------------- /engine/code/game/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/chars.h -------------------------------------------------------------------------------- /engine/code/game/g_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_active.c -------------------------------------------------------------------------------- /engine/code/game/g_arenas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_arenas.c -------------------------------------------------------------------------------- /engine/code/game/g_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_bot.c -------------------------------------------------------------------------------- /engine/code/game/g_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_client.c -------------------------------------------------------------------------------- /engine/code/game/g_client_userinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_client_userinfo.c -------------------------------------------------------------------------------- /engine/code/game/g_client_userinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_client_userinfo.h -------------------------------------------------------------------------------- /engine/code/game/g_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_cmds.c -------------------------------------------------------------------------------- /engine/code/game/g_combat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_combat.c -------------------------------------------------------------------------------- /engine/code/game/g_ghost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_ghost.c -------------------------------------------------------------------------------- /engine/code/game/g_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_items.c -------------------------------------------------------------------------------- /engine/code/game/g_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_local.h -------------------------------------------------------------------------------- /engine/code/game/g_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_main.c -------------------------------------------------------------------------------- /engine/code/game/g_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_mem.c -------------------------------------------------------------------------------- /engine/code/game/g_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_misc.c -------------------------------------------------------------------------------- /engine/code/game/g_missile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_missile.c -------------------------------------------------------------------------------- /engine/code/game/g_mover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_mover.c -------------------------------------------------------------------------------- /engine/code/game/g_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_profile.c -------------------------------------------------------------------------------- /engine/code/game/g_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_profile.h -------------------------------------------------------------------------------- /engine/code/game/g_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_public.h -------------------------------------------------------------------------------- /engine/code/game/g_rally_hazard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rally_hazard.c -------------------------------------------------------------------------------- /engine/code/game/g_rally_mapents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rally_mapents.c -------------------------------------------------------------------------------- /engine/code/game/g_rally_mapobjects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rally_mapobjects.c -------------------------------------------------------------------------------- /engine/code/game/g_rally_racetools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rally_racetools.c -------------------------------------------------------------------------------- /engine/code/game/g_rally_rearweapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rally_rearweapon.c -------------------------------------------------------------------------------- /engine/code/game/g_rally_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rally_tools.c -------------------------------------------------------------------------------- /engine/code/game/g_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rankings.c -------------------------------------------------------------------------------- /engine/code/game/g_rankings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_rankings.h -------------------------------------------------------------------------------- /engine/code/game/g_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_session.c -------------------------------------------------------------------------------- /engine/code/game/g_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_spawn.c -------------------------------------------------------------------------------- /engine/code/game/g_svcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_svcmds.c -------------------------------------------------------------------------------- /engine/code/game/g_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_syscalls.asm -------------------------------------------------------------------------------- /engine/code/game/g_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_syscalls.c -------------------------------------------------------------------------------- /engine/code/game/g_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_target.c -------------------------------------------------------------------------------- /engine/code/game/g_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_team.c -------------------------------------------------------------------------------- /engine/code/game/g_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_team.h -------------------------------------------------------------------------------- /engine/code/game/g_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_trigger.c -------------------------------------------------------------------------------- /engine/code/game/g_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_utils.c -------------------------------------------------------------------------------- /engine/code/game/g_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/g_weapon.c -------------------------------------------------------------------------------- /engine/code/game/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/inv.h -------------------------------------------------------------------------------- /engine/code/game/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/match.h -------------------------------------------------------------------------------- /engine/code/game/profile_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/profile_shared.h -------------------------------------------------------------------------------- /engine/code/game/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/syn.h -------------------------------------------------------------------------------- /engine/code/game/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/game/tests/Makefile -------------------------------------------------------------------------------- /engine/code/jpeg-8c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/README -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jaricom.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcapimin.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcapistd.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcarith.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jccoefct.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jccolor.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcdctmgr.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jchuff.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcinit.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcmainct.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcmarker.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcmaster.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcomapi.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jconfig.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcparam.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcprepct.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jcsample.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jctrans.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdapimin.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdapistd.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdarith.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdatadst.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdatasrc.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdcoefct.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdcolor.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdct.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jddctmgr.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdhuff.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdinput.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdmainct.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdmarker.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdmaster.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdmerge.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdpostct.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdsample.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jdtrans.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jerror.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jerror.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jfdctflt.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jfdctfst.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jfdctint.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jidctflt.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jidctfst.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jidctint.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jinclude.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jmemmgr.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jmemnobs.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jmemsys.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jmorecfg.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jpegint.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jpeglib.h -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jquant1.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jquant2.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jutils.c -------------------------------------------------------------------------------- /engine/code/jpeg-8c/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/jpeg-8c/jversion.h -------------------------------------------------------------------------------- /engine/code/libogg-1.3.3/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libogg-1.3.3/src/bitwise.c -------------------------------------------------------------------------------- /engine/code/libogg-1.3.3/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libogg-1.3.3/src/framing.c -------------------------------------------------------------------------------- /engine/code/libs/linux-x86_64/libSDL2.so: -------------------------------------------------------------------------------- 1 | libSDL2-2.0.so.0 -------------------------------------------------------------------------------- /engine/code/libs/win32/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win32/SDL2.dll -------------------------------------------------------------------------------- /engine/code/libs/win32/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win32/SDL2.lib -------------------------------------------------------------------------------- /engine/code/libs/win32/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win32/SDL2main.lib -------------------------------------------------------------------------------- /engine/code/libs/win32/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win32/libSDL2.dll.a -------------------------------------------------------------------------------- /engine/code/libs/win32/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win32/libSDL2main.a -------------------------------------------------------------------------------- /engine/code/libs/win32/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win32/libcurl.a -------------------------------------------------------------------------------- /engine/code/libs/win64/SDL264.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win64/SDL264.dll -------------------------------------------------------------------------------- /engine/code/libs/win64/SDL264.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win64/SDL264.lib -------------------------------------------------------------------------------- /engine/code/libs/win64/SDL264main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win64/SDL264main.lib -------------------------------------------------------------------------------- /engine/code/libs/win64/libSDL264.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win64/libSDL264.dll.a -------------------------------------------------------------------------------- /engine/code/libs/win64/libSDL264main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win64/libSDL264main.a -------------------------------------------------------------------------------- /engine/code/libs/win64/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libs/win64/libcurl.a -------------------------------------------------------------------------------- /engine/code/libtheora-1.1.1/lib/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libtheora-1.1.1/lib/dct.h -------------------------------------------------------------------------------- /engine/code/libtheora-1.1.1/lib/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libtheora-1.1.1/lib/idct.c -------------------------------------------------------------------------------- /engine/code/libtheora-1.1.1/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libtheora-1.1.1/lib/info.c -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/info.c -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/lpc.c -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/lpc.h -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/lsp.c -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/lsp.h -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/mdct.c -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/mdct.h -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/misc.h -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/os.h -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/psy.c -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/psy.h -------------------------------------------------------------------------------- /engine/code/libvorbis-1.3.6/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/libvorbis-1.3.6/lib/res0.c -------------------------------------------------------------------------------- /engine/code/null/mac_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/null/mac_net.c -------------------------------------------------------------------------------- /engine/code/null/null_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/null/null_client.c -------------------------------------------------------------------------------- /engine/code/null/null_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/null/null_glimp.c -------------------------------------------------------------------------------- /engine/code/null/null_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/null/null_input.c -------------------------------------------------------------------------------- /engine/code/null/null_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/null/null_main.c -------------------------------------------------------------------------------- /engine/code/null/null_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/null/null_net.c -------------------------------------------------------------------------------- /engine/code/null/null_snddma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/null/null_snddma.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/arch.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/bands.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/bands.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/celt.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/celt.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/celt_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/celt_lpc.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/celt_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/celt_lpc.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/cwrs.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/cwrs.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/ecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/ecintrin.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/entcode.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/entcode.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/entdec.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/entdec.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/entenc.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/entenc.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/kiss_fft.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/kiss_fft.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/laplace.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/laplace.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/mathops.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/mathops.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/mdct.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/mdct.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/mfrngcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/mfrngcod.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/modes.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/modes.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/pitch.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/pitch.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/rate.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/rate.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/vq.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/celt/vq.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/include/opus.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/A2NLSF.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/API.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/CNG.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/Inlines.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/LPC_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/LPC_fit.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/NLSF2A.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/NSQ.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/NSQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/NSQ.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/PLC.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/PLC.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/VAD.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/control.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/debug.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/debug.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/dec_API.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/define.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/enc_API.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/errors.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/lin2log.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/log2lin.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/macros.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/main.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/sigm_Q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/sigm_Q15.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/sort.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/structs.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/tables.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/silk/typedef.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/src/analysis.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/src/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/src/analysis.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/src/mlp.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/src/mlp.h -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/src/mlp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/src/mlp_data.c -------------------------------------------------------------------------------- /engine/code/opus-1.2.1/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opus-1.2.1/src/opus.c -------------------------------------------------------------------------------- /engine/code/opusfile-0.9/src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opusfile-0.9/src/http.c -------------------------------------------------------------------------------- /engine/code/opusfile-0.9/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opusfile-0.9/src/info.c -------------------------------------------------------------------------------- /engine/code/opusfile-0.9/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/opusfile-0.9/src/stream.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry 4 | -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_addbots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_addbots.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_atoms.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_cdkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_cdkey.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_cinematics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_cinematics.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_common.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_confirm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_confirm.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_connect.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_controls2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_controls2.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_credits.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_demo2.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_display.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_gameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_gameinfo.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_ingame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_ingame.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_ladder.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_loadconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_loadconfig.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_local.h -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_login.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_main.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_menu.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_mfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_mfield.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_mods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_mods.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_network.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_options.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_playermodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_playermodel.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_players.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_playersettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_playersettings.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_preferences.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_public.h -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_qmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_qmenu.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_bots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_bots.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_controls.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_credits.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_favorites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_favorites.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_options.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_profiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_profiles.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_servers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_servers.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rally_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rally_tools.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rankings.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_rankstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_rankstatus.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_removebots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_removebots.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_saveconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_saveconfig.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_serverinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_serverinfo.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_servers2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_servers2.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_setup.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_signup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_signup.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_sound.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_sparena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_sparena.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_specifyleague.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_specifyleague.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_specifyserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_specifyserver.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_splevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_splevel.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_sppostgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_sppostgame.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_spreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_spreset.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_spskill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_spskill.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_startserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_startserver.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_team.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_teamorders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_teamorders.c -------------------------------------------------------------------------------- /engine/code/q3_ui/ui_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/q3_ui/ui_video.c -------------------------------------------------------------------------------- /engine/code/qcommon/cm_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_load.c -------------------------------------------------------------------------------- /engine/code/qcommon/cm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_local.h -------------------------------------------------------------------------------- /engine/code/qcommon/cm_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_patch.c -------------------------------------------------------------------------------- /engine/code/qcommon/cm_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_patch.h -------------------------------------------------------------------------------- /engine/code/qcommon/cm_polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_polylib.c -------------------------------------------------------------------------------- /engine/code/qcommon/cm_polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_polylib.h -------------------------------------------------------------------------------- /engine/code/qcommon/cm_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_public.h -------------------------------------------------------------------------------- /engine/code/qcommon/cm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_test.c -------------------------------------------------------------------------------- /engine/code/qcommon/cm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cm_trace.c -------------------------------------------------------------------------------- /engine/code/qcommon/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cmd.c -------------------------------------------------------------------------------- /engine/code/qcommon/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/common.c -------------------------------------------------------------------------------- /engine/code/qcommon/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/cvar.c -------------------------------------------------------------------------------- /engine/code/qcommon/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/files.c -------------------------------------------------------------------------------- /engine/code/qcommon/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/huffman.c -------------------------------------------------------------------------------- /engine/code/qcommon/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/ioapi.c -------------------------------------------------------------------------------- /engine/code/qcommon/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/ioapi.h -------------------------------------------------------------------------------- /engine/code/qcommon/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/json.h -------------------------------------------------------------------------------- /engine/code/qcommon/json_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/json_shared.c -------------------------------------------------------------------------------- /engine/code/qcommon/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/md4.c -------------------------------------------------------------------------------- /engine/code/qcommon/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/md5.c -------------------------------------------------------------------------------- /engine/code/qcommon/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/msg.c -------------------------------------------------------------------------------- /engine/code/qcommon/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/net_chan.c -------------------------------------------------------------------------------- /engine/code/qcommon/net_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/net_ip.c -------------------------------------------------------------------------------- /engine/code/qcommon/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/puff.c -------------------------------------------------------------------------------- /engine/code/qcommon/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/puff.h -------------------------------------------------------------------------------- /engine/code/qcommon/q_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/q_math.c -------------------------------------------------------------------------------- /engine/code/qcommon/q_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/q_platform.h -------------------------------------------------------------------------------- /engine/code/qcommon/q_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/q_shared.c -------------------------------------------------------------------------------- /engine/code/qcommon/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/q_shared.h -------------------------------------------------------------------------------- /engine/code/qcommon/qcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/qcommon.h -------------------------------------------------------------------------------- /engine/code/qcommon/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/qfiles.h -------------------------------------------------------------------------------- /engine/code/qcommon/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/surfaceflags.h -------------------------------------------------------------------------------- /engine/code/qcommon/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/unzip.c -------------------------------------------------------------------------------- /engine/code/qcommon/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/unzip.h -------------------------------------------------------------------------------- /engine/code/qcommon/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm.c -------------------------------------------------------------------------------- /engine/code/qcommon/vm_armv7l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_armv7l.c -------------------------------------------------------------------------------- /engine/code/qcommon/vm_interpreted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_interpreted.c -------------------------------------------------------------------------------- /engine/code/qcommon/vm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_local.h -------------------------------------------------------------------------------- /engine/code/qcommon/vm_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_none.c -------------------------------------------------------------------------------- /engine/code/qcommon/vm_powerpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_powerpc.c -------------------------------------------------------------------------------- /engine/code/qcommon/vm_powerpc_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_powerpc_asm.c -------------------------------------------------------------------------------- /engine/code/qcommon/vm_powerpc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_powerpc_asm.h -------------------------------------------------------------------------------- /engine/code/qcommon/vm_sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_sparc.c -------------------------------------------------------------------------------- /engine/code/qcommon/vm_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_sparc.h -------------------------------------------------------------------------------- /engine/code/qcommon/vm_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/qcommon/vm_x86.c -------------------------------------------------------------------------------- /engine/code/renderercommon/iqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderercommon/iqm.h -------------------------------------------------------------------------------- /engine/code/renderercommon/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderercommon/qgl.h -------------------------------------------------------------------------------- /engine/code/renderercommon/tr_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderercommon/tr_common.h -------------------------------------------------------------------------------- /engine/code/renderercommon/tr_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderercommon/tr_font.c -------------------------------------------------------------------------------- /engine/code/renderercommon/tr_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderercommon/tr_noise.c -------------------------------------------------------------------------------- /engine/code/renderercommon/tr_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderercommon/tr_public.h -------------------------------------------------------------------------------- /engine/code/renderercommon/tr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderercommon/tr_types.h -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_altivec.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_animation.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_backend.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_bsp.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_cmds.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_curve.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_flares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_flares.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_image.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_init.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_light.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_local.h -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_main.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_marks.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_mesh.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_model.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_model_iqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_model_iqm.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_scene.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_shade.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_shader.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_shadows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_shadows.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_sky.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_subs.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_surface.c -------------------------------------------------------------------------------- /engine/code/renderergl1/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl1/tr_world.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_animation.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_backend.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_bsp.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_cmds.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_curve.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_dsa.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_dsa.h -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_extramath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_extramath.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_extramath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_extramath.h -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_fbo.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_fbo.h -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_flares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_flares.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_glsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_glsl.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_image.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_image_dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_image_dds.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_init.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_light.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_local.h -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_main.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_marks.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_mesh.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_model.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_model_iqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_model_iqm.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_scene.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_shade.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_shader.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_shadows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_shadows.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_sky.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_subs.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_surface.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_vbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_vbo.c -------------------------------------------------------------------------------- /engine/code/renderergl2/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/renderergl2/tr_world.c -------------------------------------------------------------------------------- /engine/code/sdl/sdl_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sdl/sdl_gamma.c -------------------------------------------------------------------------------- /engine/code/sdl/sdl_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sdl/sdl_glimp.c -------------------------------------------------------------------------------- /engine/code/sdl/sdl_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sdl/sdl_icon.h -------------------------------------------------------------------------------- /engine/code/sdl/sdl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sdl/sdl_input.c -------------------------------------------------------------------------------- /engine/code/sdl/sdl_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sdl/sdl_snd.c -------------------------------------------------------------------------------- /engine/code/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/server.h -------------------------------------------------------------------------------- /engine/code/server/sv_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_bot.c -------------------------------------------------------------------------------- /engine/code/server/sv_ccmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_ccmds.c -------------------------------------------------------------------------------- /engine/code/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_client.c -------------------------------------------------------------------------------- /engine/code/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_game.c -------------------------------------------------------------------------------- /engine/code/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_init.c -------------------------------------------------------------------------------- /engine/code/server/sv_ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_ladder.c -------------------------------------------------------------------------------- /engine/code/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_main.c -------------------------------------------------------------------------------- /engine/code/server/sv_net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_net_chan.c -------------------------------------------------------------------------------- /engine/code/server/sv_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_rankings.c -------------------------------------------------------------------------------- /engine/code/server/sv_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_snapshot.c -------------------------------------------------------------------------------- /engine/code/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/server/sv_world.c -------------------------------------------------------------------------------- /engine/code/sys/con_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/con_log.c -------------------------------------------------------------------------------- /engine/code/sys/con_passive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/con_passive.c -------------------------------------------------------------------------------- /engine/code/sys/con_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/con_tty.c -------------------------------------------------------------------------------- /engine/code/sys/con_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/con_win32.c -------------------------------------------------------------------------------- /engine/code/sys/sys_autoupdater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/sys_autoupdater.c -------------------------------------------------------------------------------- /engine/code/sys/sys_loadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/sys_loadlib.h -------------------------------------------------------------------------------- /engine/code/sys/sys_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/sys_local.h -------------------------------------------------------------------------------- /engine/code/sys/sys_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/sys_main.c -------------------------------------------------------------------------------- /engine/code/sys/sys_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/sys_osx.m -------------------------------------------------------------------------------- /engine/code/sys/sys_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/sys_unix.c -------------------------------------------------------------------------------- /engine/code/sys/sys_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/sys_win32.c -------------------------------------------------------------------------------- /engine/code/sys/win_manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/win_manifest.xml -------------------------------------------------------------------------------- /engine/code/sys/win_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/win_resource.h -------------------------------------------------------------------------------- /engine/code/sys/win_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/sys/win_resource.rc -------------------------------------------------------------------------------- /engine/code/tools/asm/README.Id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/README.Id -------------------------------------------------------------------------------- /engine/code/tools/asm/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/cmdlib.c -------------------------------------------------------------------------------- /engine/code/tools/asm/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/cmdlib.h -------------------------------------------------------------------------------- /engine/code/tools/asm/lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/lib.txt -------------------------------------------------------------------------------- /engine/code/tools/asm/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/mathlib.h -------------------------------------------------------------------------------- /engine/code/tools/asm/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/notes.txt -------------------------------------------------------------------------------- /engine/code/tools/asm/ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/ops.txt -------------------------------------------------------------------------------- /engine/code/tools/asm/opstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/opstrings.h -------------------------------------------------------------------------------- /engine/code/tools/asm/q3asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/asm/q3asm.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/COPYRIGHT -------------------------------------------------------------------------------- /engine/code/tools/lcc/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/LOG -------------------------------------------------------------------------------- /engine/code/tools/lcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/README -------------------------------------------------------------------------------- /engine/code/tools/lcc/README.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/README.id -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/cpp.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/cpp.h -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/eval.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/getopt.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/hideset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/hideset.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/include.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/lex.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/macro.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/nlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/nlist.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/tokens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/tokens.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/cpp/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/cpp/unix.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/doc/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/doc/4.html -------------------------------------------------------------------------------- /engine/code/tools/lcc/doc/bprint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/doc/bprint.1 -------------------------------------------------------------------------------- /engine/code/tools/lcc/doc/bprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/doc/bprint.pdf -------------------------------------------------------------------------------- /engine/code/tools/lcc/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/doc/install.html -------------------------------------------------------------------------------- /engine/code/tools/lcc/doc/lcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/doc/lcc.1 -------------------------------------------------------------------------------- /engine/code/tools/lcc/doc/lcc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/doc/lcc.pdf -------------------------------------------------------------------------------- /engine/code/tools/lcc/etc/bytecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/etc/bytecode.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/etc/lcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/etc/lcc.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/lburg/gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/lburg/gram.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/lburg/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/lburg/gram.y -------------------------------------------------------------------------------- /engine/code/tools/lcc/lburg/lburg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/lburg/lburg.1 -------------------------------------------------------------------------------- /engine/code/tools/lcc/lburg/lburg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/lburg/lburg.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/lburg/lburg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/lburg/lburg.h -------------------------------------------------------------------------------- /engine/code/tools/lcc/q3cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/q3cpp -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/alloc.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/bind.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/bytecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/bytecode.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/c.h -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/config.h -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/dag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/dag.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/decl.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/enode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/enode.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/error.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/event.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/expr.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/gen.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/init.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/inits.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/input.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/lex.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/list.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/main.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/null.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/output.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/prof.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/profio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/profio.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/simp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/simp.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/stmt.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/string.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/sym.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/symbolic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/symbolic.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/token.h -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/trace.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/tree.c -------------------------------------------------------------------------------- /engine/code/tools/lcc/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/lcc/src/types.c -------------------------------------------------------------------------------- /engine/code/tools/stringify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/tools/stringify.c -------------------------------------------------------------------------------- /engine/code/ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_atoms.c -------------------------------------------------------------------------------- /engine/code/ui/ui_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_common.c -------------------------------------------------------------------------------- /engine/code/ui/ui_gameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_gameinfo.c -------------------------------------------------------------------------------- /engine/code/ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_local.h -------------------------------------------------------------------------------- /engine/code/ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_main.c -------------------------------------------------------------------------------- /engine/code/ui/ui_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_players.c -------------------------------------------------------------------------------- /engine/code/ui/ui_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_public.h -------------------------------------------------------------------------------- /engine/code/ui/ui_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_shared.c -------------------------------------------------------------------------------- /engine/code/ui/ui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_shared.h -------------------------------------------------------------------------------- /engine/code/ui/ui_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_syscalls.asm -------------------------------------------------------------------------------- /engine/code/ui/ui_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/ui/ui_syscalls.c -------------------------------------------------------------------------------- /engine/code/web/client-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/web/client-config.json -------------------------------------------------------------------------------- /engine/code/web/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/web/client.html -------------------------------------------------------------------------------- /engine/code/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/adler32.c -------------------------------------------------------------------------------- /engine/code/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/crc32.c -------------------------------------------------------------------------------- /engine/code/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/crc32.h -------------------------------------------------------------------------------- /engine/code/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/inffast.c -------------------------------------------------------------------------------- /engine/code/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/inffast.h -------------------------------------------------------------------------------- /engine/code/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/inffixed.h -------------------------------------------------------------------------------- /engine/code/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/inflate.c -------------------------------------------------------------------------------- /engine/code/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/inflate.h -------------------------------------------------------------------------------- /engine/code/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/inftrees.c -------------------------------------------------------------------------------- /engine/code/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/inftrees.h -------------------------------------------------------------------------------- /engine/code/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/zconf.h -------------------------------------------------------------------------------- /engine/code/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/zlib.h -------------------------------------------------------------------------------- /engine/code/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/zutil.c -------------------------------------------------------------------------------- /engine/code/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/code/zlib/zutil.h -------------------------------------------------------------------------------- /engine/docs/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/COPYING.txt -------------------------------------------------------------------------------- /engine/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/ChangeLog -------------------------------------------------------------------------------- /engine/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/README.md -------------------------------------------------------------------------------- /engine/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/TODO -------------------------------------------------------------------------------- /engine/docs/autoupdater-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/autoupdater-readme.txt -------------------------------------------------------------------------------- /engine/docs/id-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/id-readme.txt -------------------------------------------------------------------------------- /engine/docs/md4-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/md4-readme.txt -------------------------------------------------------------------------------- /engine/docs/opengl2-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/opengl2-readme.md -------------------------------------------------------------------------------- /engine/docs/version_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/version_history.txt -------------------------------------------------------------------------------- /engine/docs/voip-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/docs/voip-readme.txt -------------------------------------------------------------------------------- /engine/make-linux-portable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/make-linux-portable.sh -------------------------------------------------------------------------------- /engine/make-macosx-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/make-macosx-app.sh -------------------------------------------------------------------------------- /engine/make-macosx-ub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/make-macosx-ub.sh -------------------------------------------------------------------------------- /engine/make-macosx-ub2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/make-macosx-ub2.sh -------------------------------------------------------------------------------- /engine/make-macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/make-macosx.sh -------------------------------------------------------------------------------- /engine/misc/ReadMe-OSX.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/ReadMe-OSX.rtf -------------------------------------------------------------------------------- /engine/misc/msvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/.gitignore -------------------------------------------------------------------------------- /engine/misc/msvc/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /engine/misc/msvc/cgame.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/cgame.vcproj -------------------------------------------------------------------------------- /engine/misc/msvc/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain -------------------------------------------------------------------------------- /engine/misc/msvc/game.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/game.vcproj -------------------------------------------------------------------------------- /engine/misc/msvc/glsl_stringify.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/glsl_stringify.vbs -------------------------------------------------------------------------------- /engine/misc/msvc/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/ioq3.sln -------------------------------------------------------------------------------- /engine/misc/msvc/opengl1.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/opengl1.vcproj -------------------------------------------------------------------------------- /engine/misc/msvc/opengl2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/opengl2.vcproj -------------------------------------------------------------------------------- /engine/misc/msvc/q3_ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /engine/misc/msvc/q3_ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/q3_ui.vcproj -------------------------------------------------------------------------------- /engine/misc/msvc/quake3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/quake3.vcproj -------------------------------------------------------------------------------- /engine/misc/msvc/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /engine/misc/msvc/ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc/ui.vcproj -------------------------------------------------------------------------------- /engine/misc/msvc10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc10/.gitignore -------------------------------------------------------------------------------- /engine/misc/msvc10/cgame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc10/cgame.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc10/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc10/game.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc10/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc10/ioq3.sln -------------------------------------------------------------------------------- /engine/misc/msvc10/q3_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc10/q3_ui.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc10/quake3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc10/quake3.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc10/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc10/ui.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc142/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/.gitignore -------------------------------------------------------------------------------- /engine/misc/msvc142/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /engine/misc/msvc142/cgame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/cgame.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc142/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain -------------------------------------------------------------------------------- /engine/misc/msvc142/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/game.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc142/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/ioq3.sln -------------------------------------------------------------------------------- /engine/misc/msvc142/opengl1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/opengl1.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc142/opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/opengl2.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc142/q3_ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /engine/misc/msvc142/q3_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/q3_ui.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc142/quake3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/quake3.vcxproj -------------------------------------------------------------------------------- /engine/misc/msvc142/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /engine/misc/msvc142/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/msvc142/ui.vcxproj -------------------------------------------------------------------------------- /engine/misc/nsis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/nsis/Makefile -------------------------------------------------------------------------------- /engine/misc/nsis/q3rally-q3ctc.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/nsis/q3rally-q3ctc.nsi -------------------------------------------------------------------------------- /engine/misc/nsis/q3rally.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/nsis/q3rally.nsi.in -------------------------------------------------------------------------------- /engine/misc/osxfe/ioquake3fe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/osxfe/ioquake3fe/main.m -------------------------------------------------------------------------------- /engine/misc/q3r_ded_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/q3r_ded_icon.ico -------------------------------------------------------------------------------- /engine/misc/q3r_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/q3r_icon.ico -------------------------------------------------------------------------------- /engine/misc/quake3-tango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/quake3-tango.png -------------------------------------------------------------------------------- /engine/misc/quake3-tango.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/quake3-tango.xcf -------------------------------------------------------------------------------- /engine/misc/quake3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/quake3.icns -------------------------------------------------------------------------------- /engine/misc/quake3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/quake3.ico -------------------------------------------------------------------------------- /engine/misc/quake3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/quake3.png -------------------------------------------------------------------------------- /engine/misc/quake3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/quake3.svg -------------------------------------------------------------------------------- /engine/misc/setup/MacOSX/SLA-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/MacOSX/SLA-dmg.sh -------------------------------------------------------------------------------- /engine/misc/setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/Makefile -------------------------------------------------------------------------------- /engine/misc/setup/Solaris_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/Solaris_pkg.sh -------------------------------------------------------------------------------- /engine/misc/setup/doit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/doit -------------------------------------------------------------------------------- /engine/misc/setup/pkg/ioq3ded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/pkg/ioq3ded.sh -------------------------------------------------------------------------------- /engine/misc/setup/pkg/ioquake3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/pkg/ioquake3.sh -------------------------------------------------------------------------------- /engine/misc/setup/pkg/ioquake3/space: -------------------------------------------------------------------------------- 1 | /usr/local/share 20000 15 2 | -------------------------------------------------------------------------------- /engine/misc/setup/pkg/ioquake3d/depend: -------------------------------------------------------------------------------- 1 | P SUNWxwplt X Window System platform software 2 | -------------------------------------------------------------------------------- /engine/misc/setup/pkg/ioquake3d/space: -------------------------------------------------------------------------------- 1 | /usr/local/share 50000 100 2 | -------------------------------------------------------------------------------- /engine/misc/setup/pkg/ioquake3m/depend: -------------------------------------------------------------------------------- 1 | P SUNWxwplt X Window System platform software 2 | -------------------------------------------------------------------------------- /engine/misc/setup/pkg/ioquake3m/space: -------------------------------------------------------------------------------- 1 | /usr/local/share 50000 100 2 | -------------------------------------------------------------------------------- /engine/misc/setup/preuninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/preuninstall.sh -------------------------------------------------------------------------------- /engine/misc/setup/q3rally.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/q3rally.desktop -------------------------------------------------------------------------------- /engine/misc/setup/q3rally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/q3rally.sh -------------------------------------------------------------------------------- /engine/misc/setup/setup.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/setup.xml.in -------------------------------------------------------------------------------- /engine/misc/setup/setup.xml.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/setup.xml.mod -------------------------------------------------------------------------------- /engine/misc/setup/slack-desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/slack-desc -------------------------------------------------------------------------------- /engine/misc/setup/splash.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/splash.xcf -------------------------------------------------------------------------------- /engine/misc/setup/splash.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/misc/setup/splash.xpm -------------------------------------------------------------------------------- /engine/resync_ioq3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/resync_ioq3.sh -------------------------------------------------------------------------------- /engine/ui/hud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/ui/hud.txt -------------------------------------------------------------------------------- /engine/ui/hud2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/ui/hud2.txt -------------------------------------------------------------------------------- /engine/ui/ingame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/ui/ingame.txt -------------------------------------------------------------------------------- /engine/ui/menudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/ui/menudef.h -------------------------------------------------------------------------------- /engine/ui/menus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/engine/ui/menus.txt -------------------------------------------------------------------------------- /ladder_service/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | ladder.db 3 | .venv/ 4 | -------------------------------------------------------------------------------- /ladder_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/ladder_service/README.md -------------------------------------------------------------------------------- /ladder_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/ladder_service/__init__.py -------------------------------------------------------------------------------- /ladder_service/ladder_service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ladder_service/ladder_service/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/ladder_service/ladder_service/db.py -------------------------------------------------------------------------------- /ladder_service/php_webservice/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.tmp 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /ladder_service/php_webservice/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ladder_service/php_webservice/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/ladder_service/php_webservice/de.png -------------------------------------------------------------------------------- /ladder_service/php_webservice/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/ladder_service/php_webservice/en.png -------------------------------------------------------------------------------- /ladder_service/php_webservice/version.txt: -------------------------------------------------------------------------------- 1 | v0.6 -------------------------------------------------------------------------------- /ladder_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/ladder_service/requirements.txt -------------------------------------------------------------------------------- /ladder_service/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/ladder_service/tests/test_api.py -------------------------------------------------------------------------------- /q3rallycode.ppr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/q3rallycode.ppr -------------------------------------------------------------------------------- /roadmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/roadmap.txt -------------------------------------------------------------------------------- /roadmap_0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/roadmap_0.5.txt -------------------------------------------------------------------------------- /run-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/run-debug.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/run.sh -------------------------------------------------------------------------------- /scoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/scoring.txt -------------------------------------------------------------------------------- /tests/clientuserinfochanged_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/clientuserinfochanged_test.c -------------------------------------------------------------------------------- /tests/ctf4_team_score_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/ctf4_team_score_test.c -------------------------------------------------------------------------------- /tests/ladder_json_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/ladder_json_test.c -------------------------------------------------------------------------------- /tests/rally_state_machine_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/rally_state_machine_test.c -------------------------------------------------------------------------------- /tests/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/server.h -------------------------------------------------------------------------------- /tests/test_clientuserinfochanged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/test_clientuserinfochanged.py -------------------------------------------------------------------------------- /tests/test_ctf4_team_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/test_ctf4_team_score.py -------------------------------------------------------------------------------- /tests/test_gametype_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/test_gametype_cli.py -------------------------------------------------------------------------------- /tests/test_ladder_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/test_ladder_json.py -------------------------------------------------------------------------------- /tests/test_rally_state_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q3Rally-Team/q3rally/HEAD/tests/test_rally_state_machine.py --------------------------------------------------------------------------------