├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── branches-build.yml │ ├── doxygen-publish.yml │ ├── main-codeql.yml │ ├── shared-build-linux.yml │ ├── shared-build-macos.yml │ ├── shared-build-windows.yml │ ├── shared-build.yml │ ├── tags-publish-release.yml │ └── unit-testing.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING.txt ├── LAYOUT.md ├── README.md ├── cmake ├── Info.plist.in ├── basegame.cmake ├── client.cmake ├── compilers │ ├── all.cmake │ ├── appleclang.cmake │ ├── clang.cmake │ ├── gcc.cmake │ ├── gnu.cmake │ └── msvc.cmake ├── deploy │ ├── all.cmake │ └── unix.cmake ├── gamespy.cmake ├── identity.cmake ├── installer.cmake ├── launcher.cmake ├── libraries │ ├── all.cmake │ ├── curl.cmake │ ├── flex_bison.cmake │ ├── freetype.cmake │ ├── jpeg.cmake │ ├── libmad.cmake │ ├── ogg.cmake │ ├── openal.cmake │ ├── opus.cmake │ ├── recastnavigation.cmake │ ├── sdl.cmake │ ├── vorbis.cmake │ └── zlib.cmake ├── missionpack.cmake ├── platforms │ ├── all.cmake │ ├── emscripten.cmake │ ├── linux.cmake │ ├── macos.cmake │ ├── unix.cmake │ └── windows.cmake ├── post_configure.cmake ├── q_version.generated.h.in ├── renderer_common.cmake ├── renderer_gl1.cmake ├── renderer_gl2.cmake ├── server.cmake ├── shared_script.cmake ├── shared_sources.cmake ├── tests │ ├── all.cmake │ └── lz77.cmake ├── tools │ └── CMakeLists.txt ├── utils │ ├── add_git_dependency.cmake │ ├── arch.cmake │ ├── disable_warnings.cmake │ ├── find_include_dirs.cmake │ ├── qvm_tools.cmake │ ├── set_output_dirs.cmake │ └── stringify_shader.cmake └── version.cmake ├── cmake_uninstall.cmake.in ├── code ├── Launcher │ ├── launch.h │ ├── launch_linux.cpp │ ├── launch_main.cpp │ └── launch_win32.cpp ├── asm │ ├── ftola.asm │ ├── ftola.c │ ├── snapvector.asm │ ├── snapvector.c │ └── vm_x86_64.asm ├── botlib │ ├── aasfile.h │ ├── be_aas.h │ ├── be_aas_bsp.h │ ├── be_aas_bspq3.c │ ├── be_aas_cluster.c │ ├── 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_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 │ ├── l_crc.c │ ├── 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_archive.cpp │ ├── cg_archive.h │ ├── cg_beam.cpp │ ├── cg_commands.cpp │ ├── cg_commands.h │ ├── cg_consolecmds.c │ ├── cg_drawtools.cpp │ ├── cg_ents.c │ ├── cg_event.c │ ├── cg_lightstyles.cpp │ ├── cg_local.h │ ├── cg_main.c │ ├── cg_marks.c │ ├── cg_modelanim.c │ ├── cg_nature.cpp │ ├── cg_parsemsg.cpp │ ├── cg_parsemsg.h │ ├── cg_player.cpp │ ├── cg_playerstate.c │ ├── cg_predict.c │ ├── cg_public.h │ ├── cg_radar.cpp │ ├── cg_radar.h │ ├── cg_scoreboard.cpp │ ├── cg_servercmds.c │ ├── cg_servercmds_filter.cpp │ ├── cg_servercmds_filter.h │ ├── cg_snapshot.c │ ├── cg_sound.cpp │ ├── cg_specialfx.cpp │ ├── cg_specialfx.h │ ├── cg_swipe.cpp │ ├── cg_tempmodels.cpp │ ├── cg_testemitter.cpp │ ├── cg_ui.cpp │ ├── cg_vehicle.cpp │ ├── cg_view.c │ ├── cg_viewmodelanim.c │ ├── cg_volumetricsmoke.cpp │ ├── memarchiver.cpp │ ├── memarchiver.h │ └── tr_types.h ├── client │ ├── cl_avi.cpp │ ├── cl_cgame.cpp │ ├── cl_cin.cpp │ ├── cl_consolecmds.cpp │ ├── cl_curl.c │ ├── cl_curl.h │ ├── cl_input.cpp │ ├── cl_instantAction.cpp │ ├── cl_instantAction.h │ ├── cl_inv.cpp │ ├── cl_inv.h │ ├── cl_invrender.cpp │ ├── cl_invrender.h │ ├── cl_keys.cpp │ ├── cl_main.cpp │ ├── cl_net_chan.cpp │ ├── cl_parse.cpp │ ├── cl_scrn.cpp │ ├── cl_ui.cpp │ ├── cl_ui.h │ ├── cl_uibind.cpp │ ├── cl_uibind.h │ ├── cl_uidmbox.cpp │ ├── cl_uidmbox.h │ ├── cl_uifilepicker.cpp │ ├── cl_uifilepicker.h │ ├── cl_uigamespy.cpp │ ├── cl_uigamespy.h │ ├── cl_uigmbox.cpp │ ├── cl_uigmbox.h │ ├── cl_uilangame.cpp │ ├── cl_uilangame.h │ ├── cl_uiloadsave.cpp │ ├── cl_uiloadsave.h │ ├── cl_uimaprotationsetup.cpp │ ├── cl_uimaprotationsetup.h │ ├── cl_uimaprunner.cpp │ ├── cl_uimaprunner.h │ ├── cl_uiminicon.cpp │ ├── cl_uiminicon.h │ ├── cl_uimpmappicker.cpp │ ├── cl_uimpmappicker.h │ ├── cl_uiplayermodelpicker.cpp │ ├── cl_uiplayermodelpicker.h │ ├── cl_uiradar.cpp │ ├── cl_uiradar.h │ ├── cl_uiserverlist.cpp │ ├── cl_uiserverlist.h │ ├── cl_uisoundpicker.cpp │ ├── cl_uisoundpicker.h │ ├── cl_uistd.cpp │ ├── cl_uistd.h │ ├── cl_uiview3d.cpp │ ├── cl_uiview3d.h │ ├── client.h │ ├── keycodes.h │ ├── keys.h │ ├── libmumblelink.c │ ├── libmumblelink.h │ ├── new │ │ ├── snd_local_new.h │ │ ├── snd_main_new.cpp │ │ └── snd_public_new.h │ ├── qal.c │ ├── qal.h │ ├── snd_adpcm.c │ ├── snd_altivec.c │ ├── snd_codec.c │ ├── snd_codec.h │ ├── snd_codec_mp3.c │ ├── snd_codec_ogg.c │ ├── snd_codec_opus.c │ ├── snd_codec_wav.c │ ├── snd_dma.c │ ├── snd_dma_new.cpp │ ├── snd_info.cpp │ ├── snd_local.h │ ├── snd_local_new.h │ ├── snd_main.c │ ├── snd_mem.c │ ├── snd_mem_new.cpp │ ├── snd_miles_new.cpp │ ├── snd_miles_new.h │ ├── snd_mix.c │ ├── snd_openal.c │ ├── snd_openal_new.cpp │ ├── snd_openal_new.h │ ├── snd_public.h │ ├── snd_wavelet.c │ └── usignal.cpp ├── corepp │ ├── Linklist.h │ ├── class.cpp │ ├── class.h │ ├── con_arrayset.h │ ├── con_set.cpp │ ├── con_set.h │ ├── con_timer.cpp │ ├── con_timer.h │ ├── configurator.cpp │ ├── configurator.h │ ├── const_str.h │ ├── container.h │ ├── containerclass.h │ ├── delegate.cpp │ ├── delegate.h │ ├── lightclass.cpp │ ├── lightclass.h │ ├── listener.cpp │ ├── listener.h │ ├── lz77.cpp │ ├── lz77.h │ ├── mem_blockalloc.cpp │ ├── mem_blockalloc.h │ ├── mem_tempalloc.cpp │ ├── mem_tempalloc.h │ ├── queue.h │ ├── safeptr.h │ ├── script.cpp │ ├── script.h │ ├── short3.h │ ├── stack.h │ ├── str.cpp │ ├── str.h │ ├── tests │ │ └── test_lz77.cpp │ ├── tiki.h │ ├── tiki_main.cpp │ ├── tiki_main.h │ ├── tiki_script.cpp │ ├── tiki_script.h │ └── vector.h ├── curl │ └── curldefs.h ├── fgame │ ├── DrivableVehicleTandem.cpp │ ├── DrivableVehicleTandem.h │ ├── Entities.cpp │ ├── Entities.h │ ├── Tow_Entities.cpp │ ├── Tow_Entities.h │ ├── VehicleCollisionEntity.cpp │ ├── VehicleCollisionEntity.h │ ├── VehicleHalfTrack.cpp │ ├── VehicleSlot.cpp │ ├── VehicleSlot.h │ ├── VehicleSoundEntity.cpp │ ├── VehicleSoundEntity.h │ ├── VehicleTank.cpp │ ├── VehicleWheelsX2.cpp │ ├── VehicleWheelsX4.cpp │ ├── actor.cpp │ ├── actor.h │ ├── actor_aim.cpp │ ├── actor_alarm.cpp │ ├── actor_anim.cpp │ ├── actor_animapi.cpp │ ├── actor_animcurious.cpp │ ├── actor_badplace.cpp │ ├── actor_balcony.cpp │ ├── actor_cover.cpp │ ├── actor_curious.cpp │ ├── actor_disguise_common.cpp │ ├── actor_disguise_officer.cpp │ ├── actor_disguise_rover.cpp │ ├── actor_disguise_salute.cpp │ ├── actor_disguise_sentry.cpp │ ├── actor_dog.cpp │ ├── actor_grenade.cpp │ ├── actor_idle.cpp │ ├── actor_killed.cpp │ ├── actor_machinegunner.cpp │ ├── actor_noclip.cpp │ ├── actor_pain.cpp │ ├── actor_patrol.cpp │ ├── actor_runandshoot.cpp │ ├── actor_runner.cpp │ ├── actor_turret.cpp │ ├── actor_weaponless.cpp │ ├── actorenemy.cpp │ ├── actorenemy.h │ ├── actorpath.cpp │ ├── actorpath.h │ ├── ammo.cpp │ ├── ammo.h │ ├── animate.cpp │ ├── animate.h │ ├── animationevent.cpp │ ├── animationevent.h │ ├── archive.cpp │ ├── archive.h │ ├── armor.cpp │ ├── armor.h │ ├── barrels.cpp │ ├── barrels.h │ ├── baseimp.h │ ├── beam.cpp │ ├── beam.h │ ├── bg_local.h │ ├── bg_misc.cpp │ ├── bg_pmove.cpp │ ├── bg_public.h │ ├── bg_slidemove.cpp │ ├── bg_voteoptions.cpp │ ├── bg_voteoptions.h │ ├── body.cpp │ ├── body.h │ ├── botlib.h │ ├── botmenudef.h │ ├── bspline.cpp │ ├── bspline.h │ ├── camera.cpp │ ├── camera.h │ ├── characterstate.cpp │ ├── characterstate.h │ ├── chars.h │ ├── clientvote.cpp │ ├── clientvote.h │ ├── consoleevent.cpp │ ├── consoleevent.h │ ├── crateobject.cpp │ ├── crateobject.h │ ├── crc32.h │ ├── damagemodel.cpp │ ├── damagemodel.h │ ├── debuglines.cpp │ ├── debuglines.h │ ├── decals.cpp │ ├── decals.h │ ├── dm_manager.cpp │ ├── dm_manager.h │ ├── doors.cpp │ ├── doors.h │ ├── earthquake.cpp │ ├── earthquake.h │ ├── effectentity.cpp │ ├── effectentity.h │ ├── entity.cpp │ ├── entity.h │ ├── explosion.cpp │ ├── explosion.h │ ├── fixedturret.cpp │ ├── fixedturret.h │ ├── g_active.cpp │ ├── g_arenas.cpp │ ├── g_bot.cpp │ ├── g_bot.h │ ├── g_client.cpp │ ├── g_items.cpp │ ├── g_local.h │ ├── g_main.cpp │ ├── g_main.h │ ├── g_mem.cpp │ ├── g_mmove.cpp │ ├── g_phys.cpp │ ├── g_phys.h │ ├── g_public.h │ ├── g_session.cpp │ ├── g_spawn.cpp │ ├── g_spawn.h │ ├── g_utils.cpp │ ├── g_utils.h │ ├── g_vmove.cpp │ ├── g_weapon.cpp │ ├── game.cpp │ ├── game.h │ ├── gamecmds.cpp │ ├── gamecmds.h │ ├── gamecvars.cpp │ ├── gamecvars.h │ ├── gamescript.cpp │ ├── gamescript.h │ ├── gibs.cpp │ ├── gibs.h │ ├── glb_local.h │ ├── gravpath.cpp │ ├── gravpath.h │ ├── grenadehint.cpp │ ├── grenadehint.h │ ├── health.cpp │ ├── health.h │ ├── hud.cpp │ ├── hud.h │ ├── huddraw.cpp │ ├── huddraw.h │ ├── inv.h │ ├── inventoryitem.cpp │ ├── inventoryitem.h │ ├── ipfilter.cpp │ ├── ipfilter.h │ ├── item.cpp │ ├── item.h │ ├── level.cpp │ ├── level.h │ ├── light.cpp │ ├── light.h │ ├── lightstyleclass.cpp │ ├── lightstyleclass.h │ ├── lodthing.cpp │ ├── lodthing.h │ ├── match.h │ ├── md5.cpp │ ├── md5.h │ ├── misc.cpp │ ├── misc.h │ ├── movegrid.cpp │ ├── movegrid.h │ ├── mover.cpp │ ├── mover.h │ ├── nature.cpp │ ├── nature.h │ ├── navigate.cpp │ ├── navigate.h │ ├── navigation_bsp.cpp │ ├── navigation_bsp.h │ ├── navigation_bsp_load_brush.cpp │ ├── navigation_bsp_load_curve.cpp │ ├── navigation_bsp_load_terrain.cpp │ ├── navigation_bsp_lump.cpp │ ├── navigation_bsp_lump.h │ ├── navigation_bsp_utils.cpp │ ├── navigation_legacy_path.cpp │ ├── navigation_legacy_path.h │ ├── navigation_path.cpp │ ├── navigation_path.h │ ├── navigation_recast_config.h │ ├── navigation_recast_config_ext.h │ ├── navigation_recast_debug.cpp │ ├── navigation_recast_debug.h │ ├── navigation_recast_helpers.cpp │ ├── navigation_recast_helpers.h │ ├── navigation_recast_load.cpp │ ├── navigation_recast_load.h │ ├── navigation_recast_load_ext.cpp │ ├── navigation_recast_load_ext.h │ ├── navigation_recast_obstacle.cpp │ ├── navigation_recast_obstacle.h │ ├── navigation_recast_path.cpp │ ├── navigation_recast_path.h │ ├── object.cpp │ ├── object.h │ ├── parm.cpp │ ├── parm.h │ ├── player.cpp │ ├── player.h │ ├── player_animation.cpp │ ├── player_combat.cpp │ ├── player_conditionals.cpp │ ├── player_util.cpp │ ├── playerbot.cpp │ ├── playerbot.h │ ├── playerbot_master.cpp │ ├── playerbot_movement.cpp │ ├── playerbot_rotation.cpp │ ├── playerbot_strategy.cpp │ ├── playerbot_strategy.h │ ├── playerstart.cpp │ ├── playerstart.h │ ├── portableturret.cpp │ ├── portableturret.h │ ├── portal.cpp │ ├── portal.h │ ├── scriptdelegate.cpp │ ├── scriptdelegate.h │ ├── scriptflags.cpp │ ├── scriptflags.h │ ├── scriptmaster.cpp │ ├── scriptmaster.h │ ├── scriptslave.cpp │ ├── scriptslave.h │ ├── scriptthread.cpp │ ├── scriptthread.h │ ├── scripttimer.cpp │ ├── scripttimer.h │ ├── sentient.cpp │ ├── sentient.h │ ├── sentient_combat.cpp │ ├── simpleactor.cpp │ ├── simpleactor.h │ ├── simpleentity.cpp │ ├── simpleentity.h │ ├── slre.c │ ├── slre.h │ ├── smokegrenade.cpp │ ├── smokegrenade.h │ ├── smokesprite.cpp │ ├── smokesprite.h │ ├── soundman.cpp │ ├── soundman.h │ ├── spawners.cpp │ ├── spawners.h │ ├── specialfx.cpp │ ├── specialfx.h │ ├── spline.h │ ├── stack.h │ ├── syn.h │ ├── trigger.cpp │ ├── trigger.h │ ├── umap.h │ ├── vehicle.cpp │ ├── vehicle.h │ ├── vehicletanktandem.cpp │ ├── vehicletanktandem.h │ ├── vehicleturret.cpp │ ├── vehicleturret.h │ ├── viewthing.cpp │ ├── viewthing.h │ ├── weapon.cpp │ ├── weapon.h │ ├── weapturret.cpp │ ├── weapturret.h │ ├── weaputils.cpp │ ├── weaputils.h │ ├── windows.cpp │ ├── windows.h │ ├── worldspawn.cpp │ └── worldspawn.h ├── gamespy │ ├── Chat │ │ ├── changelog.txt │ │ ├── chat.h │ │ ├── chatASCII.h │ │ ├── chatCallbacks.c │ │ ├── chatCallbacks.h │ │ ├── chatChannel.c │ │ ├── chatChannel.h │ │ ├── chatCrypt.c │ │ ├── chatCrypt.h │ │ ├── chatHandlers.c │ │ ├── chatHandlers.h │ │ ├── chatMain.c │ │ ├── chatMain.h │ │ ├── chatSocket.c │ │ ├── chatSocket.h │ │ ├── chatc │ │ │ ├── chatc.c │ │ │ ├── chatnitrocw │ │ │ │ ├── Nitro.lcf │ │ │ │ └── ROM-TS.rsf │ │ │ └── chatps2prodg │ │ │ │ ├── chatps2prodg.dsp │ │ │ │ └── chatps2prodg.dsw │ │ └── chatty │ │ │ ├── ChannelListDlg.cpp │ │ │ ├── ChannelListDlg.h │ │ │ ├── ChannelModeDlg.cpp │ │ │ ├── ChannelModeDlg.h │ │ │ ├── ChildFrm.cpp │ │ │ ├── ChildFrm.h │ │ │ ├── ConnectDlg.cpp │ │ │ ├── ConnectDlg.h │ │ │ ├── EnterDlg.cpp │ │ │ ├── EnterDlg.h │ │ │ ├── GetUserInfoDlg.cpp │ │ │ ├── GetUserInfoDlg.h │ │ │ ├── KickReasonDlg.cpp │ │ │ ├── KickReasonDlg.h │ │ │ ├── MainFrm.cpp │ │ │ ├── MainFrm.h │ │ │ ├── ReadMe.txt │ │ │ ├── SendRawDlg.cpp │ │ │ ├── SendRawDlg.h │ │ │ ├── SetPasswordDlg.cpp │ │ │ ├── SetPasswordDlg.h │ │ │ ├── SetTopicDlg.cpp │ │ │ ├── SetTopicDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── TalkDlg.cpp │ │ │ ├── TalkDlg.h │ │ │ ├── chatty.cpp │ │ │ ├── chatty.h │ │ │ ├── chatty.rc │ │ │ ├── chattyDoc.cpp │ │ │ ├── chattyDoc.h │ │ │ ├── chattyView.cpp │ │ │ ├── chattyView.h │ │ │ ├── res │ │ │ ├── Toolbar.bmp │ │ │ ├── chatty.ico │ │ │ ├── chatty.rc2 │ │ │ └── chattyDoc.ico │ │ │ └── resource.h │ ├── GP │ │ ├── changelog.txt │ │ ├── gp.c │ │ ├── gp.h │ │ ├── gpi.c │ │ ├── gpi.h │ │ ├── gpiBuddy.c │ │ ├── gpiBuddy.h │ │ ├── gpiBuffer.c │ │ ├── gpiBuffer.h │ │ ├── gpiCallback.c │ │ ├── gpiCallback.h │ │ ├── gpiConnect.c │ │ ├── gpiConnect.h │ │ ├── gpiInfo.c │ │ ├── gpiInfo.h │ │ ├── gpiKeys.c │ │ ├── gpiKeys.h │ │ ├── gpiOperation.c │ │ ├── gpiOperation.h │ │ ├── gpiPS3.c │ │ ├── gpiPS3.h │ │ ├── gpiPeer.c │ │ ├── gpiPeer.h │ │ ├── gpiProfile.c │ │ ├── gpiProfile.h │ │ ├── gpiSearch.c │ │ ├── gpiSearch.h │ │ ├── gpiTransfer.c │ │ ├── gpiTransfer.h │ │ ├── gpiUnique.c │ │ ├── gpiUnique.h │ │ ├── gpiUtility.c │ │ ├── gpiUtility.h │ │ └── gpstress │ │ │ └── gpstress.c │ ├── Peer │ │ ├── PeerLobby │ │ │ ├── ConnectPage.cpp │ │ │ ├── ConnectPage.h │ │ │ ├── CreatePage.cpp │ │ │ ├── CreatePage.h │ │ │ ├── GroupPage.cpp │ │ │ ├── GroupPage.h │ │ │ ├── LobbyWizard.cpp │ │ │ ├── LobbyWizard.h │ │ │ ├── PeerLobby.cpp │ │ │ ├── PeerLobby.h │ │ │ ├── PeerLobby.rc │ │ │ ├── ReadMe.txt │ │ │ ├── SideBarCtrl.cpp │ │ │ ├── SideBarCtrl.h │ │ │ ├── StagingPage.cpp │ │ │ ├── StagingPage.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── TitlePage.cpp │ │ │ ├── TitlePage.h │ │ │ ├── res │ │ │ │ ├── PeerLobby.ico │ │ │ │ ├── PeerLobby.rc2 │ │ │ │ ├── ico00001.ico │ │ │ │ ├── ico00002.ico │ │ │ │ ├── ico00003.ico │ │ │ │ ├── ico00004.ico │ │ │ │ └── icon1.ico │ │ │ └── resource.h │ │ ├── changelog.txt │ │ ├── peer.h │ │ ├── peerAscii.h │ │ ├── peerAutoMatch.c │ │ ├── peerAutoMatch.h │ │ ├── peerCallbacks.c │ │ ├── peerCallbacks.h │ │ ├── peerGlobalCallbacks.c │ │ ├── peerGlobalCallbacks.h │ │ ├── peerHost.c │ │ ├── peerHost.h │ │ ├── peerKeys.c │ │ ├── peerKeys.h │ │ ├── peerMain.c │ │ ├── peerMain.h │ │ ├── peerMangle.c │ │ ├── peerMangle.h │ │ ├── peerOperations.c │ │ ├── peerOperations.h │ │ ├── peerPing.c │ │ ├── peerPing.h │ │ ├── peerPlayers.c │ │ ├── peerPlayers.h │ │ ├── peerQR.c │ │ ├── peerQR.h │ │ ├── peerRooms.c │ │ ├── peerRooms.h │ │ ├── peerSB.c │ │ ├── peerSB.h │ │ └── peerc │ │ │ ├── peerc.c │ │ │ ├── peernitrocw │ │ │ ├── Nitro.lcf │ │ │ └── ROM-TS.rsf │ │ │ └── peerps2prodg │ │ │ ├── peerps2prodg.dsp │ │ │ └── peerps2prodg.dsw │ ├── Voice2 │ │ ├── Voice2BuddyMFC │ │ │ ├── LoginDlg.cpp │ │ │ ├── LoginDlg.h │ │ │ ├── SetupDlg.cpp │ │ │ ├── SetupDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── Voice2BuddyMFC.cpp │ │ │ ├── Voice2BuddyMFC.h │ │ │ ├── Voice2BuddyMFC.rc │ │ │ ├── Voice2BuddyMFCDlg.cpp │ │ │ ├── Voice2BuddyMFCDlg.h │ │ │ ├── VoiceSessionDlg.cpp │ │ │ ├── VoiceSessionDlg.h │ │ │ ├── res │ │ │ │ ├── Voice2BuddyMFC.ico │ │ │ │ ├── Voice2BuddyMFC.rc2 │ │ │ │ ├── gamespyl.bmp │ │ │ │ ├── logo270x83.bmp │ │ │ │ ├── microsoft-microphone.bmp │ │ │ │ ├── microsoft-speaker.bmp │ │ │ │ ├── speaking.bmp │ │ │ │ └── speaking2.bmp │ │ │ └── resource.h │ │ ├── changelog.txt │ │ ├── gv.h │ │ ├── gvCodec.c │ │ ├── gvCodec.h │ │ ├── gvCustomDevice.c │ │ ├── gvCustomDevice.h │ │ ├── gvDevice.c │ │ ├── gvDevice.h │ │ ├── gvDirectSound.c │ │ ├── gvDirectSound.h │ │ ├── gvFrame.c │ │ ├── gvFrame.h │ │ ├── gvGSM.c │ │ ├── gvGSM.h │ │ ├── gvLogitechPS2Codecs.c │ │ ├── gvLogitechPS2Codecs.h │ │ ├── gvMain.c │ │ ├── gvMain.h │ │ ├── gvOSXAudio.c │ │ ├── gvOSXAudio.h │ │ ├── gvPS2Audio.c │ │ ├── gvPS2Audio.h │ │ ├── gvPS2Eyetoy.c │ │ ├── gvPS2Eyetoy.h │ │ ├── gvPS2Headset.c │ │ ├── gvPS2Headset.h │ │ ├── gvPS2Spu2.c │ │ ├── gvPS2Spu2.h │ │ ├── gvPS3Audio.c │ │ ├── gvPS3Audio.h │ │ ├── gvPS3Headset.c │ │ ├── gvPS3Headset.h │ │ ├── gvPSPAudio.c │ │ ├── gvPSPAudio.h │ │ ├── gvSource.c │ │ ├── gvSource.h │ │ ├── gvSpeex.c │ │ ├── gvSpeex.h │ │ ├── gvSpeexSpu.c │ │ ├── gvSpeexSpu.h │ │ ├── gvUtil.c │ │ ├── gvUtil.h │ │ └── voice2bench │ │ │ ├── voice2bench.c │ │ │ ├── voice2benchps2cw │ │ │ ├── voice2bench_prefix_eenet_debug.h │ │ │ ├── voice2bench_prefix_eenet_release.h │ │ │ ├── voice2bench_prefix_insock_debug.h │ │ │ ├── voice2bench_prefix_insock_release.h │ │ │ ├── voice2bench_prefix_snsystems_debug.h │ │ │ └── voice2bench_prefix_snsystems_release.h │ │ │ ├── voice2benchps2prodg │ │ │ ├── voice2benchps2prodg.dsp │ │ │ └── voice2benchps2prodg.dsw │ │ │ └── voicesample.h │ ├── changelog.txt │ ├── cl_gamespy.c │ ├── cl_gamespy.h │ ├── common │ │ ├── changelog.txt │ │ ├── gsAssert.c │ │ ├── gsAssert.h │ │ ├── gsAvailable.c │ │ ├── gsAvailable.h │ │ ├── gsCommon.h │ │ ├── gsCore.c │ │ ├── gsCore.h │ │ ├── gsCrypt.c │ │ ├── gsCrypt.h │ │ ├── gsDebug.c │ │ ├── gsDebug.h │ │ ├── gsLargeInt.c │ │ ├── gsLargeInt.h │ │ ├── gsMemory.c │ │ ├── gsMemory.h │ │ ├── gsPlatform.c │ │ ├── gsPlatform.h │ │ ├── gsPlatformSocket.c │ │ ├── gsPlatformSocket.h │ │ ├── gsPlatformThread.c │ │ ├── gsPlatformThread.h │ │ ├── gsPlatformUtil.c │ │ ├── gsPlatformUtil.h │ │ ├── gsRC4.c │ │ ├── gsRC4.h │ │ ├── gsSHA1.c │ │ ├── gsSHA1.h │ │ ├── gsSSL.c │ │ ├── gsSSL.h │ │ ├── gsSoap.c │ │ ├── gsSoap.h │ │ ├── gsStringUtil.c │ │ ├── gsStringUtil.h │ │ ├── gsUdpEngine.c │ │ ├── gsUdpEngine.h │ │ ├── gsXML.c │ │ ├── gsXML.h │ │ ├── linux │ │ │ ├── LinuxCommon.c │ │ │ ├── changelog.txt │ │ │ ├── gsSocketLinux.c │ │ │ ├── gsThreadLinux.c │ │ │ └── gsUtilLinux.c │ │ ├── macosx │ │ │ ├── MacOSXCommon.c │ │ │ ├── changelog.txt │ │ │ ├── gsThreadMacOSX.c │ │ │ └── gsUtilMacOSX.c │ │ ├── nitro │ │ │ ├── backup.c │ │ │ ├── backup.h │ │ │ ├── changelog.txt │ │ │ ├── font.c │ │ │ ├── font.h │ │ │ ├── gsSocketNitro.c │ │ │ ├── gsThreadNitro.c │ │ │ ├── gsTimerNitro.c │ │ │ ├── gsUtilNitro.c │ │ │ ├── key.c │ │ │ ├── key.h │ │ │ ├── main.c │ │ │ ├── menu.c │ │ │ ├── menu.h │ │ │ ├── nitrocommon.cww │ │ │ ├── nitrosample │ │ │ │ ├── Nitro.lcf │ │ │ │ ├── ROM-TS.rsf │ │ │ │ └── nitrosample.c │ │ │ ├── screen.c │ │ │ ├── screen.h │ │ │ ├── touch.c │ │ │ ├── touch.h │ │ │ ├── wireless.c │ │ │ └── wireless.h │ │ ├── ps2 │ │ │ ├── changelog.txt │ │ │ ├── cw │ │ │ │ ├── LinkSegment_PS2.lcf │ │ │ │ ├── PREFIX_PS2_DEBUG_TC296.h │ │ │ │ ├── PREFIX_PS2_RELEASE_TC296.h │ │ │ │ ├── cw.cww │ │ │ │ ├── cwprefix_eenet_debug.h │ │ │ │ ├── cwprefix_eenet_debug_uniqueid.h │ │ │ │ ├── cwprefix_eenet_release.h │ │ │ │ ├── cwprefix_eenet_release_uniqueid.h │ │ │ │ ├── cwprefix_insock_debug.h │ │ │ │ ├── cwprefix_insock_debug_uniqueid.h │ │ │ │ ├── cwprefix_insock_release.h │ │ │ │ ├── cwprefix_insock_release_uniqueid.h │ │ │ │ ├── cwprefix_snsystems_debug.h │ │ │ │ ├── cwprefix_snsystems_debug_uniqueid.h │ │ │ │ ├── cwprefix_snsystems_release.h │ │ │ │ └── cwprefix_snsystems_release_uniqueid.h │ │ │ ├── ent_cnf │ │ │ │ ├── cw │ │ │ │ │ ├── LinkSegment_PS2IOP.lcf │ │ │ │ │ ├── PREFIX_PS2IOP_DEBUG.h │ │ │ │ │ └── PREFIX_PS2IOP_RELEASE.h │ │ │ │ └── prodg │ │ │ │ │ ├── ent_cnf.dsp │ │ │ │ │ └── ent_cnf.dsw │ │ │ ├── gsSocketPs2.c │ │ │ ├── gsThreadPs2.c │ │ │ ├── gsUtilPs2.c │ │ │ ├── prodg │ │ │ │ ├── PS2_in_VC.h │ │ │ │ ├── prodg.dsw │ │ │ │ └── ps2.lk │ │ │ ├── ps2common.c │ │ │ ├── ps2pad.c │ │ │ └── ps2pad.h │ │ ├── ps3 │ │ │ ├── SpeexSpursTaskManager │ │ │ │ ├── CellConfiguration.h │ │ │ │ ├── CellVectorMath.h │ │ │ │ ├── PS3Types.h │ │ │ │ ├── SPUAssert.h │ │ │ │ ├── SpeexSpursTask │ │ │ │ │ └── SpuSpeexTaskMain.cpp │ │ │ │ ├── SpuDoubleBuffer.h │ │ │ │ ├── SpuFakeDma.h │ │ │ │ ├── SpuSpeexTaskOutput.h │ │ │ │ ├── SpursSpeexCInterface.cpp │ │ │ │ ├── SpursSpeexCInterface.h │ │ │ │ ├── SpursSpeexTaskManager.cpp │ │ │ │ ├── SpursSpeexTaskManager.h │ │ │ │ ├── spursAlignedAllocator.cpp │ │ │ │ ├── spursAlignedAllocator.h │ │ │ │ ├── spursAlignedObjectArray.h │ │ │ │ ├── spursConfiguration.h │ │ │ │ ├── spursPlatformDefinitions.h │ │ │ │ ├── spursScalar.h │ │ │ │ ├── spursSupportInterface.cpp │ │ │ │ ├── spursSupportInterface.h │ │ │ │ ├── spursThreadSupportInterface.cpp │ │ │ │ ├── spursUtilityMacros.h │ │ │ │ └── spursthreadsupportinterface.h │ │ │ ├── gsSocketPS3.c │ │ │ ├── gsUtilPS3.c │ │ │ └── ps3common.c │ │ ├── psp │ │ │ ├── gsSocketPSP.c │ │ │ ├── gsUtilPSP.c │ │ │ └── pspcommon.c │ │ ├── revolution │ │ │ ├── gsSocketRevolution.c │ │ │ ├── gsThreadRevoulution.c │ │ │ ├── gsUtilRevolution.c │ │ │ └── revolutionCommon.c │ │ ├── win32 │ │ │ ├── Win32Common.c │ │ │ ├── changelog.txt │ │ │ ├── gsSocketWin32.c │ │ │ ├── gsThreadWin32.c │ │ │ └── gsUtilWin32.c │ │ ├── x360 │ │ │ ├── X360Common.c │ │ │ ├── gsSocketX360.c │ │ │ └── gsThreadX360.c │ │ └── xbox │ │ │ └── gsSocketXbox.c │ ├── darray.c │ ├── darray.h │ ├── gcdkey │ │ ├── CdkeyGen │ │ │ └── gcdkeygen.c │ │ ├── changelog.txt │ │ ├── gcdkeyc.c │ │ ├── gcdkeyc.h │ │ ├── gcdkeys.c │ │ └── gcdkeys.h │ ├── ghttp │ │ ├── changelog.txt │ │ ├── ghttp.h │ │ ├── ghttpASCII.h │ │ ├── ghttpBuffer.c │ │ ├── ghttpBuffer.h │ │ ├── ghttpCallbacks.c │ │ ├── ghttpCallbacks.h │ │ ├── ghttpCommon.c │ │ ├── ghttpCommon.h │ │ ├── ghttpConnection.c │ │ ├── ghttpConnection.h │ │ ├── ghttpEncryption.c │ │ ├── ghttpEncryption.h │ │ ├── ghttpMain.c │ │ ├── ghttpMain.h │ │ ├── ghttpPost.c │ │ ├── ghttpPost.h │ │ ├── ghttpProcess.c │ │ ├── ghttpProcess.h │ │ ├── ghttpc │ │ │ ├── ghttpc.c │ │ │ ├── ghttpnitrocw │ │ │ │ ├── Nitro.lcf │ │ │ │ └── ROM-TS.rsf │ │ │ └── ghttpps2prodg │ │ │ │ ├── ghttpps2prodg.dsp │ │ │ │ └── ghttpps2prodg.dsw │ │ └── ghttpmfc │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── ghttpmfc.cpp │ │ │ ├── ghttpmfc.h │ │ │ ├── ghttpmfc.rc │ │ │ ├── ghttpmfcDlg.cpp │ │ │ ├── ghttpmfcDlg.h │ │ │ ├── res │ │ │ ├── ghttpmfc.ico │ │ │ └── ghttpmfc.rc2 │ │ │ └── resource.h │ ├── goaceng.h │ ├── gserver.c │ ├── gserver.h │ ├── gserverlist.c │ ├── gstats │ │ ├── changelog.txt │ │ ├── gbucket.c │ │ ├── gbucket.h │ │ ├── gp_stats │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── gp_stats.cpp │ │ │ ├── gp_stats.h │ │ │ ├── gp_stats.rc │ │ │ ├── gp_statsDlg.cpp │ │ │ ├── gp_statsDlg.h │ │ │ ├── res │ │ │ │ ├── gp_stats.ico │ │ │ │ └── gp_stats.rc2 │ │ │ └── resource.h │ │ ├── gpersist.h │ │ ├── gstats.c │ │ ├── gstats.h │ │ ├── ladderTrack │ │ │ ├── HostOrJoinDlg.cpp │ │ │ ├── HostOrJoinDlg.h │ │ │ ├── LoginDlg.cpp │ │ │ ├── LoginDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── WaitingDlg.cpp │ │ │ ├── WaitingDlg.h │ │ │ ├── ladderTrack.cpp │ │ │ ├── ladderTrack.h │ │ │ ├── ladderTrack.rc │ │ │ ├── ladderTrackDlg.cpp │ │ │ ├── ladderTrackDlg.h │ │ │ ├── res │ │ │ │ ├── ladderTrack.ico │ │ │ │ └── ladderTrack.rc2 │ │ │ └── resource.h │ │ ├── multiTrack │ │ │ ├── HostOrJoinDlg.cpp │ │ │ ├── HostOrJoinDlg.h │ │ │ ├── LoginDlg.cpp │ │ │ ├── LoginDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── WaitingDlg.cpp │ │ │ ├── WaitingDlg.h │ │ │ ├── multiTrack.cpp │ │ │ ├── multiTrack.h │ │ │ ├── multiTrack.rc │ │ │ ├── multiTrackDlg.cpp │ │ │ ├── multiTrackDlg.h │ │ │ ├── res │ │ │ │ ├── multiTrack.ico │ │ │ │ └── multiTrack.rc2 │ │ │ └── resource.h │ │ └── track │ │ │ ├── LoginDlg.cpp │ │ │ ├── LoginDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── res │ │ │ ├── track.ico │ │ │ └── track.rc2 │ │ │ ├── resource.h │ │ │ ├── track.cpp │ │ │ ├── track.h │ │ │ ├── track.rc │ │ │ ├── trackDlg.cpp │ │ │ └── trackDlg.h │ ├── gt2 │ │ ├── changelog.txt │ │ ├── gt2.h │ │ ├── gt2Auth.c │ │ ├── gt2Auth.h │ │ ├── gt2Buffer.c │ │ ├── gt2Buffer.h │ │ ├── gt2Callback.c │ │ ├── gt2Callback.h │ │ ├── gt2Connection.c │ │ ├── gt2Connection.h │ │ ├── gt2Encode.c │ │ ├── gt2Encode.h │ │ ├── gt2Filter.c │ │ ├── gt2Filter.h │ │ ├── gt2Main.c │ │ ├── gt2Main.h │ │ ├── gt2Message.c │ │ ├── gt2Message.h │ │ ├── gt2Socket.c │ │ ├── gt2Socket.h │ │ ├── gt2Utility.c │ │ ├── gt2Utility.h │ │ ├── gt2action │ │ │ ├── TGAFile.cpp │ │ │ ├── TGAFile.h │ │ │ ├── gt2aClient.c │ │ │ ├── gt2aClient.h │ │ │ ├── gt2aDisplay.c │ │ │ ├── gt2aDisplay.h │ │ │ ├── gt2aInput.c │ │ │ ├── gt2aInput.h │ │ │ ├── gt2aLogic.c │ │ │ ├── gt2aLogic.h │ │ │ ├── gt2aMain.c │ │ │ ├── gt2aMain.h │ │ │ ├── gt2aMath.c │ │ │ ├── gt2aMath.h │ │ │ ├── gt2aParse.c │ │ │ ├── gt2aParse.h │ │ │ ├── gt2aServer.c │ │ │ ├── gt2aServer.h │ │ │ ├── gt2aSound.c │ │ │ ├── gt2aSound.h │ │ │ ├── images │ │ │ │ ├── asteroid0.tga │ │ │ │ ├── asteroid1.tga │ │ │ │ ├── asteroid2.tga │ │ │ │ ├── explosion0.tga │ │ │ │ ├── explosion1.tga │ │ │ │ ├── mine0.tga │ │ │ │ ├── mine1.tga │ │ │ │ ├── mine2.tga │ │ │ │ ├── rocket0.tga │ │ │ │ ├── rocket1.tga │ │ │ │ ├── rocket2.tga │ │ │ │ ├── rocket3.tga │ │ │ │ ├── ship0.tga │ │ │ │ ├── ship1.tga │ │ │ │ ├── space.tga │ │ │ │ ├── spinner0.tga │ │ │ │ ├── spinner1.tga │ │ │ │ └── spinner2.tga │ │ │ ├── messages.txt │ │ │ ├── sounds │ │ │ │ ├── die.wav │ │ │ │ ├── explosion.wav │ │ │ │ ├── mine.wav │ │ │ │ ├── pickup.wav │ │ │ │ └── rocket.wav │ │ │ └── todo.txt │ │ ├── gt2hostmig │ │ │ └── gt2hostmig.c │ │ ├── gt2nat │ │ │ └── gt2nat.c │ │ └── gt2proxy │ │ │ └── gt2proxy.c │ ├── gutil.c │ ├── gutil.h │ ├── hashtable.c │ ├── hashtable.h │ ├── md5.h │ ├── md5c.c │ ├── natneg │ │ ├── NATify.c │ │ ├── NATify.h │ │ ├── changelog.txt │ │ ├── natneg.c │ │ ├── natneg.h │ │ └── nninternal.h │ ├── nonport.h │ ├── pinger │ │ ├── pinger.h │ │ └── pingerMain.c │ ├── pt │ │ ├── changelog.txt │ │ ├── fpupdate │ │ │ └── fpupdate.exe │ │ ├── pt.h │ │ └── ptMain.c │ ├── q_gamespy.c │ ├── q_gamespy.h │ ├── qr2 │ │ ├── changelog.txt │ │ ├── qr2.c │ │ ├── qr2.h │ │ ├── qr2csample │ │ │ ├── ReadMe.txt │ │ │ ├── qr2csample.c │ │ │ ├── qr2nitrocw │ │ │ │ ├── Nitro.lcf │ │ │ │ └── ROM-TS.rsf │ │ │ └── qr2ps2prodg │ │ │ │ ├── qr2ps2prodg.dsp │ │ │ │ └── qr2ps2prodg.dsw │ │ ├── qr2regkeys.c │ │ ├── qr2regkeys.h │ │ └── querytest.exe │ ├── sake │ │ ├── changelog.txt │ │ ├── sake.h │ │ ├── sakeMain.c │ │ ├── sakeMain.h │ │ ├── sakeRequest.c │ │ ├── sakeRequest.h │ │ ├── sakeRequestInternal.h │ │ ├── sakeRequestMisc.c │ │ ├── sakeRequestModify.c │ │ └── sakeRequestRead.c │ ├── sc │ │ ├── changelog.txt │ │ ├── sc.h │ │ ├── scRaceSample │ │ │ ├── HostOrJoinDlg.cpp │ │ │ ├── HostOrJoinDlg.h │ │ │ ├── LoginDlg.cpp │ │ │ ├── LoginDlg.h │ │ │ ├── ReadMe.txt │ │ │ ├── ScRaceSample.cpp │ │ │ ├── ScRaceSample.h │ │ │ ├── ScRaceSample.rc │ │ │ ├── ScRaceSampleDlg.cpp │ │ │ ├── ScRaceSampleDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── WaitingDlg.cpp │ │ │ ├── WaitingDlg.h │ │ │ ├── atlas_Competition_Race_Sample_App_v1.h │ │ │ ├── atlas_sc_race_v1.c │ │ │ ├── atlas_sc_race_v1.h │ │ │ ├── res │ │ │ │ ├── ScRaceSample.ico │ │ │ │ └── ScRaceSample.rc2 │ │ │ └── resource.h │ │ ├── sci.h │ │ ├── sciInterface.c │ │ ├── sciInterface.h │ │ ├── sciMain.c │ │ ├── sciReport.c │ │ ├── sciReport.h │ │ ├── sciSerialize.c │ │ ├── sciSerialize.h │ │ ├── sciWebServices.c │ │ └── sciWebServices.h │ ├── serverbrowsing │ │ ├── changelog.txt │ │ ├── sb_ascii.h │ │ ├── sb_crypt.c │ │ ├── sb_crypt.h │ │ ├── sb_internal.h │ │ ├── sb_queryengine.c │ │ ├── sb_server.c │ │ ├── sb_serverbrowsing.c │ │ ├── sb_serverbrowsing.h │ │ ├── sb_serverlist.c │ │ └── sbmfcsample │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── res │ │ │ ├── sbmfcsample.ico │ │ │ └── sbmfcsample.rc2 │ │ │ ├── resource.h │ │ │ ├── sbmfcsample.cpp │ │ │ ├── sbmfcsample.h │ │ │ ├── sbmfcsample.rc │ │ │ ├── sbmfcsampleDlg.cpp │ │ │ └── sbmfcsampleDlg.h │ ├── sv_gamespy.c │ ├── sv_gamespy.h │ ├── sv_gqueryreporting.c │ ├── sv_gqueryreporting.h │ └── webservices │ │ ├── AuthService.c │ │ └── AuthService.h ├── null │ ├── null_client.c │ ├── null_cm.c │ ├── null_input.c │ ├── null_server.c │ ├── null_snddma.c │ ├── null_sys.c │ └── null_tiki.c ├── parser │ ├── bison_source.txt │ ├── lex.yy.cpp │ ├── lex_source.txt │ ├── parsetree.cpp │ ├── parsetree.h │ └── y.tab.cpp ├── q3_ui │ └── ui_sparena.c ├── qcommon │ ├── alias.c │ ├── alias.h │ ├── bg_compat.cpp │ ├── bg_compat.h │ ├── cm_fencemask.c │ ├── cm_load.c │ ├── cm_local.h │ ├── cm_patch.c │ ├── cm_patch.h │ ├── cm_polylib.c │ ├── cm_polylib.h │ ├── cm_public.h │ ├── cm_terrain.c │ ├── cm_terrain.h │ ├── cm_test.c │ ├── cm_trace.c │ ├── cm_trace_lbd.cpp │ ├── cm_trace_obfuscation.cpp │ ├── cmd.c │ ├── common.c │ ├── common_light.c │ ├── crc.c │ ├── crc.h │ ├── cvar.c │ ├── files.cpp │ ├── huffman.cpp │ ├── ioapi.c │ ├── ioapi.h │ ├── json.h │ ├── json.hpp │ ├── localization.h │ ├── md4.c │ ├── md5.c │ ├── memory.c │ ├── msg.cpp │ ├── net_chan.c │ ├── net_ip.c │ ├── q_math.c │ ├── q_platform.h │ ├── q_shared.c │ ├── q_shared.h │ ├── q_version.h │ ├── qcommon.h │ ├── qfiles.h │ ├── surfaceflags.h │ ├── unzip.c │ └── unzip.h ├── renderercommon │ ├── iqm.h │ ├── new │ │ ├── tr_public_new.h │ │ └── tr_types_new.h │ ├── puff.c │ ├── puff.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_pvr.c │ ├── tr_image_tga.c │ ├── tr_noise.c │ ├── tr_public.h │ ├── tr_subs.c │ └── tr_types.h ├── renderergl1 │ ├── qgl.h │ ├── qgl_linked.h │ ├── ref_trin.def │ ├── renderer.vcproj │ ├── tr_backend.c │ ├── tr_bsp.c │ ├── tr_cmds.c │ ├── tr_curve.c │ ├── tr_draw.c │ ├── tr_flares.c │ ├── tr_font.cpp │ ├── tr_ghost.cpp │ ├── tr_ghost.h │ ├── tr_image.c │ ├── tr_init.c │ ├── tr_light.c │ ├── tr_local.h │ ├── tr_main.c │ ├── tr_marks.c │ ├── tr_marks_permanent.c │ ├── tr_model.cpp │ ├── tr_public.h │ ├── tr_scene.c │ ├── tr_shade.c │ ├── tr_shade_calc.c │ ├── tr_shader.c │ ├── tr_shadows.c │ ├── tr_sky.c │ ├── tr_sky_portal.cpp │ ├── tr_sphere_shade.cpp │ ├── tr_sprite.c │ ├── tr_staticmodels.cpp │ ├── tr_sun_flare.cpp │ ├── tr_surface.c │ ├── tr_swipe.cpp │ ├── tr_terrain.c │ ├── tr_util.cpp │ ├── tr_vis.cpp │ ├── tr_vis.h │ └── 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 │ │ ├── greyscale_fp.glsl │ │ ├── greyscale_vp.glsl │ │ ├── lightall_fp.glsl │ │ ├── lightall_vp.glsl │ │ ├── pshadow_fp.glsl │ │ ├── pshadow_vp.glsl │ │ ├── shaders.cmake │ │ ├── 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_draw.c │ ├── tr_dsa.c │ ├── tr_dsa.h │ ├── tr_extensions.c │ ├── tr_extramath.c │ ├── tr_extramath.h │ ├── tr_extratypes.h │ ├── tr_fbo.c │ ├── tr_fbo.h │ ├── tr_flares.c │ ├── tr_font.cpp │ ├── tr_ghost.cpp │ ├── tr_ghost.h │ ├── tr_glsl.c │ ├── tr_image.c │ ├── tr_image_dds.c │ ├── tr_init.c │ ├── tr_light.c │ ├── tr_local.h │ ├── tr_main.c │ ├── tr_marks.c │ ├── tr_marks_permanent.c │ ├── tr_mesh.c │ ├── tr_model.c │ ├── tr_model.cpp │ ├── 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_sky_portal.cpp │ ├── tr_sphere_shade.cpp │ ├── tr_sprite.c │ ├── tr_staticmodels.cpp │ ├── tr_sun_flare.cpp │ ├── tr_surface.c │ ├── tr_swipe.cpp │ ├── tr_terrain.c │ ├── tr_util.cpp │ ├── tr_vbo.c │ ├── tr_vis.cpp │ ├── tr_vis.h │ └── tr_world.c ├── script │ ├── scriptclass.cpp │ ├── scriptclass.h │ ├── scriptcompiler.cpp │ ├── scriptcompiler.h │ ├── scriptexception.cpp │ ├── scriptexception.h │ ├── scriptopcodes.cpp │ ├── scriptopcodes.h │ ├── scriptvariable.cpp │ ├── scriptvariable.h │ ├── scriptvm.cpp │ └── scriptvm.h ├── sdl │ ├── sdl_gamma.c │ ├── sdl_glimp.c │ ├── sdl_icon.h │ ├── sdl_input.c │ ├── sdl_mouse.c │ └── sdl_snd.c ├── server │ ├── server.h │ ├── sv_ccmds.c │ ├── sv_client.c │ ├── sv_game.c │ ├── sv_init.c │ ├── sv_main.c │ ├── sv_net_chan.c │ ├── sv_snapshot.c │ ├── sv_snd.c │ └── sv_world.c ├── skeletor │ ├── SkelMat3.h │ ├── SkelMat4.h │ ├── SkelQuat.h │ ├── SkelVec3.h │ ├── SkelVec4.h │ ├── bonetable.cpp │ ├── skeletor.cpp │ ├── skeletor.h │ ├── skeletor_animation_file_format.h │ ├── skeletor_imports.cpp │ ├── skeletor_internal.h │ ├── skeletor_loadanimation.cpp │ ├── skeletor_model_file_format.h │ ├── skeletor_model_files.cpp │ ├── skeletor_name_lists.h │ ├── skeletor_utilities.cpp │ ├── skeletorbones.cpp │ ├── tokenizer.cpp │ └── tokenizer.h ├── sys │ ├── con_log.c │ ├── con_passive.c │ ├── con_tty.c │ ├── con_win32.c │ ├── new │ │ ├── sys_local_new.h │ │ ├── sys_main_new.c │ │ ├── sys_unix_new.c │ │ └── sys_win32_new.c │ ├── sys_autoupdater.c │ ├── sys_curl.c │ ├── sys_curl.h │ ├── sys_loadlib.h │ ├── sys_local.h │ ├── sys_main.c │ ├── sys_osx.m │ ├── sys_unix.c │ ├── sys_update_checker.cpp │ ├── sys_update_checker.h │ ├── sys_win32.c │ ├── win_bounds.cpp │ ├── win_localization.cpp │ ├── win_localization.h │ ├── win_manifest.xml │ ├── win_resource.h │ └── win_resource.rc ├── thirdparty │ ├── SDL2-2.32.8 │ │ └── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_emscripten.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_ngage.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wingdk.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_xbox.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ ├── curl-8.15.0 │ │ └── include │ │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── header.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── options.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ ├── urlapi.h │ │ │ └── websockets.h │ ├── jpeg-9f │ │ ├── cderror.h │ │ ├── cdjpeg.h │ │ ├── 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 │ │ └── transupp.h │ ├── libmad │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── build.yml │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── CREDITS │ │ ├── D.dat │ │ ├── README.md │ │ ├── TODO │ │ ├── bit.c │ │ ├── decoder.c │ │ ├── fixed.c │ │ ├── frame.c │ │ ├── global.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── imdct_l_arm.S │ │ ├── imdct_s.dat │ │ ├── layer12.c │ │ ├── layer12.h │ │ ├── layer3.c │ │ ├── layer3.h │ │ ├── mad.h.in │ │ ├── minimad.c │ │ ├── packaging │ │ │ ├── mad.pc.in │ │ │ └── madConfig.cmake.in │ │ ├── qc_table.dat │ │ ├── rq_table.dat │ │ ├── sf_table.dat │ │ ├── stream.c │ │ ├── synth.c │ │ ├── timer.c │ │ └── version.c │ ├── libogg-1.3.6 │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ └── src │ │ │ ├── bitwise.c │ │ │ ├── crctable.h │ │ │ └── framing.c │ ├── libs │ │ ├── macos │ │ │ ├── libSDL2-2.0.0.dylib │ │ │ └── libSDL2main.a │ │ ├── win32 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2main.lib │ │ │ ├── libSDL2.dll.a │ │ │ └── libSDL2main.a │ │ └── win64 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2main.lib │ │ │ ├── libSDL2.dll.a │ │ │ └── libSDL2main.a │ ├── libvorbis-1.3.7 │ │ ├── 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 │ │ │ ├── vorbisfile.c │ │ │ ├── window.c │ │ │ └── window.h │ ├── openal-soft-1.24.3 │ │ └── include │ │ │ └── AL │ │ │ ├── al.h │ │ │ ├── alc.h │ │ │ ├── alext.h │ │ │ ├── efx-creative.h │ │ │ ├── efx-presets.h │ │ │ └── efx.h │ ├── opus-1.5.2 │ │ ├── celt │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.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 │ │ │ ├── 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 │ │ │ ├── os_support.h │ │ │ ├── pitch.c │ │ │ ├── pitch.h │ │ │ ├── quant_bands.c │ │ │ ├── quant_bands.h │ │ │ ├── rate.c │ │ │ ├── rate.h │ │ │ ├── stack_alloc.h │ │ │ ├── static_modes_float.h │ │ │ ├── vq.c │ │ │ └── vq.h │ │ ├── include │ │ │ ├── opus.h │ │ │ ├── opus_custom.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ ├── opus_projection.h │ │ │ └── opus_types.h │ │ ├── silk │ │ │ ├── A2NLSF.c │ │ │ ├── API.h │ │ │ ├── CNG.c │ │ │ ├── HP_variable_cutoff.c │ │ │ ├── Inlines.h │ │ │ ├── LPC_analysis_filter.c │ │ │ ├── LPC_fit.c │ │ │ ├── LPC_inv_pred_gain.c │ │ │ ├── LP_variable_cutoff.c │ │ │ ├── MacroCount.h │ │ │ ├── MacroDebug.h │ │ │ ├── NLSF2A.c │ │ │ ├── NLSF_VQ.c │ │ │ ├── NLSF_VQ_weights_laroia.c │ │ │ ├── NLSF_decode.c │ │ │ ├── NLSF_del_dec_quant.c │ │ │ ├── NLSF_encode.c │ │ │ ├── NLSF_stabilize.c │ │ │ ├── NLSF_unpack.c │ │ │ ├── NSQ.c │ │ │ ├── NSQ.h │ │ │ ├── NSQ_del_dec.c │ │ │ ├── PLC.c │ │ │ ├── PLC.h │ │ │ ├── SigProc_FIX.h │ │ │ ├── VAD.c │ │ │ ├── VQ_WMat_EC.c │ │ │ ├── ana_filt_bank_1.c │ │ │ ├── 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 │ │ │ ├── float │ │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ │ ├── SigProc_FLP.h │ │ │ │ ├── apply_sine_window_FLP.c │ │ │ │ ├── autocorrelation_FLP.c │ │ │ │ ├── burg_modified_FLP.c │ │ │ │ ├── bwexpander_FLP.c │ │ │ │ ├── corrMatrix_FLP.c │ │ │ │ ├── encode_frame_FLP.c │ │ │ │ ├── energy_FLP.c │ │ │ │ ├── find_LPC_FLP.c │ │ │ │ ├── find_LTP_FLP.c │ │ │ │ ├── find_pitch_lags_FLP.c │ │ │ │ ├── find_pred_coefs_FLP.c │ │ │ │ ├── inner_product_FLP.c │ │ │ │ ├── k2a_FLP.c │ │ │ │ ├── main_FLP.h │ │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ │ ├── process_gains_FLP.c │ │ │ │ ├── regularize_correlations_FLP.c │ │ │ │ ├── residual_energy_FLP.c │ │ │ │ ├── scale_copy_vector_FLP.c │ │ │ │ ├── scale_vector_FLP.c │ │ │ │ ├── schur_FLP.c │ │ │ │ ├── sort_FLP.c │ │ │ │ ├── structs_FLP.h │ │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ │ └── wrappers_FLP.c │ │ │ ├── gain_quant.c │ │ │ ├── init_decoder.c │ │ │ ├── init_encoder.c │ │ │ ├── inner_prod_aligned.c │ │ │ ├── interpolate.c │ │ │ ├── lin2log.c │ │ │ ├── log2lin.c │ │ │ ├── macros.h │ │ │ ├── main.h │ │ │ ├── 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 │ │ │ ├── extensions.c │ │ │ ├── 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 │ ├── opusfile-0.12 │ │ ├── include │ │ │ └── opusfile.h │ │ └── src │ │ │ ├── http.c │ │ │ ├── info.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── opusfile.c │ │ │ ├── stream.c │ │ │ ├── wincerts.c │ │ │ └── winerrno.h │ ├── recastnavigation │ │ ├── .editorconfig │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── Build.yaml │ │ │ │ ├── Docs.yaml │ │ │ │ └── Tests.yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── DebugUtils │ │ │ ├── CMakeLists.txt │ │ │ ├── Include │ │ │ │ ├── DebugDraw.h │ │ │ │ ├── DetourDebugDraw.h │ │ │ │ ├── RecastDebugDraw.h │ │ │ │ └── RecastDump.h │ │ │ └── Source │ │ │ │ ├── DebugDraw.cpp │ │ │ │ ├── DetourDebugDraw.cpp │ │ │ │ ├── RecastDebugDraw.cpp │ │ │ │ └── RecastDump.cpp │ │ ├── Detour │ │ │ ├── CMakeLists.txt │ │ │ ├── Include │ │ │ │ ├── DetourAlloc.h │ │ │ │ ├── DetourAssert.h │ │ │ │ ├── DetourCommon.h │ │ │ │ ├── DetourMath.h │ │ │ │ ├── DetourNavMesh.h │ │ │ │ ├── DetourNavMeshBuilder.h │ │ │ │ ├── DetourNavMeshQuery.h │ │ │ │ ├── DetourNode.h │ │ │ │ └── DetourStatus.h │ │ │ └── Source │ │ │ │ ├── DetourAlloc.cpp │ │ │ │ ├── DetourAssert.cpp │ │ │ │ ├── DetourCommon.cpp │ │ │ │ ├── DetourNavMesh.cpp │ │ │ │ ├── DetourNavMeshBuilder.cpp │ │ │ │ ├── DetourNavMeshQuery.cpp │ │ │ │ └── DetourNode.cpp │ │ ├── DetourCrowd │ │ │ ├── CMakeLists.txt │ │ │ ├── Include │ │ │ │ ├── DetourCrowd.h │ │ │ │ ├── DetourLocalBoundary.h │ │ │ │ ├── DetourObstacleAvoidance.h │ │ │ │ ├── DetourPathCorridor.h │ │ │ │ ├── DetourPathQueue.h │ │ │ │ └── DetourProximityGrid.h │ │ │ └── Source │ │ │ │ ├── DetourCrowd.cpp │ │ │ │ ├── DetourLocalBoundary.cpp │ │ │ │ ├── DetourObstacleAvoidance.cpp │ │ │ │ ├── DetourPathCorridor.cpp │ │ │ │ ├── DetourPathQueue.cpp │ │ │ │ └── DetourProximityGrid.cpp │ │ ├── DetourTileCache │ │ │ ├── CMakeLists.txt │ │ │ ├── Include │ │ │ │ ├── DetourTileCache.h │ │ │ │ └── DetourTileCacheBuilder.h │ │ │ └── Source │ │ │ │ ├── DetourTileCache.cpp │ │ │ │ └── DetourTileCacheBuilder.cpp │ │ ├── Docs │ │ │ ├── DoxygenLayout.xml │ │ │ ├── Extern │ │ │ │ └── Recast_api.txt │ │ │ ├── Images │ │ │ │ └── screenshot.png │ │ │ ├── Readme.txt │ │ │ ├── doxygen-awesome-css │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doxygen-awesome-darkmode-toggle.js │ │ │ │ ├── doxygen-awesome-fragment-copy-button.js │ │ │ │ ├── doxygen-awesome-interactive-toc.js │ │ │ │ ├── doxygen-awesome-paragraph-link.js │ │ │ │ ├── doxygen-awesome-sidebar-only-darkmode-toggle.css │ │ │ │ ├── doxygen-awesome-sidebar-only.css │ │ │ │ ├── doxygen-awesome.css │ │ │ │ └── doxygen-custom │ │ │ │ │ ├── custom-alternative.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── header.html │ │ │ │ │ └── toggle-alternative-theme.js │ │ │ ├── footer.html │ │ │ └── header.html │ │ ├── Doxyfile │ │ ├── License.txt │ │ ├── README.md │ │ ├── Recast │ │ │ ├── CMakeLists.txt │ │ │ ├── Include │ │ │ │ ├── Recast.h │ │ │ │ ├── RecastAlloc.h │ │ │ │ └── RecastAssert.h │ │ │ └── Source │ │ │ │ ├── Recast.cpp │ │ │ │ ├── RecastAlloc.cpp │ │ │ │ ├── RecastArea.cpp │ │ │ │ ├── RecastAssert.cpp │ │ │ │ ├── RecastContour.cpp │ │ │ │ ├── RecastFilter.cpp │ │ │ │ ├── RecastLayers.cpp │ │ │ │ ├── RecastMesh.cpp │ │ │ │ ├── RecastMeshDetail.cpp │ │ │ │ ├── RecastRasterization.cpp │ │ │ │ └── RecastRegion.cpp │ │ ├── RecastDemo │ │ │ ├── Bin │ │ │ │ ├── .gitignore │ │ │ │ ├── DroidSans.ttf │ │ │ │ └── TestCases │ │ │ │ │ ├── movement_test.txt │ │ │ │ │ ├── nav_mesh_test.txt │ │ │ │ │ └── raycast_test.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── Contrib │ │ │ │ ├── fastlz │ │ │ │ │ ├── README.TXT │ │ │ │ │ ├── fastlz.c │ │ │ │ │ └── fastlz.h │ │ │ │ ├── readme-sdl.txt │ │ │ │ └── stb_truetype.h │ │ │ ├── Include │ │ │ │ ├── ChunkyTriMesh.h │ │ │ │ ├── ConvexVolumeTool.h │ │ │ │ ├── CrowdTool.h │ │ │ │ ├── Filelist.h │ │ │ │ ├── InputGeom.h │ │ │ │ ├── MeshLoaderObj.h │ │ │ │ ├── NavMeshPruneTool.h │ │ │ │ ├── NavMeshTesterTool.h │ │ │ │ ├── OffMeshConnectionTool.h │ │ │ │ ├── PerfTimer.h │ │ │ │ ├── Sample.h │ │ │ │ ├── SampleInterfaces.h │ │ │ │ ├── Sample_Debug.h │ │ │ │ ├── Sample_SoloMesh.h │ │ │ │ ├── Sample_TempObstacles.h │ │ │ │ ├── Sample_TileMesh.h │ │ │ │ ├── TestCase.h │ │ │ │ ├── ValueHistory.h │ │ │ │ ├── imgui.h │ │ │ │ └── imguiRenderGL.h │ │ │ ├── Source │ │ │ │ ├── ChunkyTriMesh.cpp │ │ │ │ ├── ConvexVolumeTool.cpp │ │ │ │ ├── CrowdTool.cpp │ │ │ │ ├── Filelist.cpp │ │ │ │ ├── InputGeom.cpp │ │ │ │ ├── MeshLoaderObj.cpp │ │ │ │ ├── NavMeshPruneTool.cpp │ │ │ │ ├── NavMeshTesterTool.cpp │ │ │ │ ├── OffMeshConnectionTool.cpp │ │ │ │ ├── PerfTimer.cpp │ │ │ │ ├── Sample.cpp │ │ │ │ ├── SampleInterfaces.cpp │ │ │ │ ├── Sample_Debug.cpp │ │ │ │ ├── Sample_SoloMesh.cpp │ │ │ │ ├── Sample_TempObstacles.cpp │ │ │ │ ├── Sample_TileMesh.cpp │ │ │ │ ├── TestCase.cpp │ │ │ │ ├── ValueHistory.cpp │ │ │ │ ├── imgui.cpp │ │ │ │ ├── imguiRenderGL.cpp │ │ │ │ └── main.cpp │ │ │ ├── cmake │ │ │ │ └── FindSDL2.cmake │ │ │ └── premake5.lua │ │ ├── Roadmap.md │ │ ├── Tests │ │ │ ├── CMakeLists.txt │ │ │ ├── Contrib │ │ │ │ └── catch2 │ │ │ │ │ ├── catch_all.hpp │ │ │ │ │ └── catch_amalgamated.cpp │ │ │ ├── Detour │ │ │ │ └── Tests_Detour.cpp │ │ │ └── Recast │ │ │ │ └── Tests_Recast.cpp │ │ ├── recastnavigation-config.cmake.in │ │ ├── recastnavigation.pc.in │ │ └── version.h.in │ └── zlib-1.3.1 │ │ ├── adler32.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.h │ │ ├── gzguts.h │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.h │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── tiki │ ├── tiki_anim.cpp │ ├── tiki_anim.h │ ├── tiki_cache.cpp │ ├── tiki_cache.h │ ├── tiki_commands.cpp │ ├── tiki_commands.h │ ├── tiki_files.cpp │ ├── tiki_files.h │ ├── tiki_frame.cpp │ ├── tiki_frame.h │ ├── tiki_imports.cpp │ ├── tiki_imports.h │ ├── tiki_mesh.cpp │ ├── tiki_mesh.h │ ├── tiki_parse.cpp │ ├── tiki_parse.h │ ├── tiki_shared.h │ ├── tiki_skel.cpp │ ├── tiki_skel.h │ ├── tiki_surface.cpp │ ├── tiki_surface.h │ ├── tiki_tag.cpp │ ├── tiki_tag.h │ ├── tiki_utility.cpp │ └── tiki_utility.h ├── 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 │ ├── md5_2_skX │ │ ├── NOTES.txt │ │ ├── doom3md5model.c │ │ ├── loadtiki.c │ │ ├── md5_2_skX.c │ │ ├── md5_2_skX.h │ │ ├── misc_utils.c │ │ ├── writeobj.c │ │ ├── writeskl.c │ │ └── writetiki.c │ ├── ommap │ │ ├── brush.c │ │ ├── brush_primit.c │ │ ├── bsp.c │ │ ├── common │ │ │ ├── aselib.c │ │ │ ├── aselib.h │ │ │ ├── bspfile.c │ │ │ ├── bspfile.h │ │ │ ├── cmdlib.c │ │ │ ├── cmdlib.h │ │ │ ├── imagelib.c │ │ │ ├── imagelib.h │ │ │ ├── l3dslib.c │ │ │ ├── l3dslib.h │ │ │ ├── mathlib.c │ │ │ ├── mathlib.h │ │ │ ├── md4.c │ │ │ ├── mutex.c │ │ │ ├── mutex.h │ │ │ ├── polylib.c │ │ │ ├── polylib.h │ │ │ ├── polyset.h │ │ │ ├── qfiles.h │ │ │ ├── scriplib.c │ │ │ ├── scriplib.h │ │ │ ├── surfaceflags.h │ │ │ ├── threads.c │ │ │ ├── threads.h │ │ │ ├── trilib.c │ │ │ └── trilib.h │ │ ├── facebsp.c │ │ ├── fog.c │ │ ├── gldraw.c │ │ ├── glfile.c │ │ ├── leakfile.c │ │ ├── libs │ │ │ ├── cmdlib.h │ │ │ ├── cmdlib │ │ │ │ ├── cmdlib.cpp │ │ │ │ └── cmdlib.vcproj │ │ │ ├── jpeg6 │ │ │ │ ├── README │ │ │ │ ├── jchuff.h │ │ │ │ ├── jcomapi.cpp │ │ │ │ ├── jconfig.h │ │ │ │ ├── jdapimin.cpp │ │ │ │ ├── jdapistd.cpp │ │ │ │ ├── jdatasrc.cpp │ │ │ │ ├── jdcoefct.cpp │ │ │ │ ├── jdcolor.cpp │ │ │ │ ├── jdct.h │ │ │ │ ├── jddctmgr.cpp │ │ │ │ ├── jdhuff.cpp │ │ │ │ ├── jdhuff.h │ │ │ │ ├── jdinput.cpp │ │ │ │ ├── jdmainct.cpp │ │ │ │ ├── jdmarker.cpp │ │ │ │ ├── jdmaster.cpp │ │ │ │ ├── jdpostct.cpp │ │ │ │ ├── jdsample.cpp │ │ │ │ ├── jdtrans.cpp │ │ │ │ ├── jerror.cpp │ │ │ │ ├── jerror.h │ │ │ │ ├── jfdctflt.cpp │ │ │ │ ├── jidctflt.cpp │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmemmgr.cpp │ │ │ │ ├── jmemnobs.cpp │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpeg6.vcproj │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpgload.cpp │ │ │ │ ├── jutils.cpp │ │ │ │ └── jversion.h │ │ │ ├── jpeg6d.lib │ │ │ ├── jpeglib.h │ │ │ ├── pak │ │ │ │ ├── pak.vcproj │ │ │ │ ├── pakstuff.cpp │ │ │ │ ├── unzip.cpp │ │ │ │ └── unzip.h │ │ │ ├── pakd.lib │ │ │ ├── pakstuff.h │ │ │ └── str.h │ │ ├── light.c │ │ ├── light.h │ │ ├── light_trace.c │ │ ├── lightmaps.c │ │ ├── lightv.c │ │ ├── map.c │ │ ├── mesh.c │ │ ├── mesh.h │ │ ├── misc_model.c │ │ ├── nodraw.c │ │ ├── patch.c │ │ ├── portals.c │ │ ├── prtfile.c │ │ ├── qbsp.h │ │ ├── shaders.c │ │ ├── shaders.h │ │ ├── soundv.c │ │ ├── surface.c │ │ ├── terrain.c │ │ ├── tjunction.c │ │ ├── tree.c │ │ ├── vis.c │ │ ├── vis.h │ │ ├── visflow.c │ │ └── writebsp.c │ ├── stringify.c │ └── stringify.cpp ├── uilib │ ├── editfield.h │ ├── ucolor.cpp │ ├── ucolor.h │ ├── ui_extern.h │ ├── ui_init.cpp │ ├── ui_local.h │ ├── ui_public.h │ ├── uibind.cpp │ ├── uibind.h │ ├── uibindlist.cpp │ ├── uibindlist.h │ ├── uibutton.cpp │ ├── uibutton.h │ ├── uicheckbox.cpp │ ├── uicheckbox.h │ ├── uicommon.h │ ├── uiconsole.cpp │ ├── uiconsole.h │ ├── uidialog.cpp │ ├── uidialog.h │ ├── uifield.cpp │ ├── uifield.h │ ├── uifloatwnd.cpp │ ├── uifloatwnd.h │ ├── uifont.cpp │ ├── uifont.h │ ├── uiglobalgamelist.cpp │ ├── uiglobalgamelist.h │ ├── uihorizscroll.cpp │ ├── uihorizscroll.h │ ├── uilabel.cpp │ ├── uilabel.h │ ├── uilangamelist.cpp │ ├── uilangamelist.h │ ├── uilayout.cpp │ ├── uilayout.h │ ├── uilist.cpp │ ├── uilist.h │ ├── uilistbox.cpp │ ├── uilistbox.h │ ├── uilistctrl.cpp │ ├── uilistctrl.h │ ├── uimenu.cpp │ ├── uimenu.h │ ├── uimessage.cpp │ ├── uimessage.h │ ├── uimledit.cpp │ ├── uimledit.h │ ├── uinotepad.cpp │ ├── uinotepad.h │ ├── uipoint2d.h │ ├── uipopupmenu.cpp │ ├── uipopupmenu.h │ ├── uipulldownmenu.cpp │ ├── uipulldownmenu.h │ ├── uipulldownmenucontainer.cpp │ ├── uipulldownmenucontainer.h │ ├── uirect2d.h │ ├── uisize2d.h │ ├── uislider.cpp │ ├── uislider.h │ ├── uistatus.cpp │ ├── uistatus.h │ ├── uivertscroll.cpp │ ├── uivertscroll.h │ ├── uiwidget.cpp │ ├── uiwidget.h │ ├── uiwinman.cpp │ ├── uiwinman.h │ ├── ulist.h │ └── usignal.h └── web │ ├── client-config.json │ └── client.html ├── container ├── README.md ├── dev │ ├── README.md │ ├── armhf │ │ └── Dockerfile │ ├── build.ps1 │ ├── i386 │ │ └── 18.04 │ │ │ └── Dockerfile │ ├── s390x │ │ └── Dockerfile │ └── x86_64 │ │ ├── 14.04 │ │ └── Dockerfile │ │ ├── 16.04 │ │ └── Dockerfile │ │ ├── 18.04 │ │ └── Dockerfile │ │ ├── 20.04 │ │ └── Dockerfile │ │ ├── 22.04 │ │ └── Dockerfile │ │ ├── 22.10 │ │ └── Dockerfile │ │ ├── debian-11 │ │ └── Dockerfile │ │ └── debian-12 │ │ └── Dockerfile └── server │ ├── README.md │ ├── base │ ├── Dockerfile │ ├── entrypoint.sh │ └── health_check.sh │ ├── build.ps1 │ ├── build.sh │ ├── docker-compose.yaml │ └── full │ ├── .dockerignore │ ├── Dockerfile │ └── game │ ├── .gitkeep │ └── home │ └── .gitkeep ├── docs ├── Doxyfile ├── README.md ├── assets │ ├── favicon.png │ ├── images │ │ ├── v0.50a-x86_64 │ │ │ └── 1.png │ │ ├── v0.50b-x86_64 │ │ │ ├── 1.png │ │ │ └── 2.png │ │ ├── v0.53-armhf │ │ │ └── 1.png │ │ ├── v0.53-x86_64 │ │ │ └── 1.png │ │ ├── v0.56.0-x86_64 │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── v0.58.0-x86_64 │ │ │ ├── 1.png │ │ │ ├── 1_old.png │ │ │ └── 2.png │ │ ├── v0.60.0-armhf │ │ │ └── 1.png │ │ └── v0.60.0-x86_64 │ │ │ ├── flughafen_1.png │ │ │ ├── flughafen_2.png │ │ │ ├── flughafen_3.png │ │ │ ├── mohdm1_1.png │ │ │ ├── mohdm2_1.png │ │ │ ├── training_1.png │ │ │ ├── training_2.png │ │ │ └── training_3.png │ └── screenshots │ │ └── install_guide │ │ ├── windows_installation_sendto.png │ │ └── windows_installation_shortcut.png ├── css │ └── doxygen-awesome-css │ │ ├── .github │ │ └── workflows │ │ │ └── publish.yaml │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── Doxyfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── docs │ │ ├── customization.md │ │ ├── extensions.md │ │ ├── img │ │ │ ├── darkmode_toggle.png │ │ │ ├── fancy_scrollbars_firefox.png │ │ │ ├── fancy_scrollbars_webkit.gif │ │ │ ├── fragment_copy_button.png │ │ │ ├── interactive_toc_mobile.png │ │ │ └── paragraph_link.png │ │ └── tricks.md │ │ ├── doxygen-awesome-darkmode-toggle.js │ │ ├── doxygen-awesome-fragment-copy-button.js │ │ ├── doxygen-awesome-interactive-toc.js │ │ ├── doxygen-awesome-paragraph-link.js │ │ ├── doxygen-awesome-sidebar-only-darkmode-toggle.css │ │ ├── doxygen-awesome-sidebar-only.css │ │ ├── doxygen-awesome-tabs.js │ │ ├── doxygen-awesome.css │ │ ├── doxygen-custom │ │ ├── custom-alternative.css │ │ ├── custom.css │ │ ├── header.html │ │ └── toggle-alternative-theme.js │ │ ├── img │ │ ├── screenshot.png │ │ ├── testimage.png │ │ ├── theme-variants-base.drawio.svg │ │ └── theme-variants-sidebar-only.drawio.svg │ │ ├── include │ │ └── MyLibrary │ │ │ ├── example.hpp │ │ │ └── subclass-example.hpp │ │ ├── logo.drawio.svg │ │ └── package.json └── markdown │ ├── 01-intro │ ├── 01-installation.md │ ├── 02-installation-windows.md │ ├── 03-requirements.md │ └── 04-differences.md │ ├── 02-running │ ├── 01-running.md │ ├── 02-running-server.md │ ├── 03-faq.md │ └── 04-docker.md │ ├── 03-configuration │ ├── 01-configuration.md │ ├── 02-configuration-server.md │ └── 03-configuration-bots.md │ ├── 04-coding │ ├── 01-code │ │ └── 01-creating-class.md │ ├── 01-compiling.md │ ├── 02-coding.md │ └── 02-scripting │ │ ├── 01-script-events.md │ │ ├── 02-files.md │ │ └── g_allclasses.html │ └── 05-contributing │ └── 01-license-header.md └── misc ├── linux ├── org.openmoh.openmohaa.desktop.in ├── org.openmoh.openmohaa.metainfo.xml ├── org.openmoh.openmohaab.desktop.in └── org.openmoh.openmohaas.desktop.in ├── macos ├── macos-dmg-background.png ├── macos-dmg-setup.applescript.in └── openmohaa.icns ├── openmohaa-lowdetail.svg ├── openmohaa-text-mono.svg ├── openmohaa-text-sm.png ├── openmohaa-text.png ├── openmohaa-text.svg ├── openmohaa.png ├── openmohaa.svg ├── setup └── windows │ └── app │ ├── Package.wxs │ ├── Setup.wixproj │ ├── Text.wxl │ └── WixUI_InstallDir_Custom.wxs ├── update-libs.sh └── windows └── openmohaa.ico /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LAYOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/LAYOUT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/Info.plist.in -------------------------------------------------------------------------------- /cmake/basegame.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/basegame.cmake -------------------------------------------------------------------------------- /cmake/client.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/client.cmake -------------------------------------------------------------------------------- /cmake/compilers/all.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/compilers/all.cmake -------------------------------------------------------------------------------- /cmake/compilers/clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/compilers/clang.cmake -------------------------------------------------------------------------------- /cmake/compilers/gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/compilers/gcc.cmake -------------------------------------------------------------------------------- /cmake/compilers/gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/compilers/gnu.cmake -------------------------------------------------------------------------------- /cmake/compilers/msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/compilers/msvc.cmake -------------------------------------------------------------------------------- /cmake/deploy/all.cmake: -------------------------------------------------------------------------------- 1 | include(deploy/unix) -------------------------------------------------------------------------------- /cmake/deploy/unix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/deploy/unix.cmake -------------------------------------------------------------------------------- /cmake/gamespy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/gamespy.cmake -------------------------------------------------------------------------------- /cmake/identity.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/identity.cmake -------------------------------------------------------------------------------- /cmake/installer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/installer.cmake -------------------------------------------------------------------------------- /cmake/launcher.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/launcher.cmake -------------------------------------------------------------------------------- /cmake/libraries/all.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/all.cmake -------------------------------------------------------------------------------- /cmake/libraries/curl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/curl.cmake -------------------------------------------------------------------------------- /cmake/libraries/freetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/freetype.cmake -------------------------------------------------------------------------------- /cmake/libraries/jpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/jpeg.cmake -------------------------------------------------------------------------------- /cmake/libraries/libmad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/libmad.cmake -------------------------------------------------------------------------------- /cmake/libraries/ogg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/ogg.cmake -------------------------------------------------------------------------------- /cmake/libraries/openal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/openal.cmake -------------------------------------------------------------------------------- /cmake/libraries/opus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/opus.cmake -------------------------------------------------------------------------------- /cmake/libraries/sdl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/sdl.cmake -------------------------------------------------------------------------------- /cmake/libraries/vorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/vorbis.cmake -------------------------------------------------------------------------------- /cmake/libraries/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/libraries/zlib.cmake -------------------------------------------------------------------------------- /cmake/missionpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/missionpack.cmake -------------------------------------------------------------------------------- /cmake/platforms/all.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/platforms/all.cmake -------------------------------------------------------------------------------- /cmake/platforms/linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/platforms/linux.cmake -------------------------------------------------------------------------------- /cmake/platforms/macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/platforms/macos.cmake -------------------------------------------------------------------------------- /cmake/platforms/unix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/platforms/unix.cmake -------------------------------------------------------------------------------- /cmake/platforms/windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/platforms/windows.cmake -------------------------------------------------------------------------------- /cmake/post_configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/post_configure.cmake -------------------------------------------------------------------------------- /cmake/q_version.generated.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/q_version.generated.h.in -------------------------------------------------------------------------------- /cmake/renderer_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/renderer_common.cmake -------------------------------------------------------------------------------- /cmake/renderer_gl1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/renderer_gl1.cmake -------------------------------------------------------------------------------- /cmake/renderer_gl2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/renderer_gl2.cmake -------------------------------------------------------------------------------- /cmake/server.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/server.cmake -------------------------------------------------------------------------------- /cmake/shared_script.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/shared_script.cmake -------------------------------------------------------------------------------- /cmake/shared_sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/shared_sources.cmake -------------------------------------------------------------------------------- /cmake/tests/all.cmake: -------------------------------------------------------------------------------- 1 | enable_testing() 2 | 3 | include(tests/lz77) 4 | -------------------------------------------------------------------------------- /cmake/tests/lz77.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/tests/lz77.cmake -------------------------------------------------------------------------------- /cmake/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/tools/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/utils/arch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/utils/arch.cmake -------------------------------------------------------------------------------- /cmake/utils/qvm_tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/utils/qvm_tools.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /code/Launcher/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/Launcher/launch.h -------------------------------------------------------------------------------- /code/Launcher/launch_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/Launcher/launch_linux.cpp -------------------------------------------------------------------------------- /code/Launcher/launch_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/Launcher/launch_main.cpp -------------------------------------------------------------------------------- /code/Launcher/launch_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/Launcher/launch_win32.cpp -------------------------------------------------------------------------------- /code/asm/ftola.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/asm/ftola.asm -------------------------------------------------------------------------------- /code/asm/ftola.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/asm/ftola.c -------------------------------------------------------------------------------- /code/asm/snapvector.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/asm/snapvector.asm -------------------------------------------------------------------------------- /code/asm/snapvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/asm/snapvector.c -------------------------------------------------------------------------------- /code/asm/vm_x86_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/asm/vm_x86_64.asm -------------------------------------------------------------------------------- /code/botlib/aasfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/aasfile.h -------------------------------------------------------------------------------- /code/botlib/be_aas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas.h -------------------------------------------------------------------------------- /code/botlib/be_aas_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_bsp.h -------------------------------------------------------------------------------- /code/botlib/be_aas_bspq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_bspq3.c -------------------------------------------------------------------------------- /code/botlib/be_aas_cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_cluster.c -------------------------------------------------------------------------------- /code/botlib/be_aas_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_debug.c -------------------------------------------------------------------------------- /code/botlib/be_aas_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_debug.h -------------------------------------------------------------------------------- /code/botlib/be_aas_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_def.h -------------------------------------------------------------------------------- /code/botlib/be_aas_entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_entity.c -------------------------------------------------------------------------------- /code/botlib/be_aas_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_entity.h -------------------------------------------------------------------------------- /code/botlib/be_aas_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_file.c -------------------------------------------------------------------------------- /code/botlib/be_aas_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_file.h -------------------------------------------------------------------------------- /code/botlib/be_aas_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_funcs.h -------------------------------------------------------------------------------- /code/botlib/be_aas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_main.c -------------------------------------------------------------------------------- /code/botlib/be_aas_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_main.h -------------------------------------------------------------------------------- /code/botlib/be_aas_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_move.c -------------------------------------------------------------------------------- /code/botlib/be_aas_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_move.h -------------------------------------------------------------------------------- /code/botlib/be_aas_optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_optimize.c -------------------------------------------------------------------------------- /code/botlib/be_aas_reach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_reach.c -------------------------------------------------------------------------------- /code/botlib/be_aas_reach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_reach.h -------------------------------------------------------------------------------- /code/botlib/be_aas_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_route.c -------------------------------------------------------------------------------- /code/botlib/be_aas_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_route.h -------------------------------------------------------------------------------- /code/botlib/be_aas_routealt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_routealt.c -------------------------------------------------------------------------------- /code/botlib/be_aas_routealt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_routealt.h -------------------------------------------------------------------------------- /code/botlib/be_aas_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_sample.c -------------------------------------------------------------------------------- /code/botlib/be_aas_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_aas_sample.h -------------------------------------------------------------------------------- /code/botlib/be_ai_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_char.c -------------------------------------------------------------------------------- /code/botlib/be_ai_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_char.h -------------------------------------------------------------------------------- /code/botlib/be_ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_chat.c -------------------------------------------------------------------------------- /code/botlib/be_ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_chat.h -------------------------------------------------------------------------------- /code/botlib/be_ai_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_gen.c -------------------------------------------------------------------------------- /code/botlib/be_ai_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_gen.h -------------------------------------------------------------------------------- /code/botlib/be_ai_goal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_goal.c -------------------------------------------------------------------------------- /code/botlib/be_ai_goal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_goal.h -------------------------------------------------------------------------------- /code/botlib/be_ai_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_move.c -------------------------------------------------------------------------------- /code/botlib/be_ai_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_move.h -------------------------------------------------------------------------------- /code/botlib/be_ai_weap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_weap.c -------------------------------------------------------------------------------- /code/botlib/be_ai_weap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_weap.h -------------------------------------------------------------------------------- /code/botlib/be_ai_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_weight.c -------------------------------------------------------------------------------- /code/botlib/be_ai_weight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ai_weight.h -------------------------------------------------------------------------------- /code/botlib/be_ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ea.c -------------------------------------------------------------------------------- /code/botlib/be_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_ea.h -------------------------------------------------------------------------------- /code/botlib/be_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/be_interface.c -------------------------------------------------------------------------------- /code/botlib/l_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_crc.c -------------------------------------------------------------------------------- /code/botlib/l_libvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_libvar.c -------------------------------------------------------------------------------- /code/botlib/l_libvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_libvar.h -------------------------------------------------------------------------------- /code/botlib/l_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_log.c -------------------------------------------------------------------------------- /code/botlib/l_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_log.h -------------------------------------------------------------------------------- /code/botlib/l_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_memory.c -------------------------------------------------------------------------------- /code/botlib/l_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_memory.h -------------------------------------------------------------------------------- /code/botlib/l_precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_precomp.c -------------------------------------------------------------------------------- /code/botlib/l_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_precomp.h -------------------------------------------------------------------------------- /code/botlib/l_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_script.c -------------------------------------------------------------------------------- /code/botlib/l_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_script.h -------------------------------------------------------------------------------- /code/botlib/l_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_struct.c -------------------------------------------------------------------------------- /code/botlib/l_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_struct.h -------------------------------------------------------------------------------- /code/botlib/l_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/botlib/l_utils.h -------------------------------------------------------------------------------- /code/cgame/cg_archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_archive.cpp -------------------------------------------------------------------------------- /code/cgame/cg_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_archive.h -------------------------------------------------------------------------------- /code/cgame/cg_beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_beam.cpp -------------------------------------------------------------------------------- /code/cgame/cg_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_commands.cpp -------------------------------------------------------------------------------- /code/cgame/cg_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_commands.h -------------------------------------------------------------------------------- /code/cgame/cg_consolecmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_consolecmds.c -------------------------------------------------------------------------------- /code/cgame/cg_drawtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_drawtools.cpp -------------------------------------------------------------------------------- /code/cgame/cg_ents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_ents.c -------------------------------------------------------------------------------- /code/cgame/cg_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_event.c -------------------------------------------------------------------------------- /code/cgame/cg_lightstyles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_lightstyles.cpp -------------------------------------------------------------------------------- /code/cgame/cg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_local.h -------------------------------------------------------------------------------- /code/cgame/cg_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_main.c -------------------------------------------------------------------------------- /code/cgame/cg_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_marks.c -------------------------------------------------------------------------------- /code/cgame/cg_modelanim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_modelanim.c -------------------------------------------------------------------------------- /code/cgame/cg_nature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_nature.cpp -------------------------------------------------------------------------------- /code/cgame/cg_parsemsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_parsemsg.cpp -------------------------------------------------------------------------------- /code/cgame/cg_parsemsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_parsemsg.h -------------------------------------------------------------------------------- /code/cgame/cg_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_player.cpp -------------------------------------------------------------------------------- /code/cgame/cg_playerstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_playerstate.c -------------------------------------------------------------------------------- /code/cgame/cg_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_predict.c -------------------------------------------------------------------------------- /code/cgame/cg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_public.h -------------------------------------------------------------------------------- /code/cgame/cg_radar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_radar.cpp -------------------------------------------------------------------------------- /code/cgame/cg_radar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_radar.h -------------------------------------------------------------------------------- /code/cgame/cg_scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_scoreboard.cpp -------------------------------------------------------------------------------- /code/cgame/cg_servercmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_servercmds.c -------------------------------------------------------------------------------- /code/cgame/cg_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_snapshot.c -------------------------------------------------------------------------------- /code/cgame/cg_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_sound.cpp -------------------------------------------------------------------------------- /code/cgame/cg_specialfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_specialfx.cpp -------------------------------------------------------------------------------- /code/cgame/cg_specialfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_specialfx.h -------------------------------------------------------------------------------- /code/cgame/cg_swipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_swipe.cpp -------------------------------------------------------------------------------- /code/cgame/cg_tempmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_tempmodels.cpp -------------------------------------------------------------------------------- /code/cgame/cg_testemitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_testemitter.cpp -------------------------------------------------------------------------------- /code/cgame/cg_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_ui.cpp -------------------------------------------------------------------------------- /code/cgame/cg_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_vehicle.cpp -------------------------------------------------------------------------------- /code/cgame/cg_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_view.c -------------------------------------------------------------------------------- /code/cgame/cg_viewmodelanim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/cg_viewmodelanim.c -------------------------------------------------------------------------------- /code/cgame/memarchiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/memarchiver.cpp -------------------------------------------------------------------------------- /code/cgame/memarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/memarchiver.h -------------------------------------------------------------------------------- /code/cgame/tr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/cgame/tr_types.h -------------------------------------------------------------------------------- /code/client/cl_avi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_avi.cpp -------------------------------------------------------------------------------- /code/client/cl_cgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_cgame.cpp -------------------------------------------------------------------------------- /code/client/cl_cin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_cin.cpp -------------------------------------------------------------------------------- /code/client/cl_consolecmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_consolecmds.cpp -------------------------------------------------------------------------------- /code/client/cl_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_curl.c -------------------------------------------------------------------------------- /code/client/cl_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_curl.h -------------------------------------------------------------------------------- /code/client/cl_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_input.cpp -------------------------------------------------------------------------------- /code/client/cl_instantAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_instantAction.h -------------------------------------------------------------------------------- /code/client/cl_inv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_inv.cpp -------------------------------------------------------------------------------- /code/client/cl_inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_inv.h -------------------------------------------------------------------------------- /code/client/cl_invrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_invrender.cpp -------------------------------------------------------------------------------- /code/client/cl_invrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_invrender.h -------------------------------------------------------------------------------- /code/client/cl_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_keys.cpp -------------------------------------------------------------------------------- /code/client/cl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_main.cpp -------------------------------------------------------------------------------- /code/client/cl_net_chan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_net_chan.cpp -------------------------------------------------------------------------------- /code/client/cl_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_parse.cpp -------------------------------------------------------------------------------- /code/client/cl_scrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_scrn.cpp -------------------------------------------------------------------------------- /code/client/cl_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_ui.cpp -------------------------------------------------------------------------------- /code/client/cl_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_ui.h -------------------------------------------------------------------------------- /code/client/cl_uibind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uibind.cpp -------------------------------------------------------------------------------- /code/client/cl_uibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uibind.h -------------------------------------------------------------------------------- /code/client/cl_uidmbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uidmbox.cpp -------------------------------------------------------------------------------- /code/client/cl_uidmbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uidmbox.h -------------------------------------------------------------------------------- /code/client/cl_uifilepicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uifilepicker.h -------------------------------------------------------------------------------- /code/client/cl_uigamespy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uigamespy.cpp -------------------------------------------------------------------------------- /code/client/cl_uigamespy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uigamespy.h -------------------------------------------------------------------------------- /code/client/cl_uigmbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uigmbox.cpp -------------------------------------------------------------------------------- /code/client/cl_uigmbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uigmbox.h -------------------------------------------------------------------------------- /code/client/cl_uilangame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uilangame.cpp -------------------------------------------------------------------------------- /code/client/cl_uilangame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uilangame.h -------------------------------------------------------------------------------- /code/client/cl_uiloadsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiloadsave.cpp -------------------------------------------------------------------------------- /code/client/cl_uiloadsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiloadsave.h -------------------------------------------------------------------------------- /code/client/cl_uimaprunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uimaprunner.cpp -------------------------------------------------------------------------------- /code/client/cl_uimaprunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uimaprunner.h -------------------------------------------------------------------------------- /code/client/cl_uiminicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiminicon.cpp -------------------------------------------------------------------------------- /code/client/cl_uiminicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiminicon.h -------------------------------------------------------------------------------- /code/client/cl_uimpmappicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uimpmappicker.h -------------------------------------------------------------------------------- /code/client/cl_uiradar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiradar.cpp -------------------------------------------------------------------------------- /code/client/cl_uiradar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiradar.h -------------------------------------------------------------------------------- /code/client/cl_uiserverlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiserverlist.h -------------------------------------------------------------------------------- /code/client/cl_uisoundpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uisoundpicker.h -------------------------------------------------------------------------------- /code/client/cl_uistd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uistd.cpp -------------------------------------------------------------------------------- /code/client/cl_uistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uistd.h -------------------------------------------------------------------------------- /code/client/cl_uiview3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiview3d.cpp -------------------------------------------------------------------------------- /code/client/cl_uiview3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/cl_uiview3d.h -------------------------------------------------------------------------------- /code/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/client.h -------------------------------------------------------------------------------- /code/client/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/keycodes.h -------------------------------------------------------------------------------- /code/client/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/keys.h -------------------------------------------------------------------------------- /code/client/libmumblelink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/libmumblelink.c -------------------------------------------------------------------------------- /code/client/libmumblelink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/libmumblelink.h -------------------------------------------------------------------------------- /code/client/qal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/qal.c -------------------------------------------------------------------------------- /code/client/qal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/qal.h -------------------------------------------------------------------------------- /code/client/snd_adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_adpcm.c -------------------------------------------------------------------------------- /code/client/snd_altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_altivec.c -------------------------------------------------------------------------------- /code/client/snd_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_codec.c -------------------------------------------------------------------------------- /code/client/snd_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_codec.h -------------------------------------------------------------------------------- /code/client/snd_codec_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_codec_mp3.c -------------------------------------------------------------------------------- /code/client/snd_codec_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_codec_ogg.c -------------------------------------------------------------------------------- /code/client/snd_codec_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_codec_opus.c -------------------------------------------------------------------------------- /code/client/snd_codec_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_codec_wav.c -------------------------------------------------------------------------------- /code/client/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_dma.c -------------------------------------------------------------------------------- /code/client/snd_dma_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_dma_new.cpp -------------------------------------------------------------------------------- /code/client/snd_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_info.cpp -------------------------------------------------------------------------------- /code/client/snd_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_local.h -------------------------------------------------------------------------------- /code/client/snd_local_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_local_new.h -------------------------------------------------------------------------------- /code/client/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_main.c -------------------------------------------------------------------------------- /code/client/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_mem.c -------------------------------------------------------------------------------- /code/client/snd_mem_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_mem_new.cpp -------------------------------------------------------------------------------- /code/client/snd_miles_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_miles_new.cpp -------------------------------------------------------------------------------- /code/client/snd_miles_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_miles_new.h -------------------------------------------------------------------------------- /code/client/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_mix.c -------------------------------------------------------------------------------- /code/client/snd_openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_openal.c -------------------------------------------------------------------------------- /code/client/snd_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_public.h -------------------------------------------------------------------------------- /code/client/snd_wavelet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/snd_wavelet.c -------------------------------------------------------------------------------- /code/client/usignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/client/usignal.cpp -------------------------------------------------------------------------------- /code/corepp/Linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/Linklist.h -------------------------------------------------------------------------------- /code/corepp/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/class.cpp -------------------------------------------------------------------------------- /code/corepp/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/class.h -------------------------------------------------------------------------------- /code/corepp/con_arrayset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/con_arrayset.h -------------------------------------------------------------------------------- /code/corepp/con_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/con_set.cpp -------------------------------------------------------------------------------- /code/corepp/con_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/con_set.h -------------------------------------------------------------------------------- /code/corepp/con_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/con_timer.cpp -------------------------------------------------------------------------------- /code/corepp/con_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/con_timer.h -------------------------------------------------------------------------------- /code/corepp/configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/configurator.h -------------------------------------------------------------------------------- /code/corepp/const_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/const_str.h -------------------------------------------------------------------------------- /code/corepp/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/container.h -------------------------------------------------------------------------------- /code/corepp/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/delegate.cpp -------------------------------------------------------------------------------- /code/corepp/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/delegate.h -------------------------------------------------------------------------------- /code/corepp/lightclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/lightclass.cpp -------------------------------------------------------------------------------- /code/corepp/lightclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/lightclass.h -------------------------------------------------------------------------------- /code/corepp/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/listener.cpp -------------------------------------------------------------------------------- /code/corepp/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/listener.h -------------------------------------------------------------------------------- /code/corepp/lz77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/lz77.cpp -------------------------------------------------------------------------------- /code/corepp/lz77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/lz77.h -------------------------------------------------------------------------------- /code/corepp/mem_tempalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/mem_tempalloc.h -------------------------------------------------------------------------------- /code/corepp/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/queue.h -------------------------------------------------------------------------------- /code/corepp/safeptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/safeptr.h -------------------------------------------------------------------------------- /code/corepp/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/script.cpp -------------------------------------------------------------------------------- /code/corepp/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/script.h -------------------------------------------------------------------------------- /code/corepp/short3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/short3.h -------------------------------------------------------------------------------- /code/corepp/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/stack.h -------------------------------------------------------------------------------- /code/corepp/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/str.cpp -------------------------------------------------------------------------------- /code/corepp/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/str.h -------------------------------------------------------------------------------- /code/corepp/tiki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/tiki.h -------------------------------------------------------------------------------- /code/corepp/tiki_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/tiki_main.cpp -------------------------------------------------------------------------------- /code/corepp/tiki_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/tiki_main.h -------------------------------------------------------------------------------- /code/corepp/tiki_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/tiki_script.cpp -------------------------------------------------------------------------------- /code/corepp/tiki_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/tiki_script.h -------------------------------------------------------------------------------- /code/corepp/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/corepp/vector.h -------------------------------------------------------------------------------- /code/curl/curldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/curl/curldefs.h -------------------------------------------------------------------------------- /code/fgame/Entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/Entities.cpp -------------------------------------------------------------------------------- /code/fgame/Entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/Entities.h -------------------------------------------------------------------------------- /code/fgame/Tow_Entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/Tow_Entities.cpp -------------------------------------------------------------------------------- /code/fgame/Tow_Entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/Tow_Entities.h -------------------------------------------------------------------------------- /code/fgame/VehicleSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/VehicleSlot.cpp -------------------------------------------------------------------------------- /code/fgame/VehicleSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/VehicleSlot.h -------------------------------------------------------------------------------- /code/fgame/VehicleTank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/VehicleTank.cpp -------------------------------------------------------------------------------- /code/fgame/actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor.cpp -------------------------------------------------------------------------------- /code/fgame/actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor.h -------------------------------------------------------------------------------- /code/fgame/actor_aim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_aim.cpp -------------------------------------------------------------------------------- /code/fgame/actor_alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_alarm.cpp -------------------------------------------------------------------------------- /code/fgame/actor_anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_anim.cpp -------------------------------------------------------------------------------- /code/fgame/actor_cover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_cover.cpp -------------------------------------------------------------------------------- /code/fgame/actor_dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_dog.cpp -------------------------------------------------------------------------------- /code/fgame/actor_idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_idle.cpp -------------------------------------------------------------------------------- /code/fgame/actor_killed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_killed.cpp -------------------------------------------------------------------------------- /code/fgame/actor_noclip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_noclip.cpp -------------------------------------------------------------------------------- /code/fgame/actor_pain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_pain.cpp -------------------------------------------------------------------------------- /code/fgame/actor_patrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_patrol.cpp -------------------------------------------------------------------------------- /code/fgame/actor_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_runner.cpp -------------------------------------------------------------------------------- /code/fgame/actor_turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actor_turret.cpp -------------------------------------------------------------------------------- /code/fgame/actorenemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actorenemy.cpp -------------------------------------------------------------------------------- /code/fgame/actorenemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actorenemy.h -------------------------------------------------------------------------------- /code/fgame/actorpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actorpath.cpp -------------------------------------------------------------------------------- /code/fgame/actorpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/actorpath.h -------------------------------------------------------------------------------- /code/fgame/ammo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/ammo.cpp -------------------------------------------------------------------------------- /code/fgame/ammo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/ammo.h -------------------------------------------------------------------------------- /code/fgame/animate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/animate.cpp -------------------------------------------------------------------------------- /code/fgame/animate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/animate.h -------------------------------------------------------------------------------- /code/fgame/animationevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/animationevent.h -------------------------------------------------------------------------------- /code/fgame/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/archive.cpp -------------------------------------------------------------------------------- /code/fgame/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/archive.h -------------------------------------------------------------------------------- /code/fgame/armor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/armor.cpp -------------------------------------------------------------------------------- /code/fgame/armor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/armor.h -------------------------------------------------------------------------------- /code/fgame/barrels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/barrels.cpp -------------------------------------------------------------------------------- /code/fgame/barrels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/barrels.h -------------------------------------------------------------------------------- /code/fgame/baseimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/baseimp.h -------------------------------------------------------------------------------- /code/fgame/beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/beam.cpp -------------------------------------------------------------------------------- /code/fgame/beam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/beam.h -------------------------------------------------------------------------------- /code/fgame/bg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bg_local.h -------------------------------------------------------------------------------- /code/fgame/bg_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bg_misc.cpp -------------------------------------------------------------------------------- /code/fgame/bg_pmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bg_pmove.cpp -------------------------------------------------------------------------------- /code/fgame/bg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bg_public.h -------------------------------------------------------------------------------- /code/fgame/bg_slidemove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bg_slidemove.cpp -------------------------------------------------------------------------------- /code/fgame/bg_voteoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bg_voteoptions.h -------------------------------------------------------------------------------- /code/fgame/body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/body.cpp -------------------------------------------------------------------------------- /code/fgame/body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/body.h -------------------------------------------------------------------------------- /code/fgame/botlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/botlib.h -------------------------------------------------------------------------------- /code/fgame/botmenudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/botmenudef.h -------------------------------------------------------------------------------- /code/fgame/bspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bspline.cpp -------------------------------------------------------------------------------- /code/fgame/bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/bspline.h -------------------------------------------------------------------------------- /code/fgame/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/camera.cpp -------------------------------------------------------------------------------- /code/fgame/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/camera.h -------------------------------------------------------------------------------- /code/fgame/characterstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/characterstate.h -------------------------------------------------------------------------------- /code/fgame/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/chars.h -------------------------------------------------------------------------------- /code/fgame/clientvote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/clientvote.cpp -------------------------------------------------------------------------------- /code/fgame/clientvote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/clientvote.h -------------------------------------------------------------------------------- /code/fgame/consoleevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/consoleevent.cpp -------------------------------------------------------------------------------- /code/fgame/consoleevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/consoleevent.h -------------------------------------------------------------------------------- /code/fgame/crateobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/crateobject.cpp -------------------------------------------------------------------------------- /code/fgame/crateobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/crateobject.h -------------------------------------------------------------------------------- /code/fgame/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/crc32.h -------------------------------------------------------------------------------- /code/fgame/damagemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/damagemodel.cpp -------------------------------------------------------------------------------- /code/fgame/damagemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/damagemodel.h -------------------------------------------------------------------------------- /code/fgame/debuglines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/debuglines.cpp -------------------------------------------------------------------------------- /code/fgame/debuglines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/debuglines.h -------------------------------------------------------------------------------- /code/fgame/decals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/decals.cpp -------------------------------------------------------------------------------- /code/fgame/decals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/decals.h -------------------------------------------------------------------------------- /code/fgame/dm_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/dm_manager.cpp -------------------------------------------------------------------------------- /code/fgame/dm_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/dm_manager.h -------------------------------------------------------------------------------- /code/fgame/doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/doors.cpp -------------------------------------------------------------------------------- /code/fgame/doors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/doors.h -------------------------------------------------------------------------------- /code/fgame/earthquake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/earthquake.cpp -------------------------------------------------------------------------------- /code/fgame/earthquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/earthquake.h -------------------------------------------------------------------------------- /code/fgame/effectentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/effectentity.cpp -------------------------------------------------------------------------------- /code/fgame/effectentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/effectentity.h -------------------------------------------------------------------------------- /code/fgame/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/entity.cpp -------------------------------------------------------------------------------- /code/fgame/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/entity.h -------------------------------------------------------------------------------- /code/fgame/explosion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/explosion.cpp -------------------------------------------------------------------------------- /code/fgame/explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/explosion.h -------------------------------------------------------------------------------- /code/fgame/fixedturret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/fixedturret.cpp -------------------------------------------------------------------------------- /code/fgame/fixedturret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/fixedturret.h -------------------------------------------------------------------------------- /code/fgame/g_active.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_active.cpp -------------------------------------------------------------------------------- /code/fgame/g_arenas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_arenas.cpp -------------------------------------------------------------------------------- /code/fgame/g_bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_bot.cpp -------------------------------------------------------------------------------- /code/fgame/g_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_bot.h -------------------------------------------------------------------------------- /code/fgame/g_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_client.cpp -------------------------------------------------------------------------------- /code/fgame/g_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_items.cpp -------------------------------------------------------------------------------- /code/fgame/g_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_local.h -------------------------------------------------------------------------------- /code/fgame/g_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_main.cpp -------------------------------------------------------------------------------- /code/fgame/g_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_main.h -------------------------------------------------------------------------------- /code/fgame/g_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_mem.cpp -------------------------------------------------------------------------------- /code/fgame/g_mmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_mmove.cpp -------------------------------------------------------------------------------- /code/fgame/g_phys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_phys.cpp -------------------------------------------------------------------------------- /code/fgame/g_phys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_phys.h -------------------------------------------------------------------------------- /code/fgame/g_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_public.h -------------------------------------------------------------------------------- /code/fgame/g_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_session.cpp -------------------------------------------------------------------------------- /code/fgame/g_spawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_spawn.cpp -------------------------------------------------------------------------------- /code/fgame/g_spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_spawn.h -------------------------------------------------------------------------------- /code/fgame/g_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_utils.cpp -------------------------------------------------------------------------------- /code/fgame/g_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_utils.h -------------------------------------------------------------------------------- /code/fgame/g_vmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_vmove.cpp -------------------------------------------------------------------------------- /code/fgame/g_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/g_weapon.cpp -------------------------------------------------------------------------------- /code/fgame/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/game.cpp -------------------------------------------------------------------------------- /code/fgame/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/game.h -------------------------------------------------------------------------------- /code/fgame/gamecmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gamecmds.cpp -------------------------------------------------------------------------------- /code/fgame/gamecmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gamecmds.h -------------------------------------------------------------------------------- /code/fgame/gamecvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gamecvars.cpp -------------------------------------------------------------------------------- /code/fgame/gamecvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gamecvars.h -------------------------------------------------------------------------------- /code/fgame/gamescript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gamescript.cpp -------------------------------------------------------------------------------- /code/fgame/gamescript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gamescript.h -------------------------------------------------------------------------------- /code/fgame/gibs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gibs.cpp -------------------------------------------------------------------------------- /code/fgame/gibs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gibs.h -------------------------------------------------------------------------------- /code/fgame/glb_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/glb_local.h -------------------------------------------------------------------------------- /code/fgame/gravpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gravpath.cpp -------------------------------------------------------------------------------- /code/fgame/gravpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/gravpath.h -------------------------------------------------------------------------------- /code/fgame/grenadehint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/grenadehint.cpp -------------------------------------------------------------------------------- /code/fgame/grenadehint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/grenadehint.h -------------------------------------------------------------------------------- /code/fgame/health.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/health.cpp -------------------------------------------------------------------------------- /code/fgame/health.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/health.h -------------------------------------------------------------------------------- /code/fgame/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/hud.cpp -------------------------------------------------------------------------------- /code/fgame/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/hud.h -------------------------------------------------------------------------------- /code/fgame/huddraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/huddraw.cpp -------------------------------------------------------------------------------- /code/fgame/huddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/huddraw.h -------------------------------------------------------------------------------- /code/fgame/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/inv.h -------------------------------------------------------------------------------- /code/fgame/inventoryitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/inventoryitem.h -------------------------------------------------------------------------------- /code/fgame/ipfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/ipfilter.cpp -------------------------------------------------------------------------------- /code/fgame/ipfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/ipfilter.h -------------------------------------------------------------------------------- /code/fgame/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/item.cpp -------------------------------------------------------------------------------- /code/fgame/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/item.h -------------------------------------------------------------------------------- /code/fgame/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/level.cpp -------------------------------------------------------------------------------- /code/fgame/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/level.h -------------------------------------------------------------------------------- /code/fgame/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/light.cpp -------------------------------------------------------------------------------- /code/fgame/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/light.h -------------------------------------------------------------------------------- /code/fgame/lodthing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/lodthing.cpp -------------------------------------------------------------------------------- /code/fgame/lodthing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/lodthing.h -------------------------------------------------------------------------------- /code/fgame/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/match.h -------------------------------------------------------------------------------- /code/fgame/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/md5.cpp -------------------------------------------------------------------------------- /code/fgame/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/md5.h -------------------------------------------------------------------------------- /code/fgame/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/misc.cpp -------------------------------------------------------------------------------- /code/fgame/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/misc.h -------------------------------------------------------------------------------- /code/fgame/movegrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/movegrid.cpp -------------------------------------------------------------------------------- /code/fgame/movegrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/movegrid.h -------------------------------------------------------------------------------- /code/fgame/mover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/mover.cpp -------------------------------------------------------------------------------- /code/fgame/mover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/mover.h -------------------------------------------------------------------------------- /code/fgame/nature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/nature.cpp -------------------------------------------------------------------------------- /code/fgame/nature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/nature.h -------------------------------------------------------------------------------- /code/fgame/navigate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/navigate.cpp -------------------------------------------------------------------------------- /code/fgame/navigate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/navigate.h -------------------------------------------------------------------------------- /code/fgame/navigation_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/navigation_bsp.h -------------------------------------------------------------------------------- /code/fgame/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/object.cpp -------------------------------------------------------------------------------- /code/fgame/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/object.h -------------------------------------------------------------------------------- /code/fgame/parm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/parm.cpp -------------------------------------------------------------------------------- /code/fgame/parm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/parm.h -------------------------------------------------------------------------------- /code/fgame/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/player.cpp -------------------------------------------------------------------------------- /code/fgame/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/player.h -------------------------------------------------------------------------------- /code/fgame/player_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/player_util.cpp -------------------------------------------------------------------------------- /code/fgame/playerbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/playerbot.cpp -------------------------------------------------------------------------------- /code/fgame/playerbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/playerbot.h -------------------------------------------------------------------------------- /code/fgame/playerstart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/playerstart.cpp -------------------------------------------------------------------------------- /code/fgame/playerstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/playerstart.h -------------------------------------------------------------------------------- /code/fgame/portableturret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/portableturret.h -------------------------------------------------------------------------------- /code/fgame/portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/portal.cpp -------------------------------------------------------------------------------- /code/fgame/portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/portal.h -------------------------------------------------------------------------------- /code/fgame/scriptdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptdelegate.h -------------------------------------------------------------------------------- /code/fgame/scriptflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptflags.cpp -------------------------------------------------------------------------------- /code/fgame/scriptflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptflags.h -------------------------------------------------------------------------------- /code/fgame/scriptmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptmaster.cpp -------------------------------------------------------------------------------- /code/fgame/scriptmaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptmaster.h -------------------------------------------------------------------------------- /code/fgame/scriptslave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptslave.cpp -------------------------------------------------------------------------------- /code/fgame/scriptslave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptslave.h -------------------------------------------------------------------------------- /code/fgame/scriptthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptthread.cpp -------------------------------------------------------------------------------- /code/fgame/scriptthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scriptthread.h -------------------------------------------------------------------------------- /code/fgame/scripttimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scripttimer.cpp -------------------------------------------------------------------------------- /code/fgame/scripttimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/scripttimer.h -------------------------------------------------------------------------------- /code/fgame/sentient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/sentient.cpp -------------------------------------------------------------------------------- /code/fgame/sentient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/sentient.h -------------------------------------------------------------------------------- /code/fgame/simpleactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/simpleactor.cpp -------------------------------------------------------------------------------- /code/fgame/simpleactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/simpleactor.h -------------------------------------------------------------------------------- /code/fgame/simpleentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/simpleentity.cpp -------------------------------------------------------------------------------- /code/fgame/simpleentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/simpleentity.h -------------------------------------------------------------------------------- /code/fgame/slre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/slre.c -------------------------------------------------------------------------------- /code/fgame/slre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/slre.h -------------------------------------------------------------------------------- /code/fgame/smokegrenade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/smokegrenade.cpp -------------------------------------------------------------------------------- /code/fgame/smokegrenade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/smokegrenade.h -------------------------------------------------------------------------------- /code/fgame/smokesprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/smokesprite.cpp -------------------------------------------------------------------------------- /code/fgame/smokesprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/smokesprite.h -------------------------------------------------------------------------------- /code/fgame/soundman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/soundman.cpp -------------------------------------------------------------------------------- /code/fgame/soundman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/soundman.h -------------------------------------------------------------------------------- /code/fgame/spawners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/spawners.cpp -------------------------------------------------------------------------------- /code/fgame/spawners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/spawners.h -------------------------------------------------------------------------------- /code/fgame/specialfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/specialfx.cpp -------------------------------------------------------------------------------- /code/fgame/specialfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/specialfx.h -------------------------------------------------------------------------------- /code/fgame/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/spline.h -------------------------------------------------------------------------------- /code/fgame/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/stack.h -------------------------------------------------------------------------------- /code/fgame/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/syn.h -------------------------------------------------------------------------------- /code/fgame/trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/trigger.cpp -------------------------------------------------------------------------------- /code/fgame/trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/trigger.h -------------------------------------------------------------------------------- /code/fgame/umap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/umap.h -------------------------------------------------------------------------------- /code/fgame/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/vehicle.cpp -------------------------------------------------------------------------------- /code/fgame/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/vehicle.h -------------------------------------------------------------------------------- /code/fgame/vehicleturret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/vehicleturret.h -------------------------------------------------------------------------------- /code/fgame/viewthing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/viewthing.cpp -------------------------------------------------------------------------------- /code/fgame/viewthing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/viewthing.h -------------------------------------------------------------------------------- /code/fgame/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/weapon.cpp -------------------------------------------------------------------------------- /code/fgame/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/weapon.h -------------------------------------------------------------------------------- /code/fgame/weapturret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/weapturret.cpp -------------------------------------------------------------------------------- /code/fgame/weapturret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/weapturret.h -------------------------------------------------------------------------------- /code/fgame/weaputils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/weaputils.cpp -------------------------------------------------------------------------------- /code/fgame/weaputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/weaputils.h -------------------------------------------------------------------------------- /code/fgame/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/windows.cpp -------------------------------------------------------------------------------- /code/fgame/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/windows.h -------------------------------------------------------------------------------- /code/fgame/worldspawn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/worldspawn.cpp -------------------------------------------------------------------------------- /code/fgame/worldspawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/fgame/worldspawn.h -------------------------------------------------------------------------------- /code/gamespy/Chat/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Chat/chat.h -------------------------------------------------------------------------------- /code/gamespy/GP/gp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gp.c -------------------------------------------------------------------------------- /code/gamespy/GP/gp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gp.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpi.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpi.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiBuddy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiBuddy.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiBuddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiBuddy.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiBuffer.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiBuffer.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiInfo.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiInfo.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiKeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiKeys.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiKeys.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiPS3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiPS3.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiPS3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiPS3.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiPeer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiPeer.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiPeer.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiSearch.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiSearch.h -------------------------------------------------------------------------------- /code/gamespy/GP/gpiUnique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiUnique.c -------------------------------------------------------------------------------- /code/gamespy/GP/gpiUnique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/GP/gpiUnique.h -------------------------------------------------------------------------------- /code/gamespy/Peer/peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Peer/peer.h -------------------------------------------------------------------------------- /code/gamespy/Peer/peerQR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Peer/peerQR.c -------------------------------------------------------------------------------- /code/gamespy/Peer/peerQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Peer/peerQR.h -------------------------------------------------------------------------------- /code/gamespy/Peer/peerSB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Peer/peerSB.c -------------------------------------------------------------------------------- /code/gamespy/Peer/peerSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Peer/peerSB.h -------------------------------------------------------------------------------- /code/gamespy/Voice2/gv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Voice2/gv.h -------------------------------------------------------------------------------- /code/gamespy/Voice2/gvGSM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Voice2/gvGSM.c -------------------------------------------------------------------------------- /code/gamespy/Voice2/gvGSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/Voice2/gvGSM.h -------------------------------------------------------------------------------- /code/gamespy/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/changelog.txt -------------------------------------------------------------------------------- /code/gamespy/cl_gamespy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/cl_gamespy.c -------------------------------------------------------------------------------- /code/gamespy/cl_gamespy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/cl_gamespy.h -------------------------------------------------------------------------------- /code/gamespy/common/gsRC4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/common/gsRC4.c -------------------------------------------------------------------------------- /code/gamespy/common/gsRC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/common/gsRC4.h -------------------------------------------------------------------------------- /code/gamespy/common/gsSSL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/common/gsSSL.c -------------------------------------------------------------------------------- /code/gamespy/common/gsSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/common/gsSSL.h -------------------------------------------------------------------------------- /code/gamespy/common/gsXML.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/common/gsXML.c -------------------------------------------------------------------------------- /code/gamespy/common/gsXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/common/gsXML.h -------------------------------------------------------------------------------- /code/gamespy/common/linux/gsSocketLinux.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/gamespy/darray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/darray.c -------------------------------------------------------------------------------- /code/gamespy/darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/darray.h -------------------------------------------------------------------------------- /code/gamespy/ghttp/ghttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/ghttp/ghttp.h -------------------------------------------------------------------------------- /code/gamespy/goaceng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/goaceng.h -------------------------------------------------------------------------------- /code/gamespy/gserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gserver.c -------------------------------------------------------------------------------- /code/gamespy/gserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gserver.h -------------------------------------------------------------------------------- /code/gamespy/gserverlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gserverlist.c -------------------------------------------------------------------------------- /code/gamespy/gt2/gt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gt2/gt2.h -------------------------------------------------------------------------------- /code/gamespy/gt2/gt2Auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gt2/gt2Auth.c -------------------------------------------------------------------------------- /code/gamespy/gt2/gt2Auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gt2/gt2Auth.h -------------------------------------------------------------------------------- /code/gamespy/gt2/gt2Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gt2/gt2Main.c -------------------------------------------------------------------------------- /code/gamespy/gt2/gt2Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gt2/gt2Main.h -------------------------------------------------------------------------------- /code/gamespy/gutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gutil.c -------------------------------------------------------------------------------- /code/gamespy/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/gutil.h -------------------------------------------------------------------------------- /code/gamespy/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/hashtable.c -------------------------------------------------------------------------------- /code/gamespy/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/hashtable.h -------------------------------------------------------------------------------- /code/gamespy/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/md5.h -------------------------------------------------------------------------------- /code/gamespy/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/md5c.c -------------------------------------------------------------------------------- /code/gamespy/nonport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/nonport.h -------------------------------------------------------------------------------- /code/gamespy/pt/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/pt/pt.h -------------------------------------------------------------------------------- /code/gamespy/pt/ptMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/pt/ptMain.c -------------------------------------------------------------------------------- /code/gamespy/q_gamespy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/q_gamespy.c -------------------------------------------------------------------------------- /code/gamespy/q_gamespy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/q_gamespy.h -------------------------------------------------------------------------------- /code/gamespy/qr2/qr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/qr2/qr2.c -------------------------------------------------------------------------------- /code/gamespy/qr2/qr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/qr2/qr2.h -------------------------------------------------------------------------------- /code/gamespy/sake/sake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sake/sake.h -------------------------------------------------------------------------------- /code/gamespy/sc/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sc/sc.h -------------------------------------------------------------------------------- /code/gamespy/sc/sci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sc/sci.h -------------------------------------------------------------------------------- /code/gamespy/sc/sciMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sc/sciMain.c -------------------------------------------------------------------------------- /code/gamespy/sc/sciReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sc/sciReport.c -------------------------------------------------------------------------------- /code/gamespy/sc/sciReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sc/sciReport.h -------------------------------------------------------------------------------- /code/gamespy/sv_gamespy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sv_gamespy.c -------------------------------------------------------------------------------- /code/gamespy/sv_gamespy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/gamespy/sv_gamespy.h -------------------------------------------------------------------------------- /code/null/null_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/null/null_client.c -------------------------------------------------------------------------------- /code/null/null_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/null/null_cm.c -------------------------------------------------------------------------------- /code/null/null_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/null/null_input.c -------------------------------------------------------------------------------- /code/null/null_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/null/null_server.c -------------------------------------------------------------------------------- /code/null/null_snddma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/null/null_snddma.c -------------------------------------------------------------------------------- /code/null/null_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/null/null_sys.c -------------------------------------------------------------------------------- /code/null/null_tiki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/null/null_tiki.c -------------------------------------------------------------------------------- /code/parser/lex.yy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/parser/lex.yy.cpp -------------------------------------------------------------------------------- /code/parser/lex_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/parser/lex_source.txt -------------------------------------------------------------------------------- /code/parser/parsetree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/parser/parsetree.cpp -------------------------------------------------------------------------------- /code/parser/parsetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/parser/parsetree.h -------------------------------------------------------------------------------- /code/parser/y.tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/parser/y.tab.cpp -------------------------------------------------------------------------------- /code/q3_ui/ui_sparena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/q3_ui/ui_sparena.c -------------------------------------------------------------------------------- /code/qcommon/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/alias.c -------------------------------------------------------------------------------- /code/qcommon/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/alias.h -------------------------------------------------------------------------------- /code/qcommon/bg_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/bg_compat.cpp -------------------------------------------------------------------------------- /code/qcommon/bg_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/bg_compat.h -------------------------------------------------------------------------------- /code/qcommon/cm_fencemask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_fencemask.c -------------------------------------------------------------------------------- /code/qcommon/cm_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_load.c -------------------------------------------------------------------------------- /code/qcommon/cm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_local.h -------------------------------------------------------------------------------- /code/qcommon/cm_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_patch.c -------------------------------------------------------------------------------- /code/qcommon/cm_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_patch.h -------------------------------------------------------------------------------- /code/qcommon/cm_polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_polylib.c -------------------------------------------------------------------------------- /code/qcommon/cm_polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_polylib.h -------------------------------------------------------------------------------- /code/qcommon/cm_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_public.h -------------------------------------------------------------------------------- /code/qcommon/cm_terrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_terrain.c -------------------------------------------------------------------------------- /code/qcommon/cm_terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_terrain.h -------------------------------------------------------------------------------- /code/qcommon/cm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_test.c -------------------------------------------------------------------------------- /code/qcommon/cm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cm_trace.c -------------------------------------------------------------------------------- /code/qcommon/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cmd.c -------------------------------------------------------------------------------- /code/qcommon/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/common.c -------------------------------------------------------------------------------- /code/qcommon/common_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/common_light.c -------------------------------------------------------------------------------- /code/qcommon/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/crc.c -------------------------------------------------------------------------------- /code/qcommon/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/crc.h -------------------------------------------------------------------------------- /code/qcommon/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/cvar.c -------------------------------------------------------------------------------- /code/qcommon/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/files.cpp -------------------------------------------------------------------------------- /code/qcommon/huffman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/huffman.cpp -------------------------------------------------------------------------------- /code/qcommon/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/ioapi.c -------------------------------------------------------------------------------- /code/qcommon/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/ioapi.h -------------------------------------------------------------------------------- /code/qcommon/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/json.h -------------------------------------------------------------------------------- /code/qcommon/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/json.hpp -------------------------------------------------------------------------------- /code/qcommon/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/localization.h -------------------------------------------------------------------------------- /code/qcommon/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/md4.c -------------------------------------------------------------------------------- /code/qcommon/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/md5.c -------------------------------------------------------------------------------- /code/qcommon/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/memory.c -------------------------------------------------------------------------------- /code/qcommon/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/msg.cpp -------------------------------------------------------------------------------- /code/qcommon/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/net_chan.c -------------------------------------------------------------------------------- /code/qcommon/net_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/net_ip.c -------------------------------------------------------------------------------- /code/qcommon/q_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/q_math.c -------------------------------------------------------------------------------- /code/qcommon/q_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/q_platform.h -------------------------------------------------------------------------------- /code/qcommon/q_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/q_shared.c -------------------------------------------------------------------------------- /code/qcommon/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/q_shared.h -------------------------------------------------------------------------------- /code/qcommon/q_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/q_version.h -------------------------------------------------------------------------------- /code/qcommon/qcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/qcommon.h -------------------------------------------------------------------------------- /code/qcommon/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/qfiles.h -------------------------------------------------------------------------------- /code/qcommon/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/surfaceflags.h -------------------------------------------------------------------------------- /code/qcommon/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/unzip.c -------------------------------------------------------------------------------- /code/qcommon/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/qcommon/unzip.h -------------------------------------------------------------------------------- /code/renderercommon/iqm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderercommon/iqm.h -------------------------------------------------------------------------------- /code/renderercommon/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderercommon/puff.c -------------------------------------------------------------------------------- /code/renderercommon/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderercommon/puff.h -------------------------------------------------------------------------------- /code/renderercommon/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderercommon/qgl.h -------------------------------------------------------------------------------- /code/renderergl1/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/qgl.h -------------------------------------------------------------------------------- /code/renderergl1/ref_trin.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | GetRefAPI 3 | -------------------------------------------------------------------------------- /code/renderergl1/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_bsp.c -------------------------------------------------------------------------------- /code/renderergl1/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_cmds.c -------------------------------------------------------------------------------- /code/renderergl1/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_curve.c -------------------------------------------------------------------------------- /code/renderergl1/tr_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_draw.c -------------------------------------------------------------------------------- /code/renderergl1/tr_ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_ghost.h -------------------------------------------------------------------------------- /code/renderergl1/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_image.c -------------------------------------------------------------------------------- /code/renderergl1/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_init.c -------------------------------------------------------------------------------- /code/renderergl1/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_light.c -------------------------------------------------------------------------------- /code/renderergl1/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_local.h -------------------------------------------------------------------------------- /code/renderergl1/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_main.c -------------------------------------------------------------------------------- /code/renderergl1/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_marks.c -------------------------------------------------------------------------------- /code/renderergl1/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_scene.c -------------------------------------------------------------------------------- /code/renderergl1/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_shade.c -------------------------------------------------------------------------------- /code/renderergl1/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_sky.c -------------------------------------------------------------------------------- /code/renderergl1/tr_vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_vis.cpp -------------------------------------------------------------------------------- /code/renderergl1/tr_vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_vis.h -------------------------------------------------------------------------------- /code/renderergl1/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl1/tr_world.c -------------------------------------------------------------------------------- /code/renderergl2/tr_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_bsp.c -------------------------------------------------------------------------------- /code/renderergl2/tr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_cmds.c -------------------------------------------------------------------------------- /code/renderergl2/tr_curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_curve.c -------------------------------------------------------------------------------- /code/renderergl2/tr_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_draw.c -------------------------------------------------------------------------------- /code/renderergl2/tr_dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_dsa.c -------------------------------------------------------------------------------- /code/renderergl2/tr_dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_dsa.h -------------------------------------------------------------------------------- /code/renderergl2/tr_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_fbo.c -------------------------------------------------------------------------------- /code/renderergl2/tr_fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_fbo.h -------------------------------------------------------------------------------- /code/renderergl2/tr_ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_ghost.h -------------------------------------------------------------------------------- /code/renderergl2/tr_glsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_glsl.c -------------------------------------------------------------------------------- /code/renderergl2/tr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_image.c -------------------------------------------------------------------------------- /code/renderergl2/tr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_init.c -------------------------------------------------------------------------------- /code/renderergl2/tr_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_light.c -------------------------------------------------------------------------------- /code/renderergl2/tr_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_local.h -------------------------------------------------------------------------------- /code/renderergl2/tr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_main.c -------------------------------------------------------------------------------- /code/renderergl2/tr_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_marks.c -------------------------------------------------------------------------------- /code/renderergl2/tr_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_mesh.c -------------------------------------------------------------------------------- /code/renderergl2/tr_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_model.c -------------------------------------------------------------------------------- /code/renderergl2/tr_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_scene.c -------------------------------------------------------------------------------- /code/renderergl2/tr_shade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_shade.c -------------------------------------------------------------------------------- /code/renderergl2/tr_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_sky.c -------------------------------------------------------------------------------- /code/renderergl2/tr_vbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_vbo.c -------------------------------------------------------------------------------- /code/renderergl2/tr_vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_vis.cpp -------------------------------------------------------------------------------- /code/renderergl2/tr_vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_vis.h -------------------------------------------------------------------------------- /code/renderergl2/tr_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/renderergl2/tr_world.c -------------------------------------------------------------------------------- /code/script/scriptclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/script/scriptclass.cpp -------------------------------------------------------------------------------- /code/script/scriptclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/script/scriptclass.h -------------------------------------------------------------------------------- /code/script/scriptopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/script/scriptopcodes.h -------------------------------------------------------------------------------- /code/script/scriptvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/script/scriptvm.cpp -------------------------------------------------------------------------------- /code/script/scriptvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/script/scriptvm.h -------------------------------------------------------------------------------- /code/sdl/sdl_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sdl/sdl_gamma.c -------------------------------------------------------------------------------- /code/sdl/sdl_glimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sdl/sdl_glimp.c -------------------------------------------------------------------------------- /code/sdl/sdl_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sdl/sdl_icon.h -------------------------------------------------------------------------------- /code/sdl/sdl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sdl/sdl_input.c -------------------------------------------------------------------------------- /code/sdl/sdl_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sdl/sdl_mouse.c -------------------------------------------------------------------------------- /code/sdl/sdl_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sdl/sdl_snd.c -------------------------------------------------------------------------------- /code/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/server.h -------------------------------------------------------------------------------- /code/server/sv_ccmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_ccmds.c -------------------------------------------------------------------------------- /code/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_client.c -------------------------------------------------------------------------------- /code/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_game.c -------------------------------------------------------------------------------- /code/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_init.c -------------------------------------------------------------------------------- /code/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_main.c -------------------------------------------------------------------------------- /code/server/sv_net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_net_chan.c -------------------------------------------------------------------------------- /code/server/sv_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_snapshot.c -------------------------------------------------------------------------------- /code/server/sv_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_snd.c -------------------------------------------------------------------------------- /code/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/server/sv_world.c -------------------------------------------------------------------------------- /code/skeletor/SkelMat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/SkelMat3.h -------------------------------------------------------------------------------- /code/skeletor/SkelMat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/SkelMat4.h -------------------------------------------------------------------------------- /code/skeletor/SkelQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/SkelQuat.h -------------------------------------------------------------------------------- /code/skeletor/SkelVec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/SkelVec3.h -------------------------------------------------------------------------------- /code/skeletor/SkelVec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/SkelVec4.h -------------------------------------------------------------------------------- /code/skeletor/bonetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/bonetable.cpp -------------------------------------------------------------------------------- /code/skeletor/skeletor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/skeletor.cpp -------------------------------------------------------------------------------- /code/skeletor/skeletor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/skeletor.h -------------------------------------------------------------------------------- /code/skeletor/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/tokenizer.cpp -------------------------------------------------------------------------------- /code/skeletor/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/skeletor/tokenizer.h -------------------------------------------------------------------------------- /code/sys/con_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/con_log.c -------------------------------------------------------------------------------- /code/sys/con_passive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/con_passive.c -------------------------------------------------------------------------------- /code/sys/con_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/con_tty.c -------------------------------------------------------------------------------- /code/sys/con_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/con_win32.c -------------------------------------------------------------------------------- /code/sys/new/sys_main_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/new/sys_main_new.c -------------------------------------------------------------------------------- /code/sys/new/sys_unix_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/new/sys_unix_new.c -------------------------------------------------------------------------------- /code/sys/sys_autoupdater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_autoupdater.c -------------------------------------------------------------------------------- /code/sys/sys_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_curl.c -------------------------------------------------------------------------------- /code/sys/sys_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_curl.h -------------------------------------------------------------------------------- /code/sys/sys_loadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_loadlib.h -------------------------------------------------------------------------------- /code/sys/sys_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_local.h -------------------------------------------------------------------------------- /code/sys/sys_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_main.c -------------------------------------------------------------------------------- /code/sys/sys_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_osx.m -------------------------------------------------------------------------------- /code/sys/sys_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_unix.c -------------------------------------------------------------------------------- /code/sys/sys_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/sys_win32.c -------------------------------------------------------------------------------- /code/sys/win_bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/win_bounds.cpp -------------------------------------------------------------------------------- /code/sys/win_localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/win_localization.h -------------------------------------------------------------------------------- /code/sys/win_manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/win_manifest.xml -------------------------------------------------------------------------------- /code/sys/win_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/win_resource.h -------------------------------------------------------------------------------- /code/sys/win_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/sys/win_resource.rc -------------------------------------------------------------------------------- /code/thirdparty/libmad/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /code/thirdparty/libmad/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/thirdparty/libmad/TODO -------------------------------------------------------------------------------- /code/thirdparty/recastnavigation/RecastDemo/Bin/.gitignore: -------------------------------------------------------------------------------- 1 | Recast.app 2 | SDL2.framework -------------------------------------------------------------------------------- /code/tiki/tiki_anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_anim.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_anim.h -------------------------------------------------------------------------------- /code/tiki/tiki_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_cache.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_cache.h -------------------------------------------------------------------------------- /code/tiki/tiki_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_commands.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_commands.h -------------------------------------------------------------------------------- /code/tiki/tiki_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_files.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_files.h -------------------------------------------------------------------------------- /code/tiki/tiki_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_frame.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_frame.h -------------------------------------------------------------------------------- /code/tiki/tiki_imports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_imports.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_imports.h -------------------------------------------------------------------------------- /code/tiki/tiki_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_mesh.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_mesh.h -------------------------------------------------------------------------------- /code/tiki/tiki_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_parse.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_parse.h -------------------------------------------------------------------------------- /code/tiki/tiki_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_shared.h -------------------------------------------------------------------------------- /code/tiki/tiki_skel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_skel.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_skel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_skel.h -------------------------------------------------------------------------------- /code/tiki/tiki_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_surface.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_surface.h -------------------------------------------------------------------------------- /code/tiki/tiki_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_tag.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_tag.h -------------------------------------------------------------------------------- /code/tiki/tiki_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_utility.cpp -------------------------------------------------------------------------------- /code/tiki/tiki_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tiki/tiki_utility.h -------------------------------------------------------------------------------- /code/tools/asm/README.Id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/README.Id -------------------------------------------------------------------------------- /code/tools/asm/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/cmdlib.c -------------------------------------------------------------------------------- /code/tools/asm/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/cmdlib.h -------------------------------------------------------------------------------- /code/tools/asm/lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/lib.txt -------------------------------------------------------------------------------- /code/tools/asm/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/mathlib.h -------------------------------------------------------------------------------- /code/tools/asm/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/notes.txt -------------------------------------------------------------------------------- /code/tools/asm/ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/ops.txt -------------------------------------------------------------------------------- /code/tools/asm/opstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/opstrings.h -------------------------------------------------------------------------------- /code/tools/asm/q3asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/asm/q3asm.c -------------------------------------------------------------------------------- /code/tools/lcc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/COPYRIGHT -------------------------------------------------------------------------------- /code/tools/lcc/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/LOG -------------------------------------------------------------------------------- /code/tools/lcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/README -------------------------------------------------------------------------------- /code/tools/lcc/README.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/README.id -------------------------------------------------------------------------------- /code/tools/lcc/cpp/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/cpp.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/cpp.h -------------------------------------------------------------------------------- /code/tools/lcc/cpp/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/eval.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/getopt.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/lex.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/macro.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/nlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/nlist.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/tokens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/tokens.c -------------------------------------------------------------------------------- /code/tools/lcc/cpp/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/cpp/unix.c -------------------------------------------------------------------------------- /code/tools/lcc/doc/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/doc/4.html -------------------------------------------------------------------------------- /code/tools/lcc/doc/bprint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/doc/bprint.1 -------------------------------------------------------------------------------- /code/tools/lcc/doc/lcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/doc/lcc.1 -------------------------------------------------------------------------------- /code/tools/lcc/doc/lcc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/doc/lcc.pdf -------------------------------------------------------------------------------- /code/tools/lcc/etc/lcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/etc/lcc.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/lburg/gram.c -------------------------------------------------------------------------------- /code/tools/lcc/lburg/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/lburg/gram.y -------------------------------------------------------------------------------- /code/tools/lcc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/alloc.c -------------------------------------------------------------------------------- /code/tools/lcc/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/bind.c -------------------------------------------------------------------------------- /code/tools/lcc/src/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/c.h -------------------------------------------------------------------------------- /code/tools/lcc/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/config.h -------------------------------------------------------------------------------- /code/tools/lcc/src/dag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/dag.c -------------------------------------------------------------------------------- /code/tools/lcc/src/decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/decl.c -------------------------------------------------------------------------------- /code/tools/lcc/src/enode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/enode.c -------------------------------------------------------------------------------- /code/tools/lcc/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/error.c -------------------------------------------------------------------------------- /code/tools/lcc/src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/event.c -------------------------------------------------------------------------------- /code/tools/lcc/src/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/expr.c -------------------------------------------------------------------------------- /code/tools/lcc/src/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/gen.c -------------------------------------------------------------------------------- /code/tools/lcc/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/init.c -------------------------------------------------------------------------------- /code/tools/lcc/src/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/inits.c -------------------------------------------------------------------------------- /code/tools/lcc/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/input.c -------------------------------------------------------------------------------- /code/tools/lcc/src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/lex.c -------------------------------------------------------------------------------- /code/tools/lcc/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/list.c -------------------------------------------------------------------------------- /code/tools/lcc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/main.c -------------------------------------------------------------------------------- /code/tools/lcc/src/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/null.c -------------------------------------------------------------------------------- /code/tools/lcc/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/output.c -------------------------------------------------------------------------------- /code/tools/lcc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/prof.c -------------------------------------------------------------------------------- /code/tools/lcc/src/profio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/profio.c -------------------------------------------------------------------------------- /code/tools/lcc/src/simp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/simp.c -------------------------------------------------------------------------------- /code/tools/lcc/src/stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/stmt.c -------------------------------------------------------------------------------- /code/tools/lcc/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/string.c -------------------------------------------------------------------------------- /code/tools/lcc/src/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/sym.c -------------------------------------------------------------------------------- /code/tools/lcc/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/token.h -------------------------------------------------------------------------------- /code/tools/lcc/src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/trace.c -------------------------------------------------------------------------------- /code/tools/lcc/src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/tree.c -------------------------------------------------------------------------------- /code/tools/lcc/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/lcc/src/types.c -------------------------------------------------------------------------------- /code/tools/ommap/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/brush.c -------------------------------------------------------------------------------- /code/tools/ommap/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/bsp.c -------------------------------------------------------------------------------- /code/tools/ommap/facebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/facebsp.c -------------------------------------------------------------------------------- /code/tools/ommap/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/fog.c -------------------------------------------------------------------------------- /code/tools/ommap/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/gldraw.c -------------------------------------------------------------------------------- /code/tools/ommap/glfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/glfile.c -------------------------------------------------------------------------------- /code/tools/ommap/leakfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/leakfile.c -------------------------------------------------------------------------------- /code/tools/ommap/libs/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/libs/str.h -------------------------------------------------------------------------------- /code/tools/ommap/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/light.c -------------------------------------------------------------------------------- /code/tools/ommap/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/light.h -------------------------------------------------------------------------------- /code/tools/ommap/lightv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/lightv.c -------------------------------------------------------------------------------- /code/tools/ommap/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/map.c -------------------------------------------------------------------------------- /code/tools/ommap/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/mesh.c -------------------------------------------------------------------------------- /code/tools/ommap/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/mesh.h -------------------------------------------------------------------------------- /code/tools/ommap/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/nodraw.c -------------------------------------------------------------------------------- /code/tools/ommap/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/patch.c -------------------------------------------------------------------------------- /code/tools/ommap/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/portals.c -------------------------------------------------------------------------------- /code/tools/ommap/prtfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/prtfile.c -------------------------------------------------------------------------------- /code/tools/ommap/qbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/qbsp.h -------------------------------------------------------------------------------- /code/tools/ommap/shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/shaders.c -------------------------------------------------------------------------------- /code/tools/ommap/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/shaders.h -------------------------------------------------------------------------------- /code/tools/ommap/soundv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/soundv.c -------------------------------------------------------------------------------- /code/tools/ommap/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/surface.c -------------------------------------------------------------------------------- /code/tools/ommap/terrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/terrain.c -------------------------------------------------------------------------------- /code/tools/ommap/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/tree.c -------------------------------------------------------------------------------- /code/tools/ommap/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/vis.c -------------------------------------------------------------------------------- /code/tools/ommap/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/vis.h -------------------------------------------------------------------------------- /code/tools/ommap/visflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/visflow.c -------------------------------------------------------------------------------- /code/tools/ommap/writebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/ommap/writebsp.c -------------------------------------------------------------------------------- /code/tools/stringify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/stringify.c -------------------------------------------------------------------------------- /code/tools/stringify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/tools/stringify.cpp -------------------------------------------------------------------------------- /code/uilib/editfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/editfield.h -------------------------------------------------------------------------------- /code/uilib/ucolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/ucolor.cpp -------------------------------------------------------------------------------- /code/uilib/ucolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/ucolor.h -------------------------------------------------------------------------------- /code/uilib/ui_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/ui_extern.h -------------------------------------------------------------------------------- /code/uilib/ui_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/ui_init.cpp -------------------------------------------------------------------------------- /code/uilib/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/ui_local.h -------------------------------------------------------------------------------- /code/uilib/ui_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/ui_public.h -------------------------------------------------------------------------------- /code/uilib/uibind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uibind.cpp -------------------------------------------------------------------------------- /code/uilib/uibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uibind.h -------------------------------------------------------------------------------- /code/uilib/uibindlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uibindlist.cpp -------------------------------------------------------------------------------- /code/uilib/uibindlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uibindlist.h -------------------------------------------------------------------------------- /code/uilib/uibutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uibutton.cpp -------------------------------------------------------------------------------- /code/uilib/uibutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uibutton.h -------------------------------------------------------------------------------- /code/uilib/uicheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uicheckbox.cpp -------------------------------------------------------------------------------- /code/uilib/uicheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uicheckbox.h -------------------------------------------------------------------------------- /code/uilib/uicommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uicommon.h -------------------------------------------------------------------------------- /code/uilib/uiconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uiconsole.cpp -------------------------------------------------------------------------------- /code/uilib/uiconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uiconsole.h -------------------------------------------------------------------------------- /code/uilib/uidialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uidialog.cpp -------------------------------------------------------------------------------- /code/uilib/uidialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uidialog.h -------------------------------------------------------------------------------- /code/uilib/uifield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uifield.cpp -------------------------------------------------------------------------------- /code/uilib/uifield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uifield.h -------------------------------------------------------------------------------- /code/uilib/uifloatwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uifloatwnd.cpp -------------------------------------------------------------------------------- /code/uilib/uifloatwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uifloatwnd.h -------------------------------------------------------------------------------- /code/uilib/uifont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uifont.cpp -------------------------------------------------------------------------------- /code/uilib/uifont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uifont.h -------------------------------------------------------------------------------- /code/uilib/uihorizscroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uihorizscroll.h -------------------------------------------------------------------------------- /code/uilib/uilabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilabel.cpp -------------------------------------------------------------------------------- /code/uilib/uilabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilabel.h -------------------------------------------------------------------------------- /code/uilib/uilangamelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilangamelist.h -------------------------------------------------------------------------------- /code/uilib/uilayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilayout.cpp -------------------------------------------------------------------------------- /code/uilib/uilayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilayout.h -------------------------------------------------------------------------------- /code/uilib/uilist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilist.cpp -------------------------------------------------------------------------------- /code/uilib/uilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilist.h -------------------------------------------------------------------------------- /code/uilib/uilistbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilistbox.cpp -------------------------------------------------------------------------------- /code/uilib/uilistbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilistbox.h -------------------------------------------------------------------------------- /code/uilib/uilistctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilistctrl.cpp -------------------------------------------------------------------------------- /code/uilib/uilistctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uilistctrl.h -------------------------------------------------------------------------------- /code/uilib/uimenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uimenu.cpp -------------------------------------------------------------------------------- /code/uilib/uimenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uimenu.h -------------------------------------------------------------------------------- /code/uilib/uimessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uimessage.cpp -------------------------------------------------------------------------------- /code/uilib/uimessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uimessage.h -------------------------------------------------------------------------------- /code/uilib/uimledit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uimledit.cpp -------------------------------------------------------------------------------- /code/uilib/uimledit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uimledit.h -------------------------------------------------------------------------------- /code/uilib/uinotepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uinotepad.cpp -------------------------------------------------------------------------------- /code/uilib/uinotepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uinotepad.h -------------------------------------------------------------------------------- /code/uilib/uipoint2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uipoint2d.h -------------------------------------------------------------------------------- /code/uilib/uipopupmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uipopupmenu.cpp -------------------------------------------------------------------------------- /code/uilib/uipopupmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uipopupmenu.h -------------------------------------------------------------------------------- /code/uilib/uipulldownmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uipulldownmenu.h -------------------------------------------------------------------------------- /code/uilib/uirect2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uirect2d.h -------------------------------------------------------------------------------- /code/uilib/uisize2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uisize2d.h -------------------------------------------------------------------------------- /code/uilib/uislider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uislider.cpp -------------------------------------------------------------------------------- /code/uilib/uislider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uislider.h -------------------------------------------------------------------------------- /code/uilib/uistatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uistatus.cpp -------------------------------------------------------------------------------- /code/uilib/uistatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uistatus.h -------------------------------------------------------------------------------- /code/uilib/uivertscroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uivertscroll.cpp -------------------------------------------------------------------------------- /code/uilib/uivertscroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uivertscroll.h -------------------------------------------------------------------------------- /code/uilib/uiwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uiwidget.cpp -------------------------------------------------------------------------------- /code/uilib/uiwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uiwidget.h -------------------------------------------------------------------------------- /code/uilib/uiwinman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uiwinman.cpp -------------------------------------------------------------------------------- /code/uilib/uiwinman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/uiwinman.h -------------------------------------------------------------------------------- /code/uilib/ulist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/ulist.h -------------------------------------------------------------------------------- /code/uilib/usignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/uilib/usignal.h -------------------------------------------------------------------------------- /code/web/client-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/web/client-config.json -------------------------------------------------------------------------------- /code/web/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/code/web/client.html -------------------------------------------------------------------------------- /container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/container/README.md -------------------------------------------------------------------------------- /container/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/container/dev/README.md -------------------------------------------------------------------------------- /container/dev/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/container/dev/build.ps1 -------------------------------------------------------------------------------- /container/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/container/server/README.md -------------------------------------------------------------------------------- /container/server/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/container/server/build.ps1 -------------------------------------------------------------------------------- /container/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/container/server/build.sh -------------------------------------------------------------------------------- /container/server/full/game/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /container/server/full/game/home/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/css/doxygen-awesome-css/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !doxygen-awesome* 3 | 4 | -------------------------------------------------------------------------------- /misc/macos/openmohaa.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/macos/openmohaa.icns -------------------------------------------------------------------------------- /misc/openmohaa-text-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/openmohaa-text-sm.png -------------------------------------------------------------------------------- /misc/openmohaa-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/openmohaa-text.png -------------------------------------------------------------------------------- /misc/openmohaa-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/openmohaa-text.svg -------------------------------------------------------------------------------- /misc/openmohaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/openmohaa.png -------------------------------------------------------------------------------- /misc/openmohaa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/openmohaa.svg -------------------------------------------------------------------------------- /misc/update-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/update-libs.sh -------------------------------------------------------------------------------- /misc/windows/openmohaa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmoh/openmohaa/HEAD/misc/windows/openmohaa.ico --------------------------------------------------------------------------------