├── .gitignore ├── .travis.yml ├── BUGS ├── COPYING.txt ├── ChangeLog ├── Makefile ├── Makefile.local ├── Makefile.smokinguns ├── NOTTODO ├── QIIIA Game Source License.doc ├── README.md ├── README.txt ├── SG_TODO ├── TODO ├── Unlagged.txt ├── VERSION_CONSTANT ├── code ├── AL │ ├── VERSION │ ├── al.h │ ├── alc.h │ ├── alext.h │ ├── efx-creative.h │ ├── efx-presets.h │ └── efx.h ├── SDL12 │ └── include │ │ ├── SDL.h │ │ ├── SDL_active.h │ │ ├── SDL_audio.h │ │ ├── SDL_byteorder.h │ │ ├── SDL_cdrom.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.default │ │ ├── SDL_config.h.in │ │ ├── SDL_config_dreamcast.h │ │ ├── SDL_config_macos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_nds.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_symbian.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_getenv.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_platform.h │ │ ├── SDL_quit.h │ │ ├── SDL_rwops.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ ├── close_code.h │ │ └── doxyfile ├── asm │ ├── ftola.asm │ ├── ftola.c │ ├── matha.s │ ├── qasm-inline.h │ ├── qasm.h │ ├── snapvector.asm │ ├── snapvector.c │ ├── snd_mixa.s │ └── vm_x86_64.asm ├── 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_consolecmds.c │ ├── cg_draw.c │ ├── cg_drawtools.c │ ├── cg_effects.c │ ├── cg_ents.c │ ├── cg_event.c │ ├── cg_info.c │ ├── cg_local.h │ ├── cg_localents.c │ ├── cg_main.c │ ├── cg_marks.c │ ├── cg_newdraw.c │ ├── cg_players.c │ ├── cg_playerstate.c │ ├── cg_predict.c │ ├── cg_public.h │ ├── cg_servercmds.c │ ├── cg_sg_utils.c │ ├── cg_snapshot.c │ ├── cg_syscalls.asm │ ├── cg_syscalls.c │ ├── cg_unlagged.c │ ├── cg_view.c │ └── cg_weapons.c ├── client │ ├── cl_avi.c │ ├── cl_cgame.c │ ├── cl_cin.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 │ ├── client.h │ ├── keycodes.h │ ├── keys.h │ ├── libmumblelink.c │ ├── libmumblelink.h │ ├── qal.c │ ├── qal.h │ ├── snd_adpcm.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 ├── 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_lib.c │ ├── bg_lib.h │ ├── bg_local.h │ ├── bg_misc.c │ ├── bg_pmove.c │ ├── bg_public.h │ ├── bg_slidemove.c │ ├── chars.h │ ├── g_active.c │ ├── g_bot.c │ ├── g_client.c │ ├── g_cmds.c │ ├── g_combat.c │ ├── g_hit.c │ ├── g_items.c │ ├── g_local.h │ ├── g_main.c │ ├── g_mem.c │ ├── g_misc.c │ ├── g_missile.c │ ├── g_mover.c │ ├── g_public.h │ ├── g_session.c │ ├── g_sg_utils.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_unlagged.c │ ├── g_utils.c │ ├── g_weapon.c │ ├── inv.h │ ├── match.h │ └── syn.h ├── 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 ├── libcurl-7.35.0 │ └── curl │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h ├── libogg-1.3.1 │ ├── include │ │ └── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ └── src │ │ ├── bitwise.c │ │ └── framing.c ├── libs │ ├── macosx │ │ ├── libSDL-1.2.0.dylib │ │ └── libSDLmain.a │ ├── win32 │ │ ├── SDL.dll │ │ ├── SDL.lib │ │ ├── SDLmain.lib │ │ ├── libSDL.a │ │ ├── libSDL.dll.a │ │ ├── libSDLmain.a │ │ └── libcurl.a │ └── win64 │ │ ├── SDL.lib │ │ ├── SDL64.dll │ │ ├── SDLmain.lib │ │ ├── libSDL64.a │ │ ├── libSDL64.dll.a │ │ ├── libSDL64main.a │ │ └── libcurl.a ├── libspeex │ ├── _kiss_fft_guts.h │ ├── arch.h │ ├── bits.c │ ├── buffer.c │ ├── cb_search.c │ ├── cb_search.h │ ├── cb_search_arm4.h │ ├── cb_search_bfin.h │ ├── cb_search_sse.h │ ├── config.h │ ├── echo_diagnostic.m │ ├── exc_10_16_table.c │ ├── exc_10_32_table.c │ ├── exc_20_32_table.c │ ├── exc_5_256_table.c │ ├── exc_5_64_table.c │ ├── exc_8_128_table.c │ ├── fftwrap.c │ ├── fftwrap.h │ ├── filterbank.c │ ├── filterbank.h │ ├── filters.c │ ├── filters.h │ ├── filters_arm4.h │ ├── filters_bfin.h │ ├── filters_sse.h │ ├── fixed_arm4.h │ ├── fixed_arm5e.h │ ├── fixed_bfin.h │ ├── fixed_debug.h │ ├── fixed_generic.h │ ├── gain_table.c │ ├── gain_table_lbr.c │ ├── hexc_10_32_table.c │ ├── hexc_table.c │ ├── high_lsp_tables.c │ ├── include │ │ └── speex │ │ │ ├── speex.h │ │ │ ├── speex_bits.h │ │ │ ├── speex_buffer.h │ │ │ ├── speex_callbacks.h │ │ │ ├── speex_config_types.h │ │ │ ├── speex_echo.h │ │ │ ├── speex_header.h │ │ │ ├── speex_jitter.h │ │ │ ├── speex_preprocess.h │ │ │ ├── speex_resampler.h │ │ │ ├── speex_stereo.h │ │ │ └── speex_types.h │ ├── jitter.c │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fftr.c │ ├── kiss_fftr.h │ ├── lpc.c │ ├── lpc.h │ ├── lpc_bfin.h │ ├── lsp.c │ ├── lsp.h │ ├── lsp_bfin.h │ ├── lsp_tables_nb.c │ ├── ltp.c │ ├── ltp.h │ ├── ltp_arm4.h │ ├── ltp_bfin.h │ ├── ltp_sse.h │ ├── math_approx.h │ ├── mdf.c │ ├── misc_bfin.h │ ├── modes.c │ ├── modes.h │ ├── modes_wb.c │ ├── nb_celp.c │ ├── nb_celp.h │ ├── os_support.h │ ├── preprocess.c │ ├── pseudofloat.h │ ├── quant_lsp.c │ ├── quant_lsp.h │ ├── quant_lsp_bfin.h │ ├── resample.c │ ├── sb_celp.c │ ├── sb_celp.h │ ├── smallft.c │ ├── smallft.h │ ├── speex.c │ ├── speex_callbacks.c │ ├── speex_header.c │ ├── stack_alloc.h │ ├── stereo.c │ ├── testdenoise.c │ ├── testecho.c │ ├── testenc.c │ ├── testenc_uwb.c │ ├── testenc_wb.c │ ├── vbr.c │ ├── vbr.h │ ├── vorbis_psy.h │ ├── vq.c │ ├── vq.h │ ├── vq_arm4.h │ ├── vq_bfin.h │ ├── vq_sse.h │ └── window.c ├── libvorbis-1.3.4 │ ├── 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.1 │ ├── celt │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── arm │ │ │ ├── arm2gnu.pl │ │ │ ├── arm_celt_map.c │ │ │ ├── armcpu.c │ │ │ ├── armcpu.h │ │ │ ├── armopts.s.in │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ ├── fixed_armv4.h │ │ │ ├── fixed_armv5e.h │ │ │ ├── kiss_fft_armv4.h │ │ │ ├── kiss_fft_armv5e.h │ │ │ └── pitch_arm.h │ │ ├── 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 │ │ ├── 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_float.h │ │ ├── vq.c │ │ ├── vq.h │ │ └── x86 │ │ │ └── pitch_sse.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_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_del_dec.c │ │ ├── PLC.c │ │ ├── PLC.h │ │ ├── SigProc_FIX.h │ │ ├── VAD.c │ │ ├── VQ_WMat_EC.c │ │ ├── ana_filt_bank_1.c │ │ ├── arm │ │ │ ├── SigProc_FIX_armv4.h │ │ │ ├── SigProc_FIX_armv5e.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 │ │ │ ├── prefilter_FIX.c │ │ │ ├── process_gains_FIX.c │ │ │ ├── regularize_correlations_FIX.c │ │ │ ├── residual_energy16_FIX.c │ │ │ ├── residual_energy_FIX.c │ │ │ ├── schur64_FIX.c │ │ │ ├── schur_FIX.c │ │ │ ├── solve_LS_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 │ │ │ ├── levinsondurbin_FLP.c │ │ │ ├── main_FLP.h │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ ├── prefilter_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 │ │ │ ├── solve_LS_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 │ │ ├── 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 │ └── 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.5 │ ├── include │ │ └── opusfile.h │ └── src │ │ ├── http.c │ │ ├── info.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── opusfile.c │ │ ├── stream.c │ │ ├── wincerts.c │ │ └── winerrno.h ├── 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 │ ├── md4.c │ ├── md5.c │ ├── msg.c │ ├── net_chan.c │ ├── net_ip.c │ ├── puff.c │ ├── puff.h │ ├── q_check.h │ ├── q_math.c │ ├── q_platform.h │ ├── q_shared.c │ ├── q_shared.h │ ├── qcommon.h │ ├── qfiles.h │ ├── sdk_shared.h │ ├── surfaceflags.h │ ├── unzip.c │ ├── unzip.h │ ├── vm.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_animation.c │ ├── tr_backend.c │ ├── tr_bsp.c │ ├── tr_cmds.c │ ├── tr_curve.c │ ├── tr_flares.c │ ├── tr_framebuffer.c │ ├── tr_glslprogs.c │ ├── tr_glslprogs.h │ ├── 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_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_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_main.c │ ├── sv_net_chan.c │ ├── sv_snapshot.c │ └── sv_world.c ├── sys │ ├── con_log.c │ ├── con_passive.c │ ├── con_tty.c │ ├── con_win32.c │ ├── sys_loadlib.h │ ├── sys_local.h │ ├── sys_main.c │ ├── sys_osx.m │ ├── sys_unix.c │ ├── sys_win32.c │ ├── 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 │ │ └── 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 ├── ui │ ├── ui_atoms.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 └── 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 ├── id-readme.txt ├── jenkins-ci-build.sh ├── make-macosx-app.sh ├── make-macosx-ub.sh ├── make-macosx.sh ├── md4-readme.txt ├── misc ├── msvc │ ├── clean.bat │ ├── glsl_stringify.vbs │ ├── ioq3.sln │ ├── opengl1.vcproj │ ├── opengl2.vcproj │ ├── vc8 │ │ ├── build_x64.bat │ │ ├── build_x86.bat │ │ ├── cgame.def │ │ ├── cgame.vcproj │ │ ├── game.def │ │ ├── game.vcproj │ │ ├── sg.sln │ │ ├── smokinguns.vcproj │ │ ├── ui.def │ │ └── ui.vcproj │ └── vc9 │ │ ├── build_x64.bat │ │ ├── build_x86.bat │ │ ├── cgame.def │ │ ├── cgame.vcproj │ │ ├── game.def │ │ ├── game.vcproj │ │ ├── sg.sln │ │ ├── smokinguns.vcproj │ │ ├── ui.def │ │ └── ui.vcproj ├── nsis │ └── ioquake3.nsi.in ├── quake3_flat.icns ├── quake3_flat.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── sdk │ └── sdk_diff.sh ├── server │ └── du_log4vsp.pl ├── setup │ ├── Makefile │ └── doit ├── smokinguns.icns ├── smokinguns.ico ├── smokinguns.png ├── smokinguns_legacy.ico ├── win32 │ ├── bin │ │ ├── bzip2.dll │ │ ├── q3asm.exe │ │ ├── q3cpp.exe │ │ ├── q3lcc.exe │ │ ├── q3rcc.exe │ │ └── zip.exe │ ├── buildvm.bat │ ├── cleanvm.bat │ └── hitfilemaker │ │ ├── 3dslib.c │ │ ├── 3dslib.h │ │ ├── compress.c │ │ ├── funcs.c │ │ ├── images.c │ │ ├── md3lib.c │ │ ├── md3lib.h │ │ ├── models.c │ │ ├── oldstuff.c │ │ ├── p3dlib.c │ │ ├── p3dlib.h │ │ ├── paking.c │ │ ├── polyset.c │ │ ├── q3data.c │ │ ├── q3data.dsp │ │ ├── q3data.dsw │ │ ├── q3data.h │ │ ├── stripper.c │ │ └── video.c └── xcode │ ├── botlib.xcodeproj │ └── project.pbxproj │ ├── cgame.xcodeproj │ └── project.pbxproj │ ├── game.xcodeproj │ └── project.pbxproj │ ├── ioquake3-Info.plist │ ├── ioquake3-Prefix.pch │ ├── ioquake3.xcodeproj │ └── project.pbxproj │ ├── ioquake3.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── all game.xcscheme │ │ └── all ioquake3.xcscheme │ ├── jpeg8.xcodeproj │ └── project.pbxproj │ ├── q3_ui.xcodeproj │ └── project.pbxproj │ ├── renderer_opengl1.xcodeproj │ └── project.pbxproj │ ├── renderer_opengl2.xcodeproj │ └── project.pbxproj │ ├── speex.xcodeproj │ └── project.pbxproj │ ├── ui.xcodeproj │ └── project.pbxproj │ └── xcode-readme.txt ├── opengl2-readme.txt ├── travis-ci-build.sh ├── ui ├── buymenu.menu ├── connect.menu ├── createserver.menu ├── demo.menu ├── hud.menu ├── hud.txt ├── ingame.menu ├── ingame.txt ├── ingame_about.menu ├── ingame_bots.menu ├── ingame_callvote.menu ├── ingame_controls.menu ├── ingame_join.menu ├── ingame_joinblue.menu ├── ingame_joinred.menu ├── ingame_leave.menu ├── ingame_options.menu ├── ingame_player.menu ├── ingame_system.menu ├── ingame_vote.menu ├── joinserver.menu ├── main.menu ├── menudef.h ├── menus.txt ├── pop_createfavorite.menu ├── pop_error.menu ├── pop_findplayer.menu ├── pop_multiplayer.menu ├── pop_password.menu ├── pop_quit.menu ├── pop_serverinfo.menu ├── pop_sound_restart.menu ├── pop_specify.menu ├── pop_vid_restart.menu ├── quitcredit.menu ├── score.menu ├── settings.menu ├── settings_controls.menu ├── settings_default.menu ├── settings_options.menu ├── settings_player.menu ├── settings_system.menu ├── skirmish.menu └── teamscore.menu └── voip-readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/COPYING.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/Makefile.local -------------------------------------------------------------------------------- /Makefile.smokinguns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/Makefile.smokinguns -------------------------------------------------------------------------------- /NOTTODO: -------------------------------------------------------------------------------- 1 | http://wiki.ioquake3.org/NotToDo 2 | -------------------------------------------------------------------------------- /QIIIA Game Source License.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/QIIIA Game Source License.doc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/README.txt -------------------------------------------------------------------------------- /SG_TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/SG_TODO -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/TODO -------------------------------------------------------------------------------- /Unlagged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/Unlagged.txt -------------------------------------------------------------------------------- /VERSION_CONSTANT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/VERSION_CONSTANT -------------------------------------------------------------------------------- /code/AL/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/AL/VERSION -------------------------------------------------------------------------------- /code/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/AL/al.h -------------------------------------------------------------------------------- /code/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/AL/alc.h -------------------------------------------------------------------------------- /code/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/AL/alext.h -------------------------------------------------------------------------------- /code/AL/efx-creative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/AL/efx-creative.h -------------------------------------------------------------------------------- /code/AL/efx-presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/AL/efx-presets.h -------------------------------------------------------------------------------- /code/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/AL/efx.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_active.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_audio.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_byteorder.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_cdrom.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_config.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_config.h.in -------------------------------------------------------------------------------- /code/SDL12/include/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_config_nds.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_config_os2.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_copying.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_endian.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_error.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_events.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_getenv.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_joystick.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_keyboard.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_keysym.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_loadso.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_main.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_mouse.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_mutex.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_name.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_opengl.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_platform.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_quit.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_rwops.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_stdinc.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_syswm.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_thread.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_timer.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_types.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_version.h -------------------------------------------------------------------------------- /code/SDL12/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/SDL_video.h -------------------------------------------------------------------------------- /code/SDL12/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/begin_code.h -------------------------------------------------------------------------------- /code/SDL12/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/close_code.h -------------------------------------------------------------------------------- /code/SDL12/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/SDL12/include/doxyfile -------------------------------------------------------------------------------- /code/asm/ftola.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/ftola.asm -------------------------------------------------------------------------------- /code/asm/ftola.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/ftola.c -------------------------------------------------------------------------------- /code/asm/matha.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/matha.s -------------------------------------------------------------------------------- /code/asm/qasm-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/qasm-inline.h -------------------------------------------------------------------------------- /code/asm/qasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/qasm.h -------------------------------------------------------------------------------- /code/asm/snapvector.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/snapvector.asm -------------------------------------------------------------------------------- /code/asm/snapvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/snapvector.c -------------------------------------------------------------------------------- /code/asm/snd_mixa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/snd_mixa.s -------------------------------------------------------------------------------- /code/asm/vm_x86_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/asm/vm_x86_64.asm -------------------------------------------------------------------------------- /code/botlib/aasfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/aasfile.h -------------------------------------------------------------------------------- /code/botlib/be_aas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas.h -------------------------------------------------------------------------------- /code/botlib/be_aas_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_bsp.h -------------------------------------------------------------------------------- /code/botlib/be_aas_bspq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_bspq3.c -------------------------------------------------------------------------------- /code/botlib/be_aas_cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_cluster.c -------------------------------------------------------------------------------- /code/botlib/be_aas_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_cluster.h -------------------------------------------------------------------------------- /code/botlib/be_aas_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_debug.c -------------------------------------------------------------------------------- /code/botlib/be_aas_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_debug.h -------------------------------------------------------------------------------- /code/botlib/be_aas_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_def.h -------------------------------------------------------------------------------- /code/botlib/be_aas_entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_entity.c -------------------------------------------------------------------------------- /code/botlib/be_aas_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_entity.h -------------------------------------------------------------------------------- /code/botlib/be_aas_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_file.c -------------------------------------------------------------------------------- /code/botlib/be_aas_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_file.h -------------------------------------------------------------------------------- /code/botlib/be_aas_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_funcs.h -------------------------------------------------------------------------------- /code/botlib/be_aas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_main.c -------------------------------------------------------------------------------- /code/botlib/be_aas_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_main.h -------------------------------------------------------------------------------- /code/botlib/be_aas_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_move.c -------------------------------------------------------------------------------- /code/botlib/be_aas_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_move.h -------------------------------------------------------------------------------- /code/botlib/be_aas_optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_optimize.c -------------------------------------------------------------------------------- /code/botlib/be_aas_optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_optimize.h -------------------------------------------------------------------------------- /code/botlib/be_aas_reach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_reach.c -------------------------------------------------------------------------------- /code/botlib/be_aas_reach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_reach.h -------------------------------------------------------------------------------- /code/botlib/be_aas_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_route.c -------------------------------------------------------------------------------- /code/botlib/be_aas_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_route.h -------------------------------------------------------------------------------- /code/botlib/be_aas_routealt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_routealt.c -------------------------------------------------------------------------------- /code/botlib/be_aas_routealt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_routealt.h -------------------------------------------------------------------------------- /code/botlib/be_aas_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_sample.c -------------------------------------------------------------------------------- /code/botlib/be_aas_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_aas_sample.h -------------------------------------------------------------------------------- /code/botlib/be_ai_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_char.c -------------------------------------------------------------------------------- /code/botlib/be_ai_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_char.h -------------------------------------------------------------------------------- /code/botlib/be_ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_chat.c -------------------------------------------------------------------------------- /code/botlib/be_ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_chat.h -------------------------------------------------------------------------------- /code/botlib/be_ai_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_gen.c -------------------------------------------------------------------------------- /code/botlib/be_ai_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_gen.h -------------------------------------------------------------------------------- /code/botlib/be_ai_goal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_goal.c -------------------------------------------------------------------------------- /code/botlib/be_ai_goal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_goal.h -------------------------------------------------------------------------------- /code/botlib/be_ai_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_move.c -------------------------------------------------------------------------------- /code/botlib/be_ai_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_move.h -------------------------------------------------------------------------------- /code/botlib/be_ai_weap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_weap.c -------------------------------------------------------------------------------- /code/botlib/be_ai_weap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_weap.h -------------------------------------------------------------------------------- /code/botlib/be_ai_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_weight.c -------------------------------------------------------------------------------- /code/botlib/be_ai_weight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ai_weight.h -------------------------------------------------------------------------------- /code/botlib/be_ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ea.c -------------------------------------------------------------------------------- /code/botlib/be_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_ea.h -------------------------------------------------------------------------------- /code/botlib/be_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_interface.c -------------------------------------------------------------------------------- /code/botlib/be_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/be_interface.h -------------------------------------------------------------------------------- /code/botlib/botlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/botlib.h -------------------------------------------------------------------------------- /code/botlib/l_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_crc.c -------------------------------------------------------------------------------- /code/botlib/l_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_crc.h -------------------------------------------------------------------------------- /code/botlib/l_libvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_libvar.c -------------------------------------------------------------------------------- /code/botlib/l_libvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_libvar.h -------------------------------------------------------------------------------- /code/botlib/l_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_log.c -------------------------------------------------------------------------------- /code/botlib/l_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_log.h -------------------------------------------------------------------------------- /code/botlib/l_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_memory.c -------------------------------------------------------------------------------- /code/botlib/l_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_memory.h -------------------------------------------------------------------------------- /code/botlib/l_precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_precomp.c -------------------------------------------------------------------------------- /code/botlib/l_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_precomp.h -------------------------------------------------------------------------------- /code/botlib/l_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_script.c -------------------------------------------------------------------------------- /code/botlib/l_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_script.h -------------------------------------------------------------------------------- /code/botlib/l_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_struct.c -------------------------------------------------------------------------------- /code/botlib/l_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_struct.h -------------------------------------------------------------------------------- /code/botlib/l_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/botlib/l_utils.h -------------------------------------------------------------------------------- /code/cgame/cg_consolecmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_consolecmds.c -------------------------------------------------------------------------------- /code/cgame/cg_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_draw.c -------------------------------------------------------------------------------- /code/cgame/cg_drawtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_drawtools.c -------------------------------------------------------------------------------- /code/cgame/cg_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_effects.c -------------------------------------------------------------------------------- /code/cgame/cg_ents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_ents.c -------------------------------------------------------------------------------- /code/cgame/cg_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_event.c -------------------------------------------------------------------------------- /code/cgame/cg_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_info.c -------------------------------------------------------------------------------- /code/cgame/cg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_local.h -------------------------------------------------------------------------------- /code/cgame/cg_localents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_localents.c -------------------------------------------------------------------------------- /code/cgame/cg_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_main.c -------------------------------------------------------------------------------- /code/cgame/cg_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_marks.c -------------------------------------------------------------------------------- /code/cgame/cg_newdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_newdraw.c -------------------------------------------------------------------------------- /code/cgame/cg_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_players.c -------------------------------------------------------------------------------- /code/cgame/cg_playerstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_playerstate.c -------------------------------------------------------------------------------- /code/cgame/cg_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_predict.c -------------------------------------------------------------------------------- /code/cgame/cg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_public.h -------------------------------------------------------------------------------- /code/cgame/cg_servercmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_servercmds.c -------------------------------------------------------------------------------- /code/cgame/cg_sg_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_sg_utils.c -------------------------------------------------------------------------------- /code/cgame/cg_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_snapshot.c -------------------------------------------------------------------------------- /code/cgame/cg_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_syscalls.asm -------------------------------------------------------------------------------- /code/cgame/cg_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_syscalls.c -------------------------------------------------------------------------------- /code/cgame/cg_unlagged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_unlagged.c -------------------------------------------------------------------------------- /code/cgame/cg_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_view.c -------------------------------------------------------------------------------- /code/cgame/cg_weapons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/cgame/cg_weapons.c -------------------------------------------------------------------------------- /code/client/cl_avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_avi.c -------------------------------------------------------------------------------- /code/client/cl_cgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_cgame.c -------------------------------------------------------------------------------- /code/client/cl_cin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_cin.c -------------------------------------------------------------------------------- /code/client/cl_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_console.c -------------------------------------------------------------------------------- /code/client/cl_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_curl.c -------------------------------------------------------------------------------- /code/client/cl_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_curl.h -------------------------------------------------------------------------------- /code/client/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_input.c -------------------------------------------------------------------------------- /code/client/cl_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_keys.c -------------------------------------------------------------------------------- /code/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_main.c -------------------------------------------------------------------------------- /code/client/cl_net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_net_chan.c -------------------------------------------------------------------------------- /code/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_parse.c -------------------------------------------------------------------------------- /code/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_scrn.c -------------------------------------------------------------------------------- /code/client/cl_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/cl_ui.c -------------------------------------------------------------------------------- /code/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/client.h -------------------------------------------------------------------------------- /code/client/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/keycodes.h -------------------------------------------------------------------------------- /code/client/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/keys.h -------------------------------------------------------------------------------- /code/client/libmumblelink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/libmumblelink.c -------------------------------------------------------------------------------- /code/client/libmumblelink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/libmumblelink.h -------------------------------------------------------------------------------- /code/client/qal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/qal.c -------------------------------------------------------------------------------- /code/client/qal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/qal.h -------------------------------------------------------------------------------- /code/client/snd_adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_adpcm.c -------------------------------------------------------------------------------- /code/client/snd_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_codec.c -------------------------------------------------------------------------------- /code/client/snd_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_codec.h -------------------------------------------------------------------------------- /code/client/snd_codec_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_codec_ogg.c -------------------------------------------------------------------------------- /code/client/snd_codec_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_codec_opus.c -------------------------------------------------------------------------------- /code/client/snd_codec_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_codec_wav.c -------------------------------------------------------------------------------- /code/client/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_dma.c -------------------------------------------------------------------------------- /code/client/snd_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_local.h -------------------------------------------------------------------------------- /code/client/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_main.c -------------------------------------------------------------------------------- /code/client/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_mem.c -------------------------------------------------------------------------------- /code/client/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_mix.c -------------------------------------------------------------------------------- /code/client/snd_openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_openal.c -------------------------------------------------------------------------------- /code/client/snd_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_public.h -------------------------------------------------------------------------------- /code/client/snd_wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/client/snd_wavelet.c -------------------------------------------------------------------------------- /code/game/ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_chat.c -------------------------------------------------------------------------------- /code/game/ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_chat.h -------------------------------------------------------------------------------- /code/game/ai_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_cmd.c -------------------------------------------------------------------------------- /code/game/ai_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_cmd.h -------------------------------------------------------------------------------- /code/game/ai_dmnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_dmnet.c -------------------------------------------------------------------------------- /code/game/ai_dmnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_dmnet.h -------------------------------------------------------------------------------- /code/game/ai_dmq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_dmq3.c -------------------------------------------------------------------------------- /code/game/ai_dmq3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_dmq3.h -------------------------------------------------------------------------------- /code/game/ai_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_main.c -------------------------------------------------------------------------------- /code/game/ai_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_main.h -------------------------------------------------------------------------------- /code/game/ai_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_team.c -------------------------------------------------------------------------------- /code/game/ai_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_team.h -------------------------------------------------------------------------------- /code/game/ai_vcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_vcmd.c -------------------------------------------------------------------------------- /code/game/ai_vcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/ai_vcmd.h -------------------------------------------------------------------------------- /code/game/bg_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/bg_lib.c -------------------------------------------------------------------------------- /code/game/bg_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/bg_lib.h -------------------------------------------------------------------------------- /code/game/bg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/bg_local.h -------------------------------------------------------------------------------- /code/game/bg_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/bg_misc.c -------------------------------------------------------------------------------- /code/game/bg_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/bg_pmove.c -------------------------------------------------------------------------------- /code/game/bg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/bg_public.h -------------------------------------------------------------------------------- /code/game/bg_slidemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/bg_slidemove.c -------------------------------------------------------------------------------- /code/game/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/chars.h -------------------------------------------------------------------------------- /code/game/g_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_active.c -------------------------------------------------------------------------------- /code/game/g_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_bot.c -------------------------------------------------------------------------------- /code/game/g_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_client.c -------------------------------------------------------------------------------- /code/game/g_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_cmds.c -------------------------------------------------------------------------------- /code/game/g_combat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_combat.c -------------------------------------------------------------------------------- /code/game/g_hit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_hit.c -------------------------------------------------------------------------------- /code/game/g_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_items.c -------------------------------------------------------------------------------- /code/game/g_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_local.h -------------------------------------------------------------------------------- /code/game/g_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_main.c -------------------------------------------------------------------------------- /code/game/g_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_mem.c -------------------------------------------------------------------------------- /code/game/g_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_misc.c -------------------------------------------------------------------------------- /code/game/g_missile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_missile.c -------------------------------------------------------------------------------- /code/game/g_mover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_mover.c -------------------------------------------------------------------------------- /code/game/g_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_public.h -------------------------------------------------------------------------------- /code/game/g_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_session.c -------------------------------------------------------------------------------- /code/game/g_sg_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_sg_utils.c -------------------------------------------------------------------------------- /code/game/g_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_spawn.c -------------------------------------------------------------------------------- /code/game/g_svcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_svcmds.c -------------------------------------------------------------------------------- /code/game/g_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_syscalls.asm -------------------------------------------------------------------------------- /code/game/g_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_syscalls.c -------------------------------------------------------------------------------- /code/game/g_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_target.c -------------------------------------------------------------------------------- /code/game/g_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_team.c -------------------------------------------------------------------------------- /code/game/g_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_team.h -------------------------------------------------------------------------------- /code/game/g_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_trigger.c -------------------------------------------------------------------------------- /code/game/g_unlagged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_unlagged.c -------------------------------------------------------------------------------- /code/game/g_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_utils.c -------------------------------------------------------------------------------- /code/game/g_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/g_weapon.c -------------------------------------------------------------------------------- /code/game/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/inv.h -------------------------------------------------------------------------------- /code/game/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/match.h -------------------------------------------------------------------------------- /code/game/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/game/syn.h -------------------------------------------------------------------------------- /code/jpeg-8c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/README -------------------------------------------------------------------------------- /code/jpeg-8c/ioquake3-changes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/ioquake3-changes.diff -------------------------------------------------------------------------------- /code/jpeg-8c/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jaricom.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcapimin.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcapistd.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcarith.c -------------------------------------------------------------------------------- /code/jpeg-8c/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jccoefct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jccolor.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcdctmgr.c -------------------------------------------------------------------------------- /code/jpeg-8c/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jchuff.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcinit.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcmainct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcmarker.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcmaster.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcomapi.c -------------------------------------------------------------------------------- /code/jpeg-8c/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jconfig.h -------------------------------------------------------------------------------- /code/jpeg-8c/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcparam.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcprepct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jcsample.c -------------------------------------------------------------------------------- /code/jpeg-8c/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jctrans.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdapimin.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdapistd.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdarith.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdatadst.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdatasrc.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdcoefct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdcolor.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdct.h -------------------------------------------------------------------------------- /code/jpeg-8c/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jddctmgr.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdhuff.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdinput.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdmainct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdmarker.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdmaster.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdmerge.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdpostct.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdsample.c -------------------------------------------------------------------------------- /code/jpeg-8c/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jdtrans.c -------------------------------------------------------------------------------- /code/jpeg-8c/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jerror.c -------------------------------------------------------------------------------- /code/jpeg-8c/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jerror.h -------------------------------------------------------------------------------- /code/jpeg-8c/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jfdctflt.c -------------------------------------------------------------------------------- /code/jpeg-8c/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jfdctfst.c -------------------------------------------------------------------------------- /code/jpeg-8c/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jfdctint.c -------------------------------------------------------------------------------- /code/jpeg-8c/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jidctflt.c -------------------------------------------------------------------------------- /code/jpeg-8c/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jidctfst.c -------------------------------------------------------------------------------- /code/jpeg-8c/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jidctint.c -------------------------------------------------------------------------------- /code/jpeg-8c/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jinclude.h -------------------------------------------------------------------------------- /code/jpeg-8c/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jmemmgr.c -------------------------------------------------------------------------------- /code/jpeg-8c/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jmemnobs.c -------------------------------------------------------------------------------- /code/jpeg-8c/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jmemsys.h -------------------------------------------------------------------------------- /code/jpeg-8c/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jmorecfg.h -------------------------------------------------------------------------------- /code/jpeg-8c/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jpegint.h -------------------------------------------------------------------------------- /code/jpeg-8c/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jpeglib.h -------------------------------------------------------------------------------- /code/jpeg-8c/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jquant1.c -------------------------------------------------------------------------------- /code/jpeg-8c/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jquant2.c -------------------------------------------------------------------------------- /code/jpeg-8c/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jutils.c -------------------------------------------------------------------------------- /code/jpeg-8c/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/jpeg-8c/jversion.h -------------------------------------------------------------------------------- /code/libcurl-7.35.0/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libcurl-7.35.0/curl/curl.h -------------------------------------------------------------------------------- /code/libcurl-7.35.0/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libcurl-7.35.0/curl/curlver.h -------------------------------------------------------------------------------- /code/libcurl-7.35.0/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libcurl-7.35.0/curl/easy.h -------------------------------------------------------------------------------- /code/libcurl-7.35.0/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libcurl-7.35.0/curl/mprintf.h -------------------------------------------------------------------------------- /code/libcurl-7.35.0/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libcurl-7.35.0/curl/multi.h -------------------------------------------------------------------------------- /code/libogg-1.3.1/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libogg-1.3.1/include/ogg/ogg.h -------------------------------------------------------------------------------- /code/libogg-1.3.1/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libogg-1.3.1/src/bitwise.c -------------------------------------------------------------------------------- /code/libogg-1.3.1/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libogg-1.3.1/src/framing.c -------------------------------------------------------------------------------- /code/libs/macosx/libSDL-1.2.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/macosx/libSDL-1.2.0.dylib -------------------------------------------------------------------------------- /code/libs/macosx/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/macosx/libSDLmain.a -------------------------------------------------------------------------------- /code/libs/win32/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win32/SDL.dll -------------------------------------------------------------------------------- /code/libs/win32/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win32/SDL.lib -------------------------------------------------------------------------------- /code/libs/win32/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win32/SDLmain.lib -------------------------------------------------------------------------------- /code/libs/win32/libSDL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win32/libSDL.a -------------------------------------------------------------------------------- /code/libs/win32/libSDL.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win32/libSDL.dll.a -------------------------------------------------------------------------------- /code/libs/win32/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win32/libSDLmain.a -------------------------------------------------------------------------------- /code/libs/win32/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win32/libcurl.a -------------------------------------------------------------------------------- /code/libs/win64/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win64/SDL.lib -------------------------------------------------------------------------------- /code/libs/win64/SDL64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win64/SDL64.dll -------------------------------------------------------------------------------- /code/libs/win64/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win64/SDLmain.lib -------------------------------------------------------------------------------- /code/libs/win64/libSDL64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win64/libSDL64.a -------------------------------------------------------------------------------- /code/libs/win64/libSDL64.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win64/libSDL64.dll.a -------------------------------------------------------------------------------- /code/libs/win64/libSDL64main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win64/libSDL64main.a -------------------------------------------------------------------------------- /code/libs/win64/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libs/win64/libcurl.a -------------------------------------------------------------------------------- /code/libspeex/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/_kiss_fft_guts.h -------------------------------------------------------------------------------- /code/libspeex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/arch.h -------------------------------------------------------------------------------- /code/libspeex/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/bits.c -------------------------------------------------------------------------------- /code/libspeex/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/buffer.c -------------------------------------------------------------------------------- /code/libspeex/cb_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/cb_search.c -------------------------------------------------------------------------------- /code/libspeex/cb_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/cb_search.h -------------------------------------------------------------------------------- /code/libspeex/cb_search_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/cb_search_arm4.h -------------------------------------------------------------------------------- /code/libspeex/cb_search_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/cb_search_bfin.h -------------------------------------------------------------------------------- /code/libspeex/cb_search_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/cb_search_sse.h -------------------------------------------------------------------------------- /code/libspeex/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/config.h -------------------------------------------------------------------------------- /code/libspeex/echo_diagnostic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/echo_diagnostic.m -------------------------------------------------------------------------------- /code/libspeex/exc_10_16_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/exc_10_16_table.c -------------------------------------------------------------------------------- /code/libspeex/exc_10_32_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/exc_10_32_table.c -------------------------------------------------------------------------------- /code/libspeex/exc_20_32_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/exc_20_32_table.c -------------------------------------------------------------------------------- /code/libspeex/exc_5_256_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/exc_5_256_table.c -------------------------------------------------------------------------------- /code/libspeex/exc_5_64_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/exc_5_64_table.c -------------------------------------------------------------------------------- /code/libspeex/exc_8_128_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/exc_8_128_table.c -------------------------------------------------------------------------------- /code/libspeex/fftwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/fftwrap.c -------------------------------------------------------------------------------- /code/libspeex/fftwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/fftwrap.h -------------------------------------------------------------------------------- /code/libspeex/filterbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/filterbank.c -------------------------------------------------------------------------------- /code/libspeex/filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/filterbank.h -------------------------------------------------------------------------------- /code/libspeex/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/filters.c -------------------------------------------------------------------------------- /code/libspeex/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/filters.h -------------------------------------------------------------------------------- /code/libspeex/filters_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/filters_arm4.h -------------------------------------------------------------------------------- /code/libspeex/filters_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/filters_bfin.h -------------------------------------------------------------------------------- /code/libspeex/filters_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/filters_sse.h -------------------------------------------------------------------------------- /code/libspeex/fixed_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/fixed_arm4.h -------------------------------------------------------------------------------- /code/libspeex/fixed_arm5e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/fixed_arm5e.h -------------------------------------------------------------------------------- /code/libspeex/fixed_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/fixed_bfin.h -------------------------------------------------------------------------------- /code/libspeex/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/fixed_debug.h -------------------------------------------------------------------------------- /code/libspeex/fixed_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/fixed_generic.h -------------------------------------------------------------------------------- /code/libspeex/gain_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/gain_table.c -------------------------------------------------------------------------------- /code/libspeex/gain_table_lbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/gain_table_lbr.c -------------------------------------------------------------------------------- /code/libspeex/hexc_10_32_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/hexc_10_32_table.c -------------------------------------------------------------------------------- /code/libspeex/hexc_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/hexc_table.c -------------------------------------------------------------------------------- /code/libspeex/high_lsp_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/high_lsp_tables.c -------------------------------------------------------------------------------- /code/libspeex/include/speex/speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/include/speex/speex.h -------------------------------------------------------------------------------- /code/libspeex/jitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/jitter.c -------------------------------------------------------------------------------- /code/libspeex/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/kiss_fft.c -------------------------------------------------------------------------------- /code/libspeex/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/kiss_fft.h -------------------------------------------------------------------------------- /code/libspeex/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/kiss_fftr.c -------------------------------------------------------------------------------- /code/libspeex/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/kiss_fftr.h -------------------------------------------------------------------------------- /code/libspeex/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/lpc.c -------------------------------------------------------------------------------- /code/libspeex/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/lpc.h -------------------------------------------------------------------------------- /code/libspeex/lpc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/lpc_bfin.h -------------------------------------------------------------------------------- /code/libspeex/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/lsp.c -------------------------------------------------------------------------------- /code/libspeex/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/lsp.h -------------------------------------------------------------------------------- /code/libspeex/lsp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/lsp_bfin.h -------------------------------------------------------------------------------- /code/libspeex/lsp_tables_nb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/lsp_tables_nb.c -------------------------------------------------------------------------------- /code/libspeex/ltp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/ltp.c -------------------------------------------------------------------------------- /code/libspeex/ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/ltp.h -------------------------------------------------------------------------------- /code/libspeex/ltp_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/ltp_arm4.h -------------------------------------------------------------------------------- /code/libspeex/ltp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/ltp_bfin.h -------------------------------------------------------------------------------- /code/libspeex/ltp_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/ltp_sse.h -------------------------------------------------------------------------------- /code/libspeex/math_approx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/math_approx.h -------------------------------------------------------------------------------- /code/libspeex/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/mdf.c -------------------------------------------------------------------------------- /code/libspeex/misc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/misc_bfin.h -------------------------------------------------------------------------------- /code/libspeex/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/modes.c -------------------------------------------------------------------------------- /code/libspeex/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/modes.h -------------------------------------------------------------------------------- /code/libspeex/modes_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/modes_wb.c -------------------------------------------------------------------------------- /code/libspeex/nb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/nb_celp.c -------------------------------------------------------------------------------- /code/libspeex/nb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/nb_celp.h -------------------------------------------------------------------------------- /code/libspeex/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/os_support.h -------------------------------------------------------------------------------- /code/libspeex/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/preprocess.c -------------------------------------------------------------------------------- /code/libspeex/pseudofloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/pseudofloat.h -------------------------------------------------------------------------------- /code/libspeex/quant_lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/quant_lsp.c -------------------------------------------------------------------------------- /code/libspeex/quant_lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/quant_lsp.h -------------------------------------------------------------------------------- /code/libspeex/quant_lsp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/quant_lsp_bfin.h -------------------------------------------------------------------------------- /code/libspeex/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/resample.c -------------------------------------------------------------------------------- /code/libspeex/sb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/sb_celp.c -------------------------------------------------------------------------------- /code/libspeex/sb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/sb_celp.h -------------------------------------------------------------------------------- /code/libspeex/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/smallft.c -------------------------------------------------------------------------------- /code/libspeex/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/smallft.h -------------------------------------------------------------------------------- /code/libspeex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/speex.c -------------------------------------------------------------------------------- /code/libspeex/speex_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/speex_callbacks.c -------------------------------------------------------------------------------- /code/libspeex/speex_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/speex_header.c -------------------------------------------------------------------------------- /code/libspeex/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/stack_alloc.h -------------------------------------------------------------------------------- /code/libspeex/stereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/stereo.c -------------------------------------------------------------------------------- /code/libspeex/testdenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/testdenoise.c -------------------------------------------------------------------------------- /code/libspeex/testecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/testecho.c -------------------------------------------------------------------------------- /code/libspeex/testenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/testenc.c -------------------------------------------------------------------------------- /code/libspeex/testenc_uwb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/testenc_uwb.c -------------------------------------------------------------------------------- /code/libspeex/testenc_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/testenc_wb.c -------------------------------------------------------------------------------- /code/libspeex/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vbr.c -------------------------------------------------------------------------------- /code/libspeex/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vbr.h -------------------------------------------------------------------------------- /code/libspeex/vorbis_psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vorbis_psy.h -------------------------------------------------------------------------------- /code/libspeex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vq.c -------------------------------------------------------------------------------- /code/libspeex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vq.h -------------------------------------------------------------------------------- /code/libspeex/vq_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vq_arm4.h -------------------------------------------------------------------------------- /code/libspeex/vq_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vq_bfin.h -------------------------------------------------------------------------------- /code/libspeex/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/vq_sse.h -------------------------------------------------------------------------------- /code/libspeex/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libspeex/window.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/analysis.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/backends.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/bitrate.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/bitrate.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/block.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/codebook.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/codebook.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/envelope.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/envelope.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/floor0.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/floor1.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/info.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/lpc.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/lpc.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/lsp.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/lsp.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/mdct.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/mdct.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/misc.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/os.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/psy.c -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/psy.h -------------------------------------------------------------------------------- /code/libvorbis-1.3.4/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/libvorbis-1.3.4/lib/res0.c -------------------------------------------------------------------------------- /code/null/mac_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/null/mac_net.c -------------------------------------------------------------------------------- /code/null/null_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/null/null_client.c -------------------------------------------------------------------------------- /code/null/null_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/null/null_glimp.c -------------------------------------------------------------------------------- /code/null/null_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/null/null_input.c -------------------------------------------------------------------------------- /code/null/null_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/null/null_main.c -------------------------------------------------------------------------------- /code/null/null_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/null/null_net.c -------------------------------------------------------------------------------- /code/null/null_snddma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/null/null_snddma.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/arch.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/arm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/arm/armcpu.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/arm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/arm/armcpu.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/bands.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/bands.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/celt.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/celt.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/celt_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/celt_lpc.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/celt_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/celt_lpc.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/cpu_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/cpu_support.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/cwrs.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/cwrs.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/ecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/ecintrin.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/entcode.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/entcode.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/entdec.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/entdec.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/entenc.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/entenc.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/fixed_debug.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/float_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/float_cast.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/kiss_fft.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/kiss_fft.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/laplace.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/laplace.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/mathops.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/mathops.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/mdct.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/mdct.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/mfrngcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/mfrngcod.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/modes.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/modes.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/os_support.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/pitch.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/pitch.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/quant_bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/quant_bands.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/quant_bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/quant_bands.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/rate.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/rate.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/stack_alloc.h -------------------------------------------------------------------------------- /code/opus-1.1/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/vq.c -------------------------------------------------------------------------------- /code/opus-1.1/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/celt/vq.h -------------------------------------------------------------------------------- /code/opus-1.1/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/include/opus.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/A2NLSF.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/API.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/CNG.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/Inlines.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/MacroCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/MacroCount.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/MacroDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/MacroDebug.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/NLSF2A.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/NLSF_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/NLSF_decode.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/NLSF_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/NLSF_encode.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/NLSF_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/NLSF_unpack.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/NSQ.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/NSQ_del_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/NSQ_del_dec.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/PLC.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/PLC.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/SigProc_FIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/SigProc_FIX.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/VAD.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/VQ_WMat_EC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/VQ_WMat_EC.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/biquad_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/biquad_alt.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/bwexpander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/bwexpander.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/code_signs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/code_signs.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/control.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/control_SNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/control_SNR.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/debug.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/debug.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/dec_API.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/decode_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/decode_core.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/define.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/enc_API.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/errors.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/gain_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/gain_quant.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/interpolate.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/lin2log.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/log2lin.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/macros.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/main.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/resampler.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/shell_coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/shell_coder.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/sigm_Q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/sigm_Q15.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/sort.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/structs.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/tables.h -------------------------------------------------------------------------------- /code/opus-1.1/silk/tables_LTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/tables_LTP.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/tables_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/tables_gain.c -------------------------------------------------------------------------------- /code/opus-1.1/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/silk/typedef.h -------------------------------------------------------------------------------- /code/opus-1.1/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/analysis.c -------------------------------------------------------------------------------- /code/opus-1.1/src/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/analysis.h -------------------------------------------------------------------------------- /code/opus-1.1/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/mlp.c -------------------------------------------------------------------------------- /code/opus-1.1/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/mlp.h -------------------------------------------------------------------------------- /code/opus-1.1/src/mlp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/mlp_data.c -------------------------------------------------------------------------------- /code/opus-1.1/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/opus.c -------------------------------------------------------------------------------- /code/opus-1.1/src/opus_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/opus_decoder.c -------------------------------------------------------------------------------- /code/opus-1.1/src/opus_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/opus_encoder.c -------------------------------------------------------------------------------- /code/opus-1.1/src/opus_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/opus_private.h -------------------------------------------------------------------------------- /code/opus-1.1/src/repacketizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/repacketizer.c -------------------------------------------------------------------------------- /code/opus-1.1/src/tansig_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opus-1.1/src/tansig_table.h -------------------------------------------------------------------------------- /code/opusfile-0.5/src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/http.c -------------------------------------------------------------------------------- /code/opusfile-0.5/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/info.c -------------------------------------------------------------------------------- /code/opusfile-0.5/src/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/internal.c -------------------------------------------------------------------------------- /code/opusfile-0.5/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/internal.h -------------------------------------------------------------------------------- /code/opusfile-0.5/src/opusfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/opusfile.c -------------------------------------------------------------------------------- /code/opusfile-0.5/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/stream.c -------------------------------------------------------------------------------- /code/opusfile-0.5/src/wincerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/wincerts.c -------------------------------------------------------------------------------- /code/opusfile-0.5/src/winerrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/opusfile-0.5/src/winerrno.h -------------------------------------------------------------------------------- /code/qcommon/cm_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_load.c -------------------------------------------------------------------------------- /code/qcommon/cm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_local.h -------------------------------------------------------------------------------- /code/qcommon/cm_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_patch.c -------------------------------------------------------------------------------- /code/qcommon/cm_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_patch.h -------------------------------------------------------------------------------- /code/qcommon/cm_polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_polylib.c -------------------------------------------------------------------------------- /code/qcommon/cm_polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_polylib.h -------------------------------------------------------------------------------- /code/qcommon/cm_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_public.h -------------------------------------------------------------------------------- /code/qcommon/cm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_test.c -------------------------------------------------------------------------------- /code/qcommon/cm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cm_trace.c -------------------------------------------------------------------------------- /code/qcommon/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cmd.c -------------------------------------------------------------------------------- /code/qcommon/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/common.c -------------------------------------------------------------------------------- /code/qcommon/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/cvar.c -------------------------------------------------------------------------------- /code/qcommon/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/files.c -------------------------------------------------------------------------------- /code/qcommon/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/huffman.c -------------------------------------------------------------------------------- /code/qcommon/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/ioapi.c -------------------------------------------------------------------------------- /code/qcommon/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/ioapi.h -------------------------------------------------------------------------------- /code/qcommon/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/md4.c -------------------------------------------------------------------------------- /code/qcommon/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/md5.c -------------------------------------------------------------------------------- /code/qcommon/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/msg.c -------------------------------------------------------------------------------- /code/qcommon/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/net_chan.c -------------------------------------------------------------------------------- /code/qcommon/net_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/net_ip.c -------------------------------------------------------------------------------- /code/qcommon/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/puff.c -------------------------------------------------------------------------------- /code/qcommon/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/puff.h -------------------------------------------------------------------------------- /code/qcommon/q_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/q_check.h -------------------------------------------------------------------------------- /code/qcommon/q_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/q_math.c -------------------------------------------------------------------------------- /code/qcommon/q_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/q_platform.h -------------------------------------------------------------------------------- /code/qcommon/q_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/q_shared.c -------------------------------------------------------------------------------- /code/qcommon/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/q_shared.h -------------------------------------------------------------------------------- /code/qcommon/qcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/qcommon.h -------------------------------------------------------------------------------- /code/qcommon/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/qfiles.h -------------------------------------------------------------------------------- /code/qcommon/sdk_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/sdk_shared.h -------------------------------------------------------------------------------- /code/qcommon/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/surfaceflags.h -------------------------------------------------------------------------------- /code/qcommon/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/unzip.c -------------------------------------------------------------------------------- /code/qcommon/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/unzip.h -------------------------------------------------------------------------------- /code/qcommon/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm.c -------------------------------------------------------------------------------- /code/qcommon/vm_interpreted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_interpreted.c -------------------------------------------------------------------------------- /code/qcommon/vm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_local.h -------------------------------------------------------------------------------- /code/qcommon/vm_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_none.c -------------------------------------------------------------------------------- /code/qcommon/vm_powerpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_powerpc.c -------------------------------------------------------------------------------- /code/qcommon/vm_powerpc_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_powerpc_asm.c -------------------------------------------------------------------------------- /code/qcommon/vm_powerpc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_powerpc_asm.h -------------------------------------------------------------------------------- /code/qcommon/vm_sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_sparc.c -------------------------------------------------------------------------------- /code/qcommon/vm_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_sparc.h -------------------------------------------------------------------------------- /code/qcommon/vm_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/qcommon/vm_x86.c -------------------------------------------------------------------------------- /code/renderercommon/iqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderercommon/iqm.h -------------------------------------------------------------------------------- /code/renderercommon/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderercommon/qgl.h -------------------------------------------------------------------------------- /code/renderercommon/tr_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderercommon/tr_common.h -------------------------------------------------------------------------------- /code/renderercommon/tr_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderercommon/tr_font.c -------------------------------------------------------------------------------- /code/renderercommon/tr_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderercommon/tr_noise.c -------------------------------------------------------------------------------- /code/renderercommon/tr_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderercommon/tr_public.h -------------------------------------------------------------------------------- /code/renderercommon/tr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderercommon/tr_types.h -------------------------------------------------------------------------------- /code/renderergl1/tr_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_animation.c -------------------------------------------------------------------------------- /code/renderergl1/tr_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_backend.c -------------------------------------------------------------------------------- /code/renderergl1/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_bsp.c -------------------------------------------------------------------------------- /code/renderergl1/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_cmds.c -------------------------------------------------------------------------------- /code/renderergl1/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_curve.c -------------------------------------------------------------------------------- /code/renderergl1/tr_flares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_flares.c -------------------------------------------------------------------------------- /code/renderergl1/tr_glslprogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_glslprogs.c -------------------------------------------------------------------------------- /code/renderergl1/tr_glslprogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_glslprogs.h -------------------------------------------------------------------------------- /code/renderergl1/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_image.c -------------------------------------------------------------------------------- /code/renderergl1/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_init.c -------------------------------------------------------------------------------- /code/renderergl1/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_light.c -------------------------------------------------------------------------------- /code/renderergl1/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_local.h -------------------------------------------------------------------------------- /code/renderergl1/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_main.c -------------------------------------------------------------------------------- /code/renderergl1/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_marks.c -------------------------------------------------------------------------------- /code/renderergl1/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_mesh.c -------------------------------------------------------------------------------- /code/renderergl1/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_model.c -------------------------------------------------------------------------------- /code/renderergl1/tr_model_iqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_model_iqm.c -------------------------------------------------------------------------------- /code/renderergl1/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_scene.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_shade.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shade_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_shade_calc.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_shader.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shadows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_shadows.c -------------------------------------------------------------------------------- /code/renderergl1/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_sky.c -------------------------------------------------------------------------------- /code/renderergl1/tr_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_subs.c -------------------------------------------------------------------------------- /code/renderergl1/tr_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_surface.c -------------------------------------------------------------------------------- /code/renderergl1/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl1/tr_world.c -------------------------------------------------------------------------------- /code/renderergl2/tr_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_animation.c -------------------------------------------------------------------------------- /code/renderergl2/tr_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_backend.c -------------------------------------------------------------------------------- /code/renderergl2/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_bsp.c -------------------------------------------------------------------------------- /code/renderergl2/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_cmds.c -------------------------------------------------------------------------------- /code/renderergl2/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_curve.c -------------------------------------------------------------------------------- /code/renderergl2/tr_extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_extensions.c -------------------------------------------------------------------------------- /code/renderergl2/tr_extramath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_extramath.c -------------------------------------------------------------------------------- /code/renderergl2/tr_extramath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_extramath.h -------------------------------------------------------------------------------- /code/renderergl2/tr_extratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_extratypes.h -------------------------------------------------------------------------------- /code/renderergl2/tr_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_fbo.c -------------------------------------------------------------------------------- /code/renderergl2/tr_fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_fbo.h -------------------------------------------------------------------------------- /code/renderergl2/tr_flares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_flares.c -------------------------------------------------------------------------------- /code/renderergl2/tr_glsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_glsl.c -------------------------------------------------------------------------------- /code/renderergl2/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_image.c -------------------------------------------------------------------------------- /code/renderergl2/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_init.c -------------------------------------------------------------------------------- /code/renderergl2/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_light.c -------------------------------------------------------------------------------- /code/renderergl2/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_local.h -------------------------------------------------------------------------------- /code/renderergl2/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_main.c -------------------------------------------------------------------------------- /code/renderergl2/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_marks.c -------------------------------------------------------------------------------- /code/renderergl2/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_mesh.c -------------------------------------------------------------------------------- /code/renderergl2/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_model.c -------------------------------------------------------------------------------- /code/renderergl2/tr_model_iqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_model_iqm.c -------------------------------------------------------------------------------- /code/renderergl2/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_scene.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_shade.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shade_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_shade_calc.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_shader.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shadows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_shadows.c -------------------------------------------------------------------------------- /code/renderergl2/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_sky.c -------------------------------------------------------------------------------- /code/renderergl2/tr_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_subs.c -------------------------------------------------------------------------------- /code/renderergl2/tr_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_surface.c -------------------------------------------------------------------------------- /code/renderergl2/tr_vbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_vbo.c -------------------------------------------------------------------------------- /code/renderergl2/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/renderergl2/tr_world.c -------------------------------------------------------------------------------- /code/sdl/sdl_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sdl/sdl_gamma.c -------------------------------------------------------------------------------- /code/sdl/sdl_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sdl/sdl_glimp.c -------------------------------------------------------------------------------- /code/sdl/sdl_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sdl/sdl_icon.h -------------------------------------------------------------------------------- /code/sdl/sdl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sdl/sdl_input.c -------------------------------------------------------------------------------- /code/sdl/sdl_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sdl/sdl_snd.c -------------------------------------------------------------------------------- /code/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/server.h -------------------------------------------------------------------------------- /code/server/sv_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_bot.c -------------------------------------------------------------------------------- /code/server/sv_ccmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_ccmds.c -------------------------------------------------------------------------------- /code/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_client.c -------------------------------------------------------------------------------- /code/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_game.c -------------------------------------------------------------------------------- /code/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_init.c -------------------------------------------------------------------------------- /code/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_main.c -------------------------------------------------------------------------------- /code/server/sv_net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_net_chan.c -------------------------------------------------------------------------------- /code/server/sv_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_snapshot.c -------------------------------------------------------------------------------- /code/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/server/sv_world.c -------------------------------------------------------------------------------- /code/sys/con_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/con_log.c -------------------------------------------------------------------------------- /code/sys/con_passive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/con_passive.c -------------------------------------------------------------------------------- /code/sys/con_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/con_tty.c -------------------------------------------------------------------------------- /code/sys/con_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/con_win32.c -------------------------------------------------------------------------------- /code/sys/sys_loadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/sys_loadlib.h -------------------------------------------------------------------------------- /code/sys/sys_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/sys_local.h -------------------------------------------------------------------------------- /code/sys/sys_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/sys_main.c -------------------------------------------------------------------------------- /code/sys/sys_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/sys_osx.m -------------------------------------------------------------------------------- /code/sys/sys_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/sys_unix.c -------------------------------------------------------------------------------- /code/sys/sys_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/sys_win32.c -------------------------------------------------------------------------------- /code/sys/win_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/win_resource.h -------------------------------------------------------------------------------- /code/sys/win_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/sys/win_resource.rc -------------------------------------------------------------------------------- /code/tools/asm/README.Id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/README.Id -------------------------------------------------------------------------------- /code/tools/asm/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/cmdlib.c -------------------------------------------------------------------------------- /code/tools/asm/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/cmdlib.h -------------------------------------------------------------------------------- /code/tools/asm/lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/lib.txt -------------------------------------------------------------------------------- /code/tools/asm/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/mathlib.h -------------------------------------------------------------------------------- /code/tools/asm/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/notes.txt -------------------------------------------------------------------------------- /code/tools/asm/ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/ops.txt -------------------------------------------------------------------------------- /code/tools/asm/opstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/opstrings.h -------------------------------------------------------------------------------- /code/tools/asm/q3asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/asm/q3asm.c -------------------------------------------------------------------------------- /code/tools/lcc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/COPYRIGHT -------------------------------------------------------------------------------- /code/tools/lcc/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/LOG -------------------------------------------------------------------------------- /code/tools/lcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/README -------------------------------------------------------------------------------- /code/tools/lcc/README.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/README.id -------------------------------------------------------------------------------- /code/tools/lcc/cpp/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/cpp.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/cpp.h -------------------------------------------------------------------------------- /code/tools/lcc/cpp/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/eval.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/getopt.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/hideset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/hideset.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/include.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/lex.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/macro.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/nlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/nlist.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/tokens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/tokens.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/cpp/unix.c -------------------------------------------------------------------------------- /code/tools/lcc/doc/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/doc/4.html -------------------------------------------------------------------------------- /code/tools/lcc/doc/bprint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/doc/bprint.1 -------------------------------------------------------------------------------- /code/tools/lcc/doc/bprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/doc/bprint.pdf -------------------------------------------------------------------------------- /code/tools/lcc/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/doc/install.html -------------------------------------------------------------------------------- /code/tools/lcc/doc/lcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/doc/lcc.1 -------------------------------------------------------------------------------- /code/tools/lcc/doc/lcc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/doc/lcc.pdf -------------------------------------------------------------------------------- /code/tools/lcc/etc/bytecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/etc/bytecode.c -------------------------------------------------------------------------------- /code/tools/lcc/etc/lcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/etc/lcc.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/lburg/gram.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/lburg/gram.y -------------------------------------------------------------------------------- /code/tools/lcc/lburg/lburg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/lburg/lburg.1 -------------------------------------------------------------------------------- /code/tools/lcc/lburg/lburg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/lburg/lburg.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/lburg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/lburg/lburg.h -------------------------------------------------------------------------------- /code/tools/lcc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/alloc.c -------------------------------------------------------------------------------- /code/tools/lcc/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/bind.c -------------------------------------------------------------------------------- /code/tools/lcc/src/bytecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/bytecode.c -------------------------------------------------------------------------------- /code/tools/lcc/src/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/c.h -------------------------------------------------------------------------------- /code/tools/lcc/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/config.h -------------------------------------------------------------------------------- /code/tools/lcc/src/dag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/dag.c -------------------------------------------------------------------------------- /code/tools/lcc/src/dagcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/dagcheck.md -------------------------------------------------------------------------------- /code/tools/lcc/src/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/decl.c -------------------------------------------------------------------------------- /code/tools/lcc/src/enode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/enode.c -------------------------------------------------------------------------------- /code/tools/lcc/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/error.c -------------------------------------------------------------------------------- /code/tools/lcc/src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/event.c -------------------------------------------------------------------------------- /code/tools/lcc/src/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/expr.c -------------------------------------------------------------------------------- /code/tools/lcc/src/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/gen.c -------------------------------------------------------------------------------- /code/tools/lcc/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/init.c -------------------------------------------------------------------------------- /code/tools/lcc/src/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/inits.c -------------------------------------------------------------------------------- /code/tools/lcc/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/input.c -------------------------------------------------------------------------------- /code/tools/lcc/src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/lex.c -------------------------------------------------------------------------------- /code/tools/lcc/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/list.c -------------------------------------------------------------------------------- /code/tools/lcc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/main.c -------------------------------------------------------------------------------- /code/tools/lcc/src/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/null.c -------------------------------------------------------------------------------- /code/tools/lcc/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/output.c -------------------------------------------------------------------------------- /code/tools/lcc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/prof.c -------------------------------------------------------------------------------- /code/tools/lcc/src/profio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/profio.c -------------------------------------------------------------------------------- /code/tools/lcc/src/simp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/simp.c -------------------------------------------------------------------------------- /code/tools/lcc/src/stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/stmt.c -------------------------------------------------------------------------------- /code/tools/lcc/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/string.c -------------------------------------------------------------------------------- /code/tools/lcc/src/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/sym.c -------------------------------------------------------------------------------- /code/tools/lcc/src/symbolic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/symbolic.c -------------------------------------------------------------------------------- /code/tools/lcc/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/token.h -------------------------------------------------------------------------------- /code/tools/lcc/src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/trace.c -------------------------------------------------------------------------------- /code/tools/lcc/src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/tree.c -------------------------------------------------------------------------------- /code/tools/lcc/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/tools/lcc/src/types.c -------------------------------------------------------------------------------- /code/ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_atoms.c -------------------------------------------------------------------------------- /code/ui/ui_gameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_gameinfo.c -------------------------------------------------------------------------------- /code/ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_local.h -------------------------------------------------------------------------------- /code/ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_main.c -------------------------------------------------------------------------------- /code/ui/ui_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_players.c -------------------------------------------------------------------------------- /code/ui/ui_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_public.h -------------------------------------------------------------------------------- /code/ui/ui_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_shared.c -------------------------------------------------------------------------------- /code/ui/ui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_shared.h -------------------------------------------------------------------------------- /code/ui/ui_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_syscalls.asm -------------------------------------------------------------------------------- /code/ui/ui_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/ui/ui_syscalls.c -------------------------------------------------------------------------------- /code/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/adler32.c -------------------------------------------------------------------------------- /code/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/crc32.c -------------------------------------------------------------------------------- /code/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/crc32.h -------------------------------------------------------------------------------- /code/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/inffast.c -------------------------------------------------------------------------------- /code/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/inffast.h -------------------------------------------------------------------------------- /code/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/inffixed.h -------------------------------------------------------------------------------- /code/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/inflate.c -------------------------------------------------------------------------------- /code/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/inflate.h -------------------------------------------------------------------------------- /code/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/inftrees.c -------------------------------------------------------------------------------- /code/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/inftrees.h -------------------------------------------------------------------------------- /code/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/zconf.h -------------------------------------------------------------------------------- /code/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/zlib.h -------------------------------------------------------------------------------- /code/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/zutil.c -------------------------------------------------------------------------------- /code/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/code/zlib/zutil.h -------------------------------------------------------------------------------- /id-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/id-readme.txt -------------------------------------------------------------------------------- /jenkins-ci-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/jenkins-ci-build.sh -------------------------------------------------------------------------------- /make-macosx-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/make-macosx-app.sh -------------------------------------------------------------------------------- /make-macosx-ub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/make-macosx-ub.sh -------------------------------------------------------------------------------- /make-macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/make-macosx.sh -------------------------------------------------------------------------------- /md4-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/md4-readme.txt -------------------------------------------------------------------------------- /misc/msvc/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/clean.bat -------------------------------------------------------------------------------- /misc/msvc/glsl_stringify.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/glsl_stringify.vbs -------------------------------------------------------------------------------- /misc/msvc/ioq3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/ioq3.sln -------------------------------------------------------------------------------- /misc/msvc/opengl1.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/opengl1.vcproj -------------------------------------------------------------------------------- /misc/msvc/opengl2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/opengl2.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc8/build_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc8/build_x64.bat -------------------------------------------------------------------------------- /misc/msvc/vc8/build_x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc8/build_x86.bat -------------------------------------------------------------------------------- /misc/msvc/vc8/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc/vc8/cgame.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc8/cgame.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc8/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain -------------------------------------------------------------------------------- /misc/msvc/vc8/game.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc8/game.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc8/sg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc8/sg.sln -------------------------------------------------------------------------------- /misc/msvc/vc8/smokinguns.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc8/smokinguns.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc8/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc/vc8/ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc8/ui.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc9/build_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc9/build_x64.bat -------------------------------------------------------------------------------- /misc/msvc/vc9/build_x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc9/build_x86.bat -------------------------------------------------------------------------------- /misc/msvc/vc9/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc/vc9/cgame.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc9/cgame.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc9/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain -------------------------------------------------------------------------------- /misc/msvc/vc9/game.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc9/game.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc9/sg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc9/sg.sln -------------------------------------------------------------------------------- /misc/msvc/vc9/smokinguns.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc9/smokinguns.vcproj -------------------------------------------------------------------------------- /misc/msvc/vc9/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry -------------------------------------------------------------------------------- /misc/msvc/vc9/ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/msvc/vc9/ui.vcproj -------------------------------------------------------------------------------- /misc/nsis/ioquake3.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/nsis/ioquake3.nsi.in -------------------------------------------------------------------------------- /misc/quake3_flat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/quake3_flat.icns -------------------------------------------------------------------------------- /misc/sdk/sdk_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/sdk/sdk_diff.sh -------------------------------------------------------------------------------- /misc/server/du_log4vsp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/server/du_log4vsp.pl -------------------------------------------------------------------------------- /misc/setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/setup/Makefile -------------------------------------------------------------------------------- /misc/setup/doit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/setup/doit -------------------------------------------------------------------------------- /misc/smokinguns.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/smokinguns.icns -------------------------------------------------------------------------------- /misc/smokinguns.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/smokinguns.ico -------------------------------------------------------------------------------- /misc/smokinguns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/smokinguns.png -------------------------------------------------------------------------------- /misc/smokinguns_legacy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/smokinguns_legacy.ico -------------------------------------------------------------------------------- /misc/win32/bin/bzip2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/bin/bzip2.dll -------------------------------------------------------------------------------- /misc/win32/bin/q3asm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/bin/q3asm.exe -------------------------------------------------------------------------------- /misc/win32/bin/q3cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/bin/q3cpp.exe -------------------------------------------------------------------------------- /misc/win32/bin/q3lcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/bin/q3lcc.exe -------------------------------------------------------------------------------- /misc/win32/bin/q3rcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/bin/q3rcc.exe -------------------------------------------------------------------------------- /misc/win32/bin/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/bin/zip.exe -------------------------------------------------------------------------------- /misc/win32/buildvm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/buildvm.bat -------------------------------------------------------------------------------- /misc/win32/cleanvm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/cleanvm.bat -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/3dslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/3dslib.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/3dslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/3dslib.h -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/funcs.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/images.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/md3lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/md3lib.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/md3lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/md3lib.h -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/models.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/p3dlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/p3dlib.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/p3dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/p3dlib.h -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/paking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/paking.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/q3data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/q3data.c -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/q3data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/q3data.h -------------------------------------------------------------------------------- /misc/win32/hitfilemaker/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/win32/hitfilemaker/video.c -------------------------------------------------------------------------------- /misc/xcode/ioquake3-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/xcode/ioquake3-Info.plist -------------------------------------------------------------------------------- /misc/xcode/ioquake3-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/xcode/ioquake3-Prefix.pch -------------------------------------------------------------------------------- /misc/xcode/xcode-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/misc/xcode/xcode-readme.txt -------------------------------------------------------------------------------- /opengl2-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/opengl2-readme.txt -------------------------------------------------------------------------------- /travis-ci-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/travis-ci-build.sh -------------------------------------------------------------------------------- /ui/buymenu.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/buymenu.menu -------------------------------------------------------------------------------- /ui/connect.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/connect.menu -------------------------------------------------------------------------------- /ui/createserver.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/createserver.menu -------------------------------------------------------------------------------- /ui/demo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/demo.menu -------------------------------------------------------------------------------- /ui/hud.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/hud.menu -------------------------------------------------------------------------------- /ui/hud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/hud.txt -------------------------------------------------------------------------------- /ui/ingame.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame.menu -------------------------------------------------------------------------------- /ui/ingame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame.txt -------------------------------------------------------------------------------- /ui/ingame_about.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_about.menu -------------------------------------------------------------------------------- /ui/ingame_bots.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_bots.menu -------------------------------------------------------------------------------- /ui/ingame_callvote.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_callvote.menu -------------------------------------------------------------------------------- /ui/ingame_controls.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_controls.menu -------------------------------------------------------------------------------- /ui/ingame_join.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_join.menu -------------------------------------------------------------------------------- /ui/ingame_joinblue.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_joinblue.menu -------------------------------------------------------------------------------- /ui/ingame_joinred.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_joinred.menu -------------------------------------------------------------------------------- /ui/ingame_leave.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_leave.menu -------------------------------------------------------------------------------- /ui/ingame_options.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_options.menu -------------------------------------------------------------------------------- /ui/ingame_player.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_player.menu -------------------------------------------------------------------------------- /ui/ingame_system.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_system.menu -------------------------------------------------------------------------------- /ui/ingame_vote.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/ingame_vote.menu -------------------------------------------------------------------------------- /ui/joinserver.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/joinserver.menu -------------------------------------------------------------------------------- /ui/main.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/main.menu -------------------------------------------------------------------------------- /ui/menudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/menudef.h -------------------------------------------------------------------------------- /ui/menus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/menus.txt -------------------------------------------------------------------------------- /ui/pop_createfavorite.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_createfavorite.menu -------------------------------------------------------------------------------- /ui/pop_error.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_error.menu -------------------------------------------------------------------------------- /ui/pop_findplayer.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_findplayer.menu -------------------------------------------------------------------------------- /ui/pop_multiplayer.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_multiplayer.menu -------------------------------------------------------------------------------- /ui/pop_password.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_password.menu -------------------------------------------------------------------------------- /ui/pop_quit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_quit.menu -------------------------------------------------------------------------------- /ui/pop_serverinfo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_serverinfo.menu -------------------------------------------------------------------------------- /ui/pop_sound_restart.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_sound_restart.menu -------------------------------------------------------------------------------- /ui/pop_specify.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_specify.menu -------------------------------------------------------------------------------- /ui/pop_vid_restart.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/pop_vid_restart.menu -------------------------------------------------------------------------------- /ui/quitcredit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/quitcredit.menu -------------------------------------------------------------------------------- /ui/score.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/score.menu -------------------------------------------------------------------------------- /ui/settings.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/settings.menu -------------------------------------------------------------------------------- /ui/settings_controls.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/settings_controls.menu -------------------------------------------------------------------------------- /ui/settings_default.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/settings_default.menu -------------------------------------------------------------------------------- /ui/settings_options.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/settings_options.menu -------------------------------------------------------------------------------- /ui/settings_player.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/settings_player.menu -------------------------------------------------------------------------------- /ui/settings_system.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/settings_system.menu -------------------------------------------------------------------------------- /ui/skirmish.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/skirmish.menu -------------------------------------------------------------------------------- /ui/teamscore.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/ui/teamscore.menu -------------------------------------------------------------------------------- /voip-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokin-guns/SmokinGuns/HEAD/voip-readme.txt --------------------------------------------------------------------------------